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

#ifndef INCLUDED_SC_INC_ATTRIB_HXX
#define INCLUDED_SC_INC_ATTRIB_HXX

#include <svl/poolitem.hxx>
#include <svl/intitem.hxx>
#include <svl/eitem.hxx>
#include "scdllapi.h"
#include "global.hxx"
#include "address.hxx"

                                        // flags for cells hidden by merge
                                        // and control for auto filter
#define SC_MF_HOR               0x0001
#define SC_MF_VER               0x0002
#define SC_MF_AUTO              0x0004  /// autofilter arrow
#define SC_MF_BUTTON            0x0008  /// field button for datapilot
#define SC_MF_SCENARIO          0x0010
#define SC_MF_BUTTON_POPUP      0x0020  /// dp button with popup arrow
#define SC_MF_HIDDEN_MEMBER     0x0040  /// dp field button with presence of hidden member
#define SC_MF_DP_TABLE          0x0080  /// dp table output

#define SC_MF_ALL               0x00FF

class EditTextObject;
namespace editeng { class SvxBorderLine; }

bool SC_DLLPUBLIC ScHasPriority( const ::editeng::SvxBorderLine* pThis, const ::editeng::SvxBorderLine* pOther );

class SC_DLLPUBLIC ScMergeAttr: public SfxPoolItem
{
    SCsCOL      nColMerge;
    SCsROW      nRowMerge;
public:
                TYPEINFO_OVERRIDE();
                ScMergeAttr();
                ScMergeAttr( SCsCOL nCol, SCsROW nRow = 0);
                ScMergeAttr( const ScMergeAttr& );
                virtual ~ScMergeAttr();

    virtual OUString        GetValueText() const;

    virtual bool            operator==( const SfxPoolItem& ) const SAL_OVERRIDE;
    virtual SfxPoolItem*    Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;
    virtual SfxPoolItem*    Create( SvStream& rStream, sal_uInt16 nVer ) const SAL_OVERRIDE;

            SCsCOL          GetColMerge() const {return nColMerge; }
            SCsROW          GetRowMerge() const {return nRowMerge; }

            bool            IsMerged() const { return nColMerge>1 || nRowMerge>1; }

    inline  ScMergeAttr& operator=(const ScMergeAttr& rMerge)
            {
                nColMerge = rMerge.nColMerge;
                nRowMerge = rMerge.nRowMerge;
                return *this;
            }
};

class SC_DLLPUBLIC ScMergeFlagAttr: public SfxInt16Item
{
public:
            ScMergeFlagAttr();
            ScMergeFlagAttr(sal_Int16 nFlags);
            virtual ~ScMergeFlagAttr();

    bool    IsHorOverlapped() const     { return ( GetValue() & SC_MF_HOR ) != 0;  }
    bool    IsVerOverlapped() const     { return ( GetValue() & SC_MF_VER ) != 0;  }
    bool    IsOverlapped() const        { return ( GetValue() & ( SC_MF_HOR | SC_MF_VER ) ) != 0; }

    bool    HasAutoFilter() const       { return ( GetValue() & SC_MF_AUTO ) != 0; }

    bool    IsScenario() const          { return ( GetValue() & SC_MF_SCENARIO ) != 0; }

    bool HasPivotButton() const;
    bool HasPivotPopupButton() const;
};

class SC_DLLPUBLIC ScProtectionAttr: public SfxPoolItem
{
    bool        bProtection;    ///< protect cell
    bool        bHideFormula;   ///< hide formula
    bool        bHideCell;      ///< hide cell
    bool        bHidePrint;     ///< don't print cell
public:
                            TYPEINFO_OVERRIDE();
                            ScProtectionAttr();
                            ScProtectionAttr(   bool bProtect,
                                                bool bHFormula = false,
                                                bool bHCell = false,
                                                bool bHPrint = false);
                            ScProtectionAttr( const ScProtectionAttr& );
                            virtual ~ScProtectionAttr();

    virtual OUString            GetValueText() const;
    virtual bool GetPresentation(
                                    SfxItemPresentation ePres,
                                    SfxMapUnit eCoreMetric,
                                    SfxMapUnit ePresMetric,
                                    OUString& rText,
                                    const IntlWrapper* pIntl = 0 ) const SAL_OVERRIDE;

    virtual bool            operator==( const SfxPoolItem& ) const SAL_OVERRIDE;
    virtual SfxPoolItem*    Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;
    virtual SfxPoolItem*    Create( SvStream& rStream, sal_uInt16 nVer ) const SAL_OVERRIDE;

    virtual bool            QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const SAL_OVERRIDE;
    virtual bool            PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) SAL_OVERRIDE;

            bool            GetProtection() const { return bProtection; }
            bool            SetProtection( bool bProtect);
            bool            GetHideFormula() const { return bHideFormula; }
            bool            SetHideFormula( bool bHFormula);
            bool            GetHideCell() const { return bHideCell; }
            bool            SetHideCell( bool bHCell);
            bool            GetHidePrint() const { return bHidePrint; }
            bool            SetHidePrint( bool bHPrint);
    inline  ScProtectionAttr& operator=(const ScProtectionAttr& rProtection)
            {
                bProtection = rProtection.bProtection;
                bHideFormula = rProtection.bHideFormula;
                bHideCell = rProtection.bHideCell;
                bHidePrint = rProtection.bHidePrint;
                return *this;
            }
};

// ScRangeItem: manages an area of a table

#define SCR_INVALID     0x01
#define SCR_ALLTABS     0x02
#define SCR_TONEWTAB    0x04

class ScRangeItem : public SfxPoolItem
{
public:
            TYPEINFO_OVERRIDE();

            inline  ScRangeItem( const sal_uInt16 nWhich );
            inline  ScRangeItem( const sal_uInt16   nWhich,
                                 const ScRange& rRange,
                                 const sal_uInt16   nNewFlags = 0 );
            inline  ScRangeItem( const ScRangeItem& rCpy );

    inline ScRangeItem& operator=( const ScRangeItem &rCpy );

    // "pure virtual methods" from SfxPoolItem
    virtual bool                operator==( const SfxPoolItem& ) const SAL_OVERRIDE;
    virtual bool GetPresentation( SfxItemPresentation ePres,
                                                 SfxMapUnit eCoreMetric,
                                                 SfxMapUnit ePresMetric,
                                                 OUString &rText,
                                                 const IntlWrapper* pIntl = 0 ) const SAL_OVERRIDE;
    virtual SfxPoolItem*        Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;

    const ScRange&  GetRange() const                { return aRange;  }
    void            SetRange( const ScRange& rNew ) { aRange = rNew; }

    sal_uInt16          GetFlags() const                { return nFlags;  }
    void            SetFlags( sal_uInt16 nNew )         { nFlags = nNew; }

private:
    ScRange aRange;
    sal_uInt16  nFlags;
};

inline ScRangeItem::ScRangeItem( const sal_uInt16 nWhichP )
    :   SfxPoolItem( nWhichP ), nFlags( SCR_INVALID ) // == invalid area
{
}

inline ScRangeItem::ScRangeItem( const sal_uInt16   nWhichP,
                                 const ScRange& rRange,
                                 const sal_uInt16   nNew )
    : SfxPoolItem( nWhichP ), aRange( rRange ), nFlags( nNew )
{
}

inline ScRangeItem::ScRangeItem( const ScRangeItem& rCpy )
    : SfxPoolItem( rCpy.Which() ), aRange( rCpy.aRange ), nFlags( rCpy.nFlags )
{}

inline ScRangeItem& ScRangeItem::operator=( const ScRangeItem &rCpy )
{
    aRange = rCpy.aRange;
    return *this;
}

// ScTableListItem: manages a list of tables

class ScTableListItem : public SfxPoolItem
{
public:
    TYPEINFO_OVERRIDE();

    inline  ScTableListItem( const sal_uInt16 nWhich );
            ScTableListItem( const ScTableListItem& rCpy );
            virtual ~ScTableListItem();

    ScTableListItem& operator=( const ScTableListItem &rCpy );

    // "pure virtual Methoden" from SfxPoolItem
    virtual bool                operator==( const SfxPoolItem& ) const SAL_OVERRIDE;
    virtual bool GetPresentation( SfxItemPresentation ePres,
                                                 SfxMapUnit eCoreMetric,
                                                 SfxMapUnit ePresMetric,
                                                 OUString &rText,
                                                 const IntlWrapper* pIntl = 0 ) const SAL_OVERRIDE;
    virtual SfxPoolItem*        Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;

public:
    sal_uInt16  nCount;
    SCTAB*  pTabArr;
};

inline ScTableListItem::ScTableListItem( const sal_uInt16 nWhichP )
    : SfxPoolItem(nWhichP), nCount(0), pTabArr(NULL)
{}

// page format item: contents of header and footer

#define SC_HF_LEFTAREA   1
#define SC_HF_CENTERAREA 2
#define SC_HF_RIGHTAREA  3

class SC_DLLPUBLIC ScPageHFItem : public SfxPoolItem
{
    EditTextObject* pLeftArea;
    EditTextObject* pCenterArea;
    EditTextObject* pRightArea;

public:
                TYPEINFO_OVERRIDE();
                ScPageHFItem( sal_uInt16 nWhich );
                ScPageHFItem( const ScPageHFItem& rItem );
                virtual ~ScPageHFItem();

    virtual OUString        GetValueText() const;
    virtual bool            operator==( const SfxPoolItem& ) const SAL_OVERRIDE;
    virtual SfxPoolItem*    Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;

    virtual SfxPoolItem*    Create( SvStream& rStream, sal_uInt16 nVer ) const SAL_OVERRIDE;

    virtual bool            QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const SAL_OVERRIDE;
    virtual bool            PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) SAL_OVERRIDE;

    const EditTextObject* GetLeftArea() const       { return pLeftArea; }
    const EditTextObject* GetCenterArea() const     { return pCenterArea; }
    const EditTextObject* GetRightArea() const      { return pRightArea; }

    void SetLeftArea( const EditTextObject& rNew );
    void SetCenterArea( const EditTextObject& rNew );
    void SetRightArea( const EditTextObject& rNew );

    // Set method with pointer assignment, nArea see defines above
    void SetArea( EditTextObject *pNew, int nArea );
};

// page format item: contents of header and footer

class SC_DLLPUBLIC ScViewObjectModeItem: public SfxEnumItem
{
public:
                TYPEINFO_OVERRIDE();

                ScViewObjectModeItem( sal_uInt16 nWhich );
                ScViewObjectModeItem( sal_uInt16 nWhich, ScVObjMode eMode );
                virtual ~ScViewObjectModeItem();

    virtual sal_uInt16              GetValueCount() const SAL_OVERRIDE;
    virtual OUString            GetValueText( sal_uInt16 nVal ) const;
    virtual SfxPoolItem*        Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;
    virtual SfxPoolItem*        Create(SvStream &, sal_uInt16) const SAL_OVERRIDE;
    virtual sal_uInt16              GetVersion( sal_uInt16 nFileVersion ) const SAL_OVERRIDE;
    virtual bool GetPresentation( SfxItemPresentation ePres,
                                                 SfxMapUnit eCoreMetric,
                                                 SfxMapUnit ePresMetric,
                                                 OUString& rText,
                                                 const IntlWrapper* pIntl = 0 ) const SAL_OVERRIDE;
};

class ScDoubleItem : public SfxPoolItem
{
public:
                TYPEINFO_OVERRIDE();
                ScDoubleItem( sal_uInt16 nWhich, double nVal=0 );
                ScDoubleItem( const ScDoubleItem& rItem );
                virtual ~ScDoubleItem();

    virtual OUString        GetValueText() const;
    virtual bool            operator==( const SfxPoolItem& ) const SAL_OVERRIDE;
    virtual SfxPoolItem*    Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;

    virtual SfxPoolItem*    Create( SvStream& rStream, sal_uInt16 nVer ) const SAL_OVERRIDE;

    double GetValue() const     { return nValue; }

    void SetValue( const double nVal ) { nValue = nVal;}

private:
    double  nValue;
};

/** Member ID for "page scale to width" value in QueryValue() and PutValue(). */
const sal_uInt8 SC_MID_PAGE_SCALETO_WIDTH    = 1;
/** Member ID for "page scale to height" value in QueryValue() and PutValue(). */
const sal_uInt8 SC_MID_PAGE_SCALETO_HEIGHT   = 2;

/** Contains the "scale to width/height" attribute in page styles. */
class SC_DLLPUBLIC ScPageScaleToItem : public SfxPoolItem
{
public:
                                TYPEINFO_OVERRIDE();

    /** Default c'tor sets the width and height to 0. */
    explicit                    ScPageScaleToItem();
    explicit                    ScPageScaleToItem( sal_uInt16 nWidth, sal_uInt16 nHeight );

    virtual                     ~ScPageScaleToItem();

    virtual ScPageScaleToItem*  Clone( SfxItemPool* = 0 ) const SAL_OVERRIDE;

    virtual bool                operator==( const SfxPoolItem& rCmp ) const SAL_OVERRIDE;

    inline sal_uInt16           GetWidth() const { return mnWidth; }
    inline sal_uInt16           GetHeight() const { return mnHeight; }
    inline bool                 IsValid() const { return mnWidth || mnHeight; }

    inline void                 SetWidth( sal_uInt16 nWidth ) { mnWidth = nWidth; }
    inline void                 SetHeight( sal_uInt16 nHeight ) { mnHeight = nHeight; }
    inline void                 Set( sal_uInt16 nWidth, sal_uInt16 nHeight )
                                    { mnWidth = nWidth; mnHeight = nHeight; }
    inline void                 SetInvalid() { mnWidth = mnHeight = 0; }

    virtual bool GetPresentation(
                                    SfxItemPresentation ePresentation,
                                    SfxMapUnit, SfxMapUnit,
                                    OUString& rText,
                                    const IntlWrapper* = 0 ) const SAL_OVERRIDE;

    virtual bool                QueryValue( ::com::sun::star::uno::Any& rAny, sal_uInt8 nMemberId = 0 ) const SAL_OVERRIDE;
    virtual bool                PutValue( const ::com::sun::star::uno::Any& rAny, sal_uInt8 nMemberId = 0 ) SAL_OVERRIDE;

private:
    sal_uInt16                  mnWidth;
    sal_uInt16                  mnHeight;
};

class ScCondFormatItem : public SfxPoolItem
{
public:
    TYPEINFO_OVERRIDE();

    explicit ScCondFormatItem();
    explicit ScCondFormatItem(const std::vector<sal_uInt32>& nIndex);

    virtual ~ScCondFormatItem();

    virtual bool operator==(const SfxPoolItem& rCmp ) const SAL_OVERRIDE;
    virtual ScCondFormatItem*  Clone( SfxItemPool* = 0 ) const SAL_OVERRIDE;

    const std::vector<sal_uInt32>& GetCondFormatData() const { return maIndex;}
    void AddCondFormatData( sal_uInt32 nIndex );
    void SetCondFormatData( const std::vector<sal_uInt32>& aIndex );

private:
    std::vector<sal_uInt32> maIndex;
};

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
#: basic/inc/basic.hrc:95
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Object is not available."
msgstr "មិន​មាន​វត្ថុ ។"
#. nfXrp
-#: basic/inc/basic.hrc:90
+#: basic/inc/basic.hrc:96
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Incorrect property value."
msgstr "តម្លៃ​លក្ខណសម្បត្តិ​មិន​ត្រឹមត្រូវ ។"
#. 8qjhR
-#: basic/inc/basic.hrc:91
+#: basic/inc/basic.hrc:97
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "This property is read-only."
msgstr "លក្ខណសម្បត្តិ​នេះ​គឺ​បាន​តែ​អាន ។"
#. ScKEy
-#: basic/inc/basic.hrc:92
+#: basic/inc/basic.hrc:98
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "This property is write only."
msgstr "លក្ខណសម្បត្តិ​នេះ​គឺ​បាន​តែ​សរសេរ ។"
#. kTCMC
-#: basic/inc/basic.hrc:93
+#: basic/inc/basic.hrc:99
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid object reference."
msgstr "សេចក្ដីយោង​វត្ថុ​មិន​ត្រឹមត្រូវ ។"
#. fz98J
-#: basic/inc/basic.hrc:94
+#: basic/inc/basic.hrc:100
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Property or method not found: $(ARG1)."
msgstr "រក​មិន​ឃើញ​លក្ខណសម្បត្តិ ឬ​​វិធីសាស្ត្រ ៖ $(ARG1) ។"
#. rWwbT
-#: basic/inc/basic.hrc:95
+#: basic/inc/basic.hrc:101
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Object required."
msgstr "ទាមទារ​វត្ថុ ។"
#. b3XBE
-#: basic/inc/basic.hrc:96
+#: basic/inc/basic.hrc:102
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid use of an object."
msgstr "ប្រើ​វត្ថុ​មួយ​មិន​ត្រឹមត្រូវ ។"
#. pM7Vq
-#: basic/inc/basic.hrc:97
+#: basic/inc/basic.hrc:103
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "OLE Automation is not supported by this object."
msgstr "វត្ថុ​នេះ​មិន​គាំទ្រ​ស្វ័យប្រតិកម្ម OLE ឡើយ ។"
#. HMAey
-#: basic/inc/basic.hrc:98
+#: basic/inc/basic.hrc:104
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "This property or method is not supported by the object."
msgstr "វត្ថុ​មិន​គាំទ្រ​លក្ខណសម្បត្តិ ឬ​វិធីសាស្ត្រ​នេះ​ឡើយ ។"
#. DMts6
-#: basic/inc/basic.hrc:99
+#: basic/inc/basic.hrc:105
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "OLE Automation Error."
msgstr "កំហុស​ស្វ័យប្រតិកម្ម OLE ។"
#. 3VsB3
-#: basic/inc/basic.hrc:100
+#: basic/inc/basic.hrc:106
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "This action is not supported by given object."
msgstr "វត្ថុ​ដែល​បាន​ផ្ដល់​មិន​គាំទ្រ​អំពើ​នេះ​ឡើយ ។"
#. vgvzF
-#: basic/inc/basic.hrc:101
+#: basic/inc/basic.hrc:107
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Named arguments are not supported by given object."
msgstr "វត្ថុ​ដែល​បាន​ផ្ដល់​មិន​គាំទ្រ​អាគុយម៉ង់​ដែល​បាន​ដាក់ឈ្មោះ​ឡើយ ។"
#. 4aZxy
-#: basic/inc/basic.hrc:102
+#: basic/inc/basic.hrc:108
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "The current locale setting is not supported by the given object."
msgstr "វត្ថុ​ដែល​បាន​ផ្ដល់​មិន​គាំទ្រ​ការ​កំណត់​មូលដ្ឋាន​បច្ចុប្បន្ន​ឡើយ ។"
#. AoqGh
-#: basic/inc/basic.hrc:103
+#: basic/inc/basic.hrc:109
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Named argument not found."
msgstr "រក​មិន​ឃើញ​អាគុយម៉ង់​ដែល​បាន​ដាក់ឈ្មោះ ។"
#. G2sC5
-#: basic/inc/basic.hrc:104
+#: basic/inc/basic.hrc:110
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Argument is not optional."
msgstr "អាគុយម៉ង់​មិន​មែន​ស្រេច​ចិត្ត​ឡើយ ។"
#. v78nF
-#: basic/inc/basic.hrc:105 basic/inc/basic.hrc:113
+#: basic/inc/basic.hrc:111 basic/inc/basic.hrc:119
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid number of arguments."
msgstr "ចំនួន​អាគុយម៉ង់​មិន​ត្រឹមត្រូវ ។"
#. DVFF3
-#: basic/inc/basic.hrc:106
+#: basic/inc/basic.hrc:112
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Object is not a list."
msgstr "វត្ថុ​មិន​មែន​ជា​បញ្ជី ។"
#. zDijP
-#: basic/inc/basic.hrc:107
+#: basic/inc/basic.hrc:113
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid ordinal number."
msgstr "លេខ​លំដាប់​មិន​ត្រឹមត្រូវ ។"
#. uY35B
-#: basic/inc/basic.hrc:108
+#: basic/inc/basic.hrc:114
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Specified DLL function not found."
msgstr "រក​មិន​ឃើញ​អនុគមន៍ DLL ដែល​បាន​បញ្ជាក់ ។"
#. MPTAv
-#: basic/inc/basic.hrc:109
+#: basic/inc/basic.hrc:115
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid clipboard format."
msgstr "ទ្រង់ទ្រាយ​ក្ដារតម្បៀតខ្ទាស់​មិន​ត្រឹមត្រូវ ។"
#. UC2FV
-#: basic/inc/basic.hrc:110
+#: basic/inc/basic.hrc:116
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Object does not have this property."
msgstr "វត្ថុ​មិន​មាន​លក្ខណសម្បត្តិ​នេះ​ឡើយ ។"
#. 9JEU2
-#: basic/inc/basic.hrc:111
+#: basic/inc/basic.hrc:117
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Object does not have this method."
msgstr "វត្ថុ​មិន​មាន​វិធីសាស្ត្រ​នេះ​ឡើយ ។"
#. azsCo
-#: basic/inc/basic.hrc:112
+#: basic/inc/basic.hrc:118
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Required argument lacking."
msgstr "ខ្វះ​អាគុយម៉ង់​ដែល​ត្រូវការ ។"
#. 9WA8D
-#: basic/inc/basic.hrc:114
+#: basic/inc/basic.hrc:120
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Error executing a method."
msgstr "កំហុស​ប្រតិបត្តិ​វិធីសាស្ត្រ​មួយ ។"
#. N3vcw
-#: basic/inc/basic.hrc:115
+#: basic/inc/basic.hrc:121
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Unable to set property."
msgstr "មិន​អាច​កំណត់​តម្លៃ​លក្ខណសម្បត្តិ ។"
#. k82XW
-#: basic/inc/basic.hrc:116
+#: basic/inc/basic.hrc:122
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Unable to determine property."
@@ -643,252 +643,252 @@ msgstr "មិន​អាច​កំណត់​លក្ខណសម្បត
#. 5cGpa
#. Compiler errors. These are not runtime errors.
-#: basic/inc/basic.hrc:118
+#: basic/inc/basic.hrc:124
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Unexpected symbol: $(ARG1)."
msgstr "រំពឹង​និមិត្តសញ្ញា ៖ $(ARG1) ។"
#. SBpod
-#: basic/inc/basic.hrc:119
+#: basic/inc/basic.hrc:125
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Expected: $(ARG1)."
msgstr "រំពឹង ៖ $(ARG1) ។"
#. JBaEp
-#: basic/inc/basic.hrc:120
+#: basic/inc/basic.hrc:126
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Symbol expected."
msgstr "រំពឹង​និមិត្តសញ្ញា ។"
#. CkAE9
-#: basic/inc/basic.hrc:121
+#: basic/inc/basic.hrc:127
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Variable expected."
msgstr "រំពឹង​អថេរ ។"
#. DS5cS
-#: basic/inc/basic.hrc:122
+#: basic/inc/basic.hrc:128
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Label expected."
msgstr "រំពឹង​ស្លាក ។"
#. k2myJ
-#: basic/inc/basic.hrc:123
+#: basic/inc/basic.hrc:129
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Value cannot be applied."
msgstr "មិន​អាច​អនុវត្ត​តម្លៃ ។"
#. oPCtL
-#: basic/inc/basic.hrc:124
+#: basic/inc/basic.hrc:130
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Variable $(ARG1) already defined."
msgstr "បាន​កំណត់​អថេរ $(ARG1) រួច​ហើយ ។"
#. WmiB6
-#: basic/inc/basic.hrc:125
+#: basic/inc/basic.hrc:131
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Sub procedure or function procedure $(ARG1) already defined."
msgstr "បាន​កំណត់​បែបផែន​រង ឬ​បែបផែន​អនុគមន៍ $(ARG1) រួច​ហើយ ។"
#. byksZ
-#: basic/inc/basic.hrc:126
+#: basic/inc/basic.hrc:132
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Label $(ARG1) already defined."
msgstr "បាន​កំណត់​ស្លាក $(ARG1) រួច​ហើយ ។"
#. GHdG4
-#: basic/inc/basic.hrc:127
+#: basic/inc/basic.hrc:133
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Variable $(ARG1) not found."
msgstr "រក​មិន​ឃើញ​អថេរ $(ARG1) ។"
#. DksBU
-#: basic/inc/basic.hrc:128
+#: basic/inc/basic.hrc:134
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Array or procedure $(ARG1) not found."
msgstr "រក​មិន​ឃើញ​អារេ ឬ​បែបផែន $(ARG1) ។"
#. 7CD6B
-#: basic/inc/basic.hrc:129
+#: basic/inc/basic.hrc:135
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Procedure $(ARG1) not found."
msgstr "រក​មិន​ឃើញ​បែបផែន $(ARG1) ។"
#. GREm3
-#: basic/inc/basic.hrc:130
+#: basic/inc/basic.hrc:136
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Label $(ARG1) undefined."
msgstr "មិន​បាន​កំណត់​ស្លាក $(ARG1) ។"
#. 2VFZq
-#: basic/inc/basic.hrc:131
+#: basic/inc/basic.hrc:137
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Unknown data type $(ARG1)."
msgstr "មិន​ស្គាល់​ប្រភេទ​ទិន្នន័យ $(ARG1) ។"
#. hvsH3
-#: basic/inc/basic.hrc:132
+#: basic/inc/basic.hrc:138
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Exit $(ARG1) expected."
msgstr "រំពឹង​ថា​ចេញ​ពី $(ARG1) ។"
#. 7kZX5
-#: basic/inc/basic.hrc:133
+#: basic/inc/basic.hrc:139
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Statement block still open: $(ARG1) missing."
msgstr "នៅ​បើក​បណ្ដុំ​សេចក្ដីថ្លែងការណ៍​នៅ​ឡើយ ៖ បាត់ $(ARG1) ។"
#. EysAe
-#: basic/inc/basic.hrc:134
+#: basic/inc/basic.hrc:140
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Parentheses do not match."
msgstr "វង់ក្រចក​មិន​ត្រូវ​គ្នា ។"
#. tGqRY
-#: basic/inc/basic.hrc:135
+#: basic/inc/basic.hrc:141
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Symbol $(ARG1) already defined differently."
msgstr "បាន​កំណត់​និមិត្តសញ្ញា $(ARG1) ផ្សេង​ពី​នេះ​រួច​ហើយ ។"
#. Nvysh
-#: basic/inc/basic.hrc:136
+#: basic/inc/basic.hrc:142
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Parameters do not correspond to procedure."
msgstr "ប៉ារ៉ាម៉ែត្រ​មិន​ឆ្លើយតប​ទៅ​នឹង​បែបផែន ។"
#. aLCNz
-#: basic/inc/basic.hrc:137
+#: basic/inc/basic.hrc:143
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid character in number."
msgstr "តួអក្សរ​មិន​ត្រឹមត្រូវ​នៅ​ក្នុង​លេខ ។"
#. ZL3GF
-#: basic/inc/basic.hrc:138
+#: basic/inc/basic.hrc:144
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Array must be dimensioned."
msgstr "អារេ​ត្រូវ​តែ​មាន​វិមាត្រ ។"
#. bvzvK
-#: basic/inc/basic.hrc:139
+#: basic/inc/basic.hrc:145
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Else/Endif without If."
msgstr "Else/Endif ដោយ​គ្មាន If ។"
#. BPHwC
-#: basic/inc/basic.hrc:140
+#: basic/inc/basic.hrc:146
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "$(ARG1) not allowed within a procedure."
msgstr "$(ARG1) មិន​អនុញ្ញាត​ឲ្យ​នៅ​ក្នុង​បែបផែន​ឡើយ ។"
#. t4CFy
-#: basic/inc/basic.hrc:141
+#: basic/inc/basic.hrc:147
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "$(ARG1) not allowed outside a procedure."
msgstr "$(ARG1) មិន​អនុញ្ញាត​ឲ្យ​នៅ​ក្រៅ​បែបផែន​ឡើយ ។"
#. BAmBZ
-#: basic/inc/basic.hrc:142
+#: basic/inc/basic.hrc:148
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Dimension specifications do not match."
msgstr "ការ​បញ្ជាក់​វិមាត្រ​គឺ​មិន​ត្រូវ​គ្នា​ឡើយ ។"
#. kKjmy
-#: basic/inc/basic.hrc:143
+#: basic/inc/basic.hrc:149
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Unknown option: $(ARG1)."
msgstr "មិន​ស្គាល់​ជម្រើស ៖ $(ARG1) ។"
#. LCo58
-#: basic/inc/basic.hrc:144
+#: basic/inc/basic.hrc:150
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Constant $(ARG1) redefined."
msgstr "បាន​កំណត់​ថេរ $(ARG1) ឡើង​វិញ ។"
#. Dx6YA
-#: basic/inc/basic.hrc:145
+#: basic/inc/basic.hrc:151
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Program too large."
msgstr "កម្មវិធី​ធំ​ពេក ។"
#. aAKCD
-#: basic/inc/basic.hrc:146
+#: basic/inc/basic.hrc:152
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Strings or arrays not permitted."
msgstr "មិន​ឲ្យ​ប្រើ​ខ្សែអក្សរ ឬ​អារេ​ឡើយ ។"
#. gqBGJ
-#: basic/inc/basic.hrc:147
+#: basic/inc/basic.hrc:153
msgctxt "RID_BASIC_START"
msgid "An exception occurred $(ARG1)."
msgstr "ករណី​លើកលែង​មួយ​បាន​កើតឡើង $(ARG1) ។"
#. YTygS
-#: basic/inc/basic.hrc:148
+#: basic/inc/basic.hrc:154
msgctxt "RID_BASIC_START"
msgid "This array is fixed or temporarily locked."
msgstr "អារ៉េ​នេះ គឺ​ត្រូវបាន​ដាក់​ឲ្យ​ថេរ ឬ​ចាក់សោ​បណ្ដោះអាសន្ន ។"
#. AwvaS
-#: basic/inc/basic.hrc:149
+#: basic/inc/basic.hrc:155
msgctxt "RID_BASIC_START"
msgid "Out of string space."
msgstr "អស់​ចន្លោះ​ខ្សែអក្សរ ។"
#. VosXA
-#: basic/inc/basic.hrc:150
+#: basic/inc/basic.hrc:156
msgctxt "RID_BASIC_START"
msgid "Expression Too Complex."
msgstr "កន្សោម គឺ​ស្មុគស្មាញ​។"
#. fYWci
-#: basic/inc/basic.hrc:151
+#: basic/inc/basic.hrc:157
msgctxt "RID_BASIC_START"
msgid "Can't perform requested operation."
msgstr "មិនអាចធ្វើ​ប្រតិបត្តិការ​ដែល​បាន​ស្នើ​បានទេ ។"
#. oGvjJ
-#: basic/inc/basic.hrc:152
+#: basic/inc/basic.hrc:158
msgctxt "RID_BASIC_START"
msgid "Too many DLL application clients."
msgstr "មាន​កម្មវិធី​ភ្ញៀវ DLL ច្រើនពេក ។"
#. tC47t
-#: basic/inc/basic.hrc:153
+#: basic/inc/basic.hrc:159
msgctxt "RID_BASIC_START"
msgid "For loop not initialized."
msgstr "មិនបាន​ចាប់ផ្ដើម​សម្រាប់​រង្វិល​ជុំ​ទេ ។"
#. DA4GN
-#: basic/inc/basic.hrc:154
+#: basic/inc/basic.hrc:160
msgctxt "RID_BASIC_START"
msgid "$(ARG1)"
msgstr "$(ARG1)"
diff --git a/source/km/chart2/messages.po b/source/km/chart2/messages.po
index 6a7eebc17a2..7dae92d2272 100644
--- a/source/km/chart2/messages.po
+++ b/source/km/chart2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-01-31 18:18+0100\n"
"PO-Revision-Date: 2018-10-21 19:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,25 +17,25 @@ msgstr ""
"X-POOTLE-MTIME: 1540150524.000000\n"
#. NCRDD
-#: chart2/inc/chart.hrc:16
+#: chart2/inc/chart.hrc:18
msgctxt "tp_ChartType|liststore1"
msgid "Bar"
msgstr "របារ"
#. YpLZF
-#: chart2/inc/chart.hrc:17
+#: chart2/inc/chart.hrc:19
msgctxt "tp_ChartType|liststore1"
msgid "Cylinder"
msgstr "ស៊ីឡាំង"
#. VLXhh
-#: chart2/inc/chart.hrc:18
+#: chart2/inc/chart.hrc:20
msgctxt "tp_ChartType|liststore1"
msgid "Cone"
msgstr "សាជី"
#. xsWC2
-#: chart2/inc/chart.hrc:19
+#: chart2/inc/chart.hrc:21
msgctxt "tp_ChartType|liststore1"
msgid "Pyramid"
msgstr "ពីរ៉ាមីត"
@@ -2694,67 +2694,67 @@ msgid "Sh_ape"
msgstr ""
#. B6KS5
-#: chart2/uiconfig/ui/sidebartype.ui:188
+#: chart2/uiconfig/ui/sidebartype.ui:187
msgctxt "sidebartype|stack"
msgid "_Stack series"
msgstr ""
#. Yau6n
-#: chart2/uiconfig/ui/sidebartype.ui:208
+#: chart2/uiconfig/ui/sidebartype.ui:207
msgctxt "sidebartype|ontop"
msgid "On top"
msgstr ""
#. f2J43
-#: chart2/uiconfig/ui/sidebartype.ui:222
+#: chart2/uiconfig/ui/sidebartype.ui:221
msgctxt "sidebartype|percent"
msgid "Percent"
msgstr ""
#. iDSaa
-#: chart2/uiconfig/ui/sidebartype.ui:236
+#: chart2/uiconfig/ui/sidebartype.ui:235
msgctxt "sidebartype|deep"
msgid "Deep"
msgstr ""
#. KaS7Z
-#: chart2/uiconfig/ui/sidebartype.ui:264
+#: chart2/uiconfig/ui/sidebartype.ui:263
msgctxt "sidebartype|linetypeft"
msgid "_Line type"
msgstr ""
#. Hqc3N
-#: chart2/uiconfig/ui/sidebartype.ui:279
+#: chart2/uiconfig/ui/sidebartype.ui:278
msgctxt "sidebartype|linetype"
msgid "Straight"
msgstr ""
#. EB58Z
-#: chart2/uiconfig/ui/sidebartype.ui:280
+#: chart2/uiconfig/ui/sidebartype.ui:279
msgctxt "sidebartype|linetype"
msgid "Smooth"
msgstr ""
#. qLn3k
-#: chart2/uiconfig/ui/sidebartype.ui:281
+#: chart2/uiconfig/ui/sidebartype.ui:280
msgctxt "sidebartype|linetype"
msgid "Stepped"
msgstr ""
#. jKDXh
-#: chart2/uiconfig/ui/sidebartype.ui:291
+#: chart2/uiconfig/ui/sidebartype.ui:290
msgctxt "sidebartype|properties"
msgid "Properties..."
msgstr ""
#. xW9CQ
-#: chart2/uiconfig/ui/sidebartype.ui:309
+#: chart2/uiconfig/ui/sidebartype.ui:308
msgctxt "sidebartype|sort"
msgid "_Sort by X values"
msgstr ""
#. thu3G
-#: chart2/uiconfig/ui/sidebartype.ui:331
+#: chart2/uiconfig/ui/sidebartype.ui:330
msgctxt "sidebartype|nolinesft"
msgid "_Number of lines"
msgstr ""
@@ -3484,7 +3484,7 @@ msgid "Mor_e..."
msgstr "ច្រើន..."
#. 7eDLK
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:648
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:647
msgctxt "tp_AxisPositions|label2"
msgid "Grids"
msgstr "ក្រឡា"
@@ -3497,163 +3497,163 @@ msgid "Choose a Chart Type"
msgstr "ជ្រើស​ប្រភេទ​គំនូសតាង"
#. wBFXQ
-#: chart2/uiconfig/ui/tp_ChartType.ui:96
+#: chart2/uiconfig/ui/tp_ChartType.ui:94
msgctxt "tp_ChartType|extended_tip|subtype"
msgid "Select a sub type of the basic chart type."
msgstr "ជ្រើស​ប្រភេទ​រង​របស់​ប្រភេទ​គំនូស​តាង​មូលដ្ឋាន ។"
#. FSf6b
-#: chart2/uiconfig/ui/tp_ChartType.ui:125
+#: chart2/uiconfig/ui/tp_ChartType.ui:123
msgctxt "tp_ChartType|3dlook"
msgid "_3D Look"
msgstr "រាង​ត្រីមាត្រ "
#. EB95g
-#: chart2/uiconfig/ui/tp_ChartType.ui:135
+#: chart2/uiconfig/ui/tp_ChartType.ui:133
msgctxt "tp_ChartType|extended_tip|3dlook"
msgid "Enables a 3D look for the data values."
msgstr "បើក​រូបរាង​ត្រីមាត្រ​សម្រាប់​តម្លៃ​ទិន្នន័យ ។"
#. FprGw
-#: chart2/uiconfig/ui/tp_ChartType.ui:149
+#: chart2/uiconfig/ui/tp_ChartType.ui:147
msgctxt "tp_ChartType|3dscheme"
msgid "Simple"
msgstr "សាមញ្ញ"
#. pKhfX
-#: chart2/uiconfig/ui/tp_ChartType.ui:150
+#: chart2/uiconfig/ui/tp_ChartType.ui:148
msgctxt "tp_ChartType|3dscheme"
msgid "Realistic"
msgstr "ប្រាកដ"
#. zZxWG
-#: chart2/uiconfig/ui/tp_ChartType.ui:157
+#: chart2/uiconfig/ui/tp_ChartType.ui:155
msgctxt "tp_ChartType|extended_tip|3dscheme"
msgid "Select the type of 3D look."
msgstr "ជ្រើស​ប្រភេទ​របស់រូបរាង​ត្រីមាត្រ ។"
#. FxHfq
-#: chart2/uiconfig/ui/tp_ChartType.ui:175
+#: chart2/uiconfig/ui/tp_ChartType.ui:173
msgctxt "tp_ChartType|shapeft"
msgid "Sh_ape"
msgstr "រាង"
#. CCA3V
-#: chart2/uiconfig/ui/tp_ChartType.ui:219
+#: chart2/uiconfig/ui/tp_ChartType.ui:216
msgctxt "tp_ChartType|extended_tip|shape"
msgid "Select a shape from the list."
msgstr "ជ្រើស​រាង​មួយ​ពី​បញ្ជី ។"
#. G2u4D
-#: chart2/uiconfig/ui/tp_ChartType.ui:244
+#: chart2/uiconfig/ui/tp_ChartType.ui:241
msgctxt "tp_ChartType|stack"
msgid "_Stack series"
msgstr "ស៊េរី​ជង់"
#. h8wCq
-#: chart2/uiconfig/ui/tp_ChartType.ui:251
+#: chart2/uiconfig/ui/tp_ChartType.ui:248
msgctxt "tp_ChartType|extended_tip|stack"
msgid "Displays stacked series for Line charts."
msgstr "បង្ហាញ​ស៊េរី​ជា​ជង់​សម្រាប់​គំនូស​តាង​បន្ទាត់ ។"
#. KfD2L
-#: chart2/uiconfig/ui/tp_ChartType.ui:269
+#: chart2/uiconfig/ui/tp_ChartType.ui:266
msgctxt "tp_ChartType|ontop"
msgid "On top"
msgstr "ផ្នែក​ខាងលើ"
#. DY854
-#: chart2/uiconfig/ui/tp_ChartType.ui:277
+#: chart2/uiconfig/ui/tp_ChartType.ui:274
msgctxt "tp_ChartType|extended_tip|ontop"
msgid "Stack series display values on top of each other."
msgstr "ស៊េរី​ជង់​បង្ហាញ​តម្លៃ​នៅ​កំពូល​របស់ទៅ​វិញ​ទៅ​មក ។"
#. C7JxK
-#: chart2/uiconfig/ui/tp_ChartType.ui:288
+#: chart2/uiconfig/ui/tp_ChartType.ui:285
msgctxt "tp_ChartType|percent"
msgid "Percent"
msgstr "ភាគរយ"
#. EVNAR
-#: chart2/uiconfig/ui/tp_ChartType.ui:296
+#: chart2/uiconfig/ui/tp_ChartType.ui:293
msgctxt "tp_ChartType|extended_tip|percent"
msgid "Stack series display values as percent."
msgstr "ស៊េរី​ជង់​បង្ហាញ​តម្លៃ​ជា​ភាគរយ ។"
#. ijuPy
-#: chart2/uiconfig/ui/tp_ChartType.ui:307
+#: chart2/uiconfig/ui/tp_ChartType.ui:304
msgctxt "tp_ChartType|deep"
msgid "Deep"
msgstr "ជ្រៅ"
#. etF2p
-#: chart2/uiconfig/ui/tp_ChartType.ui:334
+#: chart2/uiconfig/ui/tp_ChartType.ui:331
msgctxt "tp_ChartType|linetypeft"
msgid "_Line type"
msgstr "ប្រភេទ​បន្ទាប់"
#. RbyB4
-#: chart2/uiconfig/ui/tp_ChartType.ui:348
+#: chart2/uiconfig/ui/tp_ChartType.ui:345
msgctxt "tp_ChartType|linetype"
msgid "Straight"
msgstr "ត្រង់"
#. dG5tv
-#: chart2/uiconfig/ui/tp_ChartType.ui:349
+#: chart2/uiconfig/ui/tp_ChartType.ui:346
msgctxt "tp_ChartType|linetype"
msgid "Smooth"
msgstr "រលោង"
#. uHHpu
-#: chart2/uiconfig/ui/tp_ChartType.ui:350
+#: chart2/uiconfig/ui/tp_ChartType.ui:347
msgctxt "tp_ChartType|linetype"
msgid "Stepped"
msgstr "បាន​កំណត់​ជំហាន"
#. G3eDR
-#: chart2/uiconfig/ui/tp_ChartType.ui:354
+#: chart2/uiconfig/ui/tp_ChartType.ui:351
msgctxt "tp_ChartType|extended_tip|linetype"
msgid "Choose the type of line to draw."
msgstr "ជ្រើស​ប្រភេទ​បន្ទាត់​ដើម្បី​គូរ។"
#. JqNUv
-#: chart2/uiconfig/ui/tp_ChartType.ui:365
+#: chart2/uiconfig/ui/tp_ChartType.ui:362
msgctxt "tp_ChartType|properties"
msgid "Properties..."
msgstr "លក្ខណសម្បត្តិ..."
#. EnymX
-#: chart2/uiconfig/ui/tp_ChartType.ui:371
+#: chart2/uiconfig/ui/tp_ChartType.ui:368
msgctxt "tp_ChartType|extended_tip|properties"
msgid "Opens a dialog to set the line or curve properties."
msgstr "បើក​ប្រអប់​បញ្ចូល​ដើម្បី​កំណត់​លក្ខណសម្បត្តិ​របស់​បន្ទាត់ ឬ​ខ្សែ​កោង។"
#. KzGZQ
-#: chart2/uiconfig/ui/tp_ChartType.ui:388
+#: chart2/uiconfig/ui/tp_ChartType.ui:385
msgctxt "tp_ChartType|sort"
msgid "_Sort by X values"
msgstr "តម្រៀប​តាម​តម្លៃ X"
#. tbgi3
-#: chart2/uiconfig/ui/tp_ChartType.ui:395
+#: chart2/uiconfig/ui/tp_ChartType.ui:392
msgctxt "tp_ChartType|extended_tip|sort"
msgid "Connects points by ascending X values, even if the order of values is different, in an XY scatter diagram."
msgstr "តភ្ជាប់​ចំណុច​ដោយ​ដំឡើងតម្លៃ X ទោះបី​ជា​តម្លៃ​ខុសគ្នា​ក៏​ដោយ នៅ​ក្នុង​ដ្យាក្រាមពង្រាយ XY ។"
#. CmGat
-#: chart2/uiconfig/ui/tp_ChartType.ui:414
+#: chart2/uiconfig/ui/tp_ChartType.ui:411
msgctxt "tp_ChartType|nolinesft"
msgid "_Number of lines"
msgstr "ចំនួន​បន្ទាត់"
#. bBgDJ
-#: chart2/uiconfig/ui/tp_ChartType.ui:434
+#: chart2/uiconfig/ui/tp_ChartType.ui:431
msgctxt "tp_ChartType|extended_tip|nolines"
msgid "Set the number of lines for the Column and Line chart type."
msgstr "កំណត់​ចំនួន​បន្ទាត់​សម្រាប់​ប្រភេទ​គំនូស​តាង​បន្ទាត់ និង​ជួរឈរ ។"
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:499
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr "ជ្រើស​ប្រភេទ​គំនូស​តាង​មូលដ្ឋាន ។"
@@ -5169,105 +5169,105 @@ msgid "Trend line is extrapolated for lower x-values."
msgstr ""
#. BGkFJ
-#: chart2/uiconfig/ui/tp_Trendline.ui:477
+#: chart2/uiconfig/ui/tp_Trendline.ui:476
msgctxt "tp_Trendline|setIntercept"
msgid "Force _Intercept"
msgstr "បង្ខំ​ទប់ស្កាត់"
#. ZJUti
-#: chart2/uiconfig/ui/tp_Trendline.ui:488
+#: chart2/uiconfig/ui/tp_Trendline.ui:487
msgctxt "tp_Trendline|extended_tip|setIntercept"
msgid "For linear, polynomial and exponential trend lines, intercept value is forced to a given value."
msgstr ""
#. CSHNm
-#: chart2/uiconfig/ui/tp_Trendline.ui:499
+#: chart2/uiconfig/ui/tp_Trendline.ui:498
#, fuzzy
msgctxt "tp_Trendline|showEquation"
msgid "Show E_quation"
msgstr "បង្ហាញ​សមីការ"
#. nXrm7
-#: chart2/uiconfig/ui/tp_Trendline.ui:507
+#: chart2/uiconfig/ui/tp_Trendline.ui:506
msgctxt "tp_Trendline|extended_tip|showEquation"
msgid "Shows the trend line equation next to the trend line."
msgstr "បង្ហាញ​​សមីការ​បន្ទាត់​តំរែតំរង់​ជាប់​នឹង​បន្ទាត់​តំរែតំរង់ ។"
#. cA58s
-#: chart2/uiconfig/ui/tp_Trendline.ui:519
+#: chart2/uiconfig/ui/tp_Trendline.ui:518
msgctxt "tp_Trendline|showCorrelationCoefficient"
msgid "Show _Coefficient of Determination (R²)"
msgstr "បង្ហាញ Coefficient of Determination (R²)"
#. CCyCH
-#: chart2/uiconfig/ui/tp_Trendline.ui:527
+#: chart2/uiconfig/ui/tp_Trendline.ui:526
msgctxt "tp_Trendline|extended_tip|showCorrelationCoefficient"
msgid "Shows the coefficient of determination next to the trend line."
msgstr "បង្ហាញ​មេគុណ​នៅជាប់នឹង​បន្ទាត់ទេរ ។"
#. 2S6og
-#: chart2/uiconfig/ui/tp_Trendline.ui:541
+#: chart2/uiconfig/ui/tp_Trendline.ui:540
#, fuzzy
msgctxt "tp_Trendline|label5"
msgid "Trendline _Name"
msgstr "ឈ្មោះ​បន្ទាត់​ទេរ"
#. GasKo
-#: chart2/uiconfig/ui/tp_Trendline.ui:547
+#: chart2/uiconfig/ui/tp_Trendline.ui:546
msgctxt "tp_Trendline|extended_tip|label5"
msgid "Name of trend line in legend."
msgstr ""
#. FBT3Y
-#: chart2/uiconfig/ui/tp_Trendline.ui:564
+#: chart2/uiconfig/ui/tp_Trendline.ui:563
msgctxt "tp_Trendline|extended_tip|entry_name"
msgid "Name of trend line in legend."
msgstr ""
#. C4C6e
-#: chart2/uiconfig/ui/tp_Trendline.ui:588
+#: chart2/uiconfig/ui/tp_Trendline.ui:586
msgctxt "tp_Trendline|extended_tip|interceptValue"
msgid "Value of intercept if it is forced."
msgstr ""
#. GEKL2
-#: chart2/uiconfig/ui/tp_Trendline.ui:601
+#: chart2/uiconfig/ui/tp_Trendline.ui:599
msgctxt "tp_Trendline|label6"
msgid "_X Variable Name"
msgstr ""
#. 99kQL
-#: chart2/uiconfig/ui/tp_Trendline.ui:607
+#: chart2/uiconfig/ui/tp_Trendline.ui:605
msgctxt "tp_Trendline|extended_tip|label6"
msgid "Name of X variable in trend line equation."
msgstr ""
#. Fz8b3
-#: chart2/uiconfig/ui/tp_Trendline.ui:624
+#: chart2/uiconfig/ui/tp_Trendline.ui:622
msgctxt "tp_Trendline|extended_tip|entry_Xname"
msgid "Name of X variable in trend line equation."
msgstr ""
#. GDQuF
-#: chart2/uiconfig/ui/tp_Trendline.ui:637
+#: chart2/uiconfig/ui/tp_Trendline.ui:635
msgctxt "tp_Trendline|label9"
msgid "_Y Variable Name"
msgstr ""
#. 2PBW3
-#: chart2/uiconfig/ui/tp_Trendline.ui:643
+#: chart2/uiconfig/ui/tp_Trendline.ui:641
msgctxt "tp_Trendline|extended_tip|label9"
msgid "Name of Y variable in trend line equation."
msgstr ""
#. WHNXu
-#: chart2/uiconfig/ui/tp_Trendline.ui:660
+#: chart2/uiconfig/ui/tp_Trendline.ui:658
msgctxt "tp_Trendline|extended_tip|entry_Yname"
msgid "Name of Y variable in trend line equation."
msgstr ""
#. 9WeUe
-#: chart2/uiconfig/ui/tp_Trendline.ui:681
+#: chart2/uiconfig/ui/tp_Trendline.ui:679
msgctxt "tp_Trendline|label2"
msgid "Options"
msgstr "ជម្រើស"
diff --git a/source/km/cui/messages.po b/source/km/cui/messages.po
index b151757544d..0ecd829baed 100644
--- a/source/km/cui/messages.po
+++ b/source/km/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-01-31 18:18+0100\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -453,854 +453,848 @@ msgctxt "RID_SVXSTR_HYPDLG_MACROACT3"
msgid "Mouse leaves object"
msgstr "កណ្តុរ​ចាក​ចេញ​ពី​វត្ថុ"
-#. E8XCn
-#: cui/inc/strings.hrc:79
-msgctxt "RID_SVXSTR_HYPDLG_NOVALIDFILENAME"
-msgid "Please type in a valid file name."
-msgstr "សូម​បញ្ចូល​ឈ្មោះ​ឯកសារ​ត្រឹម​ត្រូវ ។"
-
#. ES4Pj
-#: cui/inc/strings.hrc:80
+#: cui/inc/strings.hrc:79
msgctxt "RID_SVXSTR_HYPERDLG_FORM_BUTTON"
msgid "Button"
msgstr "ប៊ូតុង"
#. MPHHF
-#: cui/inc/strings.hrc:81
+#: cui/inc/strings.hrc:80
msgctxt "RID_SVXSTR_HYPERDLG_FROM_TEXT"
msgid "Text"
msgstr "អត្ថបទ"
#. 9nkb2
-#: cui/inc/strings.hrc:82
+#: cui/inc/strings.hrc:81
msgctxt "RID_SVXSTR_HYPERDLG_QUERYOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "ឯកសារ​នេះ​មាន​រួច​ហើយ ។ សរសេរ​ជាន់​លើ​ឬ​ ?"
#. smWax
-#: cui/inc/strings.hrc:84
+#: cui/inc/strings.hrc:83
msgctxt "RID_SVXSTR_SELECT_FILE_IFRAME"
msgid "Select File for Floating Frame"
msgstr "ជ្រើស​ឯកសារ​សម្រាប់​ស៊ុម​អណ្តែត"
#. F74rR
-#: cui/inc/strings.hrc:85
+#: cui/inc/strings.hrc:84
#, fuzzy
msgctxt "RID_SVXSTR_ALLFUNCTIONS"
msgid "All commands"
msgstr "បន្ថែម​ពាក្យ​បញ្ជា"
#. EeB6i
-#: cui/inc/strings.hrc:86
+#: cui/inc/strings.hrc:85
msgctxt "RID_SVXSTR_MACROS"
msgid "Macros"
msgstr "ម៉ាក្រូ"
#. mkEjQ
-#: cui/inc/strings.hrc:87
+#: cui/inc/strings.hrc:86
msgctxt "RID_SVXSTR_MYMACROS"
msgid "My Macros"
msgstr "ម៉ាក្រូ​របស់​ខ្ញុំ"
-#. Cv5m8
-#: cui/inc/strings.hrc:88
+#. nn7Gm
+#: cui/inc/strings.hrc:87
msgctxt "RID_SVXSTR_PRODMACROS"
-msgid "%PRODUCTNAME Macros"
-msgstr "ម៉ាក្រូ​របស់​ %PRODUCTNAME"
+msgid "Application Macros"
+msgstr ""
#. RGCGW
-#: cui/inc/strings.hrc:89
+#: cui/inc/strings.hrc:88
msgctxt "RID_SVXSTR_NOMACRODESC"
msgid "There is no description available for this macro."
msgstr ""
#. AFniE
-#: cui/inc/strings.hrc:90
+#: cui/inc/strings.hrc:89
msgctxt "RID_SVXSTR_SELECTOR_RUN"
msgid "Run"
msgstr "ដំណើរការ"
#. whwAN
-#: cui/inc/strings.hrc:91
+#: cui/inc/strings.hrc:90
msgctxt "RID_SVXSTR_ROW"
msgid "Insert Rows"
msgstr "បញ្ចូល​ជួរដេក"
#. Su38S
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:93
+#: cui/inc/strings.hrc:92
msgctxt "RID_SVXSTR_INSERTROW_BEFORE"
msgid "Above selection"
msgstr ""
#. oBHui
-#: cui/inc/strings.hrc:94
+#: cui/inc/strings.hrc:93
msgctxt "RID_SVXSTR_INSERTROW_AFTER"
msgid "Below selection"
msgstr ""
#. c8nou
-#: cui/inc/strings.hrc:95
+#: cui/inc/strings.hrc:94
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: cui/inc/strings.hrc:96
+#: cui/inc/strings.hrc:95
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: cui/inc/strings.hrc:97
+#: cui/inc/strings.hrc:96
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
#. AvBBC
#. PPI is pixel per inch, %1 is a number
-#: cui/inc/strings.hrc:99
+#: cui/inc/strings.hrc:98
msgctxt "RID_SVXSTR_PPI"
msgid "(%1 PPI)"
msgstr "(%1 PPI)"
#. thimC
-#: cui/inc/strings.hrc:100
+#: cui/inc/strings.hrc:99
msgctxt "RID_SVXSTR_COL"
msgid "Insert Columns"
msgstr "បញ្ចូល​ជួរឈរ"
#. AgqiD
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:102
+#: cui/inc/strings.hrc:101
msgctxt "RID_SVXSTR_INSERTCOL_BEFORE"
msgid "Before selection"
msgstr ""
#. nXnb3
-#: cui/inc/strings.hrc:103
+#: cui/inc/strings.hrc:102
msgctxt "RID_SVXSTR_INSERTCOL_AFTER"
msgid "After selection"
msgstr ""
#. QrFJZ
-#: cui/inc/strings.hrc:104
+#: cui/inc/strings.hrc:103
msgctxt "RID_SVXSTR_AUTO_ENTRY"
msgid "Automatic"
msgstr "ស្វ័យ​ប្រវត្តិ"
#. X9CWA
-#: cui/inc/strings.hrc:105
+#: cui/inc/strings.hrc:104
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr "តំណ"
#. QCgnw
-#: cui/inc/strings.hrc:106
+#: cui/inc/strings.hrc:105
msgctxt "RID_SVXSTR_LOADACCELCONFIG"
msgid "Load Keyboard Configuration"
msgstr "ផ្ទុក​ការ​កំណត់​រចនាសម្ព័ន្ធ​ក្ដារចុច"
#. eWQoY
-#: cui/inc/strings.hrc:107
+#: cui/inc/strings.hrc:106
msgctxt "RID_SVXSTR_SAVEACCELCONFIG"
msgid "Save Keyboard Configuration"
msgstr "រក្សាទុក​ការ​កំណត់​រចនាសម្ព័ន្ធ​ក្ដារចុច"
#. ggFZE
-#: cui/inc/strings.hrc:108
+#: cui/inc/strings.hrc:107
msgctxt "RID_SVXSTR_FILTERNAME_CFG"
msgid "Configuration (*.cfg)"
msgstr "ការ​កំណត់​រចនាសម្ព័ន្ធ (*.cfg)"
#. DigQB
-#: cui/inc/strings.hrc:109
+#: cui/inc/strings.hrc:108
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
msgid "Targets do not exist in the document."
msgstr "គោល​ដៅ​មិន​មាន​នៅ​ក្នុង​ឯកសារ​ទេ ។"
#. pCbRV
-#: cui/inc/strings.hrc:110
+#: cui/inc/strings.hrc:109
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
msgid "Couldn't open the document."
msgstr "មិន​អាច​បើក​ឯកសារ​បាន​ទេ ។"
#. zAUfq
-#: cui/inc/strings.hrc:111
+#: cui/inc/strings.hrc:110
msgctxt "RID_SVXSTR_EDITHINT"
msgid "[Enter text here]"
msgstr "[បញ្ចូល​អត្ថបទ​នៅ​ទីនេះ]"
#. ResDx
-#: cui/inc/strings.hrc:112
+#: cui/inc/strings.hrc:111
msgctxt "RID_SVXSTR_HANGUL"
msgid "Hangul"
msgstr "ហាន់ហ្គុល"
#. 3t3AC
-#: cui/inc/strings.hrc:113
+#: cui/inc/strings.hrc:112
msgctxt "RID_SVXSTR_HANJA"
msgid "Hanja"
msgstr "ហាន់ចា"
#. 88dts
-#: cui/inc/strings.hrc:114
+#: cui/inc/strings.hrc:113
#, fuzzy
msgctxt "RID_SVXSTR_BASICMACROS"
msgid "BASIC Macros"
msgstr "ម៉ាក្រូមូលដ្ឋាន"
#. XKYHn
-#: cui/inc/strings.hrc:115
+#: cui/inc/strings.hrc:114
msgctxt "RID_SVXSTR_GROUP_STYLES"
msgid "Styles"
msgstr "រចនាប័ទ្ម"
#. 3Qq2E
-#: cui/inc/strings.hrc:116
+#: cui/inc/strings.hrc:115
msgctxt "RID_SVXSTR_GROUP_SIDEBARDECKS"
msgid "Sidebar Decks"
msgstr ""
#. hFEBv
-#: cui/inc/strings.hrc:118
+#: cui/inc/strings.hrc:117
msgctxt "RID_SVXSTR_EVENT_STARTAPP"
msgid "Start Application"
msgstr "ចាប់​ផ្តើម​កម្មវិធី"
#. 6tUvx
-#: cui/inc/strings.hrc:119
+#: cui/inc/strings.hrc:118
msgctxt "RID_SVXSTR_EVENT_CLOSEAPP"
msgid "Close Application"
msgstr "បិទ​កម្មវិធី"
#. 6NsQz
-#: cui/inc/strings.hrc:120
+#: cui/inc/strings.hrc:119
msgctxt "RID_SVXSTR_EVENT_NEWDOC"
msgid "New Document"
msgstr "ឯកសារ​ថ្មី"
#. G6b2e
-#: cui/inc/strings.hrc:121
+#: cui/inc/strings.hrc:120
msgctxt "RID_SVXSTR_EVENT_CLOSEDOC"
msgid "Document closed"
msgstr "បានបិទ​ឯកសារ"
#. yvsTa
-#: cui/inc/strings.hrc:122
+#: cui/inc/strings.hrc:121
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEDOC"
msgid "Document is going to be closed"
msgstr "ឯកសារ​នឹង​ត្រូវបិទ"
#. DKpfj
-#: cui/inc/strings.hrc:123
+#: cui/inc/strings.hrc:122
msgctxt "RID_SVXSTR_EVENT_OPENDOC"
msgid "Open Document"
msgstr "បើក​ឯកសារ"
#. DTDDm
-#: cui/inc/strings.hrc:124
+#: cui/inc/strings.hrc:123
msgctxt "RID_SVXSTR_EVENT_SAVEDOC"
msgid "Save Document"
msgstr "រក្សា​ទុក​ឯកសារ"
#. Trc82
-#: cui/inc/strings.hrc:125
+#: cui/inc/strings.hrc:124
msgctxt "RID_SVXSTR_EVENT_SAVEASDOC"
msgid "Save Document As"
msgstr "រក្សា​ទុក​ឯកសារ​ជា"
#. GCbZt
-#: cui/inc/strings.hrc:126
+#: cui/inc/strings.hrc:125
msgctxt "RID_SVXSTR_EVENT_SAVEDOCDONE"
msgid "Document has been saved"
msgstr "បានរក្សា​ទុក​ឯកសារ"
#. mYtMa
-#: cui/inc/strings.hrc:127
+#: cui/inc/strings.hrc:126
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCDONE"
msgid "Document has been saved as"
msgstr "បានរក្សា​ទុក​ឯកសារ​ជា"
#. t8F8W
-#: cui/inc/strings.hrc:128
+#: cui/inc/strings.hrc:127
msgctxt "RID_SVXSTR_EVENT_ACTIVATEDOC"
msgid "Activate Document"
msgstr "ធ្វើ​ឲ្យ​ឯកសារ​សកម្ម"
#. T7QE3
-#: cui/inc/strings.hrc:129
+#: cui/inc/strings.hrc:128
msgctxt "RID_SVXSTR_EVENT_DEACTIVATEDOC"
msgid "Deactivate Document"
msgstr "ធ្វើ​ឲ្យ​ឯកសារ​អសកម្ម"
#. AQXyC
-#: cui/inc/strings.hrc:130
+#: cui/inc/strings.hrc:129
msgctxt "RID_SVXSTR_EVENT_PRINTDOC"
msgid "Print Document"
msgstr "បោះ​ពុម្ព​ឯកសារ​"
#. 8uXuz
-#: cui/inc/strings.hrc:131
+#: cui/inc/strings.hrc:130
msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
msgid "'Modified' status was changed"
msgstr "បានផ្លាស់​ប្តូរស្ថានភាព​ 'ដែល​បាន​កែប្រែ'"
#. 5CKDG
-#: cui/inc/strings.hrc:132
+#: cui/inc/strings.hrc:131
msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
msgid "Printing of form letters started"
msgstr "ការបោះ​ពុម្ព​លិខិត​សំណុំ​បែបបទ​បាន​ចាប់​ផ្តើម"
#. AZ2io
-#: cui/inc/strings.hrc:133
+#: cui/inc/strings.hrc:132
msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END"
msgid "Printing of form letters finished"
msgstr "ការបោះ​ពុម្ព​លិខិត​សំណុំ​បែបបទ​បាន​បញ្ចប់"
#. dHtbz
-#: cui/inc/strings.hrc:134
+#: cui/inc/strings.hrc:133
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE"
msgid "Merging of form fields started"
msgstr "ការបញ្ចូល​វាល​សំណុំ​បែប​បទ​ចូល​គ្នា​បាន​បាន​ចាប់​ផ្តើម"
#. uGCdD
-#: cui/inc/strings.hrc:135
+#: cui/inc/strings.hrc:134
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED"
msgid "Merging of form fields finished"
msgstr "ការ​បញ្ចូល​វាល​សំណុំ​បែប​បទ​ចូល​គ្នា​បាន​បញ្ចប់"
#. srLLa
-#: cui/inc/strings.hrc:136
+#: cui/inc/strings.hrc:135
msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE"
msgid "Changing the page count"
msgstr "ការ​ផ្លាស់​ប្តូរ​ចំនួន​ទំព័រ"
#. AsuQF
-#: cui/inc/strings.hrc:137
+#: cui/inc/strings.hrc:136
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED"
msgid "Loaded a sub component"
msgstr "បាន​ផ្ទុក​សមាសភាគ​រង"
#. Gf22f
-#: cui/inc/strings.hrc:138
+#: cui/inc/strings.hrc:137
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED"
msgid "Closed a sub component"
msgstr "បាន​បិទ​សមាសភាគ​រង"
#. QayEb
-#: cui/inc/strings.hrc:139
+#: cui/inc/strings.hrc:138
msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER"
msgid "Fill parameters"
msgstr "បំពេញ​ប៉ារ៉ាម៉ែត្រ"
#. mL59X
-#: cui/inc/strings.hrc:140
+#: cui/inc/strings.hrc:139
msgctxt "RID_SVXSTR_EVENT_ACTIONPERFORMED"
msgid "Execute action"
msgstr "ប្រតិបត្តិ​សកម្មភាព"
#. KtHBE
-#: cui/inc/strings.hrc:141
+#: cui/inc/strings.hrc:140
msgctxt "RID_SVXSTR_EVENT_AFTERUPDATE"
msgid "After updating"
msgstr "ក្រោយ​ពី​បាន​ធ្វើ​បច្ចុប្បន្នភាពភាព"
#. b6CCj
-#: cui/inc/strings.hrc:142
+#: cui/inc/strings.hrc:141
msgctxt "RID_SVXSTR_EVENT_BEFOREUPDATE"
msgid "Before updating"
msgstr "មុន​ពេល​ធ្វើ​បច្ចុប្បន្នភាព"
#. KTBcp
-#: cui/inc/strings.hrc:143
+#: cui/inc/strings.hrc:142
msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE"
msgid "Before record action"
msgstr "មុន​ពេល​កត់ត្រា​សកម្មភាព"
#. Fhyio
-#: cui/inc/strings.hrc:144
+#: cui/inc/strings.hrc:143
msgctxt "RID_SVXSTR_EVENT_ROWCHANGE"
msgid "After record action"
msgstr "ក្រោយ​ពី​បាន​កត់ត្រា​សកម្មភាព"
#. PmJgM
-#: cui/inc/strings.hrc:145
+#: cui/inc/strings.hrc:144
msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE"
msgid "Confirm deletion"
msgstr "បញ្ជាក់​ការលុប"
#. gcREA
-#: cui/inc/strings.hrc:146
+#: cui/inc/strings.hrc:145
msgctxt "RID_SVXSTR_EVENT_ERROROCCURRED"
msgid "Error occurred"
msgstr "កំហុស​បាន​កើត​ឡើង"
#. oAwDt
-#: cui/inc/strings.hrc:147
+#: cui/inc/strings.hrc:146
msgctxt "RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED"
msgid "While adjusting"
msgstr "ខណៈ​ពេល​កំពុង​លៃ​តម្រូវ"
#. AyfwP
-#: cui/inc/strings.hrc:148
+#: cui/inc/strings.hrc:147
msgctxt "RID_SVXSTR_EVENT_FOCUSGAINED"
msgid "When receiving focus"
msgstr "នៅ​ពេល​ទទួល​ការផ្តោត"
#. BD96B
-#: cui/inc/strings.hrc:149
+#: cui/inc/strings.hrc:148
msgctxt "RID_SVXSTR_EVENT_FOCUSLOST"
msgid "When losing focus"
msgstr "នៅ​ពេល​បាត់​ការផ្តោត"
#. wEhfE
-#: cui/inc/strings.hrc:150
+#: cui/inc/strings.hrc:149
msgctxt "RID_SVXSTR_EVENT_ITEMSTATECHANGED"
msgid "Item status changed"
msgstr "បាន​ផ្លាស់​ប្តូរ​ស្ថានភាព​ធាតុ"
#. FRW7b
-#: cui/inc/strings.hrc:151
+#: cui/inc/strings.hrc:150
msgctxt "RID_SVXSTR_EVENT_KEYTYPED"
msgid "Key pressed"
msgstr "បាន​ចុច​គ្រាប់​ចុច"
#. 4kZCD
-#: cui/inc/strings.hrc:152
+#: cui/inc/strings.hrc:151
msgctxt "RID_SVXSTR_EVENT_KEYUP"
msgid "Key released"
msgstr "បាន​លែងគ្រាប់ចុច"
#. ZiS2D
-#: cui/inc/strings.hrc:153
+#: cui/inc/strings.hrc:152
msgctxt "RID_SVXSTR_EVENT_LOADED"
msgid "When loading"
msgstr "នៅ​ពេល​កំពុង​ផ្ទុក"
#. vEjAG
-#: cui/inc/strings.hrc:154
+#: cui/inc/strings.hrc:153
msgctxt "RID_SVXSTR_EVENT_RELOADING"
msgid "Before reloading"
msgstr "មុន​ពេល​ផ្ទុក​ឡើង​វិញ"
#. 5FvrE
-#: cui/inc/strings.hrc:155
+#: cui/inc/strings.hrc:154
msgctxt "RID_SVXSTR_EVENT_RELOADED"
msgid "When reloading"
msgstr "នៅ​ពេលកំពុង​ផ្ទុក​ឡើងវិញ"
#. CDcYt
-#: cui/inc/strings.hrc:156
+#: cui/inc/strings.hrc:155
msgctxt "RID_SVXSTR_EVENT_MOUSEDRAGGED"
msgid "Mouse moved while key pressed"
msgstr "កណ្តុរ​បាន​ផ្លាស់​ទី​ នៅ​ខណៈ​ពេល​ដែល​បាន​ចុច​គ្រាប់ចុច"
#. CPpyk
-#: cui/inc/strings.hrc:157
+#: cui/inc/strings.hrc:156
msgctxt "RID_SVXSTR_EVENT_MOUSEENTERED"
msgid "Mouse inside"
msgstr "កណ្តុរ​នៅខាង​ក្នុង"
#. 4hGfp
-#: cui/inc/strings.hrc:158
+#: cui/inc/strings.hrc:157
msgctxt "RID_SVXSTR_EVENT_MOUSEEXITED"
msgid "Mouse outside"
msgstr "កណ្តុរ​នៅ​ខាង​ក្រៅ"
#. QEuWr
-#: cui/inc/strings.hrc:159
+#: cui/inc/strings.hrc:158
msgctxt "RID_SVXSTR_EVENT_MOUSEMOVED"
msgid "Mouse moved"
msgstr "កណ្តុរ​បាន​ផ្លាស់​ទី"
#. 8YA3S
-#: cui/inc/strings.hrc:160
+#: cui/inc/strings.hrc:159
msgctxt "RID_SVXSTR_EVENT_MOUSEPRESSED"
msgid "Mouse button pressed"
msgstr "បានចុច​ប៊ូតុង​កណ្តុរ"
#. RMuJe
-#: cui/inc/strings.hrc:161
+#: cui/inc/strings.hrc:160
msgctxt "RID_SVXSTR_EVENT_MOUSERELEASED"
msgid "Mouse button released"
msgstr "បាន​លែង​ប៊ូតុងកណ្តុរ"
#. 5iPHQ
-#: cui/inc/strings.hrc:162
+#: cui/inc/strings.hrc:161
msgctxt "RID_SVXSTR_EVENT_POSITIONING"
msgid "Before record change"
msgstr "មុន​ពេល​កត់​ត្រា​ការផ្លាស់​ប្តូរ"
#. yrBiz
-#: cui/inc/strings.hrc:163
+#: cui/inc/strings.hrc:162
msgctxt "RID_SVXSTR_EVENT_POSITIONED"
msgid "After record change"
msgstr "ក្រោយ​ពី​បាន​កត់​ត្រា​ការផ្លាស់​ប្តូរ"
#. bdBH4
-#: cui/inc/strings.hrc:164
+#: cui/inc/strings.hrc:163
msgctxt "RID_SVXSTR_EVENT_RESETTED"
msgid "After resetting"
msgstr "ក្រោយ​ពី​បាន​កំណត់​ឡើងវិញ"
#. eVsFk
-#: cui/inc/strings.hrc:165
+#: cui/inc/strings.hrc:164
msgctxt "RID_SVXSTR_EVENT_APPROVERESETTED"
msgid "Prior to reset"
msgstr "មុន​នឹង​កំណត់​ឡើងវិញ"
#. 2oAoV
-#: cui/inc/strings.hrc:166
+#: cui/inc/strings.hrc:165
msgctxt "RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED"
msgid "Approve action"
msgstr "អនុម័តសកម្មភាព​"
#. hQAzK
-#: cui/inc/strings.hrc:167
+#: cui/inc/strings.hrc:166
msgctxt "RID_SVXSTR_EVENT_SUBMITTED"
msgid "Before submitting"
msgstr "មុន​ពេល​ដាក់​ស្នើ"
#. CFPSo
-#: cui/inc/strings.hrc:168
+#: cui/inc/strings.hrc:167
msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
msgid "Text modified"
msgstr "បាន​កែប្រែ​អត្ថបទ"
#. 2ADMH
-#: cui/inc/strings.hrc:169
+#: cui/inc/strings.hrc:168
msgctxt "RID_SVXSTR_EVENT_UNLOADING"
msgid "Before unloading"
msgstr "មុន​ពេល​បញ្ឈប់​ការ​ផ្ទុក"
#. F8BL3
-#: cui/inc/strings.hrc:170
+#: cui/inc/strings.hrc:169
msgctxt "RID_SVXSTR_EVENT_UNLOADED"
msgid "When unloading"
msgstr "នៅ​ពេល​បញ្ឈប់​ការផ្ទុក"
#. M6fPe
-#: cui/inc/strings.hrc:171
+#: cui/inc/strings.hrc:170
msgctxt "RID_SVXSTR_EVENT_CHANGED"
msgid "Changed"
msgstr "បាន​ផ្លាស់​ប្តូរ"
#. gZyVB
-#: cui/inc/strings.hrc:172
+#: cui/inc/strings.hrc:171
msgctxt "RID_SVXSTR_EVENT_CREATEDOC"
msgid "Document created"
msgstr "បាន​បង្កើត​ឯកសារ"
#. BcPDW
-#: cui/inc/strings.hrc:173
+#: cui/inc/strings.hrc:172
msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED"
msgid "Document loading finished"
msgstr "បាន​បញ្ចប់​ការ​ផ្ទុក​ឯកសារ"
#. ir7AQ
-#: cui/inc/strings.hrc:174
+#: cui/inc/strings.hrc:173
msgctxt "RID_SVXSTR_EVENT_SAVEDOCFAILED"
msgid "Saving of document failed"
msgstr "បាន​បរាជ័យ​នៅ​ក្នុង​ការផ្ទុក​ឯកសារ"
#. BFtTF
-#: cui/inc/strings.hrc:175
+#: cui/inc/strings.hrc:174
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCFAILED"
msgid "'Save as' has failed"
msgstr "បាន​បរាជ័យ​ក្នុង​ការ 'រក្សា​ទុក​ជា' "
#. N9e6u
-#: cui/inc/strings.hrc:176
+#: cui/inc/strings.hrc:175
msgctxt "RID_SVXSTR_EVENT_COPYTODOC"
msgid "Storing or exporting copy of document"
msgstr "ការរក្សា​ទុក​ ឬ​ការនាំចេញ​ច្បាប់​ចម្លង​ឯកសារ"
#. okb9H
-#: cui/inc/strings.hrc:177
+#: cui/inc/strings.hrc:176
msgctxt "RID_SVXSTR_EVENT_COPYTODOCDONE"
msgid "Document copy has been created"
msgstr "បាន​បង្កើត​ច្បាប់​ចម្លង​ឯកសារ"
#. DrYTY
-#: cui/inc/strings.hrc:178
+#: cui/inc/strings.hrc:177
msgctxt "RID_SVXSTR_EVENT_COPYTODOCFAILED"
msgid "Creating of document copy failed"
msgstr "បាន​បរាជ័យ​ក្នុង​ការ​បង្កើត​ច្បាប់​ចម្លង​ឯកសារ"
#. BBJJQ
-#: cui/inc/strings.hrc:179
+#: cui/inc/strings.hrc:178
msgctxt "RID_SVXSTR_EVENT_VIEWCREATED"
msgid "View created"
msgstr "បាន​បង្កើត​ទិដ្ឋភាព"
#. XN9Az
-#: cui/inc/strings.hrc:180
+#: cui/inc/strings.hrc:179
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW"
msgid "View is going to be closed"
msgstr "ទិដ្ឋភាព​នឹង​ត្រូវ​បិទ"
#. a9qty
-#: cui/inc/strings.hrc:181
+#: cui/inc/strings.hrc:180
msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW"
msgid "View closed"
msgstr "បាន​បិទ​ទិដ្ឋភាព"
#. dDunN
-#: cui/inc/strings.hrc:182
+#: cui/inc/strings.hrc:181
msgctxt "RID_SVXSTR_EVENT_TITLECHANGED"
msgid "Document title changed"
msgstr "បាន​ផ្លាស់​ប្តូរ​ចំណង​ជើង​ឯកសារ"
#. 6D6BS
-#: cui/inc/strings.hrc:183
+#: cui/inc/strings.hrc:182
msgctxt "RID_SVXSTR_EVENT_SELECTIONCHANGED"
msgid "Selection changed"
msgstr "បាន​ផ្លាស់​ប្តូរ​ជម្រើស"
#. XArW3
-#: cui/inc/strings.hrc:184
+#: cui/inc/strings.hrc:183
msgctxt "RID_SVXSTR_EVENT_DOUBLECLICK"
msgid "Double click"
msgstr "ចុច​ទ្វេដង"
#. oDkyz
-#: cui/inc/strings.hrc:185
+#: cui/inc/strings.hrc:184
msgctxt "RID_SVXSTR_EVENT_RIGHTCLICK"
msgid "Right click"
msgstr "ចុច​កណ្តុរ​ស្តាំ"
#. tVSz9
-#: cui/inc/strings.hrc:186
+#: cui/inc/strings.hrc:185
msgctxt "RID_SVXSTR_EVENT_CALCULATE"
msgid "Formulas calculated"
msgstr "បានគណនារូបមន្ត"
#. ESxTQ
-#: cui/inc/strings.hrc:187
+#: cui/inc/strings.hrc:186
msgctxt "RID_SVXSTR_EVENT_CONTENTCHANGED"
msgid "Content changed"
msgstr "បាន​ផ្លាស់​ប្តូរ​មាតិកា"
#. Zimeo
-#: cui/inc/strings.hrc:189
+#: cui/inc/strings.hrc:188
msgctxt "RID_STR_SEARCH_ANYWHERE"
msgid "anywhere in the field"
msgstr "កន្លែង​ណា​មួយ​នៅ​ក្នុង​វាល"
#. qCKMY
-#: cui/inc/strings.hrc:190
+#: cui/inc/strings.hrc:189
msgctxt "RID_STR_SEARCH_BEGINNING"
msgid "beginning of field"
msgstr "ដើម​វាល"
#. CKVTF
-#: cui/inc/strings.hrc:191
+#: cui/inc/strings.hrc:190
msgctxt "RID_STR_SEARCH_END"
msgid "end of field"
msgstr "ចុង​វាល"
#. FZwxu
-#: cui/inc/strings.hrc:192
+#: cui/inc/strings.hrc:191
msgctxt "RID_STR_SEARCH_WHOLE"
msgid "entire field"
msgstr "វាល​ទាំង​មូល"
#. AFUFs
-#: cui/inc/strings.hrc:193
+#: cui/inc/strings.hrc:192
msgctxt "RID_STR_FROM_TOP"
msgid "From top"
msgstr "ពី​ផ្នែក​ខាង​លើ"
#. FBDbX
-#: cui/inc/strings.hrc:194
+#: cui/inc/strings.hrc:193
msgctxt "RID_STR_FROM_BOTTOM"
msgid "From bottom"
msgstr "ពី​ផ្នែក​ខាង​ក្រោម"
#. brdgV
-#: cui/inc/strings.hrc:195
+#: cui/inc/strings.hrc:194
msgctxt "RID_STR_SEARCH_NORECORD"
msgid "No records corresponding to your data found."
msgstr "រក​មិន​ឃើញ​កំណត់​ត្រា​ដែល​ទាក់ទង​នឹង​ទិន្នន័យ​របស់​អ្នក​ទេ ។"
#. VkTjA
-#: cui/inc/strings.hrc:196
+#: cui/inc/strings.hrc:195
msgctxt "RID_STR_SEARCH_GENERAL_ERROR"
msgid "An unknown error occurred. The search could not be finished."
msgstr "កំហុស​ដែល​មិន​ស្គាល់​បាន​កើត​ឡើង ។ មិន​អាច​បញ្ចប់​ការ​ស្វែង​រកបាន​ទេ ។"
#. jiQdw
-#: cui/inc/strings.hrc:197
+#: cui/inc/strings.hrc:196
msgctxt "RID_STR_OVERFLOW_FORWARD"
msgid "Overflow, search continued at the beginning"
msgstr "ហួស ស្វែងរក​ពីដើម​មកវិញ"
#. EzK3y
-#: cui/inc/strings.hrc:198
+#: cui/inc/strings.hrc:197
msgctxt "RID_STR_OVERFLOW_BACKWARD"
msgid "Overflow, search continued at the end"
msgstr "ហួស ស្វែង​រក​ពី​ខាងចុង​មក​វិញ"
#. zwiat
-#: cui/inc/strings.hrc:199
+#: cui/inc/strings.hrc:198
msgctxt "RID_STR_SEARCH_COUNTING"
msgid "counting records"
msgstr "រាប់​កំណត់​ត្រា"
#. 7cVWa
-#: cui/inc/strings.hrc:201
+#: cui/inc/strings.hrc:200
msgctxt "RID_SVXSTR_GALLERY_NOFILES"
msgid "<No Files>"
msgstr "<គ្មាន​ឯកសារ>"
#. AnJUu
-#: cui/inc/strings.hrc:202
+#: cui/inc/strings.hrc:201
msgctxt "RID_SVXSTR_GALLERYPROPS_OBJECT"
msgid "Object;Objects"
msgstr "វត្ថុ វត្ថុ"
#. GQXSM
-#: cui/inc/strings.hrc:203
+#: cui/inc/strings.hrc:202
msgctxt "RID_SVXSTR_GALLERY_READONLY"
msgid "(read-only)"
msgstr "(អាន​តែ​)ណ្ណោះ)"
#. sAwgA
-#: cui/inc/strings.hrc:204
+#: cui/inc/strings.hrc:203
msgctxt "RID_SVXSTR_GALLERY_ALLFILES"
msgid "<All Files>"
msgstr "<ឯកសារ​ទាំង​អស់​>"
#. YkCky
-#: cui/inc/strings.hrc:205
+#: cui/inc/strings.hrc:204
msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
msgid "This ID already exists..."
msgstr "លេខ​សម្គាល់​នេះ​មាន​រួច​ហើយ​..."
#. w3AUk
-#: cui/inc/strings.hrc:207
+#: cui/inc/strings.hrc:206
msgctxt "RID_MULTIPATH_DBL_ERR"
msgid "The path %1 already exists."
msgstr "មាន​ផ្លូវ​​ %1 ​រួច​​ហើយ ។"
#. 54BsS
-#: cui/inc/strings.hrc:208
+#: cui/inc/strings.hrc:207
msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
msgid "Select Archives"
msgstr "ជ្រើសប័ណ្ណសារ"
#. NDB5V
-#: cui/inc/strings.hrc:209
+#: cui/inc/strings.hrc:208
msgctxt "RID_SVXSTR_ARCHIVE_HEADLINE"
msgid "Archives"
msgstr "ប័ណ្ណសារ"
#. ffPAq
-#: cui/inc/strings.hrc:210
+#: cui/inc/strings.hrc:209
msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
msgid "The file %1 already exists."
msgstr "មាន​ឯកសារ​ %1 ​រួច​ហើយ ។"
#. 5FyxP
-#: cui/inc/strings.hrc:211
+#: cui/inc/strings.hrc:210
msgctxt "RID_SVXSTR_ADD_IMAGE"
msgid "Add Image"
msgstr ""
#. eUzGk
-#: cui/inc/strings.hrc:213
+#: cui/inc/strings.hrc:212
msgctxt "RID_SVXSTR_ONE_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr "ពាក្យ​សម្ងាត់​​បញ្ជាក់​មិន​ផ្គូផ្គង​នឹង​ពាក្យ​សម្ងាត់​នេះ​ទេ​ ។ កំណត់​ពាក្យ​សម្ងាត់​​ម្ដងទៀត​​ដោយ​បញ្ចូល​ពាក្យ​សម្ងាត់​តែ​មួយ​នៅ​ក្នុង​ប្រអប់​ទាំង​ពីរ ។"
#. mN9jE
-#: cui/inc/strings.hrc:214
+#: cui/inc/strings.hrc:213
msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
msgstr "ពាក្យ​សម្ងាត់​​បញ្ជាក់​មិន​ផ្គូផ្គង​នឹង​ពាក្យ​សម្ងាត់​ដើម​ទេ ។ កំណត់​ពាក្យ​សម្ងាត់​ម្ដងទៀត។"
#. 48ez3
-#: cui/inc/strings.hrc:215
+#: cui/inc/strings.hrc:214
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON"
msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
msgstr "សូម​បញ្ចូល​ពាក្យ​សម្ងាត់​ ដើម្បី​បើក​ ឬ​ដើម្បី​កែប្រែ​ ឬ​ពិនិត្យ​មើល​ជម្រើស​ បើក​បាន​តែ​អាន​ ដើម្បី​បន្ត ។"
#. aAbAN
-#: cui/inc/strings.hrc:216
+#: cui/inc/strings.hrc:215
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2"
msgid "Set the password by entering the same password in both boxes."
msgstr ""
#. ZXcFw
-#: cui/inc/strings.hrc:217
+#: cui/inc/strings.hrc:216
msgctxt "RID_SVXSTR_PASSWORD_LEN_INDICATOR"
msgid "Password length limit of %1 reached"
msgstr ""
#. Fko49
-#: cui/inc/strings.hrc:219
+#: cui/inc/strings.hrc:218
msgctxt "STR_AUTOLINK"
msgid "Automatic"
msgstr "ស្វ័យ​ប្រវត្តិ"
#. WYHFb
-#: cui/inc/strings.hrc:220
+#: cui/inc/strings.hrc:219
msgctxt "STR_MANUALLINK"
msgid "Manual"
msgstr "ដោយ​ដៃ"
#. PFN4j
-#: cui/inc/strings.hrc:221
+#: cui/inc/strings.hrc:220
msgctxt "STR_BROKENLINK"
msgid "Not available"
msgstr "មិន​អាច​ប្រើ​បាន"
#. 5ymS3
-#: cui/inc/strings.hrc:222
+#: cui/inc/strings.hrc:221
msgctxt "STR_CLOSELINKMSG"
msgid "Are you sure you want to remove the selected link?"
msgstr "តើ​អ្នក​ពិត​ជា​ចង់​យក​តំណ​ដែល​បាន​ជ្រើស​ចេញ​ឬ ?"
#. wyMwT
-#: cui/inc/strings.hrc:223
+#: cui/inc/strings.hrc:222
msgctxt "STR_CLOSELINKMSG_MULTI"
msgid "Are you sure you want to remove the selected link?"
msgstr "តើ​អ្នក​ពិត​ជា​ចង់​យក​តំណ​ដែល​បាន​ជ្រើស​ចេញ​ឬ ?"
#. CN74h
-#: cui/inc/strings.hrc:224
+#: cui/inc/strings.hrc:223
msgctxt "STR_WAITINGLINK"
msgid "Waiting"
msgstr "រង់​ចាំ"
#. QJKgF
-#: cui/inc/strings.hrc:226
+#: cui/inc/strings.hrc:225
msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
msgid "Save Screenshot As..."
msgstr ""
#. CAaFf
#. $(ROW) can be a number or the caption of the row in quotes
-#: cui/inc/strings.hrc:229
+#: cui/inc/strings.hrc:228
msgctxt "RID_SVXSTR_DIAGRAM_ROW"
msgid "Data Series $(ROW)"
msgstr "ស៊េរី​ទិន្នន័យ $(ROW)"
#. HzhXp
-#: cui/inc/strings.hrc:231
+#: cui/inc/strings.hrc:230
msgctxt "RID_SVXSTR_YES"
msgid "Yes"
msgstr "បាទ/ចាស"
#. RuQiB
-#: cui/inc/strings.hrc:232
+#: cui/inc/strings.hrc:231
msgctxt "RID_SVXSTR_NO"
msgid "No"
msgstr "ទេ"
#. irLeD
-#: cui/inc/strings.hrc:234
+#: cui/inc/strings.hrc:233
msgctxt "STR_LINKEDDOC_DOESNOTEXIST"
msgid ""
"The file\n"
@@ -1312,7 +1306,7 @@ msgstr ""
" ទេ ។"
#. iQYnX
-#: cui/inc/strings.hrc:235
+#: cui/inc/strings.hrc:234
msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
msgid ""
"The file\n"
@@ -1324,7 +1318,7 @@ msgstr ""
"​នៅ​ក្នុង​ប្រព័ន្ធ​ឯកសារ​មូលដ្ឋាន​ទេ ។"
#. 4PaJ2
-#: cui/inc/strings.hrc:236
+#: cui/inc/strings.hrc:235
msgctxt "STR_NAME_CONFLICT"
msgid ""
"The name '$file$' is already used for another database.\n"
@@ -1334,163 +1328,163 @@ msgstr ""
"សូម​ជ្រើស​ឈ្មោះ​ផ្សេង​ទៀត​ ។"
#. KFB7q
-#: cui/inc/strings.hrc:237
+#: cui/inc/strings.hrc:236
msgctxt "RID_SVXSTR_QUERY_DELETE_CONFIRM"
msgid "Do you want to delete the entry?"
msgstr "តើ​អ្នក​ចង់​លុប​ធាតុ​ឬ​?"
#. gg9gD
-#: cui/inc/strings.hrc:239
+#: cui/inc/strings.hrc:238
msgctxt "RID_SVXSTR_DELQUERY"
msgid "Do you want to delete the following object?"
msgstr "តើ​អ្នក​ចង់​លុប​វត្ថុ​ខាង​ក្រោម​នេះ​ឬ​ ?"
#. 42ivC
-#: cui/inc/strings.hrc:240
+#: cui/inc/strings.hrc:239
msgctxt "RID_SVXSTR_DELQUERY_TITLE"
msgid "Confirm Deletion"
msgstr "បញ្ជាក់​ការលុប"
#. kn5KE
-#: cui/inc/strings.hrc:241
+#: cui/inc/strings.hrc:240
msgctxt "RID_SVXSTR_DELFAILED"
msgid "The selected object could not be deleted."
msgstr "មិន​អាច​លុប​វត្ថុ​ដែល​​ជ្រើស​បាន​ទេ​ ។"
#. T7T8x
-#: cui/inc/strings.hrc:242
+#: cui/inc/strings.hrc:241
msgctxt "RID_SVXSTR_DELFAILED_TITLE"
msgid "Error Deleting Object"
msgstr "មាន​កំហុស​ក្នុង​ការ​លុប​វត្ថុ​"
#. SCgXy
-#: cui/inc/strings.hrc:243
+#: cui/inc/strings.hrc:242
msgctxt "RID_SVXSTR_CREATEFAILED"
msgid "The object could not be created."
msgstr "មិន​អាច​បង្កើត​វត្ថុ​នេះ​បាន​ទេ ។"
#. TmiCU
-#: cui/inc/strings.hrc:244
+#: cui/inc/strings.hrc:243
msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
msgid " Object with the same name already exists."
msgstr "មាន​វត្ថុ​ដែល​មាន​ឈ្មោះ​នេះ​រួច​ហើយ​ ។"
#. ffc5M
-#: cui/inc/strings.hrc:245
+#: cui/inc/strings.hrc:244
msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
msgid "Error Creating Object"
msgstr "មាន​កំហុស​ក្នុង​ការ​បង្កើត​វត្ថុ​"
#. hpB8B
-#: cui/inc/strings.hrc:246
+#: cui/inc/strings.hrc:245
msgctxt "RID_SVXSTR_RENAMEFAILED"
msgid "The object could not be renamed."
msgstr "មិន​អាច​ប្តូរ​ឈ្មោះ​វត្ថុ​នេះ​បាន​ទេ ។"
#. eevjm
-#: cui/inc/strings.hrc:247
+#: cui/inc/strings.hrc:246
msgctxt "RID_SVXSTR_RENAMEFAILED_TITLE"
msgid "Error Renaming Object"
msgstr "មាន​កំហុស​ក្នុង​ការ​ប្តូរ​ឈ្មោះវត្ថុ"
#. fTHFY
-#: cui/inc/strings.hrc:248
+#: cui/inc/strings.hrc:247
msgctxt "RID_SVXSTR_ERROR_TITLE"
msgid "%PRODUCTNAME Error"
msgstr "កំហុស​របស់​ %PRODUCTNAME "
#. e6BgS
-#: cui/inc/strings.hrc:249
+#: cui/inc/strings.hrc:248
msgctxt "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED"
msgid "The scripting language %LANGUAGENAME is not supported."
msgstr "មិន​គាំ​ទ្រ​ភាសា​ស្គ្រីប​របស់​ %LANGUAGENAME ​ទេ ។"
#. EUek9
-#: cui/inc/strings.hrc:250
+#: cui/inc/strings.hrc:249
msgctxt "RID_SVXSTR_ERROR_RUNNING"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "កំហុស​បាន​កើត​ឡើង​នៅ​ខណៈ​ពេល​កំពុង​រត់ស្គ្រីប %LANGUAGENAME របស់ %SCRIPTNAME ។"
#. KVQAh
-#: cui/inc/strings.hrc:251
+#: cui/inc/strings.hrc:250
msgctxt "RID_SVXSTR_EXCEPTION_RUNNING"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "ករណី​លើក​លែង​បាន​កើត​ឡើង​នៅ​ខណៈ​ពេល​កំពុង​រត់​ស្គ្រីប​ %LANGUAGENAME របស់ %SCRIPTNAME ។"
#. 5bFCQ
-#: cui/inc/strings.hrc:252
+#: cui/inc/strings.hrc:251
msgctxt "RID_SVXSTR_ERROR_AT_LINE"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "កំហុស​បាន​កើត​ឡើង​នៅ​ខណៈ​ពេល​កំពុង​រត់​ស្គ្រីប​ %LANGUAGENAME របស់​ %SCRIPTNAME ​នៅ​បន្ទាត់​ ៖ %LINENUMBER ។"
#. KTptU
-#: cui/inc/strings.hrc:253
+#: cui/inc/strings.hrc:252
msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "ករណី​លើក​លែង​បាន​កើត​ឡើងនៅ​​ខណៈ​ពេល​កំពុងរត់​ស្គ្រីប​ %LANGUAGENAME ​របស់​ %SCRIPTNAME នៅ​បន្ទាត់​ ៖ %LINENUMBER ។"
#. BZDbp
-#: cui/inc/strings.hrc:254
+#: cui/inc/strings.hrc:253
msgctxt "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING"
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "កំហុស​គ្រោងការ​ណ៍​​​ស្គ្រីប​ បាន​កើត​ឡើង​នៅ​ខណៈ​ពេល​កំពុង​រត់​ស្គ្រីប​ %LANGUAGENAME ​របស់​ %SCRIPTNAME ។"
#. AAghx
-#: cui/inc/strings.hrc:255
+#: cui/inc/strings.hrc:254
msgctxt "RID_SVXSTR_ERROR_TYPE_LABEL"
msgid "Type:"
msgstr "ប្រភេទ ៖"
#. GAsca
-#: cui/inc/strings.hrc:256
+#: cui/inc/strings.hrc:255
msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
msgid "Message:"
msgstr "សារ ៖"
#. ZcxRY
-#: cui/inc/strings.hrc:258
+#: cui/inc/strings.hrc:257
msgctxt "RID_SVXSTR_CHG_MATH"
msgid "MathType to %PRODUCTNAME Math or reverse"
msgstr "MathType ទៅ​ជា %PRODUCTNAME Math ឬ​បញ្ច្រាស​មក​វិញ"
#. Ttggs
-#: cui/inc/strings.hrc:259
+#: cui/inc/strings.hrc:258
msgctxt "RID_SVXSTR_CHG_WRITER"
msgid "WinWord to %PRODUCTNAME Writer or reverse"
msgstr "WinWord ទៅ​ជា %PRODUCTNAME Writer ឬ​បញ្ច្រាស​មក​វិញ"
#. ZJRKY
-#: cui/inc/strings.hrc:260
+#: cui/inc/strings.hrc:259
msgctxt "RID_SVXSTR_CHG_CALC"
msgid "Excel to %PRODUCTNAME Calc or reverse"
msgstr "Excel ​ទៅ​ជា​ %PRODUCTNAME Calc ឬបញ្ច្រាស​មក​វិញ"
#. VmuND
-#: cui/inc/strings.hrc:261
+#: cui/inc/strings.hrc:260
msgctxt "RID_SVXSTR_CHG_IMPRESS"
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
msgstr "PowerPoint ​ទៅ​ជា​ %PRODUCTNAME Impress ​ឬបញ្ច្រាសមក​វិញ"
#. sE8as
-#: cui/inc/strings.hrc:262
+#: cui/inc/strings.hrc:261
msgctxt "RID_SVXSTR_CHG_SMARTART"
msgid "SmartArt to %PRODUCTNAME shapes or reverse"
msgstr "SmartArt ទៅ​រូបរាង %PRODUCTNAME ឬ​បញ្ច្រាស"
#. AEgXY
-#: cui/inc/strings.hrc:263
+#: cui/inc/strings.hrc:262
msgctxt "RID_SVXSTR_CHG_VISIO"
msgid "Visio to %PRODUCTNAME Draw or reverse"
msgstr ""
#. Zarkq
-#: cui/inc/strings.hrc:264
+#: cui/inc/strings.hrc:263
msgctxt "RID_SVXSTR_CHG_PDF"
msgid "PDF to %PRODUCTNAME Draw or reverse"
msgstr ""
#. dDtDU
-#: cui/inc/strings.hrc:266
+#: cui/inc/strings.hrc:265
msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
msgid ""
"The specified name already exists.\n"
@@ -1500,7 +1494,7 @@ msgstr ""
"សូម​បញ្ចូល​ឈ្មោះ​ថ្មី ។"
#. kzhkA
-#: cui/inc/strings.hrc:267
+#: cui/inc/strings.hrc:266
msgctxt "RID_SVXSTR_OPT_INVALID_DICT_NAME"
msgid ""
"The specified name is invalid.\n"
@@ -1520,133 +1514,133 @@ msgstr ""
#. For example, adding "Grammar By" word "fund" to the new user
#. word "crowdfund", the spell checker will recognize "crowdfund"
#. with suffixes of "fund": "crowdfunding", "crowdfund's" etc.
-#: cui/inc/strings.hrc:282
+#: cui/inc/strings.hrc:281
msgctxt "RID_SVXSTR_OPT_GRAMMAR_BY"
msgid "~Grammar By"
msgstr ""
#. LPb5d
-#: cui/inc/strings.hrc:283
+#: cui/inc/strings.hrc:282
msgctxt "STR_MODIFY"
msgid "~Replace"
msgstr "ជំនួស "
#. anivV
-#: cui/inc/strings.hrc:284
+#: cui/inc/strings.hrc:283
msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
msgid "Do you want to change the '%1' dictionary language?"
msgstr "តើ​អ្នក​ចង់​ផ្លាស់​ប្តូរ​ភាសា​វចនានុក្រម​ '%1' ​មែន​ឬ ?"
#. XEFrB
-#: cui/inc/strings.hrc:286
+#: cui/inc/strings.hrc:285
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
msgid "Do you really want to delete the color scheme?"
msgstr "តើ​អ្នក​ពិត​ជា​ចង់​លុប​ពណ៌​ចម្រុះ​ឬ​ ?"
#. ybdED
-#: cui/inc/strings.hrc:287
+#: cui/inc/strings.hrc:286
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
msgid "Color Scheme Deletion"
msgstr "ការលុប​ពណ៌​ចម្រុះ"
#. DoNBE
-#: cui/inc/strings.hrc:288
+#: cui/inc/strings.hrc:287
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
msgid "Save scheme"
msgstr "រក្សា​ទុក​ពណ៌​ចម្រុះ"
#. tFrki
-#: cui/inc/strings.hrc:289
+#: cui/inc/strings.hrc:288
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
msgid "Name of color scheme"
msgstr "ឈ្មោះ​របស់​ពណ៌​ចម្រុះ"
#. BAGbe
-#: cui/inc/strings.hrc:291
+#: cui/inc/strings.hrc:290
msgctxt "RID_SVXSTR_SPELL"
msgid "Spelling"
msgstr "អក្ខរាវិរុទ្ធ​"
#. uBohu
-#: cui/inc/strings.hrc:292
+#: cui/inc/strings.hrc:291
msgctxt "RID_SVXSTR_HYPH"
msgid "Hyphenation"
msgstr "ការ​ដាក់​​សហសញ្ញា"
#. XGkt6
-#: cui/inc/strings.hrc:293
+#: cui/inc/strings.hrc:292
msgctxt "RID_SVXSTR_THES"
msgid "Thesaurus"
msgstr "កម្រង​វេវចនសព្ទ"
#. EFrDA
-#: cui/inc/strings.hrc:294
+#: cui/inc/strings.hrc:293
msgctxt "RID_SVXSTR_GRAMMAR"
msgid "Grammar"
msgstr "វេយ្យាករណ៍"
#. zbEv9
-#: cui/inc/strings.hrc:295
+#: cui/inc/strings.hrc:294
msgctxt "RID_SVXSTR_CAPITAL_WORDS"
msgid "Check uppercase words"
msgstr "ពិនិត្យ​មើល​​​ពាក្យ​អក្សរ​ធំ"
#. BbDNe
-#: cui/inc/strings.hrc:296
+#: cui/inc/strings.hrc:295
msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
msgid "Check words with numbers "
msgstr "ពិនិត្យ​មើល​ពាក្យ​ដែល​មាន​លេខ"
#. bPDyB
-#: cui/inc/strings.hrc:297
+#: cui/inc/strings.hrc:296
msgctxt "RID_SVXSTR_SPELL_SPECIAL"
msgid "Check special regions"
msgstr "ពិនិត្យ​មើល​តំបន់​ពិសេស"
#. XjifG
-#: cui/inc/strings.hrc:298
+#: cui/inc/strings.hrc:297
msgctxt "RID_SVXSTR_SPELL_AUTO"
msgid "Check spelling as you type"
msgstr "ពិនិត្យ​មើល​អក្ខរាវិរុទ្ធ​ពេល​អ្នក​វាយ"
#. J3ENq
-#: cui/inc/strings.hrc:299
+#: cui/inc/strings.hrc:298
msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
msgid "Check grammar as you type"
msgstr "ពិនិត្យ​មើល​វេយ្យាករណ៍​ពេល​អ្នក​វាយ"
#. f6v3L
-#: cui/inc/strings.hrc:300
+#: cui/inc/strings.hrc:299
msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
msgid "Minimal number of characters for hyphenation: "
msgstr "ចំនួន​តួអក្សរ​អប្បបរិមា​សម្រាប់​ការដាក់សហ​សញ្ញា ៖"
#. BCrEf
-#: cui/inc/strings.hrc:301
+#: cui/inc/strings.hrc:300
msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
msgid "Characters before line break: "
msgstr "តួអក្សរមុន​ចុះ​បន្ទាត់ ៖"
#. Kgioh
-#: cui/inc/strings.hrc:302
+#: cui/inc/strings.hrc:301
msgctxt "RID_SVXSTR_NUM_POST_BREAK"
msgid "Characters after line break: "
msgstr "តួអក្សរ​ក្រោយ​ចុះ​បន្ទាត់ ៖ "
#. AewrH
-#: cui/inc/strings.hrc:303
+#: cui/inc/strings.hrc:302
msgctxt "RID_SVXSTR_HYPH_AUTO"
msgid "Hyphenate without inquiry"
msgstr "ភ្ជាប់​ដោយ​សហ​សញ្ញា​ដោយ​គ្មានសំណួរ"
#. qCKn9
-#: cui/inc/strings.hrc:304
+#: cui/inc/strings.hrc:303
msgctxt "RID_SVXSTR_HYPH_SPECIAL"
msgid "Hyphenate special regions"
msgstr "ភ្ជាប់​តំបន់​ពិសេស​ដោយ​សហ​សញ្ញា"
#. weKUF
-#: cui/inc/strings.hrc:306
+#: cui/inc/strings.hrc:305
#, fuzzy
msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
msgid ""
@@ -1657,7 +1651,7 @@ msgstr ""
"​សូម​ជ្រើស​ថត​មួយ​ទៀត ។"
#. jFLdB
-#: cui/inc/strings.hrc:307
+#: cui/inc/strings.hrc:306
#, fuzzy
msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
msgid ""
@@ -1668,13 +1662,13 @@ msgstr ""
"​សូម​ជ្រើស​ថត​ផ្សេង​ទៀត ។"
#. 79uiz
-#: cui/inc/strings.hrc:308
+#: cui/inc/strings.hrc:307
msgctxt "RID_SVXSTR_JAVA_START_PARAM"
msgid "Edit Parameter"
msgstr ""
#. fsbAN
-#: cui/inc/strings.hrc:310
+#: cui/inc/strings.hrc:309
msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
msgid ""
"Invalid value!\n"
@@ -1686,38 +1680,38 @@ msgstr ""
"​តម្លៃ​មិន​ត្រឹម​ត្រូវសម្រាប់​ច្រក​គឺ​ ៦៥៥៣៥ ។"
#. UCFD6
-#: cui/inc/strings.hrc:312
+#: cui/inc/strings.hrc:311
msgctxt "RID_SVXSTR_DESC_GRADIENT"
msgid "Please enter a name for the gradient:"
msgstr "សូម​បញ្ចូល​ឈ្មោះ​មួយ ​សម្រាប់​​​ជម្រាល ៖"
#. UDvKR
-#: cui/inc/strings.hrc:313
+#: cui/inc/strings.hrc:312
msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
msgid "Please enter a name for the bitmap:"
msgstr "សូម​បញ្ចូល​ឈ្មោះ​មួយ​ សម្រាប់​រូបភាព ៖"
#. QXqJD
-#: cui/inc/strings.hrc:314
+#: cui/inc/strings.hrc:313
msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
msgid "Please enter a name for the external bitmap:"
msgstr "សូម​បញ្ចូល​ឈ្មោះ​មួយ​ សម្រាប់​រូបភាព​ខាង​ក្រៅ ៖"
#. SrS6X
-#: cui/inc/strings.hrc:315
+#: cui/inc/strings.hrc:314
#, fuzzy
msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
msgid "Please enter a name for the pattern:"
msgstr "សូម​បញ្ចូល​ឈ្មោះ​មួយ​ សម្រាប់​ឆ្នូតៗ ៖"
#. yD7AW
-#: cui/inc/strings.hrc:316
+#: cui/inc/strings.hrc:315
msgctxt "RID_SVXSTR_DESC_LINESTYLE"
msgid "Please enter a name for the line style:"
msgstr "សូ​បញ្ចូល​ឈ្មោះ​មួយ​សម្រាប់​រចនាប័ទ្ម​បន្ទាត់ ៖"
#. FQDrh
-#: cui/inc/strings.hrc:317
+#: cui/inc/strings.hrc:316
msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
msgid ""
"The line style was modified without saving. \n"
@@ -1727,421 +1721,462 @@ msgstr ""
"កែប្រែ​រចនាប័ទ្ម​បន្ទាត់​ដែលបានជ្រើស​ ឬ​បន្ថែម​រចនាប័ទ្ម​បន្ទាត់​ថ្មី ។"
#. Z5Dkg
-#: cui/inc/strings.hrc:318
+#: cui/inc/strings.hrc:317
msgctxt "RID_SVXSTR_DESC_HATCH"
msgid "Please enter a name for the hatching:"
msgstr "សូម​បញ្ចូល​ឈ្មោះ​មួយ​ សម្រាប់​ឆ្នូតៗ ៖"
#. rvyBi
-#: cui/inc/strings.hrc:319
+#: cui/inc/strings.hrc:318
#, fuzzy
msgctxt "RID_SVXSTR_CHANGE"
msgid "Modify"
msgstr " កែ​ប្រែ"
#. ZDhBm
-#: cui/inc/strings.hrc:320
+#: cui/inc/strings.hrc:319
msgctxt "RID_SVXSTR_ADD"
msgid "Add"
msgstr "បន្ថែម"
#. QgAFH
-#: cui/inc/strings.hrc:321
+#: cui/inc/strings.hrc:320
msgctxt "RID_SVXSTR_DESC_COLOR"
msgid "Please enter a name for the new color:"
msgstr "សូម​បញ្ចូល​ឈ្មោះ​មួយ​សម្រាប់ពណ៌​ថ្មី ៖"
#. GKnJR
-#: cui/inc/strings.hrc:322
+#: cui/inc/strings.hrc:321
msgctxt "RID_SVXSTR_TABLE"
msgid "Table"
msgstr "តារាង"
#. J6FBw
-#: cui/inc/strings.hrc:323
+#: cui/inc/strings.hrc:322
msgctxt "RID_SVXSTR_DESC_LINEEND"
msgid "Please enter a name for the new arrowhead:"
msgstr "សូម​បញ្ចូល​ឈ្មោះ​មួយ​ សម្រាប់​ក្បាល​ព្រួញ​ថ្មី ៖"
#. xD9BU
-#: cui/inc/strings.hrc:324
+#: cui/inc/strings.hrc:323
msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
msgid "No %1"
msgstr "លេខ %1"
#. GVkFG
-#: cui/inc/strings.hrc:325
+#: cui/inc/strings.hrc:324
#, fuzzy
msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
msgid "Family:"
msgstr "គ្រួសារ"
#. 6uDkp
-#: cui/inc/strings.hrc:326
+#: cui/inc/strings.hrc:325
#, fuzzy
msgctxt "RID_SVXSTR_CHARNAME_FONT"
msgid "Font:"
msgstr "ពុម្ព​អក្សរ"
#. KFXAV
-#: cui/inc/strings.hrc:327
+#: cui/inc/strings.hrc:326
#, fuzzy
msgctxt "RID_SVXSTR_CHARNAME_STYLE"
msgid "Style:"
msgstr "រចនាប័ទ្ម៖"
#. gDu75
-#: cui/inc/strings.hrc:328
+#: cui/inc/strings.hrc:327
#, fuzzy
msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
msgid "Typeface:"
msgstr "លក្ខណៈ​អក្សរ"
#. BcWHA
-#: cui/inc/strings.hrc:329
+#: cui/inc/strings.hrc:328
msgctxt "RID_SVXSTR_USE_REPLACE"
msgid "Use replacement table"
msgstr "ប្រើ​​តារាង​ជំនួស​"
#. L8BEE
-#: cui/inc/strings.hrc:330
+#: cui/inc/strings.hrc:329
msgctxt "RID_SVXSTR_CPTL_STT_WORD"
msgid "Correct TWo INitial CApitals"
msgstr "កែ​​អក្សរ​ធំ​ខាង​ដើម​ពីរ"
#. p5h3s
-#: cui/inc/strings.hrc:331
+#: cui/inc/strings.hrc:330
msgctxt "RID_SVXSTR_CPTL_STT_SENT"
msgid "Capitalize first letter of every sentence"
msgstr "អក្សរ​ធំ​នៅ​ដើម​ប្រយោគ​ទាំងអស់"
#. prrWd
-#: cui/inc/strings.hrc:332
+#: cui/inc/strings.hrc:331
msgctxt "RID_SVXSTR_BOLD_UNDER"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr ""
#. a89xT
-#: cui/inc/strings.hrc:333
+#: cui/inc/strings.hrc:332
msgctxt "RID_SVXSTR_NO_DBL_SPACES"
msgid "Ignore double spaces"
msgstr "មិន​អើពើ​ដកឃ្លា​ពីរ"
#. qEA6h
-#: cui/inc/strings.hrc:334
+#: cui/inc/strings.hrc:333
msgctxt "RID_SVXSTR_DETECT_URL"
msgid "URL Recognition"
msgstr "ការ​ទទួល​ស្គាល់ URL"
#. JfySE
-#: cui/inc/strings.hrc:335
+#: cui/inc/strings.hrc:334
msgctxt "RID_SVXSTR_DASH"
msgid "Replace dashes"
msgstr "ជំនួស​​សញ្ញា​ដាច់ៗ"
#. u2BuA
-#: cui/inc/strings.hrc:336
+#: cui/inc/strings.hrc:335
msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
msgid "Correct accidental use of cAPS LOCK key"
msgstr "កែ​ការ​ប្រើប្រាស់​គ្រាប់ចុច​ប្ដូរ​ជាប់ (CAPS LOCK)"
#. GZqG9
-#: cui/inc/strings.hrc:337
+#: cui/inc/strings.hrc:336
msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
msgid "Add non-breaking space before specific punctuation marks in French text"
msgstr "បន្ថែម​គម្លាត​មិន​បំបែក​នៅ​មុខ​សញ្ញា​វណ្ណយុត្ត​ជាក់លាក់​ក្នុង​ភាសា​បារាំង"
#. NDmW9
-#: cui/inc/strings.hrc:338
+#: cui/inc/strings.hrc:337
msgctxt "RID_SVXSTR_ORDINAL"
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
msgstr "ធ្វើទ្រង់ទ្រាយ​បច្ច័យ​​​លេខ​លំដាប់​ (1st -> 1^st)"
#. 6oHuF
-#: cui/inc/strings.hrc:339
+#: cui/inc/strings.hrc:338
msgctxt "RID_SVXSTR_OLD_HUNGARIAN"
msgid "Transliterate to Old Hungarian if the text direction is from right to left"
msgstr ""
#. CNtDd
-#: cui/inc/strings.hrc:340
+#: cui/inc/strings.hrc:339
msgctxt "RID_SVXSTR_ANGLE_QUOTES"
msgid "Replace << and >> with angle quotes"
msgstr ""
#. Rc6Zg
-#: cui/inc/strings.hrc:341
+#: cui/inc/strings.hrc:340
msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
msgid "Remove blank paragraphs"
msgstr "យក​កថាខណ្ឌ​ទទេ​ចេញ"
#. F6HCc
-#: cui/inc/strings.hrc:342
+#: cui/inc/strings.hrc:341
msgctxt "RID_SVXSTR_USER_STYLE"
msgid "Replace Custom Styles"
msgstr "ជំនួស​​រចនាប័ទ្ម​​ផ្ទាល់​ខ្លួន"
#. itDJG
-#: cui/inc/strings.hrc:343
+#: cui/inc/strings.hrc:342
msgctxt "RID_SVXSTR_BULLET"
msgid "Replace bullets with: %1"
msgstr ""
#. BvroE
#. To translators: %1 will be replaced with a percentage, e.g. "10%"
-#: cui/inc/strings.hrc:345
+#: cui/inc/strings.hrc:344
msgctxt "RID_SVXSTR_RIGHT_MARGIN"
msgid "Combine single line paragraphs if length greater than %1"
msgstr ""
#. M9kNQ
-#: cui/inc/strings.hrc:346
+#: cui/inc/strings.hrc:345
msgctxt "RID_SVXSTR_NUM"
msgid "Bulleted and numbered lists. Bullet symbol: %1"
msgstr ""
#. BJVGT
-#: cui/inc/strings.hrc:347
+#: cui/inc/strings.hrc:346
msgctxt "RID_SVXSTR_BORDER"
msgid "Apply border"
msgstr "អនុវត្ត​​ស៊ុម"
#. bXpcq
-#: cui/inc/strings.hrc:348
+#: cui/inc/strings.hrc:347
msgctxt "RID_SVXSTR_CREATE_TABLE"
msgid "Create table"
msgstr "បង្កើត​​តារាង"
#. RvEBo
-#: cui/inc/strings.hrc:349
+#: cui/inc/strings.hrc:348
msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
msgid "Apply Styles"
msgstr "អនុវត្ត​​រចនាប័ទ្ម"
#. 6MGUe
-#: cui/inc/strings.hrc:350
+#: cui/inc/strings.hrc:349
msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
msgid "Delete spaces and tabs at beginning and end of paragraph"
msgstr "លុប​ដក​ឃ្លា និង​ថេប​នៅ​ដើម និង​បញ្ចប់​របស់​កថាខណ្ឌ"
#. R9Kke
-#: cui/inc/strings.hrc:351
+#: cui/inc/strings.hrc:350
msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
msgid "Delete spaces and tabs at end and start of line"
msgstr "លុប​ដក​ឃ្លា និង​ថេប​នៅ​ដើម និងចុង​​របស់​បន្ទាត់"
#. GFpkR
-#: cui/inc/strings.hrc:352
+#: cui/inc/strings.hrc:351
msgctxt "RID_SVXSTR_CONNECTOR"
msgid "Connector"
msgstr "បន្ទាត់​តភ្ជាប់"
#. XDp8d
-#: cui/inc/strings.hrc:353
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_DIMENSION_LINE"
msgid "Dimension line"
msgstr "ជួរ​វិមាត្រ​"
#. Mxt3D
-#: cui/inc/strings.hrc:354
+#: cui/inc/strings.hrc:353
#, fuzzy
msgctxt "RID_SVXSTR_STARTQUOTE"
msgid "Start Quote"
msgstr "សម្រង់​ចាប់ផ្ដើម៖"
#. o8nY6
-#: cui/inc/strings.hrc:355
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr ""
#. cZX7G
-#: cui/inc/strings.hrc:357
+#: cui/inc/strings.hrc:356
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "គ្មាន​ស្រមោល"
#. bzAHG
-#: cui/inc/strings.hrc:358
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "ទម្លាក់​ស្រមោល​ទៅ​បាត​ខាង​ស្ដាំ"
#. FjBGC
-#: cui/inc/strings.hrc:359
+#: cui/inc/strings.hrc:358
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "ទម្លាក់​ស្រមោល​ទៅ​កំពូល​ខាង​ស្ដាំ"
#. 5BkoC
-#: cui/inc/strings.hrc:360
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "ទម្លាក់​ស្រមោល​ទៅ​បាត​ខាង​ឆ្វេង"
#. GYB8M
-#: cui/inc/strings.hrc:361
+#: cui/inc/strings.hrc:360
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "ទម្លាក់​ស្រមោល​ទៅ​កំពូល​ខាង​ឆ្វេង"
#. xTvak
-#: cui/inc/strings.hrc:362
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
#. Uc7wm
-#: cui/inc/strings.hrc:364
+#: cui/inc/strings.hrc:363
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
#. 8bnrf
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:365
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
#. xySty
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:367
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr ""
#. ZzTBf
-#: cui/inc/strings.hrc:370
+#: cui/inc/strings.hrc:369
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2022 LibreOffice contributors."
msgstr ""
-#. GesDU
-#: cui/inc/strings.hrc:371
-#, fuzzy
-msgctxt "aboutdialog|link"
-msgid "https://www.libreoffice.org/about-us/credits/"
-msgstr "http://www.libreoffice.org/about-us/credits/"
-
#. WCnhx
-#: cui/inc/strings.hrc:372
+#: cui/inc/strings.hrc:370
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "ការ​ចេញផ្សាយ​នេះ​ត្រូវ​បាន​ផ្ដល់​ដោយ %OOOVENDOR ។"
#. Lz9nx
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:371
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice គឺ​មាន​មូលដ្ឋាន​លើ OpenOffice.org ។"
#. 9aeNR
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:372
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr ""
#. q5Myk
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:373
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr ""
#. 3vXzF
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:375
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "កែ​សម្រួល​ផ្លូវ​ ៖ %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr ""
#. GceL6
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr ""
#. dRqYc
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr ""
#. NBDBv
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_COMMANDEXPERIMENTAL"
msgid "Experimental"
msgstr ""
#. 3FZFt
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr ""
#. AD8QJ
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr ""
#. 4LWGV
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr ""
#. FjQQ5
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr ""
#. 2GUFq
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr ""
#. TmK5f
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr ""
#. izdAK
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr ""
#. HYT6K
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:390
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr ""
#. 88Ect
-#: cui/inc/strings.hrc:393
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr ""
-#. KTtQE
+#. LWw9B
+#: cui/inc/strings.hrc:392
+msgctxt "RID_SVXSTR_ADDITIONS_DICTIONARY"
+msgid "Extensions: Dictionary"
+msgstr ""
+
+#. MEZpu
+#: cui/inc/strings.hrc:393
+msgctxt "RID_SVXSTR_ADDITIONS_GALLERY"
+msgid "Extensions: Gallery"
+msgstr ""
+
+#. R8obE
+#: cui/inc/strings.hrc:394
+msgctxt "RID_SVXSTR_ADDITIONS_ICONS"
+msgid "Extensions: Icons"
+msgstr ""
+
+#. AqGWn
#: cui/inc/strings.hrc:395
+msgctxt "RID_SVXSTR_ADDITIONS_PALETTES"
+msgid "Extensions: Color Palette"
+msgstr ""
+
+#. mncuJ
+#: cui/inc/strings.hrc:396
+msgctxt "RID_SVXSTR_ADDITIONS_TEMPLATES"
+msgid "Extensions: Templates"
+msgstr ""
+
+#. KTtQE
+#: cui/inc/strings.hrc:398
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr ""
#. Xr3W9
-#: cui/inc/strings.hrc:397
+#: cui/inc/strings.hrc:400
msgctxt "RID_SVXSTR_OLE_INSERT"
msgid "Inserting OLE object..."
msgstr ""
+#. QMiCF
+#: cui/inc/strings.hrc:402
+msgctxt "RID_CUISTR_CLICK_RESULT"
+msgid "(Click on any test to view its resultant bitmap image)"
+msgstr ""
+
+#. YFfQV
+#: cui/inc/strings.hrc:403
+msgctxt "RID_CUISTR_ZIPFAIL"
+msgid "Creation of Zip file failed!"
+msgstr ""
+
+#. 9QSQr
+#: cui/inc/strings.hrc:404
+msgctxt "RID_CUISTR_SAVED"
+msgid "The results have been successfully saved in the file 'GraphicTestResults.zip'!"
+msgstr ""
+
#. mpS3V
#: cui/inc/tipoftheday.hrc:50
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -3622,584 +3657,584 @@ msgid "The Contextual Groups interface focuses on beginners. It exposes the most
msgstr ""
#. Xnz8J
-#: cui/inc/treeopt.hrc:33
+#: cui/inc/treeopt.hrc:34
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
#. CaEWP
-#: cui/inc/treeopt.hrc:34
+#: cui/inc/treeopt.hrc:35
#, fuzzy
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "User Data"
msgstr "ទិន្នន័យ​អ្នក​ប្រើ"
#. 7XYLG
-#: cui/inc/treeopt.hrc:35
+#: cui/inc/treeopt.hrc:36
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "General"
msgstr "ទូទៅ"
#. HCH7S
-#: cui/inc/treeopt.hrc:36
+#: cui/inc/treeopt.hrc:37
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "View"
msgstr "ទិដ្ឋភាព"
#. HCLxc
-#: cui/inc/treeopt.hrc:37
+#: cui/inc/treeopt.hrc:38
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Print"
msgstr "បោះពុម្ព​"
#. zuF6E
-#: cui/inc/treeopt.hrc:38
+#: cui/inc/treeopt.hrc:39
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Paths"
msgstr "ផ្លូវ"
#. cSVdD
-#: cui/inc/treeopt.hrc:39
+#: cui/inc/treeopt.hrc:40
#, fuzzy
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Fonts"
msgstr "ពុម្ព​អក្សរ"
#. XnLRt
-#: cui/inc/treeopt.hrc:40
+#: cui/inc/treeopt.hrc:41
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Security"
msgstr "សុវត្ថិភាព"
#. ZhEG3
-#: cui/inc/treeopt.hrc:41
+#: cui/inc/treeopt.hrc:42
#, fuzzy
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Personalization"
msgstr "ផ្ទាល់​ខ្លួន"
#. DLfE7
-#: cui/inc/treeopt.hrc:42
+#: cui/inc/treeopt.hrc:43
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Application Colors"
msgstr ""
#. hh7Mg
-#: cui/inc/treeopt.hrc:43
+#: cui/inc/treeopt.hrc:44
#, fuzzy
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Accessibility"
msgstr "មធ្យោបាយ​ងាយ​ស្រួល"
#. oUTLV
-#: cui/inc/treeopt.hrc:44
+#: cui/inc/treeopt.hrc:45
#, fuzzy
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Advanced"
msgstr "កម្រិត​ខ្ពស់"
#. QR2hr
-#: cui/inc/treeopt.hrc:45
+#: cui/inc/treeopt.hrc:46
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Basic IDE"
msgstr ""
#. ZS4Sx
-#: cui/inc/treeopt.hrc:46
+#: cui/inc/treeopt.hrc:47
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Online Update"
msgstr "បច្ចុប្បន្នភាព​នៅ​លើ​បណ្ដាញ"
#. 8CCRN
-#: cui/inc/treeopt.hrc:47
+#: cui/inc/treeopt.hrc:48
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "OpenCL"
msgstr ""
#. VNpPF
-#: cui/inc/treeopt.hrc:52
+#: cui/inc/treeopt.hrc:53
#, fuzzy
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Language Settings"
msgstr "ការកំណត់​ភាសា"
#. JmAVh
-#: cui/inc/treeopt.hrc:53
+#: cui/inc/treeopt.hrc:54
#, fuzzy
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Languages"
msgstr "ភាសា៖"
#. HEzGc
-#: cui/inc/treeopt.hrc:54
+#: cui/inc/treeopt.hrc:55
#, fuzzy
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Writing Aids"
msgstr "ជំនួយ​សរសេរ"
#. DLJAB
-#: cui/inc/treeopt.hrc:55
+#: cui/inc/treeopt.hrc:56
#, fuzzy
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Searching in Japanese"
msgstr "ស្វែង​រក​ជា​ភាសាជប៉ុន"
#. dkSs5
-#: cui/inc/treeopt.hrc:56
+#: cui/inc/treeopt.hrc:57
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Asian Layout"
msgstr "ប្លង់​អាស៊ី"
#. VsApk
-#: cui/inc/treeopt.hrc:57
+#: cui/inc/treeopt.hrc:58
#, fuzzy
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Complex Text Layout"
msgstr "ប្លង់​អត្ថបទ​ស្មុគ្រ​ស្មាញ"
#. TGnig
-#: cui/inc/treeopt.hrc:62
+#: cui/inc/treeopt.hrc:63
msgctxt "SID_INET_DLG_RES"
msgid "Internet"
msgstr "អ៊ីនធឺណិត"
#. QJNEE
-#: cui/inc/treeopt.hrc:63
+#: cui/inc/treeopt.hrc:64
#, fuzzy
msgctxt "SID_INET_DLG_RES"
msgid "Proxy"
msgstr "ប្រូកស៊ី"
#. EhHFs
-#: cui/inc/treeopt.hrc:64
+#: cui/inc/treeopt.hrc:65
msgctxt "SID_INET_DLG_RES"
msgid "Email"
msgstr ""
#. 4Cajf
-#: cui/inc/treeopt.hrc:69
+#: cui/inc/treeopt.hrc:70
#, fuzzy
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Writer"
msgstr "កំហុស​របស់​ %PRODUCTNAME "
#. CtZCN
-#: cui/inc/treeopt.hrc:70
+#: cui/inc/treeopt.hrc:71
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "General"
msgstr "ទូទៅ"
#. t9DgE
-#: cui/inc/treeopt.hrc:71
+#: cui/inc/treeopt.hrc:72
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "View"
msgstr "ទិដ្ឋភាព"
#. MxbiL
-#: cui/inc/treeopt.hrc:72
+#: cui/inc/treeopt.hrc:73
#, fuzzy
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Formatting Aids"
msgstr "ជំនួយ​សរសេរ"
#. V3usW
-#: cui/inc/treeopt.hrc:73
+#: cui/inc/treeopt.hrc:74
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Grid"
msgstr "ក្រឡា​​​​ចត្រង្គ"
#. Cc2Ka
-#: cui/inc/treeopt.hrc:74
+#: cui/inc/treeopt.hrc:75
#, fuzzy
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Basic Fonts (Western)"
msgstr "ពុម្ពអក្សរ​មូលដ្ឋាន (លោកខាងលិច)"
#. TDUti
-#: cui/inc/treeopt.hrc:75
+#: cui/inc/treeopt.hrc:76
#, fuzzy
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Basic Fonts (Asian)"
msgstr "ពុម្ពអក្សរ​មូលដ្ឋាន (អាស៊ី)"
#. nfHR8
-#: cui/inc/treeopt.hrc:76
+#: cui/inc/treeopt.hrc:77
#, fuzzy
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Basic Fonts (CTL)"
msgstr "ពុម្ពអក្សរ​មូលដ្ឋាន (CTL)"
#. 38A6E
-#: cui/inc/treeopt.hrc:77
+#: cui/inc/treeopt.hrc:78
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Print"
msgstr "បោះពុម្ព​"
#. UCGLq
-#: cui/inc/treeopt.hrc:78
+#: cui/inc/treeopt.hrc:79
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Table"
msgstr "តារាង"
#. NVRAk
-#: cui/inc/treeopt.hrc:79
+#: cui/inc/treeopt.hrc:80
#, fuzzy
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Changes"
msgstr "បាន​ផ្លាស់​ប្តូរ"
#. 3DyC7
-#: cui/inc/treeopt.hrc:80
+#: cui/inc/treeopt.hrc:81
#, fuzzy
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Comparison"
msgstr "កា​រប្រៀបធៀប"
#. AtMGC
-#: cui/inc/treeopt.hrc:81
+#: cui/inc/treeopt.hrc:82
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Compatibility"
msgstr "ភាព​ឆប​គ្នា"
#. byMJP
-#: cui/inc/treeopt.hrc:82
+#: cui/inc/treeopt.hrc:83
#, fuzzy
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "AutoCaption"
msgstr "អក្សរធំ​ស្វ័យ​ប្រវត្តិ"
#. aGnq6
-#: cui/inc/treeopt.hrc:83
+#: cui/inc/treeopt.hrc:84
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Mail Merge Email"
msgstr ""
#. trEVm
-#: cui/inc/treeopt.hrc:88
+#: cui/inc/treeopt.hrc:89
#, fuzzy
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "%PRODUCTNAME Writer/Web"
msgstr "កំហុស​របស់​ %PRODUCTNAME "
#. BZ7BG
-#: cui/inc/treeopt.hrc:89
+#: cui/inc/treeopt.hrc:90
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "View"
msgstr "ទិដ្ឋភាព"
#. 3q8qM
-#: cui/inc/treeopt.hrc:90
+#: cui/inc/treeopt.hrc:91
#, fuzzy
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Formatting Aids"
msgstr "ជំនួយ​សរសេរ"
#. 9fj7Y
-#: cui/inc/treeopt.hrc:91
+#: cui/inc/treeopt.hrc:92
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Grid"
msgstr "ក្រឡា​​​​ចត្រង្គ"
#. stfD4
-#: cui/inc/treeopt.hrc:92
+#: cui/inc/treeopt.hrc:93
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Print"
msgstr "បោះពុម្ព​"
#. KpkDS
-#: cui/inc/treeopt.hrc:93
+#: cui/inc/treeopt.hrc:94
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Table"
msgstr "តារាង"
#. 9NS67
-#: cui/inc/treeopt.hrc:94
+#: cui/inc/treeopt.hrc:95
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Background"
msgstr "ផ្ទៃ​ខាង​ក្រោយ"
#. 9WCAp
-#: cui/inc/treeopt.hrc:99
+#: cui/inc/treeopt.hrc:100
#, fuzzy
msgctxt "SID_SM_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Math"
msgstr "ម៉ាក្រូ​របស់​ %PRODUCTNAME"
#. rFHDF
-#: cui/inc/treeopt.hrc:100
+#: cui/inc/treeopt.hrc:101
msgctxt "SID_SM_EDITOPTIONS_RES"
msgid "Settings"
msgstr "ការ​កំណត់"
#. vk6jX
-#: cui/inc/treeopt.hrc:105
+#: cui/inc/treeopt.hrc:106
#, fuzzy
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Calc"
msgstr "ម៉ាក្រូ​របស់​ %PRODUCTNAME"
#. xe2ry
-#: cui/inc/treeopt.hrc:106
+#: cui/inc/treeopt.hrc:107
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "General"
msgstr "ទូទៅ"
#. xE8RH
-#: cui/inc/treeopt.hrc:107
+#: cui/inc/treeopt.hrc:108
#, fuzzy
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Defaults"
msgstr "លំនាំដើម"
#. ufTM2
-#: cui/inc/treeopt.hrc:108
+#: cui/inc/treeopt.hrc:109
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "View"
msgstr "ទិដ្ឋភាព"
#. QMCfy
-#: cui/inc/treeopt.hrc:109
+#: cui/inc/treeopt.hrc:110
#, fuzzy
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Calculate"
msgstr "គណនា"
#. oq8xG
-#: cui/inc/treeopt.hrc:110
+#: cui/inc/treeopt.hrc:111
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Formula"
msgstr "រូបមន្ត"
#. HUUQP
-#: cui/inc/treeopt.hrc:111
+#: cui/inc/treeopt.hrc:112
#, fuzzy
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Sort Lists"
msgstr "បញ្ជី​ពុម្ព​អក្សរ"
#. bostB
-#: cui/inc/treeopt.hrc:112
+#: cui/inc/treeopt.hrc:113
#, fuzzy
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Changes"
msgstr "បាន​ផ្លាស់​ប្តូរ"
#. WVbFZ
-#: cui/inc/treeopt.hrc:113
+#: cui/inc/treeopt.hrc:114
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Compatibility"
msgstr "ភាព​ឆប​គ្នា"
#. UZGDj
-#: cui/inc/treeopt.hrc:114
+#: cui/inc/treeopt.hrc:115
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Grid"
msgstr "ក្រឡា​​​​ចត្រង្គ"
#. wrdFF
-#: cui/inc/treeopt.hrc:115
+#: cui/inc/treeopt.hrc:116
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Print"
msgstr "បោះពុម្ព​"
#. EeKzo
-#: cui/inc/treeopt.hrc:120
+#: cui/inc/treeopt.hrc:121
#, fuzzy
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Impress"
msgstr "ម៉ាក្រូ​របស់​ %PRODUCTNAME"
#. GxFDj
-#: cui/inc/treeopt.hrc:121
+#: cui/inc/treeopt.hrc:122
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "General"
msgstr "ទូទៅ"
#. unCEW
-#: cui/inc/treeopt.hrc:122
+#: cui/inc/treeopt.hrc:123
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "View"
msgstr "ទិដ្ឋភាព"
#. UxXLE
-#: cui/inc/treeopt.hrc:123
+#: cui/inc/treeopt.hrc:124
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "Grid"
msgstr "ក្រឡា​​​​ចត្រង្គ"
#. DLCS4
-#: cui/inc/treeopt.hrc:124
+#: cui/inc/treeopt.hrc:125
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "Print"
msgstr "បោះពុម្ព​"
#. wZWAL
-#: cui/inc/treeopt.hrc:129
+#: cui/inc/treeopt.hrc:130
#, fuzzy
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "%PRODUCTNAME Draw"
msgstr "កំហុស​របស់​ %PRODUCTNAME "
#. B9gGf
-#: cui/inc/treeopt.hrc:130
+#: cui/inc/treeopt.hrc:131
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "General"
msgstr "ទូទៅ"
#. oiiBb
-#: cui/inc/treeopt.hrc:131
+#: cui/inc/treeopt.hrc:132
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "View"
msgstr "ទិដ្ឋភាព"
#. et8PK
-#: cui/inc/treeopt.hrc:132
+#: cui/inc/treeopt.hrc:133
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "Grid"
msgstr "ក្រឡា​​​​ចត្រង្គ"
#. oGTEW
-#: cui/inc/treeopt.hrc:133
+#: cui/inc/treeopt.hrc:134
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "Print"
msgstr "បោះពុម្ព​"
#. BECZi
-#: cui/inc/treeopt.hrc:138
+#: cui/inc/treeopt.hrc:139
#, fuzzy
msgctxt "SID_SCH_EDITOPTIONS_RES"
msgid "Charts"
msgstr "គំនូស​តាង"
#. XAhzo
-#: cui/inc/treeopt.hrc:139
+#: cui/inc/treeopt.hrc:140
#, fuzzy
msgctxt "SID_SCH_EDITOPTIONS_RES"
msgid "Default Colors"
msgstr "ពណ៌លំនាំ​ដើម"
#. oUBac
-#: cui/inc/treeopt.hrc:144
+#: cui/inc/treeopt.hrc:145
#, fuzzy
msgctxt "SID_FILTER_DLG_RES"
msgid "Load/Save"
msgstr "ផ្ទុក​/រក្សា​ទុក"
#. 3go3N
-#: cui/inc/treeopt.hrc:145
+#: cui/inc/treeopt.hrc:146
msgctxt "SID_FILTER_DLG_RES"
msgid "General"
msgstr "ទូទៅ"
#. 9aX4K
-#: cui/inc/treeopt.hrc:146
+#: cui/inc/treeopt.hrc:147
#, fuzzy
msgctxt "SID_FILTER_DLG_RES"
msgid "VBA Properties"
msgstr "លក្ខណ​សម្បត្តិ​របស់ VBA "
#. oAGDd
-#: cui/inc/treeopt.hrc:147
+#: cui/inc/treeopt.hrc:148
msgctxt "SID_FILTER_DLG_RES"
msgid "Microsoft Office"
msgstr "Microsoft Office"
#. UtTyJ
-#: cui/inc/treeopt.hrc:148
+#: cui/inc/treeopt.hrc:149
#, fuzzy
msgctxt "SID_FILTER_DLG_RES"
msgid "HTML Compatibility"
msgstr "ភាព​ឆប​គ្នា​របស់​ HTML"
#. Qysp7
-#: cui/inc/treeopt.hrc:153
+#: cui/inc/treeopt.hrc:154
#, fuzzy
msgctxt "SID_SB_STARBASEOPTIONS_RES"
msgid "%PRODUCTNAME Base"
msgstr "ម៉ាក្រូ​របស់​ %PRODUCTNAME"
#. 78XBF
-#: cui/inc/treeopt.hrc:154
+#: cui/inc/treeopt.hrc:155
#, fuzzy
msgctxt "SID_SB_STARBASEOPTIONS_RES"
msgid "Connections"
msgstr "ការតភ្ជាប់"
#. 54yat
-#: cui/inc/treeopt.hrc:155
+#: cui/inc/treeopt.hrc:156
#, fuzzy
msgctxt "SID_SB_STARBASEOPTIONS_RES"
msgid "Databases"
msgstr "មូលដ្ឋានទិន្នន័យ"
#. NFYmd
-#: cui/inc/twolines.hrc:27
+#: cui/inc/twolines.hrc:28
msgctxt "twolinespage|liststore1"
msgid "(None)"
msgstr "(គ្មាន)"
#. oUwW4
-#: cui/inc/twolines.hrc:28
+#: cui/inc/twolines.hrc:29
msgctxt "twolinespage|liststore1"
msgid "("
msgstr "("
#. mSyZB
-#: cui/inc/twolines.hrc:29
+#: cui/inc/twolines.hrc:30
msgctxt "twolinespage|liststore1"
msgid "["
msgstr "["
#. aDAks
-#: cui/inc/twolines.hrc:30
+#: cui/inc/twolines.hrc:31
msgctxt "twolinespage|liststore1"
msgid "<"
msgstr "<"
#. uVPNB
-#: cui/inc/twolines.hrc:31
+#: cui/inc/twolines.hrc:32
msgctxt "twolinespage|liststore1"
msgid "{"
msgstr "{"
#. 6TmK5
-#: cui/inc/twolines.hrc:32
+#: cui/inc/twolines.hrc:33
msgctxt "twolinespage|liststore1"
msgid "Other Characters..."
msgstr "តួ​អក្សរ​ផ្សេង​ទៀត..."
#. ycpAX
-#: cui/inc/twolines.hrc:37
+#: cui/inc/twolines.hrc:38
msgctxt "twolinespage|liststore2"
msgid "(None)"
msgstr "(គ្មាន)"
#. ts6EG
-#: cui/inc/twolines.hrc:38
+#: cui/inc/twolines.hrc:39
msgctxt "twolinespage|liststore2"
msgid ")"
msgstr ")"
#. REFgT
-#: cui/inc/twolines.hrc:39
+#: cui/inc/twolines.hrc:40
msgctxt "twolinespage|liststore2"
msgid "]"
msgstr "]"
#. wFPzF
-#: cui/inc/twolines.hrc:40
+#: cui/inc/twolines.hrc:41
msgctxt "twolinespage|liststore2"
msgid ">"
msgstr ">"
#. HFeFt
-#: cui/inc/twolines.hrc:41
+#: cui/inc/twolines.hrc:42
msgctxt "twolinespage|liststore2"
msgid "}"
msgstr "}"
#. YcMQR
-#: cui/inc/twolines.hrc:42
+#: cui/inc/twolines.hrc:43
msgctxt "twolinespage|liststore2"
msgid "Other Characters..."
msgstr "តួ​អក្សរ​ផ្សេង​ទៀត..."
@@ -4400,11 +4435,11 @@ msgctxt "accelconfigpage|office"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#. Bgzqd
+#. oakFo
#: cui/uiconfig/ui/accelconfigpage.ui:164
msgctxt "accelconfigpage|extended_tip|office"
-msgid "Displays shortcut keys that are common to all %PRODUCTNAME applications."
-msgstr "បង្ហាញ​គ្រាប់​ចុច​ផ្លូវ​កាត់​ដែល​​មាន​លក្ខណៈ​ធម្មតា​គ្រប់​កម្មវិធី​ %PRODUCTNAME ។​"
+msgid "Displays shortcut keys that are common to all the office suite applications."
+msgstr ""
#. jjhUE
#: cui/uiconfig/ui/accelconfigpage.ui:176
@@ -4412,11 +4447,11 @@ msgctxt "accelconfigpage|module"
msgid "$(MODULE)"
msgstr "$(MODULE)"
-#. VnoU5
+#. 6UUdW
#: cui/uiconfig/ui/accelconfigpage.ui:185
msgctxt "accelconfigpage|extended_tip|module"
-msgid "Displays shortcut keys for the current %PRODUCTNAME application."
-msgstr "​បង្ហាញ​គ្រាប់​ចុច​ផ្លូវ​កាត់​សម្រាប់​កម្មវិធី​ %PRODUCTNAME បច្ចុប្បន្ន ។"
+msgid "Displays shortcut keys for the current office suite application."
+msgstr ""
#. R2nhJ
#: cui/uiconfig/ui/accelconfigpage.ui:212
@@ -4521,17 +4556,17 @@ msgctxt "accelconfigpage|label22"
msgid "F_unctions"
msgstr "អនុគមន៍"
-#. YDyhc
+#. kVeWd
#: cui/uiconfig/ui/accelconfigpage.ui:576
msgctxt "accelconfigpage|extended_tip|AccelConfigPage"
-msgid "Assigns or edits the shortcut keys for %PRODUCTNAME commands, or %PRODUCTNAME Basic macros."
-msgstr "ផ្តល់​តម្លៃ​ ឬ​កែ​សម្រួល​គ្រាប់​ចុច​ផ្លូវ​កាត់​សម្រាប់​ពាក្យ​បញ្ជា​ %PRODUCTNAME ឬ​ម៉ាក្រូ​មូល​ដ្ឋានរបស់ %PRODUCTNAME ។"
+msgid "Assigns or edits the shortcut keys for the office suite commands, or Basic macros."
+msgstr ""
-#. FAPZ6
+#. 3zZvu
#: cui/uiconfig/ui/acorexceptpage.ui:56
msgctxt "acorexceptpage|extended_tip|abbrev"
-msgid "Type an abbreviation followed by a period, and then click New. This prevents %PRODUCTNAME from automatically capitalizing the first letter of the word that comes after the period at the end of the abbreviation."
-msgstr "វាយ​អក្សរ​សង្ខេប​​ដែល​​ជាប់​ដោយ​សញ្ញា​ចុច ​​(.) និង​បន្ទាប់​មក​ចុច​ ថ្មី ។ នេះ​ការ​ពារ​ %PRODUCTNAME ពី​ការ​ធ្វើ​ឲ្យ​អក្សរ​ទី​មួយ​នៃ​ពាក្យធំ​ដោយ​ស្វ័យ​ប្រវត្តិ​​ដែល​មាន​បន្ទាប់​ពី​សញ្ញា​ (.) នៅ​ខាង​ចុង​នៃ​អក្សរ​សង្ខេប ។​"
+msgid "Type an abbreviation followed by a period, and then click New. This prevents automatic capitalization of the first letter of the word that comes after the period at the end of the abbreviation."
+msgstr ""
#. GUtft
#: cui/uiconfig/ui/acorexceptpage.ui:67
@@ -4582,10 +4617,10 @@ msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr "អក្សរ​សង្ខេប (គ្មាន​អក្សរធំ​នៅ​ពី​ក្រោយ)"
-#. N9SbP
+#. oDBsM
#: cui/uiconfig/ui/acorexceptpage.ui:247
msgctxt "acorexceptpage|extended_tip|double"
-msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook."
+msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want automatically changed to one initial capital. For example, enter PC to prevent a change from PC to Pc, or enter eBook to prevent a change to Ebook."
msgstr ""
#. kAzxB
@@ -4636,11 +4671,11 @@ msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
msgstr ""
-#. 4qMgn
+#. UCDeF
#: cui/uiconfig/ui/acorexceptpage.ui:412
msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
-msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
-msgstr "បញ្ជាក់​​អក្សរ​សង្ខេប​ ឬ​បន្សំ​អក្សរ​ ដែល​មិន​ចង់​ឲ្យ​ %PRODUCTNAME កែ​ដោយ​ស្វ័យ​ប្រវត្តិ​ ។"
+msgid "Specify the abbreviations or letter combinations that you do not want corrected automatically."
+msgstr ""
#. Cd7nJ
#: cui/uiconfig/ui/acoroptionspage.ui:84
@@ -6650,204 +6685,207 @@ msgid "Select or add the correct Network Security Services Certificate directory
msgstr ""
#. xXVpD
-#: cui/uiconfig/ui/charnamepage.ui:234
+#: cui/uiconfig/ui/charnamepage.ui:238
msgctxt "charnamepage|extended_tip|weststylelb-nocjk"
msgid "Select the formatting that you want to apply."
msgstr "ជ្រើស​ទ្រង់ទ្រាយ​ដែល​អ្នក​ចង់​អនុវត្ត។"
#. MR6Nr
-#: cui/uiconfig/ui/charnamepage.ui:324
+#: cui/uiconfig/ui/charnamepage.ui:328
msgctxt "charnamepage|extended_tip|westsizelb-nocjk"
msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
msgstr "បញ្ចូល ឬ​ជ្រើស​ទំហំ​ពុម្ពអក្សរ​ដែល​អ្នក​ចង់​អនុវត្ត។ សម្រាប់​ពុម្ពអក្សរ​ដែល​អាច​ធ្វើ​​មាត្រដ្ឋាន​បាន អ្នក​អាច​បញ្ចូល​តម្លៃ​ទសភាគ។"
#. YcKtn
-#: cui/uiconfig/ui/charnamepage.ui:354
+#: cui/uiconfig/ui/charnamepage.ui:358
#, fuzzy
msgctxt "charnamepage|westsizeft-nocjk"
msgid "Size:"
msgstr "ទំហំ"
#. WQxtG
-#: cui/uiconfig/ui/charnamepage.ui:380
+#: cui/uiconfig/ui/charnamepage.ui:384
#, fuzzy
msgctxt "charnamepage|westlangft-nocjk"
msgid "Language:"
msgstr "ភាសា៖"
#. 63kyg
-#: cui/uiconfig/ui/charnamepage.ui:416
+#: cui/uiconfig/ui/charnamepage.ui:420
msgctxt "charnamepage|extended_tip|westlanglb-nocjk"
msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
msgstr "កំណត់​ភាសា​ដែល​កម្មវិធីពិនិត្យអក្ខរាវិរុទ្ធ​ប្រើ​សម្រាប់​អត្ថបទ​ដែល​បានជ្រើស ឬ​អត្ថបទ​ដែល​អ្នក​វាយ ។ ម៉ូឌុល​ភាសា​ដែល​មាន​មាន​សញ្ញា​សម្គាល់​នៅ​ខាង​មុខ ។"
#. NgZJ9
-#: cui/uiconfig/ui/charnamepage.ui:435
+#: cui/uiconfig/ui/charnamepage.ui:439
msgctxt "charnamepage|west_features_button-nocjk"
msgid "Features..."
msgstr ""
-#. nKfjE
-#: cui/uiconfig/ui/charnamepage.ui:511
-#, fuzzy
-msgctxt "charnamepage|westsizeft-cjk"
-msgid "Size:"
-msgstr "ទំហំ"
-
#. jJc8T
-#: cui/uiconfig/ui/charnamepage.ui:525
+#: cui/uiconfig/ui/charnamepage.ui:515
#, fuzzy
msgctxt "charnamepage|westlangft-cjk"
msgid "Language:"
msgstr "ភាសា៖"
+#. zCCrx
+#: cui/uiconfig/ui/charnamepage.ui:541
+msgctxt "charnamepage|extended_tip|westlanglb-cjk"
+msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
+msgstr "កំណត់​ភាសា​ដែល​កម្មវិធីពិនិត្យអក្ខរាវិរុទ្ធ​ប្រើ​សម្រាប់​អត្ថបទ​ដែល​បានជ្រើស ឬ​អត្ថបទ​ដែល​អ្នក​វាយ ។ ម៉ូឌុល​ភាសា​ដែល​មាន​មាន​សញ្ញា​សម្គាល់​នៅ​ខាង​មុខ ។"
+
#. PEg2a
-#: cui/uiconfig/ui/charnamepage.ui:568
+#: cui/uiconfig/ui/charnamepage.ui:584
msgctxt "charnamepage|extended_tip|weststylelb-cjk"
msgid "Select the formatting that you want to apply."
msgstr "ជ្រើស​ទ្រង់ទ្រាយ​ដែល​អ្នក​ចង់​អនុវត្ត។"
+#. nKfjE
+#: cui/uiconfig/ui/charnamepage.ui:598
+#, fuzzy
+msgctxt "charnamepage|westsizeft-cjk"
+msgid "Size:"
+msgstr "ទំហំ"
+
#. 8quPQ
-#: cui/uiconfig/ui/charnamepage.ui:591
+#: cui/uiconfig/ui/charnamepage.ui:615
msgctxt "charnamepage|extended_tip|westsizelb-cjk"
msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
msgstr "បញ្ចូល ឬ​ជ្រើស​ទំហំ​ពុម្ពអក្សរ​ដែល​អ្នក​ចង់​អនុវត្ត។ សម្រាប់​ពុម្ពអក្សរ​ដែល​អាច​ធ្វើ​​មាត្រដ្ឋាន​បាន អ្នក​អាច​បញ្ចូល​តម្លៃ​ទសភាគ។"
-#. zCCrx
-#: cui/uiconfig/ui/charnamepage.ui:623
-msgctxt "charnamepage|extended_tip|westlanglb-cjk"
-msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
-msgstr "កំណត់​ភាសា​ដែល​កម្មវិធីពិនិត្យអក្ខរាវិរុទ្ធ​ប្រើ​សម្រាប់​អត្ថបទ​ដែល​បានជ្រើស ឬ​អត្ថបទ​ដែល​អ្នក​វាយ ។ ម៉ូឌុល​ភាសា​ដែល​មាន​មាន​សញ្ញា​សម្គាល់​នៅ​ខាង​មុខ ។"
-
#. qpSnT
-#: cui/uiconfig/ui/charnamepage.ui:652
+#: cui/uiconfig/ui/charnamepage.ui:640
msgctxt "charnamepage|west_features_button-cjk"
msgid "Features..."
msgstr ""
-#. LYK4e
-#: cui/uiconfig/ui/charnamepage.ui:676
-#, fuzzy
-msgctxt "charnamepage|label4"
-msgid "Western Text Font"
-msgstr "ពុម្ព​អក្សរ​អត្ថបទ​ខាង​លិច"
+#. UZL8k
+#: cui/uiconfig/ui/charnamepage.ui:660
+msgctxt "charnamepage|tab_western"
+msgid "Western"
+msgstr ""
#. q4WZB
-#: cui/uiconfig/ui/charnamepage.ui:738
+#: cui/uiconfig/ui/charnamepage.ui:697
#, fuzzy
msgctxt "charnamepage|eastsizeft"
msgid "Size:"
msgstr "ទំហំ"
#. 6MVEP
-#: cui/uiconfig/ui/charnamepage.ui:752
+#: cui/uiconfig/ui/charnamepage.ui:711
#, fuzzy
msgctxt "charnamepage|eastlangft"
msgid "Language:"
msgstr "ភាសា៖"
#. BhQZB
-#: cui/uiconfig/ui/charnamepage.ui:795
+#: cui/uiconfig/ui/charnamepage.ui:741
msgctxt "charnamepage|extended_tip|eaststylelb"
msgid "Select the formatting that you want to apply."
msgstr "ជ្រើស​ទ្រង់ទ្រាយ​ដែល​អ្នក​ចង់​អនុវត្ត។"
#. JSR99
-#: cui/uiconfig/ui/charnamepage.ui:818
+#: cui/uiconfig/ui/charnamepage.ui:758
msgctxt "charnamepage|extended_tip|eastsizelb"
msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
msgstr "បញ្ចូល ឬ​ជ្រើស​ទំហំ​ពុម្ពអក្សរ​ដែល​អ្នក​ចង់​អនុវត្ត។ សម្រាប់​ពុម្ពអក្សរ​ដែល​អាច​ធ្វើ​​មាត្រដ្ឋាន​បាន អ្នក​អាច​បញ្ចូល​តម្លៃ​ទសភាគ។"
#. KLJQT
-#: cui/uiconfig/ui/charnamepage.ui:848
+#: cui/uiconfig/ui/charnamepage.ui:789
msgctxt "charnamepage|extended_tip|eastlanglb"
msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
msgstr "កំណត់​ភាសា​ដែល​កម្មវិធីពិនិត្យអក្ខរាវិរុទ្ធ​ប្រើ​សម្រាប់​អត្ថបទ​ដែល​បានជ្រើស ឬ​អត្ថបទ​ដែល​អ្នក​វាយ ។ ម៉ូឌុល​ភាសា​ដែល​មាន​មាន​សញ្ញា​សម្គាល់​នៅ​ខាង​មុខ ។"
#. 5uQYn
-#: cui/uiconfig/ui/charnamepage.ui:876
+#: cui/uiconfig/ui/charnamepage.ui:828
msgctxt "charnamepage|east_features_button"
msgid "Features..."
msgstr ""
-#. vAo4E
-#: cui/uiconfig/ui/charnamepage.ui:900
-#, fuzzy
-msgctxt "charnamepage|label5"
-msgid "Asian Text Font"
-msgstr "ពុម្ពអក្សរ​អត្ថបទ​អាស៊ី"
+#. 9Ftgy
+#: cui/uiconfig/ui/charnamepage.ui:851
+msgctxt "charnamepage|tab_asian"
+msgid "Asian"
+msgstr ""
#. FSm5y
-#: cui/uiconfig/ui/charnamepage.ui:962
+#: cui/uiconfig/ui/charnamepage.ui:903
#, fuzzy
msgctxt "charnamepage|ctlsizeft"
msgid "Size:"
msgstr "ទំហំ"
-#. j6bmf
-#: cui/uiconfig/ui/charnamepage.ui:976
-#, fuzzy
-msgctxt "charnamepage|ctllangft"
-msgid "Language:"
-msgstr "ភាសា៖"
-
#. 64NvC
-#: cui/uiconfig/ui/charnamepage.ui:1019
+#: cui/uiconfig/ui/charnamepage.ui:933
msgctxt "charnamepage|extended_tip|ctlstylelb"
msgid "Select the formatting that you want to apply."
msgstr "ជ្រើស​ទ្រង់ទ្រាយ​ដែល​អ្នក​ចង់​អនុវត្ត។"
#. CeMCG
-#: cui/uiconfig/ui/charnamepage.ui:1042
+#: cui/uiconfig/ui/charnamepage.ui:950
msgctxt "charnamepage|extended_tip|ctlsizelb"
msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
msgstr "បញ្ចូល ឬ​ជ្រើស​ទំហំ​ពុម្ពអក្សរ​ដែល​អ្នក​ចង់​អនុវត្ត។ សម្រាប់​ពុម្ពអក្សរ​ដែល​អាច​ធ្វើ​​មាត្រដ្ឋាន​បាន អ្នក​អាច​បញ្ចូល​តម្លៃ​ទសភាគ។"
#. zCKxL
-#: cui/uiconfig/ui/charnamepage.ui:1072
+#: cui/uiconfig/ui/charnamepage.ui:981
msgctxt "charnamepage|extended_tip|ctllanglb"
msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
msgstr "កំណត់​ភាសា​ដែល​កម្មវិធីពិនិត្យអក្ខរាវិរុទ្ធ​ប្រើ​សម្រាប់​អត្ថបទ​ដែល​បានជ្រើស ឬ​អត្ថបទ​ដែល​អ្នក​វាយ ។ ម៉ូឌុល​ភាសា​ដែល​មាន​មាន​សញ្ញា​សម្គាល់​នៅ​ខាង​មុខ ។"
#. Nobqa
-#: cui/uiconfig/ui/charnamepage.ui:1101
+#: cui/uiconfig/ui/charnamepage.ui:1006
msgctxt "charnamepage|ctl_features_button"
msgid "Features..."
msgstr ""
-#. C8hPj
-#: cui/uiconfig/ui/charnamepage.ui:1125
+#. j6bmf
+#: cui/uiconfig/ui/charnamepage.ui:1021
#, fuzzy
-msgctxt "charnamepage|label6"
-msgid "CTL Font"
-msgstr "ពុម្ពអក្សរ CTL"
+msgctxt "charnamepage|ctllangft"
+msgid "Language:"
+msgstr "ភាសា៖"
+
+#. aVc3Q
+#: cui/uiconfig/ui/charnamepage.ui:1043
+msgctxt "charnamepage|tab_complex"
+msgid "Complex"
+msgstr ""
+
+#. Qju7H
+#: cui/uiconfig/ui/charnamepage.ui:1056
+msgctxt "charnamepage|label4"
+msgid "Text Font"
+msgstr ""
#. RyyME
-#: cui/uiconfig/ui/charnamepage.ui:1159
+#: cui/uiconfig/ui/charnamepage.ui:1090
msgctxt "charnamepage|preview-atkobject"
msgid "Preview"
msgstr "មើល​ជាមុន"
#. kbQzU
-#: cui/uiconfig/ui/charnamepage.ui:1176
+#: cui/uiconfig/ui/charnamepage.ui:1107
msgctxt "charnamepage|extended_tip|CharNamePage"
msgid "Specify the formatting and the font that you want to apply."
msgstr "បញ្ជាក់​ការ​ធ្វើ​ទ្រង់ទ្រាយ​ និង ពុម្ព​អក្សរ​ ដែល​អ្នក​ចង់​អនុវត្ត ។"
#. CQrvm
-#: cui/uiconfig/ui/colorconfigwin.ui:34
+#: cui/uiconfig/ui/colorconfigwin.ui:35
msgctxt "colorconfigwin|doccolor"
msgid "Document background"
msgstr "ផ្ទៃ​ខាង​ក្រោយ​របស់​ឯកសារ"
#. LE7Wp
-#: cui/uiconfig/ui/colorconfigwin.ui:65
+#: cui/uiconfig/ui/colorconfigwin.ui:64
msgctxt "colorconfigwin|docboundaries"
msgid "Text boundaries"
msgstr "ព្រំដែន​អត្ថបទ"
#. Df2ut
-#: cui/uiconfig/ui/colorconfigwin.ui:97
+#: cui/uiconfig/ui/colorconfigwin.ui:96
msgctxt "colorconfigwin|docboundaries_lb"
msgid "Text boundaries color"
msgstr ""
@@ -6859,373 +6897,385 @@ msgid "Application background"
msgstr "ផ្ទៃ​ខាង​ក្រោយ​របស់​កម្មវិធី"
#. XAMAa
-#: cui/uiconfig/ui/colorconfigwin.ui:141
+#: cui/uiconfig/ui/colorconfigwin.ui:139
msgctxt "colorconfigwin|objboundaries"
msgid "Object boundaries"
msgstr "ព្រំដែន​វត្ថុ"
#. ubeED
-#: cui/uiconfig/ui/colorconfigwin.ui:173
+#: cui/uiconfig/ui/colorconfigwin.ui:171
msgctxt "colorconfigwin|objboundaries_lb"
msgid "Object boundaries color"
msgstr ""
#. KsUa5
-#: cui/uiconfig/ui/colorconfigwin.ui:184
+#: cui/uiconfig/ui/colorconfigwin.ui:182
msgctxt "colorconfigwin|tblboundaries"
msgid "Table boundaries"
msgstr "ព្រំដែន​តារាង"
#. uJLG6
-#: cui/uiconfig/ui/colorconfigwin.ui:216
+#: cui/uiconfig/ui/colorconfigwin.ui:214
msgctxt "colorconfigwin|tblboundaries_lb"
msgid "Table boundaries color"
msgstr ""
#. TkNp4
-#: cui/uiconfig/ui/colorconfigwin.ui:230
+#: cui/uiconfig/ui/colorconfigwin.ui:229
msgctxt "colorconfigwin|font"
msgid "Font color"
msgstr "ពណ៌​ពុម្ពអក្សរ"
#. EhDTB
-#: cui/uiconfig/ui/colorconfigwin.ui:260
+#: cui/uiconfig/ui/colorconfigwin.ui:257
msgctxt "colorconfigwin|unvisitedlinks"
msgid "Unvisited links"
msgstr "តំណដែល​មិន​ទាន់​ទស្សនា"
#. DySTC
-#: cui/uiconfig/ui/colorconfigwin.ui:292
+#: cui/uiconfig/ui/colorconfigwin.ui:289
msgctxt "colorconfigwin|unvisitedlinks_lb"
msgid "Unvisited links color"
msgstr ""
#. UTPiE
-#: cui/uiconfig/ui/colorconfigwin.ui:303
+#: cui/uiconfig/ui/colorconfigwin.ui:300
msgctxt "colorconfigwin|visitedlinks"
msgid "Visited links"
msgstr "តំណ​ដែល​បានទស្សនា"
#. NmbCZ
-#: cui/uiconfig/ui/colorconfigwin.ui:335
+#: cui/uiconfig/ui/colorconfigwin.ui:332
msgctxt "colorconfigwin|visitedlinks_lb"
msgid "Visited links color"
msgstr ""
#. RP2Vp
-#: cui/uiconfig/ui/colorconfigwin.ui:349
+#: cui/uiconfig/ui/colorconfigwin.ui:347
msgctxt "colorconfigwin|autospellcheck"
msgid "AutoSpellcheck"
msgstr "​ពិនិត្យ​អក្ខរាវិរុទ្ធ​ស្វ័យប្រវត្តិ"
#. CpXy5
-#: cui/uiconfig/ui/colorconfigwin.ui:382
+#: cui/uiconfig/ui/colorconfigwin.ui:379
msgctxt "colorconfigwin|smarttags"
msgid "Smart Tags"
msgstr "ស្លាក​ឆ្លាត"
#. HshHE
-#: cui/uiconfig/ui/colorconfigwin.ui:412
+#: cui/uiconfig/ui/colorconfigwin.ui:407
msgctxt "colorconfigwin|shadows"
msgid "Shadows"
msgstr "ស្រមោល"
#. EGNdC
-#: cui/uiconfig/ui/colorconfigwin.ui:444
+#: cui/uiconfig/ui/colorconfigwin.ui:439
msgctxt "colorconfigwin|shadows_lb"
msgid "Shadows color"
msgstr ""
#. hDvCW
-#: cui/uiconfig/ui/colorconfigwin.ui:459
+#: cui/uiconfig/ui/colorconfigwin.ui:454
msgctxt "colorconfigwin|general"
msgid "General"
msgstr "ទូទៅ"
#. 3bVoq
-#: cui/uiconfig/ui/colorconfigwin.ui:492
+#: cui/uiconfig/ui/colorconfigwin.ui:488
msgctxt "colorconfigwin|writergrid"
msgid "Grid"
msgstr "ក្រឡា​​​​ចត្រង្គ"
#. RydzU
-#: cui/uiconfig/ui/colorconfigwin.ui:523
+#: cui/uiconfig/ui/colorconfigwin.ui:517
msgctxt "colorconfigwin|field"
msgid "Field shadings"
msgstr "ស្រមោល​វាល"
#. DEpAZ
-#: cui/uiconfig/ui/colorconfigwin.ui:555
+#: cui/uiconfig/ui/colorconfigwin.ui:549
msgctxt "colorconfigwin|field_lb"
msgid "Field shadings color"
msgstr ""
#. DqZGn
-#: cui/uiconfig/ui/colorconfigwin.ui:566
+#: cui/uiconfig/ui/colorconfigwin.ui:560
msgctxt "colorconfigwin|index"
msgid "Index and table shadings"
msgstr "លិបិក្រម និង​ស្រមោល​តារាង"
#. sGffP
-#: cui/uiconfig/ui/colorconfigwin.ui:598
+#: cui/uiconfig/ui/colorconfigwin.ui:592
msgctxt "colorconfigwin|index_lb"
msgid "Index and table shadings color"
msgstr ""
#. wBw2w
-#: cui/uiconfig/ui/colorconfigwin.ui:612
+#: cui/uiconfig/ui/colorconfigwin.ui:607
msgctxt "colorconfigwin|script"
msgid "Script Indicator"
msgstr "ទ្រនិច​បង្ហាញ​ស្គ្រីប"
#. fitqS
-#: cui/uiconfig/ui/colorconfigwin.ui:642
+#: cui/uiconfig/ui/colorconfigwin.ui:635
msgctxt "colorconfigwin|section"
msgid "Section boundaries"
msgstr "ព្រំដែនភាគ"
#. ztqX5
-#: cui/uiconfig/ui/colorconfigwin.ui:674
+#: cui/uiconfig/ui/colorconfigwin.ui:667
msgctxt "colorconfigwin|section_lb"
msgid "Section boundaries color"
msgstr ""
#. wHL6h
-#: cui/uiconfig/ui/colorconfigwin.ui:688
+#: cui/uiconfig/ui/colorconfigwin.ui:682
msgctxt "colorconfigwin|hdft"
msgid "Headers and Footer delimiter"
msgstr "សញ្ញា​កំណត់​ព្រំដែន​បឋមកថា និង​បាតកថា"
#. dCEBJ
-#: cui/uiconfig/ui/colorconfigwin.ui:721
+#: cui/uiconfig/ui/colorconfigwin.ui:714
msgctxt "colorconfigwin|pagebreak"
msgid "Page and column breaks"
msgstr "ទំព័រ និង​ការបំបែក​ជួរ​ឈរ"
#. yrTZF
-#: cui/uiconfig/ui/colorconfigwin.ui:754
+#: cui/uiconfig/ui/colorconfigwin.ui:746
msgctxt "colorconfigwin|direct"
msgid "Direct Cursor"
msgstr "ទស្សន៍ទ្រនិច​ផ្ទាល់"
#. ZZcPY
-#: cui/uiconfig/ui/colorconfigwin.ui:788
+#: cui/uiconfig/ui/colorconfigwin.ui:778
msgctxt "colorconfigwin|writer"
msgid "Text Document"
msgstr "ឯកសារ​​អត្ថបទ"
#. GFFes
-#: cui/uiconfig/ui/colorconfigwin.ui:821
+#: cui/uiconfig/ui/colorconfigwin.ui:812
msgctxt "colorconfigwin|calcgrid"
msgid "Grid lines"
msgstr "បន្ទាត់​ក្រឡាចត្រង្គ"
#. MGvyJ
-#: cui/uiconfig/ui/colorconfigwin.ui:855
+#: cui/uiconfig/ui/colorconfigwin.ui:845
msgctxt "colorconfigwin|brk"
msgid "Page breaks"
msgstr "ការបំបែក​ទំព័រ"
#. aNnBE
-#: cui/uiconfig/ui/colorconfigwin.ui:888
+#: cui/uiconfig/ui/colorconfigwin.ui:877
msgctxt "colorconfigwin|brkmanual"
msgid "Manual page breaks"
msgstr "ការបំបែក​ទំព័រ​ដោយ​ដៃ"
#. PVzmm
-#: cui/uiconfig/ui/colorconfigwin.ui:921
+#: cui/uiconfig/ui/colorconfigwin.ui:909
msgctxt "colorconfigwin|brkauto"
msgid "Automatic page breaks"
msgstr "ការបំបែក​ទំព័រ​ដោយ​ស្វ័យ​ប្រវត្តិ"
#. NgGUC
-#: cui/uiconfig/ui/colorconfigwin.ui:954
+#: cui/uiconfig/ui/colorconfigwin.ui:941
msgctxt "colorconfigwin|det"
msgid "Detective"
msgstr "ដែល​រក​ឃើញ"
#. 5Mp8g
-#: cui/uiconfig/ui/colorconfigwin.ui:1005
+#: cui/uiconfig/ui/colorconfigwin.ui:990
msgctxt "colorconfigwin|deterror"
msgid "Detective error"
msgstr "អ្នក​អង្កេត​មាន​កំហុស"
#. K5CDH
-#: cui/uiconfig/ui/colorconfigwin.ui:1038
+#: cui/uiconfig/ui/colorconfigwin.ui:1022
msgctxt "colorconfigwin|ref"
msgid "References"
msgstr "សេចក្តី​យោង"
#. ebAgi
-#: cui/uiconfig/ui/colorconfigwin.ui:1071
+#: cui/uiconfig/ui/colorconfigwin.ui:1054
msgctxt "colorconfigwin|notes"
msgid "Notes background"
msgstr "ផ្ទៃ​ខាង​ក្រោយ​របស់​ចំណាំ"
#. KdFAN
-#: cui/uiconfig/ui/colorconfigwin.ui:1104
+#: cui/uiconfig/ui/colorconfigwin.ui:1086
msgctxt "colorconfigwin|values"
msgid "Values"
msgstr ""
#. UfL75
-#: cui/uiconfig/ui/colorconfigwin.ui:1137
+#: cui/uiconfig/ui/colorconfigwin.ui:1118
msgctxt "colorconfigwin|formulas"
msgid "Formulas"
msgstr ""
#. 9kx8m
-#: cui/uiconfig/ui/colorconfigwin.ui:1170
+#: cui/uiconfig/ui/colorconfigwin.ui:1150
msgctxt "colorconfigwin|text"
msgid "Text"
msgstr ""
#. ZCYmf
-#: cui/uiconfig/ui/colorconfigwin.ui:1203
+#: cui/uiconfig/ui/colorconfigwin.ui:1182
msgctxt "colorconfigwin|protectedcells"
msgid "Protected cells background"
msgstr ""
+#. pqHBt
+#: cui/uiconfig/ui/colorconfigwin.ui:1193
+msgctxt "colorconfigwin|hiddencolrow"
+msgid "Hidden columns/rows"
+msgstr ""
+
+#. gTFFH
+#: cui/uiconfig/ui/colorconfigwin.ui:1225
+msgctxt "colorconfigwin|hiddencolrow_lb"
+msgid "Hidden row/column color"
+msgstr ""
+
#. mA6HV
-#: cui/uiconfig/ui/colorconfigwin.ui:1219
+#: cui/uiconfig/ui/colorconfigwin.ui:1240
msgctxt "colorconfigwin|calc"
msgid "Spreadsheet"
msgstr "សៀវភៅ​បញ្ជ​"
#. C8q88
-#: cui/uiconfig/ui/colorconfigwin.ui:1271
+#: cui/uiconfig/ui/colorconfigwin.ui:1292
msgctxt "colorconfigwin|drawgrid"
msgid "Grid"
msgstr "ក្រឡា​​​​ចត្រង្គ"
#. oKFnR
-#: cui/uiconfig/ui/colorconfigwin.ui:1287
+#: cui/uiconfig/ui/colorconfigwin.ui:1307
msgctxt "colorconfigwin|draw"
msgid "Drawing / Presentation"
msgstr "គំនូរ / ការបង្ហាញ"
#. yELpi
-#: cui/uiconfig/ui/colorconfigwin.ui:1339
+#: cui/uiconfig/ui/colorconfigwin.ui:1359
msgctxt "colorconfigwin|basicid"
msgid "Identifier"
msgstr "គ្រឿង​សម្គាល់"
#. 5uQto
-#: cui/uiconfig/ui/colorconfigwin.ui:1372
+#: cui/uiconfig/ui/colorconfigwin.ui:1391
msgctxt "colorconfigwin|basiccomment"
msgid "Comment"
msgstr "មតិយោបល់"
#. 73qea
-#: cui/uiconfig/ui/colorconfigwin.ui:1405
+#: cui/uiconfig/ui/colorconfigwin.ui:1423
msgctxt "colorconfigwin|basicnumber"
msgid "Number"
msgstr "ចំនួន"
#. rHmNM
-#: cui/uiconfig/ui/colorconfigwin.ui:1438
+#: cui/uiconfig/ui/colorconfigwin.ui:1455
msgctxt "colorconfigwin|basicstring"
msgid "String"
msgstr "ខ្សែ​អក្សរ"
#. Kf9eR
-#: cui/uiconfig/ui/colorconfigwin.ui:1471
+#: cui/uiconfig/ui/colorconfigwin.ui:1487
msgctxt "colorconfigwin|basicop"
msgid "Operator"
msgstr "សញ្ញាប្រមាណវិធី"
#. EFQpW
-#: cui/uiconfig/ui/colorconfigwin.ui:1504
+#: cui/uiconfig/ui/colorconfigwin.ui:1519
msgctxt "colorconfigwin|basickeyword"
msgid "Reserved expression"
msgstr "កន្សោម​ដែល​បាន​បម្រុង"
#. QEuyS
-#: cui/uiconfig/ui/colorconfigwin.ui:1537
+#: cui/uiconfig/ui/colorconfigwin.ui:1551
msgctxt "colorconfigwin|error"
msgid "Error"
msgstr "កំហុស"
#. 4JokA
-#: cui/uiconfig/ui/colorconfigwin.ui:1553
+#: cui/uiconfig/ui/colorconfigwin.ui:1566
msgctxt "colorconfigwin|basic"
msgid "Basic Syntax Highlighting"
msgstr "បន្លិច​វាក្យ​សម្ព័ន្ធ​មូលដ្ឋាន"
#. ERVJA
-#: cui/uiconfig/ui/colorconfigwin.ui:1605
+#: cui/uiconfig/ui/colorconfigwin.ui:1618
msgctxt "colorconfigwin|sqlid"
msgid "Identifier"
msgstr "គ្រឿង​សម្គាល់"
#. nAF39
-#: cui/uiconfig/ui/colorconfigwin.ui:1638
+#: cui/uiconfig/ui/colorconfigwin.ui:1650
msgctxt "colorconfigwin|sqlnumber"
msgid "Number"
msgstr "ចំនួន"
#. B6Bku
-#: cui/uiconfig/ui/colorconfigwin.ui:1671
+#: cui/uiconfig/ui/colorconfigwin.ui:1682
msgctxt "colorconfigwin|sqlstring"
msgid "String"
msgstr "ខ្សែ​អក្សរ"
#. FPDgu
-#: cui/uiconfig/ui/colorconfigwin.ui:1704
+#: cui/uiconfig/ui/colorconfigwin.ui:1714
msgctxt "colorconfigwin|sqlop"
msgid "Operator"
msgstr "សញ្ញាប្រមាណវិធី"
#. 4t4Ww
-#: cui/uiconfig/ui/colorconfigwin.ui:1737
+#: cui/uiconfig/ui/colorconfigwin.ui:1746
msgctxt "colorconfigwin|sqlkeyword"
msgid "Keyword"
msgstr "ពាក្យ​គន្លឹះ"
#. qbVhS
-#: cui/uiconfig/ui/colorconfigwin.ui:1770
+#: cui/uiconfig/ui/colorconfigwin.ui:1778
msgctxt "colorconfigwin|sqlparam"
msgid "Parameter"
msgstr "ប៉ារ៉ាម៉ែត្រ"
#. B7ubh
-#: cui/uiconfig/ui/colorconfigwin.ui:1803
+#: cui/uiconfig/ui/colorconfigwin.ui:1810
msgctxt "colorconfigwin|sqlcomment"
msgid "Comment"
msgstr "មតិយោបល់"
#. PLRFA
-#: cui/uiconfig/ui/colorconfigwin.ui:1819
+#: cui/uiconfig/ui/colorconfigwin.ui:1825
msgctxt "colorconfigwin|sql"
msgid "SQL Syntax Highlighting"
msgstr "ការបន្លិចវាក្យសម្ព័ន្ធ​របស់ SQL"
#. NcJi8
-#: cui/uiconfig/ui/colorconfigwin.ui:1871
+#: cui/uiconfig/ui/colorconfigwin.ui:1877
msgctxt "colorconfigwin|sgml"
msgid "SGML syntax highlighting"
msgstr "ការបន្លិច​វាក្យ​សម្ព័ន្ធ​របស់​ SGML"
#. uYB5C
-#: cui/uiconfig/ui/colorconfigwin.ui:1886
+#: cui/uiconfig/ui/colorconfigwin.ui:1892
msgctxt "colorconfigwin|htmlcomment"
msgid "Comment highlighting"
msgstr "បន្លិចមតិយោបល់"
#. 82UJf
-#: cui/uiconfig/ui/colorconfigwin.ui:1919
+#: cui/uiconfig/ui/colorconfigwin.ui:1924
msgctxt "colorconfigwin|htmlkeyword"
msgid "Keyword highlighting"
msgstr "ការបន្លិច​ពាក្យ​គន្លឹះ"
#. otYwD
-#: cui/uiconfig/ui/colorconfigwin.ui:1952
+#: cui/uiconfig/ui/colorconfigwin.ui:1956
msgctxt "colorconfigwin|unknown"
msgid "Text"
msgstr "អត្ថបទ"
#. XxGeg
-#: cui/uiconfig/ui/colorconfigwin.ui:1986
+#: cui/uiconfig/ui/colorconfigwin.ui:1988
msgctxt "colorconfigwin|html"
msgid "HTML Document"
msgstr "ឯកសារ ​HTML"
@@ -7657,10 +7707,10 @@ msgctxt "colorpickerdialog|label4"
msgid "CMYK"
msgstr "CMYK"
-#. 9KyXs
+#. HuUmH
#: cui/uiconfig/ui/colorpickerdialog.ui:815
msgctxt "extended tip | ColorPicker"
-msgid "%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog."
+msgid "Define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog."
msgstr ""
#. vDFei
@@ -7670,49 +7720,49 @@ msgid "Insert Comment"
msgstr "បញ្ចូលមតិយោបល់"
#. 22CJX
-#: cui/uiconfig/ui/comment.ui:162
+#: cui/uiconfig/ui/comment.ui:160
msgctxt "comment|label2"
msgid "Author"
msgstr "អ្នកនិពន្ធ ​"
#. QNkY6
-#: cui/uiconfig/ui/comment.ui:194
+#: cui/uiconfig/ui/comment.ui:192
msgctxt "comment|label4"
msgid "_Text"
msgstr "អត្ថបទ "
#. 4ZGAd
-#: cui/uiconfig/ui/comment.ui:221
+#: cui/uiconfig/ui/comment.ui:219
msgctxt "comment|extended_tip|edit"
msgid "Enter a comment for the recorded change."
msgstr ""
#. bEtYk
-#: cui/uiconfig/ui/comment.ui:243
+#: cui/uiconfig/ui/comment.ui:241
msgctxt "comment|label5"
msgid "_Insert"
msgstr "បញ្ចូល"
#. eGHyF
-#: cui/uiconfig/ui/comment.ui:255
+#: cui/uiconfig/ui/comment.ui:253
msgctxt "comment|author"
msgid "Author"
msgstr "អ្នកនិពន្ធ ​"
#. VjKDs
-#: cui/uiconfig/ui/comment.ui:276
+#: cui/uiconfig/ui/comment.ui:274
msgctxt "comment|alttitle"
msgid "Edit Comment"
msgstr "កែសម្រួល​មតិយោបល់"
#. JKZFi
-#: cui/uiconfig/ui/comment.ui:290
+#: cui/uiconfig/ui/comment.ui:288
msgctxt "comment|label1"
msgid "Contents"
msgstr "មាតិកា"
#. qSQBN
-#: cui/uiconfig/ui/comment.ui:315
+#: cui/uiconfig/ui/comment.ui:313
msgctxt "comment|extended_tip|CommentDialog"
msgid "Enter a comment for the recorded change."
msgstr ""
@@ -8164,11 +8214,11 @@ msgctxt "databaselinkdialog|label4"
msgid "Registered _name:"
msgstr "ឈ្មោះ​ដែល​បាន​ចុះ​ឈ្មោះ "
-#. qrTa8
+#. iaGuz
#: cui/uiconfig/ui/databaselinkdialog.ui:180
msgctxt "extended_tip|name"
-msgid "Enter a name for the database. %PRODUCTNAME uses this name to access the database."
-msgstr "បញ្ចូល​ឈ្មោះ​មួយ​សម្រាប់​មូលដ្ឋាន​ទិន្នន័យ​ ។ %PRODUCTNAME ប្រើ​ឈ្មោះ​នេះ​ដើម្បី​ចូល​ដំណើរ​ការ​មូលដ្ឋាន​ទិន្នន័យ ។"
+msgid "Enter a name for the database. The office suite uses this name to access the database."
+msgstr ""
#. FrRyU
#: cui/uiconfig/ui/databaselinkdialog.ui:199
@@ -8755,241 +8805,241 @@ msgid "Effects"
msgstr ""
#. FY52V
-#: cui/uiconfig/ui/effectspage.ui:323
+#: cui/uiconfig/ui/effectspage.ui:324
msgctxt "effectspage|label46"
msgid "O_verlining:"
msgstr ""
#. ceoHc
-#: cui/uiconfig/ui/effectspage.ui:337
+#: cui/uiconfig/ui/effectspage.ui:338
msgctxt "effectspage|label47"
msgid "Stri_kethrough:"
msgstr ""
#. Qisd2
-#: cui/uiconfig/ui/effectspage.ui:351
+#: cui/uiconfig/ui/effectspage.ui:352
msgctxt "effectspage|label48"
msgid "_Underlining:"
msgstr ""
#. EGta9
-#: cui/uiconfig/ui/effectspage.ui:366 cui/uiconfig/ui/effectspage.ui:400
+#: cui/uiconfig/ui/effectspage.ui:367 cui/uiconfig/ui/effectspage.ui:401
msgctxt "effectspage|liststore6"
msgid "(Without)"
msgstr "(គ្មាន)"
#. wvpKK
-#: cui/uiconfig/ui/effectspage.ui:367 cui/uiconfig/ui/effectspage.ui:401
+#: cui/uiconfig/ui/effectspage.ui:368 cui/uiconfig/ui/effectspage.ui:402
msgctxt "effectspage|liststore6"
msgid "Single"
msgstr "តែ​មួយ"
#. dCubb
-#: cui/uiconfig/ui/effectspage.ui:368 cui/uiconfig/ui/effectspage.ui:402
+#: cui/uiconfig/ui/effectspage.ui:369 cui/uiconfig/ui/effectspage.ui:403
msgctxt "effectspage|liststore6"
msgid "Double"
msgstr "ទ្វេ"
#. JFKfG
-#: cui/uiconfig/ui/effectspage.ui:369 cui/uiconfig/ui/effectspage.ui:403
+#: cui/uiconfig/ui/effectspage.ui:370 cui/uiconfig/ui/effectspage.ui:404
msgctxt "effectspage|liststore6"
msgid "Bold"
msgstr "ដិត"
#. m7Jwh
-#: cui/uiconfig/ui/effectspage.ui:370 cui/uiconfig/ui/effectspage.ui:404
+#: cui/uiconfig/ui/effectspage.ui:371 cui/uiconfig/ui/effectspage.ui:405
msgctxt "effectspage|liststore6"
msgid "Dotted"
msgstr "ចុចៗ"
#. iC5t6
-#: cui/uiconfig/ui/effectspage.ui:371 cui/uiconfig/ui/effectspage.ui:405
+#: cui/uiconfig/ui/effectspage.ui:372 cui/uiconfig/ui/effectspage.ui:406
msgctxt "effectspage|liststore6"
msgid "Dotted (Bold)"
msgstr "ចុចៗ (ដិត)"
#. uGcdw
-#: cui/uiconfig/ui/effectspage.ui:372 cui/uiconfig/ui/effectspage.ui:406
+#: cui/uiconfig/ui/effectspage.ui:373 cui/uiconfig/ui/effectspage.ui:407
msgctxt "effectspage|liststore6"
msgid "Dash"
msgstr "ដាច់ៗ"
#. BLRCY
-#: cui/uiconfig/ui/effectspage.ui:373 cui/uiconfig/ui/effectspage.ui:407
+#: cui/uiconfig/ui/effectspage.ui:374 cui/uiconfig/ui/effectspage.ui:408
msgctxt "effectspage|liststore6"
msgid "Dash (Bold)"
msgstr "ដាច់ៗ (ដិត)"
#. FCcKo
-#: cui/uiconfig/ui/effectspage.ui:374 cui/uiconfig/ui/effectspage.ui:408
+#: cui/uiconfig/ui/effectspage.ui:375 cui/uiconfig/ui/effectspage.ui:409
msgctxt "effectspage|liststore6"
msgid "Long Dash"
msgstr "ដាច់ៗ​វែង"
#. 7UBEL
-#: cui/uiconfig/ui/effectspage.ui:375 cui/uiconfig/ui/effectspage.ui:409
+#: cui/uiconfig/ui/effectspage.ui:376 cui/uiconfig/ui/effectspage.ui:410
msgctxt "effectspage|liststore6"
msgid "Long Dash (Bold)"
msgstr "ដាច់ៗ​វែង (ដិត)"
#. a58XD
-#: cui/uiconfig/ui/effectspage.ui:376 cui/uiconfig/ui/effectspage.ui:410
+#: cui/uiconfig/ui/effectspage.ui:377 cui/uiconfig/ui/effectspage.ui:411
msgctxt "effectspage|liststore6"
msgid "Dot Dash"
msgstr "ដាច់ៗ​ចុចៗ"
#. MhBD8
-#: cui/uiconfig/ui/effectspage.ui:377 cui/uiconfig/ui/effectspage.ui:411
+#: cui/uiconfig/ui/effectspage.ui:378 cui/uiconfig/ui/effectspage.ui:412
msgctxt "effectspage|liststore6"
msgid "Dot Dash (Bold)"
msgstr "ដាច់ៗ​ចុចៗ (ដិត)"
#. AcyEi
-#: cui/uiconfig/ui/effectspage.ui:378 cui/uiconfig/ui/effectspage.ui:412
+#: cui/uiconfig/ui/effectspage.ui:379 cui/uiconfig/ui/effectspage.ui:413
msgctxt "effectspage|liststore6"
msgid "Dot Dot Dash"
msgstr "ដាច់ៗ​ចុចៗ"
#. BRq6u
-#: cui/uiconfig/ui/effectspage.ui:379 cui/uiconfig/ui/effectspage.ui:413
+#: cui/uiconfig/ui/effectspage.ui:380 cui/uiconfig/ui/effectspage.ui:414
msgctxt "effectspage|liststore6"
msgid "Dot Dot Dash (Bold)"
msgstr "ដាច់ៗ​ចុចៗ (ដិត)"
#. kEEBv
-#: cui/uiconfig/ui/effectspage.ui:380 cui/uiconfig/ui/effectspage.ui:414
+#: cui/uiconfig/ui/effectspage.ui:381 cui/uiconfig/ui/effectspage.ui:415
msgctxt "effectspage|liststore6"
msgid "Wave"
msgstr "រលក"
#. XDicz
-#: cui/uiconfig/ui/effectspage.ui:381 cui/uiconfig/ui/effectspage.ui:415
+#: cui/uiconfig/ui/effectspage.ui:382 cui/uiconfig/ui/effectspage.ui:416
msgctxt "effectspage|liststore6"
msgid "Wave (Bold)"
msgstr "រលក (ដិត)"
#. ZxdxD
-#: cui/uiconfig/ui/effectspage.ui:382 cui/uiconfig/ui/effectspage.ui:416
+#: cui/uiconfig/ui/effectspage.ui:383 cui/uiconfig/ui/effectspage.ui:417
msgctxt "effectspage|liststore6"
msgid "Double Wave"
msgstr "រលក​ទ្វេ"
#. i6Qpd
-#: cui/uiconfig/ui/effectspage.ui:386
+#: cui/uiconfig/ui/effectspage.ui:387
msgctxt "effectspage|extended_tip|overlinelb"
msgid "Select the overlining style that you want to apply. To apply the overlining to words only, select the Individual Words box."
msgstr "ជ្រើស​រចនាប័ទ្ម​​គូស​បន្ទាត់​ពី​លើ ដែល​អ្នក​ចង់​អនុវត្ត​ ។ ដើម្បី​អនុវត្ត​ការគូស​បន្ទាត់​ពី​លើ​តែ​ជាមួយ​នឹង​ពាក្យ​ ជ្រើស​ប្រអប់​ ពាក្យ​នីមួយ​ៗ​ ។"
#. jbrhD
-#: cui/uiconfig/ui/effectspage.ui:420
+#: cui/uiconfig/ui/effectspage.ui:421
msgctxt "effectspage|extended_tip|underlinelb"
msgid "Select the underlining style that you want to apply. To apply the underlining to words only, select the Individual Words box."
msgstr "ជ្រើស​រចនាប័ទ្ម​​គូស​បន្ទាត់​ពី​លើ ដែល​អ្នក​ចង់​អនុវត្ត​ ។ ដើម្បី​អនុវត្ត​ការគូស​បន្ទាត់​ពី​លើ​តែ​ជាមួយ​នឹង​ពាក្យ​ ជ្រើស​ប្រអប់​ ពាក្យ​នីមួយ​ៗ​ ។"
#. FgNij
-#: cui/uiconfig/ui/effectspage.ui:434
+#: cui/uiconfig/ui/effectspage.ui:435
msgctxt "effectspage|liststore5"
msgid "(Without)"
msgstr "(គ្មាន)"
#. Q4YtH
-#: cui/uiconfig/ui/effectspage.ui:435
+#: cui/uiconfig/ui/effectspage.ui:436
msgctxt "effectspage|liststore5"
msgid "Single"
msgstr "តែ​មួយ"
#. 9ndBZ
-#: cui/uiconfig/ui/effectspage.ui:436
+#: cui/uiconfig/ui/effectspage.ui:437
msgctxt "effectspage|liststore5"
msgid "Double"
msgstr "ទ្វេ"
#. p5Q9A
-#: cui/uiconfig/ui/effectspage.ui:437
+#: cui/uiconfig/ui/effectspage.ui:438
msgctxt "effectspage|liststore5"
msgid "Bold"
msgstr "ដិត"
#. bcZBk
-#: cui/uiconfig/ui/effectspage.ui:438
+#: cui/uiconfig/ui/effectspage.ui:439
msgctxt "effectspage|liststore5"
msgid "With /"
msgstr "ជាមួយ /"
#. GJKbv
-#: cui/uiconfig/ui/effectspage.ui:439
+#: cui/uiconfig/ui/effectspage.ui:440
msgctxt "effectspage|liststore5"
msgid "With X"
msgstr "ជាមួយ X"
#. Pmdav
-#: cui/uiconfig/ui/effectspage.ui:443
+#: cui/uiconfig/ui/effectspage.ui:444
msgctxt "effectspage|extended_tip|strikeoutlb"
msgid "Select a strikethrough style for the selected text."
msgstr "ជ្រើស​រចនាប័ទ្ម​បន្ទាត់​ឆូត​សម្រាប់​អត្ថបទ​ដែល​បាន​ជ្រើស។"
#. qtErr
-#: cui/uiconfig/ui/effectspage.ui:465
+#: cui/uiconfig/ui/effectspage.ui:467
msgctxt "effectspage|extended_tip|underlinecolorlb"
msgid "Select the color for the underlining."
msgstr "ជ្រើស​ពណ៌​សម្រាប់​បន្ទាត់​ក្រោម។"
#. vuxpt
-#: cui/uiconfig/ui/effectspage.ui:487
+#: cui/uiconfig/ui/effectspage.ui:490
msgctxt "effectspage|extended_tip|overlinecolorlb"
msgid "Select the color for the overlining."
msgstr "ជ្រើស​ពណ៌​សម្រាប់​បន្ទាត់​លើ។"
#. JP4PB
-#: cui/uiconfig/ui/effectspage.ui:498
+#: cui/uiconfig/ui/effectspage.ui:501
msgctxt "effectspage|individualwordscb"
msgid "_Individual words"
msgstr ""
#. AP5Gy
-#: cui/uiconfig/ui/effectspage.ui:506
+#: cui/uiconfig/ui/effectspage.ui:509
msgctxt "effectspage|extended_tip|individualwordscb"
msgid "Applies the selected effect only to words and ignores spaces."
msgstr "អនុវត្ត​បែបផែន​ដែល​បាន​ជ្រើស​ចំពោះ​តែ​ពាក្យ​ប៉ុណ្ណោះ ហើយ​មិន​អើពើ​ដកឃ្លា។"
#. oFKJN
-#: cui/uiconfig/ui/effectspage.ui:550
+#: cui/uiconfig/ui/effectspage.ui:553
msgctxt "effectspage|textdecoration"
msgid "Text Decoration"
msgstr ""
#. fMFiW
-#: cui/uiconfig/ui/effectspage.ui:582
+#: cui/uiconfig/ui/effectspage.ui:585
msgctxt "effectspage|fontcolorft"
msgid "_Font color:"
msgstr ""
#. ttwFt
-#: cui/uiconfig/ui/effectspage.ui:605
+#: cui/uiconfig/ui/effectspage.ui:608
msgctxt "effectspage|extended_tip|fontcolorlb"
msgid "Sets the color for the selected text. If you select Automatic, the text color is set to black for light backgrounds and to white for dark backgrounds."
msgstr ""
#. aAbzm
-#: cui/uiconfig/ui/effectspage.ui:617
+#: cui/uiconfig/ui/effectspage.ui:620
msgctxt "effectspage|a11ywarning"
msgid "Accessibility option \"Use automatic font color for screen display\" is active. Font color attributes are not currently used to display text."
msgstr ""
#. AZF8Q
-#: cui/uiconfig/ui/effectspage.ui:631
+#: cui/uiconfig/ui/effectspage.ui:634
msgctxt "effectspage|fonttransparencyft"
msgid "_Transparency:"
msgstr ""
#. vELSr
-#: cui/uiconfig/ui/effectspage.ui:663
+#: cui/uiconfig/ui/effectspage.ui:672
msgctxt "effectspage|fontcolorft3"
msgid "Font Color"
msgstr ""
#. TzsRB
-#: cui/uiconfig/ui/effectspage.ui:678
+#: cui/uiconfig/ui/effectspage.ui:687
msgctxt "effectspage|extended_tip|EffectsPage"
msgid "Specify the font effects that you want to use."
msgstr "បញ្ជាក់​បែបផែន​ពុម្ពអក្សរ​ដែល​អ្នក​ចង់​ប្រើ។"
@@ -9109,10 +9159,10 @@ msgctxt "eventassignpage|extended_tip|delete"
msgid "Removes the macro assignment from the selected entry."
msgstr ""
-#. 9GNQR
+#. 3Gmuh
#: cui/uiconfig/ui/eventassignpage.ui:237
msgctxt "eventassignpage|extended_tip|libraries"
-msgid "Lists the %PRODUCTNAME program and any open %PRODUCTNAME document."
+msgid "Lists the office suite program and any open documents."
msgstr ""
#. y7Vyi
@@ -9178,10 +9228,10 @@ msgctxt "eventsconfigpage|label2"
msgid "Save in:"
msgstr "រក្សា​ទុក​ក្នុង"
-#. JQMTJ
+#. AXbbm
#: cui/uiconfig/ui/eventsconfigpage.ui:147
msgctxt "eventsconfigpage|extended_tip|savein"
-msgid "Select first where to save the event binding, in the current document or in %PRODUCTNAME."
+msgid "Select first where to save the event binding, in the current document or in the office suite."
msgstr ""
#. C6KwW
@@ -9244,11 +9294,11 @@ msgctxt "fmsearchdialog|extended_tip|pbSearchAgain"
msgid "Starts or cancels the search."
msgstr "ចាប់​ផ្តើម​​​ ឬ​ បោះបង់​ចោល​​​ការ​ស្វែង​រក​ ។​"
-#. QReEJ
+#. 9gcWy
#: cui/uiconfig/ui/fmsearchdialog.ui:52
msgctxt "fmsearchdialog|extended_tip|close"
-msgid "Closes the dialog. The settings of the last search will be saved until you quit %PRODUCTNAME."
-msgstr "បិទ​ប្រអប់​ ។ ការ​កំណត់​របស់​ការ​ស្វែង​រក​ចុង​ក្រោយ​​នឹង​ត្រូវ​បានរក្សា​ទុក​រហូត​ដល់​ពេលអ្នក​បិទ ។ %PRODUCTNAME ។"
+msgid "Closes the dialog. The settings of the last search will be saved until you quit the office suite."
+msgstr ""
#. UPeyv
#: cui/uiconfig/ui/fmsearchdialog.ui:144
@@ -9419,110 +9469,110 @@ msgid "Similarities..."
msgstr ""
#. PtuHs
-#: cui/uiconfig/ui/fmsearchdialog.ui:632
+#: cui/uiconfig/ui/fmsearchdialog.ui:631
msgctxt "fmsearchdialog|extended_tip|pbApproxSettings"
msgid "Find terms that are similar to the Find text. Select this checkbox, and then click the Similarities button to define the similarity options."
msgstr ""
#. 6BpAF
-#: cui/uiconfig/ui/fmsearchdialog.ui:649
+#: cui/uiconfig/ui/fmsearchdialog.ui:648
msgctxt "fmsearchdialog|cbCase"
msgid "_Match case"
msgstr "ករណី​ផ្គូផ្គង"
#. Gdo9i
-#: cui/uiconfig/ui/fmsearchdialog.ui:657
+#: cui/uiconfig/ui/fmsearchdialog.ui:656
msgctxt "fmsearchdialog|extended_tip|cbCase"
msgid "Specifies that upper and lower case are taken into consideration during the search."
msgstr "បញ្ជាក់លម្អិត​ថា​ករណិ​អក្សរ​ធំ​ និង តូច​​ត្រូវ​បាន​ពិចារណា​ក្នុង​កំឡុង​ពេល​ស្វែង​រក ។"
#. X5q2K
-#: cui/uiconfig/ui/fmsearchdialog.ui:668
+#: cui/uiconfig/ui/fmsearchdialog.ui:667
msgctxt "fmsearchdialog|cbStartOver"
msgid "Fr_om top"
msgstr "ពី​ផ្នែក​ខាងលើ"
#. y83im
-#: cui/uiconfig/ui/fmsearchdialog.ui:676
+#: cui/uiconfig/ui/fmsearchdialog.ui:675
msgctxt "fmsearchdialog|extended_tip|cbStartOver"
msgid "Restarts the search. A forward search restarts with the first record. A backwards search restarts with the last record."
msgstr "ចាប់ផ្តើម​ការ​ស្វែង​រក​ ។ ការ​ស្វែង​រក​ទៅ​មុន​ចាប់​ផ្តើម​ម្តង​ទៀត​ជាមួយ​កំណត់​ត្រា​ដំបូង ។ ការ​ស្វែង​រក​ថយ​ក្រោយ​ចាប់​ផ្តើមម្តង​ទៀត​ជាមួយ​​កំណត់​ត្រា​ចុង​ក្រោយ ។"
#. WP3XA
-#: cui/uiconfig/ui/fmsearchdialog.ui:687
+#: cui/uiconfig/ui/fmsearchdialog.ui:686
msgctxt "fmsearchdialog|cbRegular"
msgid "_Regular expression"
msgstr "កន្សោម​ធម្មតា"
#. 4uneg
-#: cui/uiconfig/ui/fmsearchdialog.ui:695
+#: cui/uiconfig/ui/fmsearchdialog.ui:694
msgctxt "fmsearchdialog|extended_tip|cbRegular"
msgid "Searches with regular expressions."
msgstr ""
#. qzKAB
-#: cui/uiconfig/ui/fmsearchdialog.ui:706
+#: cui/uiconfig/ui/fmsearchdialog.ui:705
msgctxt "fmsearchdialog|cbUseFormat"
msgid "Appl_y field format"
msgstr "អនុវត្ត​ទ្រង់​ទ្រាយ​វាល​"
#. BdMDC
-#: cui/uiconfig/ui/fmsearchdialog.ui:714
+#: cui/uiconfig/ui/fmsearchdialog.ui:713
msgctxt "fmsearchdialog|extended_tip|cbUseFormat"
msgid "Specifies that all field formats are considered when searching in the current document."
msgstr "បញ្ជាក់លម្អិត​ថា​ទ្រង់ទ្រាយ​វាល​ទាំងអស់​ត្រូវ​បាន​ពិចារណា​ពេល​ស្វែង​រក​ក្នុង​ឯកសារ​បច្ចុប្បន្ន​ ។"
#. 2GvF5
-#: cui/uiconfig/ui/fmsearchdialog.ui:725
+#: cui/uiconfig/ui/fmsearchdialog.ui:724
msgctxt "fmsearchdialog|cbBackwards"
msgid "Search _backwards"
msgstr "ស្វែងរក​ថយក្រោយ"
#. QvjG7
-#: cui/uiconfig/ui/fmsearchdialog.ui:733
+#: cui/uiconfig/ui/fmsearchdialog.ui:732
msgctxt "fmsearchdialog|extended_tip|cbBackwards"
msgid "Specifies that the search process will run in reverse direction, from the last to the first record."
msgstr "បញ្ជាក់លម្អិត​ថា​ដំណើរ​ការ​ស្វែង​នឹង​រត់​ក្នុង​ទិស​បញ្ច្រាស​ ពី​កំណត់​ត្រា​ចុង​ក្រោយ​​ទៅ​​កំណត់ត្រា​ដំបូង ។"
#. 4ixJZ
-#: cui/uiconfig/ui/fmsearchdialog.ui:744
+#: cui/uiconfig/ui/fmsearchdialog.ui:743
msgctxt "fmsearchdialog|cbWildCard"
msgid "_Wildcard expression"
msgstr "កន្សោម​​សញ្ញា​​​ជំនួស"
#. BES8b
-#: cui/uiconfig/ui/fmsearchdialog.ui:752
+#: cui/uiconfig/ui/fmsearchdialog.ui:751
msgctxt "fmsearchdialog|extended_tip|cbWildCard"
msgid "Allows a search with a * or ? wildcard."
msgstr ""
#. xHRxu
-#: cui/uiconfig/ui/fmsearchdialog.ui:774
+#: cui/uiconfig/ui/fmsearchdialog.ui:773
msgctxt "fmsearchdialog|flOptions"
msgid "Settings"
msgstr "ការ​កំណត់"
#. wBBss
-#: cui/uiconfig/ui/fmsearchdialog.ui:806
+#: cui/uiconfig/ui/fmsearchdialog.ui:805
#, fuzzy
msgctxt "fmsearchdialog|ftRecordLabel"
msgid "Record:"
msgstr "កំណត់​ត្រា៖"
#. UBLpq
-#: cui/uiconfig/ui/fmsearchdialog.ui:818
+#: cui/uiconfig/ui/fmsearchdialog.ui:817
msgctxt "fmsearchdialog|ftRecord"
msgid "record count"
msgstr "ចំនួន​កំណត់​ត្រា"
#. 8EDSy
-#: cui/uiconfig/ui/fmsearchdialog.ui:842
+#: cui/uiconfig/ui/fmsearchdialog.ui:841
msgctxt "fmsearchdialog|flState"
msgid "State"
msgstr "ស្ថាន​​ភាព"
#. tqCYV
-#: cui/uiconfig/ui/fmsearchdialog.ui:873
+#: cui/uiconfig/ui/fmsearchdialog.ui:869
msgctxt "fmsearchdialog|extended_tip|RecordSearchDialog"
msgid "Searches database tables and forms."
msgstr ""
@@ -11422,40 +11472,40 @@ msgid "Change Icon"
msgstr "ផ្លាស់​ប្តូរ​រូប​តំណាង"
#. qZXP7
-#: cui/uiconfig/ui/iconselectordialog.ui:139
+#: cui/uiconfig/ui/iconselectordialog.ui:138
#, fuzzy
msgctxt "iconselectordialog|label1"
msgid "_Icons"
msgstr "រូប​តំណាង"
#. ZyFG4
-#: cui/uiconfig/ui/iconselectordialog.ui:162
+#: cui/uiconfig/ui/iconselectordialog.ui:161
#, fuzzy
msgctxt "iconselectordialog|importButton"
msgid "I_mport..."
msgstr "នាំ​ចូល..."
-#. rAyQo
-#: cui/uiconfig/ui/iconselectordialog.ui:169
+#. pMDQA
+#: cui/uiconfig/ui/iconselectordialog.ui:168
msgctxt "iconselectordialog|extended_tip|importButton"
-msgid "Adds new icons to the list of icons. You see a file open dialog that imports the selected icon or icons into the internal icon directory of %PRODUCTNAME."
-msgstr "បន្ថែម​រូបតំណាង​ថ្មី​ទៅ​បញ្ជី​រូបតំណាង ។ អ្នក​នឹង​ឃើញ​ប្រអប់​បើក​ឯកសារ ដែល​នាំចូល​រូបតំណាង​ដែលបាន​ជ្រើស​ ទៅក្នុង​ថត​រូបតំណាង​ខាងក្រៅរបស់ %PRODUCTNAME ។"
+msgid "Adds new icons to the list of icons. You see a file open dialog that imports the selected icon or icons into the internal icon directory of the office suite."
+msgstr ""
#. 46d7Z
-#: cui/uiconfig/ui/iconselectordialog.ui:181
+#: cui/uiconfig/ui/iconselectordialog.ui:180
#, fuzzy
msgctxt "iconselectordialog|deleteButton"
msgid "_Delete..."
msgstr "លុប​..."
#. MEMzu
-#: cui/uiconfig/ui/iconselectordialog.ui:188
+#: cui/uiconfig/ui/iconselectordialog.ui:187
msgctxt "iconselectordialog|extended_tip|deleteButton"
msgid "Click to remove the selected icon from the list. Only user-defined icons can be removed."
msgstr "ចុច ដើម្បី​យក​រូបតំណាង​ដែល​បាន​ជ្រើស​ចេញ​ពី​បញ្ជី ។ មានតែ​រូបតំណាង​ដែលបាន​កំណត់​ដោយ​អ្នកប្រើ​ប៉ុណ្ណោះ​ដែល​អាច​យកចេញ​បាន ។"
#. C4HU9
-#: cui/uiconfig/ui/iconselectordialog.ui:217
+#: cui/uiconfig/ui/iconselectordialog.ui:216
#, fuzzy
msgctxt "iconselectordialog|noteLabel"
msgid ""
@@ -12696,10 +12746,10 @@ msgctxt "menuassignpage|extended_tip|searchEntry"
msgid "Enter a string in the text box to narrow the search of commands."
msgstr ""
-#. 7gtLC
+#. jRMwG
#: cui/uiconfig/ui/menuassignpage.ui:445
msgctxt "menuassignpage|extended_tip|savein"
-msgid "Select the location where the menu is to be attached. If attached to a %PRODUCTNAME module, the menu is available for all files opened in that module. If attached to the file, the menu will be available only when that file is opened and active."
+msgid "Select the location where the menu is to be attached. If attached to an office suite module, the menu is available for all files opened in that module. If attached to the file, the menu will be available only when that file is opened and active."
msgstr ""
#. D35vJ
@@ -12836,10 +12886,10 @@ msgctxt "menuassignpage|customizelabel"
msgid "_Customize"
msgstr ""
-#. yFQHn
+#. w3brP
#: cui/uiconfig/ui/menuassignpage.ui:998
msgctxt "menuassignpage|extended_tip|MenuAssignPage"
-msgid "Lets you customize %PRODUCTNAME menus for all modules."
+msgid "Lets you customize the office suite menus for all modules."
msgstr ""
#. Mcir5
@@ -13883,11 +13933,11 @@ msgctxt "optaccessibilitypage|animatedgraphics"
msgid "Allow animated _images"
msgstr "អនុញ្ញាត​ក្រាហ្វិក​ដែល​មាន​ចលនា "
-#. vvmf3
+#. DEBEA
#: cui/uiconfig/ui/optaccessibilitypage.ui:75
msgctxt "extended_tip|animatedgraphics"
-msgid "Previews animated graphics, such as GIF images, in %PRODUCTNAME."
-msgstr "មើល​ក្រាហ្វិក​មាន​ចលនា​ជា​មុន​ដូចជា​រូបភាព GIF នៅ​ក្នុង %PRODUCTNAME ។"
+msgid "Previews animated graphics, such as GIF images."
+msgstr ""
#. 3Q66x
#: cui/uiconfig/ui/optaccessibilitypage.ui:87
@@ -13895,11 +13945,11 @@ msgctxt "optaccessibilitypage|animatedtext"
msgid "Allow animated _text"
msgstr "អនុញ្ញាត​អត្ថបទ​ដែល​មាន​ចលនា "
-#. dcCgH
+#. Gc9fG
#: cui/uiconfig/ui/optaccessibilitypage.ui:95
msgctxt "extended_tip|animatedtext"
-msgid "Previews animated text, such as blinking and scrolling, in %PRODUCTNAME."
-msgstr "មើល​អត្ថបទ​មាន​ចលនា​ជា​មុន ដូច​ជា​អត្ថបទ​ភ្លឹបភ្លែត និង អត្ថបទ​រមូរ នៅ​ក្នុង %PRODUCTNAME ។"
+msgid "Previews animated text, such as blinking and scrolling."
+msgstr ""
#. 2A83C
#: cui/uiconfig/ui/optaccessibilitypage.ui:111
@@ -13914,11 +13964,11 @@ msgctxt "optaccessibilitypage|autodetecthc"
msgid "Automatically _detect high contrast mode of operating system"
msgstr "រក​ឃើញ​របៀប​កម្រិត​ពណ៌​ខ្ពស់​របស់​ប្រព័ន្ធ​ប្រតិបត្តិការ​ដោយ​ស្វ័យ​ប្រវត្តិ"
-#. S8FrL
+#. oF9CC
#: cui/uiconfig/ui/optaccessibilitypage.ui:148
msgctxt "extended_tip|autodetecthc"
-msgid "Switches %PRODUCTNAME into high contrast mode when the system background color is very dark."
-msgstr "ប្តូរ %PRODUCTNAME ទៅ​ក្នុង​របៀប​កម្រិត​ពណ៌​ខ្ពស់ នៅ​ពេល​ពណ៌​ផ្ទៃ​ខាង​ក្រោយ​ប្រព័ន្ធ ខ្មៅ​ខ្លាំង ។"
+msgid "Switches the office suite into high contrast mode when the system background color is very dark."
+msgstr ""
#. Sc8Cq
#: cui/uiconfig/ui/optaccessibilitypage.ui:160
@@ -13926,11 +13976,11 @@ msgctxt "optaccessibilitypage|autofontcolor"
msgid "Use automatic font _color for screen display"
msgstr "ប្រើ​ពណ៌​ពុម្ព​អក្សរ​ស្វ័យ​ប្រវត្តិ​សម្រាប់​ការបង្ហាញ​នៅ​លើ​អេក្រង់"
-#. DP3mg
+#. BAnK4
#: cui/uiconfig/ui/optaccessibilitypage.ui:168
msgctxt "extended_tip|autofontcolor"
-msgid "Displays fonts in %PRODUCTNAME using the system color settings. This option only affects the screen display."
-msgstr "បង្ហាញ​ពុម្ព​អក្សរ​ក្នុង %PRODUCTNAME ដោយ​ប្រើ​ការ​កំណត់​ពណ៌​ប្រព័ន្ធ ។ ជម្រើស​នេះ​ជះ​ឥទ្ធិពល​ចំពោះ​តែ​ការ​បង្ហាញ​លើ​អេក្រង់​ប៉ុណ្ណោះ ។"
+msgid "Displays fonts in the office suite using the system color settings. This option only affects the screen display."
+msgstr ""
#. n24Cd
#: cui/uiconfig/ui/optaccessibilitypage.ui:180
@@ -13951,11 +14001,11 @@ msgctxt "optaccessibilitypage|label2"
msgid "Options for High Contrast Appearance"
msgstr "ជម្រើស​សម្រាប់​រូបរាង​កម្រិត​ពណ៌​ខ្ពស់​"
-#. yuSqB
+#. cocVg
#: cui/uiconfig/ui/optaccessibilitypage.ui:219
msgctxt "extended_tip|OptAccessibilityPage"
-msgid "Sets options that make %PRODUCTNAME programs more accessible for users with reduced sight, limited dexterity or other disabilities."
-msgstr "កំណត់​ជម្រើស​ដែល​ធ្វើ​កម្មវិធី %PRODUCTNAME អាច​ចូល​ដំណើរ​ការ​បាន​សម្រាប់​អ្នក​ប្រើ​ដោយ​កាត់​បន្ថយ​ការមើល កំណត់​ការ​ស្ទាត់​ជំនាញ​ឬ​ភាព​គ្មាន​សមត្ថភាព​ផ្សេង​ទៀត ។"
+msgid "Sets options that make the office suite programs more accessible for users with reduced sight, limited dexterity or other disabilities."
+msgstr ""
#. kishx
#: cui/uiconfig/ui/optadvancedpage.ui:55
@@ -13963,11 +14013,11 @@ msgctxt "optadvancedpage|javaenabled"
msgid "_Use a Java runtime environment"
msgstr "ប្រើ​បរិស្ថាន Java runtime "
-#. xBxzA
+#. KMJbU
#: cui/uiconfig/ui/optadvancedpage.ui:64
msgctxt "extended_tip|javaenabled"
-msgid "Allows you to run Java applications in %PRODUCTNAME."
-msgstr "អនុញ្ញាត​ឲ្យ​អ្នក​រត់​កម្មវិធី Java ក្នុង %PRODUCTNAME ។"
+msgid "Allows you to run extensions written with Java."
+msgstr ""
#. DFVFw
#: cui/uiconfig/ui/optadvancedpage.ui:90
@@ -14023,11 +14073,11 @@ msgctxt "optadvancedpage|version"
msgid "Version"
msgstr "កំណែ​"
-#. kwgDj
+#. skEDW
#: cui/uiconfig/ui/optadvancedpage.ui:257
msgctxt "extended_tip|javas"
-msgid "Select the JRE that you want to use. On some systems, you must wait a minute until the list gets populated. On some systems, you must restart %PRODUCTNAME to use your changed setting."
-msgstr "ជ្រើស JRE ដែល​អ្នក​ចង់​ប្រើ ។ នៅលើ​ប្រព័ន្ធ​មួយ​ចំនួន អ្នក​ត្រូវតែ​រង់ចាំ​ប៉ុន្មាន​នាទី រហូតដក់​បញ្ជី​ត្រូវបាន​បង្កើត ។ នៅលើ​ប្រព័ន្ធ​មួយ​ចំនួន​ទៀត អ្នកត្រូវតែ​ចាប់ផ្ដើម %PRODUCTNAME ឡើងវិញ​ដើម្បី​ប្រើ​ការ​កំណត់​ដែលបាន​ផ្លាស់ប្ដូរ ។"
+msgid "Select the JRE that you want to use. On some systems, you must wait a minute until the list gets populated. On some systems, you must restart the office suite to use your changed setting."
+msgstr ""
#. erNBk
#: cui/uiconfig/ui/optadvancedpage.ui:285
@@ -14080,10 +14130,10 @@ msgctxt "optadvancedpage|expertconfig"
msgid "Open Expert Configuration"
msgstr "ការ​កំណត់​​រចនា​សម្ព័ន្ធ​កម្រិត​ខ្ពស់"
-#. rAnYG
+#. upAQw
#: cui/uiconfig/ui/optadvancedpage.ui:412
msgctxt "extended_tip|expertconfig"
-msgid "Opens the Expert Configuration dialog for advanced settings and configuration of %PRODUCTNAME."
+msgid "Opens the Expert Configuration dialog for advanced settings and configuration."
msgstr ""
#. ZLtrh
@@ -14092,12 +14142,6 @@ msgctxt "optadvancedpage|label12"
msgid "Optional Features"
msgstr ""
-#. wJx8x
-#: cui/uiconfig/ui/optadvancedpage.ui:443
-msgctxt "extended_tip|OptAdvancedPage"
-msgid "Allows you to run Java applications in %PRODUCTNAME."
-msgstr "អនុញ្ញាត​ឲ្យ​អ្នក​រត់​កម្មវិធី Java ក្នុង %PRODUCTNAME ។"
-
#. dmvLE
#: cui/uiconfig/ui/optappearancepage.ui:33
#, fuzzy
@@ -14137,41 +14181,35 @@ msgid "Color Scheme"
msgstr "ពណ៌ចម្រុះ"
#. RAEbU
-#: cui/uiconfig/ui/optappearancepage.ui:189
+#: cui/uiconfig/ui/optappearancepage.ui:165
msgctxt "extended_tip|colorconfig"
msgid "Select the colors for the user interface elements."
msgstr "ជ្រើស​ពណ៌​សម្រាប់​ធាតុ​ចំណុច​ប្រទាក់​អ្នក​ប្រើ ។"
#. BtFUJ
-#: cui/uiconfig/ui/optappearancepage.ui:222
+#: cui/uiconfig/ui/optappearancepage.ui:198
msgctxt "optappearancepage|uielements"
msgid "User interface elements"
msgstr "ធាតុ​ចំណុច​ប្រទាក់​អ្នក​ប្រើ"
#. nrHHF
-#: cui/uiconfig/ui/optappearancepage.ui:235
+#: cui/uiconfig/ui/optappearancepage.ui:211
msgctxt "optappearancepage|colorsetting"
msgid "Color setting"
msgstr "ការកំណត់​ពណ៌"
-#. Jms9Q
-#: cui/uiconfig/ui/optappearancepage.ui:248
-msgctxt "optappearancepage|on"
-msgid "On"
-msgstr "បើក"
-
#. HFLPF
-#: cui/uiconfig/ui/optappearancepage.ui:267
+#: cui/uiconfig/ui/optappearancepage.ui:242
#, fuzzy
msgctxt "optappearancepage|label2"
msgid "Custom Colors"
msgstr "ពណ៌​ផ្ទាល់​ខ្លួន"
-#. vxBRc
-#: cui/uiconfig/ui/optappearancepage.ui:282
+#. 6mjwC
+#: cui/uiconfig/ui/optappearancepage.ui:257
msgctxt "extended_tip|OptAppearancePage"
-msgid "Sets the colors for the %PRODUCTNAME user interface."
-msgstr "កំណត់​ពណ៌​សម្រាប់​ចំណុច​ប្រទាក់​អ្នក​ប្រើ %PRODUCTNAME ។"
+msgid "Sets the colors for the user interface."
+msgstr ""
#. nRFne
#: cui/uiconfig/ui/optasianpage.ui:27
@@ -14402,38 +14440,38 @@ msgid "Language Features"
msgstr "លក្ខណៈ​ភាសា"
#. VXGYT
-#: cui/uiconfig/ui/optchartcolorspage.ui:74
+#: cui/uiconfig/ui/optchartcolorspage.ui:77
msgctxt "extended_tip|colors"
msgid "Displays all the colors available for the data series."
msgstr "បង្ហាញ​ពណ៌​ទាំងអស់​ដែល​មាន​សម្រាប់​ស៊េរី​ទិន្នន័យ។"
#. vTZjC
-#: cui/uiconfig/ui/optchartcolorspage.ui:85
+#: cui/uiconfig/ui/optchartcolorspage.ui:88
#, fuzzy
msgctxt "optchartcolorspage|label20"
msgid "Chart Colors"
msgstr "ពណ៌​គំនូសតាង"
#. WA57y
-#: cui/uiconfig/ui/optchartcolorspage.ui:154
+#: cui/uiconfig/ui/optchartcolorspage.ui:157
msgctxt "optchartcolorspage|default"
msgid "_Default"
msgstr "លំនាំ​ដើម "
#. mpSKB
-#: cui/uiconfig/ui/optchartcolorspage.ui:161
+#: cui/uiconfig/ui/optchartcolorspage.ui:164
msgctxt "extended_tip|default"
msgid "Restores the color settings that were defined when the program was installed."
msgstr "ស្ដារ​ការ​កំណត់​ពណ៌​ដែល​បាន​ប្រើ​ពេល​ដំឡើង​កម្មវិធី។"
#. KoHHw
-#: cui/uiconfig/ui/optchartcolorspage.ui:227
+#: cui/uiconfig/ui/optchartcolorspage.ui:230
msgctxt "optchartcolorspage|label1"
msgid "Color Table"
msgstr "តារាង​ពណ៌"
#. xxtZE
-#: cui/uiconfig/ui/optchartcolorspage.ui:242
+#: cui/uiconfig/ui/optchartcolorspage.ui:245
msgctxt "extended_tip|OptChartColorsPage"
msgid "Displays all the colors available for the data series."
msgstr "បង្ហាញ​ពណ៌​ទាំងអស់​ដែល​មាន​សម្រាប់​ស៊េរី​ទិន្នន័យ។"
@@ -14545,11 +14583,11 @@ msgctxt "optctlpage|numerals"
msgid "Context"
msgstr "បរិបទ"
-#. jDGEt
+#. xLaeT
#: cui/uiconfig/ui/optctlpage.ui:239
msgctxt "extended_tip|numerals"
-msgid "Selects the type of numerals used within text, text in objects, fields, and controls, in all %PRODUCTNAME modules. Only cell contents of %PRODUCTNAME Calc are not affected."
-msgstr "ជ្រើស​ប្រភេទ​តួលេខ​ដែល​ប្រើ​ក្នុង​អត្ថបទ អត្ថបទ​ក្នុង​វត្ថុ វាល​ និង វត្ថុ​បញ្ជា ក្នុង​ម៉ូឌុល %PRODUCTNAME ទាំងអស់ ។ មាន​តែ​មាតិកា​ក្រឡា​នៃ %PRODUCTNAME Calc ប៉ុណ្ណោះ​ដែល​មិន​ត្រូវ​បាន​ជះ​ឥទ្ធិពល ។"
+msgid "Selects the type of numerals used within text, text in objects, fields, and controls, in all office suite modules. Only cell contents of Calc are not affected."
+msgstr ""
#. kWczF
#: cui/uiconfig/ui/optctlpage.ui:254
@@ -14625,10 +14663,10 @@ msgctxt "optfltrembedpage|column2"
msgid "[S]"
msgstr ""
-#. xrKRQ
+#. 7h7h8
#: cui/uiconfig/ui/optfltrembedpage.ui:129
msgctxt "extended_tip|checklbcontainer"
-msgid "The [L] and [S] checkbox displays the entries for the pair of OLE objects that can be converted when loading into %PRODUCTNAME [L] and/or when saving into a Microsoft format [S]. "
+msgid "The [L] and [S] checkbox displays the entries for the pair of OLE objects that can be converted when loaded from a Microsoft format [L] and/or when saved to to a Microsoft format [S]. "
msgstr ""
#. x5kfq
@@ -14665,10 +14703,10 @@ msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr "​បន្លិច"
-#. mCeit
+#. qBuyX
#: cui/uiconfig/ui/optfltrembedpage.ui:239
msgctxt "extended_tip|highlighting"
-msgid "Microsoft Office has two character attributes similar to %PRODUCTNAME character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
+msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. Dnrx7
@@ -14678,10 +14716,10 @@ msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr "ការ​ចោល​​ស្រមោល"
-#. 5b274
+#. 3PFE2
#: cui/uiconfig/ui/optfltrembedpage.ui:260
msgctxt "extended_tip|shading"
-msgid "Microsoft Office has two character attributes similar to %PRODUCTNAME character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
+msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. gKwdG
@@ -14696,10 +14734,10 @@ msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
msgstr ""
-#. NDG4H
+#. qc4GD
#: cui/uiconfig/ui/optfltrembedpage.ui:319
msgctxt "extended_tip|mso_lockfile"
-msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to %PRODUCTNAME own lock file."
+msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to this office suite's own lock file."
msgstr ""
#. Sg5Bw
@@ -14720,10 +14758,10 @@ msgctxt "optfltrpage|wo_basic"
msgid "Load Basic _code"
msgstr "ផ្ទុក​កូដ​មូលដ្ឋាន​ "
-#. q4wdN
+#. QoX7F
#: cui/uiconfig/ui/optfltrpage.ui:35
msgctxt "extended_tip|wo_basic"
-msgid "Loads and saves the Basic code from a Microsoft document as a special %PRODUCTNAME Basic module with the document. The disabled Microsoft Basic code is visible in the %PRODUCTNAME Basic IDE between Sub and End Sub."
+msgid "Loads and saves the Basic code from a Microsoft document as a special Basic module with the document. The disabled Microsoft Basic code is visible in the Basic IDE between Sub and End Sub."
msgstr ""
#. AChYC
@@ -14744,10 +14782,10 @@ msgctxt "optfltrpage|wo_saveorig"
msgid "Save _original Basic code"
msgstr "រក្សា​ទុកកូដ​មូលដ្ឋាន​ដើម "
-#. 4pGYB
+#. 2gFSv
#: cui/uiconfig/ui/optfltrpage.ui:74
msgctxt "extended_tip|wo_saveorig"
-msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in %PRODUCTNAME. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
+msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in the office suite. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
msgstr ""
#. W6nED
@@ -14762,10 +14800,10 @@ msgctxt "optfltrpage|ex_basic"
msgid "Lo_ad Basic code"
msgstr "ផ្ទុក​កូដ​មូលដ្ឋាន "
-#. QcFGD
+#. NNMHC
#: cui/uiconfig/ui/optfltrpage.ui:126
msgctxt "extended_tip|ex_basic"
-msgid "Loads and saves the Basic code from a Microsoft document as a special %PRODUCTNAME Basic module with the document. The disabled Microsoft Basic code is visible in the %PRODUCTNAME Basic IDE between Sub and End Sub."
+msgid "Loads and saves the Basic code from a Microsoft document as a special Basic module with the document. The disabled Microsoft Basic code is visible in the Basic IDE between Sub and End Sub."
msgstr ""
#. S6ozV
@@ -14786,10 +14824,10 @@ msgctxt "optfltrpage|ex_saveorig"
msgid "Sa_ve original Basic code"
msgstr "រក្សា​ទុក​កូដ​មូលដ្ឋាន​ដើម "
-#. QzDgZ
+#. BXFfA
#: cui/uiconfig/ui/optfltrpage.ui:165
msgctxt "extended_tip|ex_saveorig"
-msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in %PRODUCTNAME. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
+msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in the office suite. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
msgstr ""
#. a5EkB
@@ -14804,10 +14842,10 @@ msgctxt "optfltrpage|pp_basic"
msgid "Load Ba_sic code"
msgstr "ផ្ទុក​កូដ​មូលដ្ឋាន "
-#. VR4v5
+#. MNcGz
#: cui/uiconfig/ui/optfltrpage.ui:217
msgctxt "extended_tip|pp_basic"
-msgid "Loads and saves the Basic code from a Microsoft document as a special %PRODUCTNAME Basic module with the document. The disabled Microsoft Basic code is visible in the %PRODUCTNAME Basic IDE between Sub and End Sub."
+msgid "Loads and saves the Basic code from a Microsoft document as a special Basic module with the document. The disabled Microsoft Basic code is visible in the Basic IDE between Sub and End Sub."
msgstr ""
#. VSdyY
@@ -14816,10 +14854,10 @@ msgctxt "optfltrpage|pp_saveorig"
msgid "Sav_e original Basic code"
msgstr "រក្សា​ទុក​កូដ​មូលដ្ឋាន​ដើម "
-#. tTQXM
+#. 8VTG9
#: cui/uiconfig/ui/optfltrpage.ui:236
msgctxt "extended_tip|pp_saveorig"
-msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in %PRODUCTNAME. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
+msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in the office suite. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
msgstr ""
#. sazZt
@@ -15113,11 +15151,11 @@ msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
-#. coFbL
+#. KyK5F
#: cui/uiconfig/ui/optgeneralpage.ui:437
msgctxt "extended_tip | OptGeneralPage"
-msgid "Specifies the general settings for %PRODUCTNAME."
-msgstr "បញ្ជាក់​ការ​កំណត់​ទូទៅ​សម្រាប់ %PRODUCTNAME ។"
+msgid "Specifies the general settings for the office suite."
+msgstr ""
#. FsiDE
#: cui/uiconfig/ui/opthtmlpage.ui:86
@@ -15234,11 +15272,11 @@ msgctxt "opthtmlpage|unknowntag"
msgid "_Import unknown HTML tags as fields"
msgstr "នាំចូល​ស្លាក HTML ដែល​មិន​ស្គាល់​ជា​វាល"
-#. QvehA
+#. HUFPp
#: cui/uiconfig/ui/opthtmlpage.ui:372
msgctxt "extended_tip|unknowntag"
-msgid "Mark this check box if you want tags that are not recognized by %PRODUCTNAME to be imported as fields."
-msgstr "ធីក​ប្រអប់​នេះ បើ​អ្នក​ចង់​ឲ្យ tags ដែល​មិន​បាន​ស្គាល់​ដោយ %PRODUCTNAME ត្រូវ​បាន​នាំចូល​ជា​វាល។"
+msgid "Mark this check box if you want tags that are not recognized by Writer/Web to be imported as fields."
+msgstr ""
#. VFTrU
#: cui/uiconfig/ui/opthtmlpage.ui:383
@@ -15301,11 +15339,11 @@ msgctxt "opthtmlpage|starbasicwarning"
msgid "Display _warning"
msgstr "បង្ហាញ​ការ​ព្រមាន"
-#. wArnh
+#. GwwUY
#: cui/uiconfig/ui/opthtmlpage.ui:533
msgctxt "extended_tip|starbasicwarning"
-msgid "If this field is marked, when exporting to HTML a warning is shown that %PRODUCTNAME Basic macros will be lost."
-msgstr "បើ​ធីក​វាល​នេះ ពេល​នាំចេញ​ទៅកាន់ HTML សារ​ព្រមាន​បង្ហាញ​ថា​ម៉ាក្រូ %PRODUCTNAME Basic នឹង​ត្រូវ​បាន​បាត់។"
+msgid "If this field is marked, when exporting to HTML a warning is shown that Basic macros will be lost."
+msgstr ""
#. puyKW
#: cui/uiconfig/ui/opthtmlpage.ui:544
@@ -15313,11 +15351,11 @@ msgctxt "opthtmlpage|starbasic"
msgid "LibreOffice _Basic"
msgstr "LibreOffice _Basic"
-#. BtWXE
+#. DEAm3
#: cui/uiconfig/ui/opthtmlpage.ui:553
msgctxt "extended_tip|starbasic"
-msgid "Mark this check box to include the %PRODUCTNAME Basic instructions when exporting to HTML format."
-msgstr "ធីក​ប្រអប់​នេះ​ដើម្បី​រួម​បញ្ចូល​សេចក្ដី​ណែនាំ​មូលដ្ឋាន​របស់ %PRODUCTNAME ពេល​នាំចេញ​ជា​ទ្រង់ទ្រាយ HTML ។"
+msgid "Mark this check box to include the Basic instructions when exporting to HTML format."
+msgstr ""
#. sEnBN
#: cui/uiconfig/ui/opthtmlpage.ui:568
@@ -15627,11 +15665,11 @@ msgctxt "optlanguagespage|label4"
msgid "_User interface:"
msgstr "ចំណុច​ប្រទាក់​អ្នកប្រើ"
-#. PwNF7
+#. rj5UD
#: cui/uiconfig/ui/optlanguagespage.ui:80
msgctxt "extended_tip|userinterface"
-msgid "Select the language used for the user interface, for example menus, dialogs, help files. You must have installed at least one additional language pack or a multi-language version of %PRODUCTNAME."
-msgstr "ជ្រើស​ភាសា​ដែលបាន​ប្រើ​សម្រាប់​ចំណុចប្រទាក់​អ្នកប្រើ ឧទាហរណ៍ ឯកសារម៉ឺនុយ ប្រអប់ ​ជំនួយ ។ យ៉ាងហោចណាស់​អ្នក​ត្រូវតែ​បាន​ដំឡើងកញ្ចប់​ភាសា​បន្ថែម​មួយ ឬ​កំណែ %PRODUCTNAME ដែលមាន​ច្រើន​ភាសា ។"
+msgid "Select the language used for the user interface, for example menus, dialogs, help files. You must have installed at least one additional language pack."
+msgstr ""
#. e8VE3
#: cui/uiconfig/ui/optlanguagespage.ui:95
@@ -15677,11 +15715,11 @@ msgctxt "optlanguagespage|ctlsupport"
msgid "Complex _text layout:"
msgstr "ប្លង់​អត្ថបទ​ស្មុគ្រ​ស្មាញ"
-#. gTEDf
+#. EvD7M
#: cui/uiconfig/ui/optlanguagespage.ui:250
msgctxt "extended_tip|ctlsupport"
-msgid "Activates complex text layout support. You can now modify the settings corresponding to complex text layout in %PRODUCTNAME."
-msgstr "ធ្វើឲ្យ​ការ​គាំទ្រ​ប្លង់​អត្ថបទ​ស្មុគស្មាញ​សកម្ម។ ឥឡូវ​អ្នក​អាច​កែ​ការ​កំណត់​ដែល​ត្រូវគ្នា​ជាមួយ​ប្លង់​អត្ថបទ​ស្មុគស្មាញ​នៅ​ក្នុង %PRODUCTNAME បាន។"
+msgid "Activates complex text layout support. You can now modify the settings corresponding to complex text layout."
+msgstr ""
#. mpLF7
#: cui/uiconfig/ui/optlanguagespage.ui:261
@@ -15690,11 +15728,11 @@ msgctxt "optlanguagespage|asiansupport"
msgid "Asian:"
msgstr "អាស៊ី"
-#. GT6AZ
+#. jWDQg
#: cui/uiconfig/ui/optlanguagespage.ui:269
msgctxt "extended_tip|asiansupport"
-msgid "Activates Asian languages support. You can now modify the corresponding Asian language settings in %PRODUCTNAME."
-msgstr "ធ្វើឲ្យ​ការ​គាំទ្រ​ភាសា​អាស៊ី​សកម្ម ។ ឥឡូវ​អ្នក​អាច​កែ​ការ​កំណត់​ភាសា​អាស៊ី​ដែល​ត្រូវ​គ្នា​នៅ​ក្នុង %PRODUCTNAME បាន។"
+msgid "Activates Asian languages support. You can now modify the corresponding Asian language settings."
+msgstr ""
#. QwDAK
#: cui/uiconfig/ui/optlanguagespage.ui:282
@@ -15988,11 +16026,11 @@ msgctxt "optonlineupdatepage|autocheck"
msgid "_Check for updates automatically"
msgstr "ពិនិត្យ​រកបច្ចុប្បន្នភាព​ដោយ​ស្វ័យ​ប្រវត្តិ "
-#. k3qNc
+#. gxD2d
#: cui/uiconfig/ui/optonlineupdatepage.ui:39
msgctxt "extended_tip|autocheck"
-msgid "Mark to check for online updates periodically, then select the time interval how often %PRODUCTNAME will check for online updates."
-msgstr "គូស​ធីក​ ដើម្បី​ពិនិត្យ​មើល​បច្ចុប្បន្ន​ភាព​លើបណ្ដាញ​តាមថិរវេលា បន្ទាប់​មក​ជ្រើស​ចន្លោះពេល​ដែល​ %PRODUCTNAME នឹង​ពិនិត្យ​មើល​បច្ចុប្បន្នភាព​លើបណ្ដាញ ។"
+msgid "Mark to check for online updates periodically, then select the time interval how often to automatically check for online updates."
+msgstr ""
#. Hbe2C
#: cui/uiconfig/ui/optonlineupdatepage.ui:57
@@ -16142,10 +16180,10 @@ msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr "ជម្រើស​ធ្វើ​បច្ចុប្បន្នភាពភាព​លើបណ្តាញ"
-#. aJHdb
+#. MdSsA
#: cui/uiconfig/ui/optonlineupdatepage.ui:453
msgctxt "extended_tip|OptOnlineUpdatePage"
-msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
+msgid "Specifies some options for the automatic notification and downloading of online updates to the office suite."
msgstr ""
#. QYxCN
@@ -16226,10 +16264,10 @@ msgctxt "edit"
msgid "Click to display the Select Path or Edit Paths dialog."
msgstr ""
-#. G5xyX
+#. 2vbPt
#: cui/uiconfig/ui/optpathspage.ui:210
msgctxt "OptPathsPage"
-msgid "This section contains the default paths to important folders in %PRODUCTNAME. These paths can be edited by the user."
+msgid "This section contains the default paths to important folders of the office suite. These paths can be edited by the user."
msgstr ""
#. pQEWv
@@ -16408,10 +16446,10 @@ msgctxt "optsavepage|autosave"
msgid "Save _AutoRecovery information every:"
msgstr "រក្សា​ទុក​ព័ត៌មាន​សង្គ្រោះ​ដោយ​ស្វ័យ​ប្រវត្តិ​រាល់​ "
-#. 6L2Yh
+#. a9xDP
#: cui/uiconfig/ui/optsavepage.ui:119
msgctxt "autosave"
-msgid "Specifies that %PRODUCTNAME saves the information needed to restore all open documents in case of a crash. You can specify the saving time interval."
+msgid "Specifies that the office suite saves the information needed to restore all open documents in case of a crash. You can specify the saving time interval."
msgstr ""
#. ipCBG
@@ -16433,10 +16471,10 @@ msgctxt "optsavepage|userautosave"
msgid "Automatically save the document too"
msgstr "រក្សាទុក​ឯកសារ​ដោយ​ស្វ័យប្រវត្តិ​ផង​ដែរ"
-#. udKBa
+#. mKGDm
#: cui/uiconfig/ui/optsavepage.ui:173
msgctxt "userautosave"
-msgid "Specifies that %PRODUCTNAME saves all open documents when saving auto recovery information. Uses the same time interval as AutoRecovery does."
+msgid "Specifies that the office suite saves all open documents when saving auto recovery information. Uses the same time interval as AutoRecovery does."
msgstr ""
#. kwFtx
@@ -16481,10 +16519,10 @@ msgctxt "optsavepage|backup"
msgid "Al_ways create backup copy"
msgstr "បង្កើត​ច្បាប់​ចម្លង​បម្រុង​ទុក​ជានិច្ច "
-#. TtAJZ
+#. vhCe5
#: cui/uiconfig/ui/optsavepage.ui:249
msgctxt "backup"
-msgid "Saves the previous version of a document as a backup copy whenever you save a document. Every time %PRODUCTNAME creates a backup copy, the previous backup copy is replaced. The backup copy gets the extension .BAK."
+msgid "Saves the previous version of a document as a backup copy whenever you save a document. Every time the office suite creates a backup copy, the previous backup copy is replaced. The backup copy gets the extension .BAK."
msgstr ""
#. NaGCU
@@ -16719,11 +16757,11 @@ msgctxt "optsecuritypage|savepassword"
msgid "Persistently _save passwords for web connections"
msgstr "រក្សា​ទុក​ពាក្យ​សម្ងាត់​ជា​អចិន្ត្រៃយ៍​សម្រាប់​ការ​តភ្ជាប់​បណ្ដាញ"
-#. RHiBv
+#. pcu6X
#: cui/uiconfig/ui/optsecuritypage.ui:251
msgctxt "extended_tip|savepassword"
-msgid "If enabled, %PRODUCTNAME will securely store all passwords that you use to access files from web servers. You can retrieve the passwords from the list after you enter the master password."
-msgstr "បើ​អនុញ្ញាត %PRODUCTNAME នឹង​រក្សា​ទុក​ពាក្យ​សម្ងាត់​ទាំងអស់​ដោយ​សុវត្ថិភាព ដែល​អ្នក​ប្រើ​ដើម្បី​ចូល​ដំណើរ​ការ​ឯកសារ​ពី​ម៉ាស៊ីន​បម្រើ​តំបន់​បណ្ដាញ ។ អ្នក​អាច​ទៅ​យក​ពាក្យ​សម្ងាត់​ពី​បញ្ជី បន្ទាប់​ពី​អ្នក​បញ្ចូល​ពាក្យ​សម្ងាត់​មេ ។"
+msgid "If enabled, all passwords that you use to access files from web servers will be securely stored. You can retrieve the passwords from the list after you enter the master password."
+msgstr ""
#. Gyqwf
#: cui/uiconfig/ui/optsecuritypage.ui:270
@@ -17546,10 +17584,10 @@ msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
-#. anMTd
+#. SXzWW
#: cui/uiconfig/ui/optviewpage.ui:441
msgctxt "optviewpage|label6"
-msgid "Icon s_tyle:"
+msgid "_Theme:"
msgstr ""
#. StBQN
@@ -17558,10 +17596,10 @@ msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
-#. eMqmK
+#. F7kTw
#: cui/uiconfig/ui/optviewpage.ui:472
msgctxt "optviewpage|label1"
-msgid "Icon Style"
+msgid "Icon Theme"
msgstr ""
#. stYtM
@@ -18649,11 +18687,11 @@ msgctxt "pickoutlinepage|label25"
msgid "Selection"
msgstr "ជម្រើស"
-#. FnZK4
+#. rvStY
#: cui/uiconfig/ui/pickoutlinepage.ui:58
msgctxt "pickoutlinepage|extended_tip|PickOutlinePage"
-msgid "Displays the different styles that you can apply to a hierarchical list. %PRODUCTNAME supports up to nine outline levels in a list hierarchy."
-msgstr "បង្ហាញ​រចនាប័ទ្ម​ខុសគ្នា​ដែល​អ្នក​អាច​អនុវត្ត​ទៅ​បញ្ជី​ឋានានុក្រម ។ %PRODUCTNAME គាំទ្រ​រហូត​ដល់​កម្រិត​គ្រោង ៩ ក្នុង​ឋានានុក្រម ។"
+msgid "Displays the different styles that you can apply to a hierarchical list. Up to nine outline levels in a list hierarchy are supported."
+msgstr ""
#. hRP6U
#: cui/uiconfig/ui/positionpage.ui:62
@@ -19521,10 +19559,10 @@ msgctxt "scriptorganizer|macrosft"
msgid "Macros"
msgstr "ម៉ាក្រូ"
-#. vX8VC
+#. GyWDB
#: cui/uiconfig/ui/scriptorganizer.ui:266
msgctxt "scriptorganizer|extended_tip|ScriptOrganizerDialog"
-msgid "Select a macro or script from My Macros, %PRODUCTNAME Macros, or an open document. To view the available macros or scripts, double-click an entry."
+msgid "Select a macro or script from My Macros, Application Macros, or an open document. To view the available macros or scripts, double-click an entry."
msgstr ""
#. U3sDy
@@ -20638,11 +20676,11 @@ msgctxt "spellingdialog|ignoreall"
msgid "I_gnore All"
msgstr "មិន​អើ​ពើ​ទាំង​អស់ "
-#. B5UQJ
+#. zS3Wm
#: cui/uiconfig/ui/spellingdialog.ui:546
msgctxt "spellingdialog|extended_tip|ignoreall"
-msgid "Skips all occurrences of the unknown word until the end of the current %PRODUCTNAME session and continues with the spellcheck."
-msgstr "រំលង​ការ​កើតឡើង​ទាំងអស់​នៃ​ពាក្យ​ដែល​មិន​ស្គាល់​រហូត​ដល់​ចុង​សម័យ​របស់ %PRODUCTNAME បច្ចុប្បន្ន រួច​បន្ត​ជាមួយ​ការ​ពិនិត្យ​អក្ខរាវិរុទ្ធ។"
+msgid "Skips all occurrences of the unknown word until the end of the current office suite session and continues with the spellcheck."
+msgstr ""
#. ZZNQM
#: cui/uiconfig/ui/spellingdialog.ui:557
@@ -21214,11 +21252,11 @@ msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr "ស្វ័យប្រវត្តិ​"
-#. HwKA5
+#. xq5Sb
#: cui/uiconfig/ui/textanimtabpage.ui:482
msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
-msgid "%PRODUCTNAME automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
-msgstr "%PRODUCTNAME កំណត់​ពេល​វេលា​សរុប​ដែល​ត្រូវ​រង់ចាំ​​ មុន​ពេល​​​​ធ្វើ​បែប​ផែន​ម្តង​ទៀត​ ។ ដើម្បី​ផ្តល់​កំឡុង​ពេល​ពន្យា​​​​ដោយ​ដៃ​ ជម្រះ​ប្រអប់​ធីក​នេះ​ និង​ បញ្ចូល​តម្លៃ​មួយ​ក្នុង​ប្រអប់ ស្វ័យ​ប្រវត្តិ​ ។"
+msgid "Automatically determine the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
+msgstr ""
#. aagEf
#: cui/uiconfig/ui/textanimtabpage.ui:505
@@ -21716,6 +21754,102 @@ msgctxt "textflowpage|extended_tip|TextFlowPage"
msgid "Specify hyphenation and pagination options."
msgstr "បញ្ជាក់​ជម្រើស​ការ​ដាក់​សហ​សញ្ញា និង​ការ​ដាក់​លេខ​ទំព័រ។"
+#. K58BF
+#: cui/uiconfig/ui/themetabpage.ui:30
+msgctxt "themetabpage|lbThemeName"
+msgid "Name:"
+msgstr ""
+
+#. GxAud
+#: cui/uiconfig/ui/themetabpage.ui:60
+msgctxt "themetabpage|general"
+msgid "General"
+msgstr ""
+
+#. PFDEf
+#: cui/uiconfig/ui/themetabpage.ui:92
+msgctxt "themetabpage|lbColorSetName"
+msgid "Name:"
+msgstr ""
+
+#. 4GfYQ
+#: cui/uiconfig/ui/themetabpage.ui:121
+msgctxt "themetabpage|lbDk1"
+msgid "Background - Dark 1:"
+msgstr ""
+
+#. J3qNF
+#: cui/uiconfig/ui/themetabpage.ui:136
+msgctxt "themetabpage|lbLt1"
+msgid "Text - Light 1:"
+msgstr ""
+
+#. zFCDe
+#: cui/uiconfig/ui/themetabpage.ui:151
+msgctxt "themetabpage|lbDk2"
+msgid "Background - Dark 2:"
+msgstr ""
+
+#. RVZjG
+#: cui/uiconfig/ui/themetabpage.ui:166
+msgctxt "themetabpage|lbLt2"
+msgid "Text - Light 2:"
+msgstr ""
+
+#. kwdwQ
+#: cui/uiconfig/ui/themetabpage.ui:181
+msgctxt "themetabpage|lbAccent1"
+msgid "Accent 1:"
+msgstr ""
+
+#. iBrgD
+#: cui/uiconfig/ui/themetabpage.ui:196
+msgctxt "themetabpage|lbAccent2"
+msgid "Accent 2:"
+msgstr ""
+
+#. jA7Cn
+#: cui/uiconfig/ui/themetabpage.ui:211
+msgctxt "themetabpage|lbAccent3"
+msgid "Accent 3:"
+msgstr ""
+
+#. oPgoC
+#: cui/uiconfig/ui/themetabpage.ui:226
+msgctxt "themetabpage|lbAccent4"
+msgid "Accent 4:"
+msgstr ""
+
+#. n8AAc
+#: cui/uiconfig/ui/themetabpage.ui:241
+msgctxt "themetabpage|lbAccent5"
+msgid "Accent 5:"
+msgstr ""
+
+#. pi44r
+#: cui/uiconfig/ui/themetabpage.ui:256
+msgctxt "themetabpage|lbAccent6"
+msgid "Accent 6:"
+msgstr ""
+
+#. CeB9H
+#: cui/uiconfig/ui/themetabpage.ui:271
+msgctxt "themetabpage|lbHlink"
+msgid "Hyperlink:"
+msgstr ""
+
+#. B722M
+#: cui/uiconfig/ui/themetabpage.ui:286
+msgctxt "themetabpage|lbFolHlink"
+msgid "Followed Hyperlink:"
+msgstr ""
+
+#. jRFtE
+#: cui/uiconfig/ui/themetabpage.ui:543
+msgctxt "themetabpage|colorSet"
+msgid "Color Set"
+msgstr ""
+
#. 5BskL
#: cui/uiconfig/ui/thesaurus.ui:23
msgctxt "thesaurus|ThesaurusDialog"
@@ -22194,11 +22328,11 @@ msgctxt "wordcompletionpage|appendspace"
msgid "_Append space"
msgstr "បន្ថែមដក​ឃ្លា​ខាង​ចុង"
-#. B3Tgo
+#. gZhGZ
#: cui/uiconfig/ui/wordcompletionpage.ui:107
msgctxt "wordcompletionpage|extended_tip|appendspace"
-msgid "If you do not add punctuation after the word, %PRODUCTNAME adds a space."
-msgstr "​ប្រសិន​បើ​អ្នក​មិន​​បន្ថែម​ការ​ដាក់​វណ្ណយុត្ត​បន្ទាប់​ពី​ពាក្យ​​ %PRODUCTNAME បន្ថែម​ចន្លោះ​មួយ​ ។​"
+msgid "If you do not add punctuation after the word then a space is added automatically."
+msgstr ""
#. YyYGC
#: cui/uiconfig/ui/wordcompletionpage.ui:118
@@ -22269,11 +22403,11 @@ msgctxt "wordcompletionpage|whenclosing"
msgid "_When closing a document, remove the words collected from it from the list"
msgstr "នៅ​ពេល​បិទ​ឯកសារ យក​ពាក្យ​ដែល​បាន​សម្រាំង​ចេញ​ពី​បញ្ជី"
-#. RFvtW
+#. 6yDhD
#: cui/uiconfig/ui/wordcompletionpage.ui:343
msgctxt "wordcompletionpage|extended_tip|whenclosing"
-msgid "When enabled, the list gets cleared when closing the current document. When disabled, makes the current Word Completion list available to other documents after you close the current document. The list remains available until you exit %PRODUCTNAME."
-msgstr "នៅពេល​បានបើក បញ្ជីត្រូវ​បានជម្រះ ដោយ​បិទ​ឯកសារ​បច្ចុប្បន្ន ។ នៅពេល​បានបិទ ធ្វើ​ឲ្យ​បញ្ជីបំពេញ​ពាក្យ​បច្ចុប្បន្ន​អាច​ប្រើ​​បាន​ដោយ​ឯកសារ​ផ្សេង​ទៀត បន្ទាប់​ពី​អ្នកបិទ​ឯកសារ​បច្ចុប្បន្ន ។ បញ្ជី​​នៅតែ​អាច​ប្រើបាន​រហូត​ដល់​អ្នក​ចេញ​ពី %PRODUCTNAME ។"
+msgid "When enabled, the list gets cleared when closing the current document. When disabled, makes the current Word Completion list available to other documents after you close the current document. The list remains available until you exit office suite."
+msgstr ""
#. f7oAK
#: cui/uiconfig/ui/wordcompletionpage.ui:358
@@ -22459,8 +22593,8 @@ msgctxt "zoomdialog|label1"
msgid "View Layout"
msgstr "មើល​ប្លង់"
-#. xrBmX
+#. DWWgJ
#: cui/uiconfig/ui/zoomdialog.ui:448
msgctxt "zoomdialog|extended_tip|ZoomDialog"
-msgid "Reduces or enlarges the screen display of %PRODUCTNAME."
-msgstr "កាត់​បន្ថយ​ ឬ​ពង្រីក​ការ​បង្ហាញ​អេក្រង់​របស់ %PRODUCTNAME ។"
+msgid "Reduces or enlarges the screen display."
+msgstr ""
diff --git a/source/km/dbaccess/messages.po b/source/km/dbaccess/messages.po
index 4df3ce80e85..6b9537b6749 100644
--- a/source/km/dbaccess/messages.po
+++ b/source/km/dbaccess/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2020-01-07 12:20+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Central Khmer <https://weblate.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/km/>\n"
@@ -17,21 +17,21 @@ msgstr ""
"X-POOTLE-MTIME: 1524567279.000000\n"
#. BiN6g
-#: dbaccess/inc/query.hrc:26
+#: dbaccess/inc/query.hrc:28
#, fuzzy
msgctxt "RSC_QUERY_OBJECT_TYPE"
msgid "The table view"
msgstr "ជា​ទិដ្ឋភាព​តារាង"
#. ySuKZ
-#: dbaccess/inc/query.hrc:27
+#: dbaccess/inc/query.hrc:29
#, fuzzy
msgctxt "RSC_QUERY_OBJECT_TYPE"
msgid "The query"
msgstr "សំណួរ"
#. akGh9
-#: dbaccess/inc/query.hrc:28
+#: dbaccess/inc/query.hrc:30
#, fuzzy
msgctxt "RSC_QUERY_OBJECT_TYPE"
msgid "The SQL statement"
@@ -3440,98 +3440,98 @@ msgstr ""
"ការ​កំណត់​ថ្មី​ដែល​អ្នក​បង្កើត នឹង​សរសេរ​ជាន់​លើ​ការ​កំណត់​ដែល​មាន​ស្រាប់​របស់​អ្នក។"
#. bWHAD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:18
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:23
msgctxt "generalpagewizard|headerText"
msgid "Welcome to the %PRODUCTNAME Database Wizard"
msgstr "សូមស្វាគមន៍​មកកាន់​អ្នក​ជំនួយការ​មូលដ្ឋាន​ទិន្នន័យ​របស់ %PRODUCTNAME"
#. DSNWP
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:35
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:40
msgctxt "generalpagewizard|helpText"
msgid "Use the Database Wizard to create a new database, open an existing database file, or connect to a database stored on a server."
msgstr "ប្រើ​អ្នកជំនួយការ​មូលដ្ឋាន​ទិន្នន័យ ដើម្បី​បង្កើត​មូលដ្ឋាន​ទិន្នន័យ​ថ្មី បើក​ឯកសារ​មូលដ្ឋាន​ទិន្នន័យ​ដែល​មាន​ស្រាប់​ ឬ​តភ្ជាប់​ទៅ​មូលដ្ឋាន​ទិន្នន័យ​ដែល​បាន​រក្សា​ទុក​នៅ​លើ​ម៉ាស៊ីន​មេ។"
#. KxZny
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:50
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:55
msgctxt "generalpagewizard|sourceTypeHeader"
msgid "What do you want to do?"
msgstr "តើ​អ្នក​ចង់​ធ្វើ​អ្វី?"
#. M3vFA
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:61
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:66
msgctxt "generalpagewizard|createDatabase"
msgid "Create a n_ew database"
msgstr "បង្កើត​មូលដ្ឋាន​ទិន្នន័យ​ថ្មី"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:77
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:96
#, fuzzy
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "មូលដ្ឋាន​ទិន្នន័យ​បាន​បង្កប់៖"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:126
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "បើក​ឯកសារ​មូលដ្ឋាន​ទិន្នន័យ​ដែល​មាន​ស្រាប់"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:136
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:155
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "បាន​ប្រើ​ថ្មីៗ៖"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:180
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:191
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "បើក"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:202
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:213
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "តភ្ជាប់​ទៅ​​​មូលដ្ឋាន​ទិន្នន័យ​ដែល​មាន​ស្រាប់"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:223
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:240
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:263
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3539,7 +3539,7 @@ msgid ""
msgstr ""
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:273
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
@@ -4110,21 +4110,21 @@ msgid "Parameter Input"
msgstr "ការ​​បញ្ចូល​​ប៉ារ៉ាម៉ែត្រ"
#. 64gyj
-#: dbaccess/uiconfig/ui/parametersdialog.ui:152
+#: dbaccess/uiconfig/ui/parametersdialog.ui:151
#, fuzzy
msgctxt "parametersdialog|label2"
msgid "_Value:"
msgstr "តម្លៃ៖"
#. BqYRw
-#: dbaccess/uiconfig/ui/parametersdialog.ui:184
+#: dbaccess/uiconfig/ui/parametersdialog.ui:183
#, fuzzy
msgctxt "parametersdialog|next"
msgid "_Next"
msgstr "បន្ទាប់"
#. xirKR
-#: dbaccess/uiconfig/ui/parametersdialog.ui:210
+#: dbaccess/uiconfig/ui/parametersdialog.ui:209
#, fuzzy
msgctxt "parametersdialog|label1"
msgid "_Parameters"
diff --git a/source/km/desktop/messages.po b/source/km/desktop/messages.po
index 651ba01b424..883042fc7af 100644
--- a/source/km/desktop/messages.po
+++ b/source/km/desktop/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-09-03 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1008,10 +1008,10 @@ msgctxt "extensionmanager|extended_tip|getextensions"
msgid "You can find a collection of extensions on the Web."
msgstr ""
-#. vSiEz
+#. LFF2R
#: desktop/uiconfig/ui/extensionmanager.ui:389
msgctxt "extensionmanager|extended_tip|ExtensionManagerDialog"
-msgid "The Extension Manager adds, removes, disables, enables, and updates %PRODUCTNAME extensions."
+msgid "The Extension Manager adds, removes, disables, enables, and updates extensions."
msgstr ""
#. EGwkP
diff --git a/source/km/editeng/messages.po b/source/km/editeng/messages.po
index 4f6c60cce0b..6edb711da25 100644
--- a/source/km/editeng/messages.po
+++ b/source/km/editeng/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:13+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-01-15 20:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,81 +18,81 @@ msgstr ""
#. BHYB4
#. enum SvxCellHorJustify ----------------------------------------------------
-#: editeng/inc/strings.hrc:17
+#: editeng/inc/strings.hrc:19
msgctxt "RID_SVXITEMS_HORJUST_STANDARD"
msgid "Horizontal alignment default"
msgstr "តម្រឹម​ផ្ដេក​លំនាំដើម"
#. htWdf
-#: editeng/inc/strings.hrc:18
+#: editeng/inc/strings.hrc:20
msgctxt "RID_SVXITEMS_HORJUST_LEFT"
msgid "Align left"
msgstr "តម្រឹម​ឆ្វេង"
#. icuN2
-#: editeng/inc/strings.hrc:19
+#: editeng/inc/strings.hrc:21
msgctxt "RID_SVXITEMS_HORJUST_CENTER"
msgid "Centered horizontally"
msgstr "តម្រឹម​កណ្ដាល"
#. JXEo9
-#: editeng/inc/strings.hrc:20
+#: editeng/inc/strings.hrc:22
msgctxt "RID_SVXITEMS_HORJUST_RIGHT"
msgid "Align right"
msgstr "តម្រឹម​ស្តាំ​"
#. BFCFs
-#: editeng/inc/strings.hrc:21
+#: editeng/inc/strings.hrc:23
msgctxt "RID_SVXITEMS_HORJUST_BLOCK"
msgid "Justify horizontally"
msgstr ""
#. DVmUh
-#: editeng/inc/strings.hrc:22
+#: editeng/inc/strings.hrc:24
msgctxt "RID_SVXITEMS_HORJUST_REPEAT"
msgid "Repeat alignment"
msgstr "តម្រឹម​ឡើងវិញ"
#. hMaif
#. enum SvxCellVerJustify ----------------------------------------------------
-#: editeng/inc/strings.hrc:28
+#: editeng/inc/strings.hrc:30
msgctxt "RID_SVXITEMS_VERJUST_STANDARD"
msgid "Vertical alignment default"
msgstr "តម្រឹម​បញ្ឈរ​លំនាំដើម"
#. xy2FG
-#: editeng/inc/strings.hrc:29
+#: editeng/inc/strings.hrc:31
msgctxt "RID_SVXITEMS_VERJUST_TOP"
msgid "Align to top"
msgstr "តម្រឹម​ទៅ​កំពូល"
#. UjmWt
-#: editeng/inc/strings.hrc:30
+#: editeng/inc/strings.hrc:32
msgctxt "RID_SVXITEMS_VERJUST_CENTER"
msgid "Centered vertically"
msgstr "តម្រឹម​កណ្ដាល"
#. G3X9R
-#: editeng/inc/strings.hrc:31
+#: editeng/inc/strings.hrc:33
msgctxt "RID_SVXITEMS_VERJUST_BOTTOM"
msgid "Align to bottom"
msgstr "តម្រឹម​ទៅ​បាត"
#. 3jGFq
-#: editeng/inc/strings.hrc:32
+#: editeng/inc/strings.hrc:34
msgctxt "RID_SVXITEMS_HORJUST_BLOCK"
msgid "Justify vertically"
msgstr ""
#. WQZvF
#. enum SvxCellJustifyMethod ----------------------------------------------------
-#: editeng/inc/strings.hrc:38
+#: editeng/inc/strings.hrc:40
msgctxt "RID_SVXITEMS_JUSTMETHOD_AUTO"
msgid "Automatic Justify"
msgstr ""
#. o9aJe
-#: editeng/inc/strings.hrc:39
+#: editeng/inc/strings.hrc:41
msgctxt "RID_SVXITEMS_JUSTMETHOD_DISTRIBUTE"
msgid "Distributed Justify"
msgstr ""
diff --git a/source/km/extensions/messages.po b/source/km/extensions/messages.po
index c5bbf83ae0a..bd475bb5de0 100644
--- a/source/km/extensions/messages.po
+++ b/source/km/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,811 +100,811 @@ msgid "_Yes"
msgstr ""
#. hEBQd
-#: extensions/inc/showhide.hrc:29
+#: extensions/inc/showhide.hrc:31
#, fuzzy
msgctxt "RID_RSC_ENUM_SHOWHIDE"
msgid "Hide"
msgstr "លាក់"
#. 6NMuP
-#: extensions/inc/showhide.hrc:30
+#: extensions/inc/showhide.hrc:32
#, fuzzy
msgctxt "RID_RSC_ENUM_SHOWHIDE"
msgid "Show"
msgstr "បង្ហាញ"
#. jtRex
-#: extensions/inc/stringarrays.hrc:27
+#: extensions/inc/stringarrays.hrc:29
msgctxt "RID_RSC_ENUM_VERTICAL_ALIGN"
msgid "Top"
msgstr "កំពូល"
#. dKUAY
-#: extensions/inc/stringarrays.hrc:28
+#: extensions/inc/stringarrays.hrc:30
msgctxt "RID_RSC_ENUM_VERTICAL_ALIGN"
msgid "Middle"
msgstr "កណ្ដាល"
#. zrn8B
-#: extensions/inc/stringarrays.hrc:29
+#: extensions/inc/stringarrays.hrc:31
msgctxt "RID_RSC_ENUM_VERTICAL_ALIGN"
msgid "Bottom"
msgstr "បាត"
#. 9sD4A
-#: extensions/inc/stringarrays.hrc:34
+#: extensions/inc/stringarrays.hrc:36
msgctxt "RID_RSC_ENUM_ICONSIZE_TYPE"
msgid "Small"
msgstr "តូច"
#. Xqy9X
-#: extensions/inc/stringarrays.hrc:35
+#: extensions/inc/stringarrays.hrc:37
msgctxt "RID_RSC_ENUM_ICONSIZE_TYPE"
msgid "Large"
msgstr "ធំ"
#. 5ACyV
-#: extensions/inc/stringarrays.hrc:40
+#: extensions/inc/stringarrays.hrc:42
#, fuzzy
msgctxt "RID_RSC_ENUM_BORDER_TYPE"
msgid "Without frame"
msgstr "គ្មាន​ស៊ុម"
#. ozfAi
-#: extensions/inc/stringarrays.hrc:41
+#: extensions/inc/stringarrays.hrc:43
msgctxt "RID_RSC_ENUM_BORDER_TYPE"
msgid "3D look"
msgstr "រូបរាងត្រីមាត្រ"
#. zv7ER
-#: extensions/inc/stringarrays.hrc:42
+#: extensions/inc/stringarrays.hrc:44
#, fuzzy
msgctxt "RID_RSC_ENUM_BORDER_TYPE"
msgid "Flat"
msgstr "សំប៉ែត"
#. hLCDu
-#: extensions/inc/stringarrays.hrc:47
+#: extensions/inc/stringarrays.hrc:49
#, fuzzy
msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
msgid "Valuelist"
msgstr "បញ្ជី​តម្លៃ"
#. uEHqn
-#: extensions/inc/stringarrays.hrc:48
+#: extensions/inc/stringarrays.hrc:50
msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
msgid "Table"
msgstr "តារាង"
#. GxEC7
-#: extensions/inc/stringarrays.hrc:49
+#: extensions/inc/stringarrays.hrc:51
msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
msgid "Query"
msgstr "សំណួរ​"
#. Espc7
-#: extensions/inc/stringarrays.hrc:50
+#: extensions/inc/stringarrays.hrc:52
msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
msgid "Sql"
msgstr "Sql"
#. GCQne
-#: extensions/inc/stringarrays.hrc:51
+#: extensions/inc/stringarrays.hrc:53
msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
msgid "Sql [Native]"
msgstr "Sql [Native]"
#. kMQfy
-#: extensions/inc/stringarrays.hrc:52
+#: extensions/inc/stringarrays.hrc:54
#, fuzzy
msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
msgid "Tablefields"
msgstr "វាល​តារាង"
#. LXToU
-#: extensions/inc/stringarrays.hrc:57
+#: extensions/inc/stringarrays.hrc:59
#, fuzzy
msgctxt "RID_RSC_ENUM_ALIGNMENT"
msgid "Left"
msgstr "ឆ្វេង"
#. GdfD5
-#: extensions/inc/stringarrays.hrc:58
+#: extensions/inc/stringarrays.hrc:60
#, fuzzy
msgctxt "RID_RSC_ENUM_ALIGNMENT"
msgid "Center"
msgstr "កណ្ដាល"
#. CavSj
-#: extensions/inc/stringarrays.hrc:59
+#: extensions/inc/stringarrays.hrc:61
#, fuzzy
msgctxt "RID_RSC_ENUM_ALIGNMENT"
msgid "Right"
msgstr "ស្ដាំ"
#. nAV82
-#: extensions/inc/stringarrays.hrc:64
+#: extensions/inc/stringarrays.hrc:66
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "None"
msgstr "គ្មាន"
#. FcKuk
-#: extensions/inc/stringarrays.hrc:65
+#: extensions/inc/stringarrays.hrc:67
#, fuzzy
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Submit form"
msgstr "ដាក់ស្នើ​សំណុំ​បែបបទ"
#. sUzBS
-#: extensions/inc/stringarrays.hrc:66
+#: extensions/inc/stringarrays.hrc:68
#, fuzzy
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Reset form"
msgstr "កំណត់​សំណុំបែប​បទ​ឡើងវិញ"
#. dvtFb
-#: extensions/inc/stringarrays.hrc:67
+#: extensions/inc/stringarrays.hrc:69
#, fuzzy
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Open document/web page"
msgstr "បើក​ឯកសារ​/​ទំព័រ​បណ្ដាញ"
#. PfTdk
-#: extensions/inc/stringarrays.hrc:68
+#: extensions/inc/stringarrays.hrc:70
#, fuzzy
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "First record"
msgstr "កំណត់​ត្រា​ទីមួយ"
#. arZzt
-#: extensions/inc/stringarrays.hrc:69
+#: extensions/inc/stringarrays.hrc:71
#, fuzzy
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Previous record"
msgstr "កំណត់​ត្រា​មុន"
#. wBVrm
-#: extensions/inc/stringarrays.hrc:70
+#: extensions/inc/stringarrays.hrc:72
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Next record"
msgstr "កំណត់ត្រា​បន្ទាប់"
#. MeCez
-#: extensions/inc/stringarrays.hrc:71
+#: extensions/inc/stringarrays.hrc:73
#, fuzzy
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Last record"
msgstr "កំណត់​ត្រា​ចុងក្រោយ"
#. DRGF8
-#: extensions/inc/stringarrays.hrc:72
+#: extensions/inc/stringarrays.hrc:74
#, fuzzy
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Save record"
msgstr "រក្សាទុក​កំណត់​ត្រា"
#. qA9DX
-#: extensions/inc/stringarrays.hrc:73
+#: extensions/inc/stringarrays.hrc:75
#, fuzzy
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Undo data entry"
msgstr "មិន​ធ្វើ​ធាតុ​ទិន្នន័យ​វិញ"
#. b6Es8
-#: extensions/inc/stringarrays.hrc:74
+#: extensions/inc/stringarrays.hrc:76
#, fuzzy
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "New record"
msgstr "កំណត់​ត្រា​ថ្មី"
#. GYDro
-#: extensions/inc/stringarrays.hrc:75
+#: extensions/inc/stringarrays.hrc:77
#, fuzzy
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Delete record"
msgstr "លុប​កំណត់​ត្រា"
#. Xr2KA
-#: extensions/inc/stringarrays.hrc:76
+#: extensions/inc/stringarrays.hrc:78
#, fuzzy
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "ធ្វើ​ឲ្យ​សំណុំ​បែបបទ​ស្រស់"
#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
msgid "Get"
msgstr "យក​"
#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
+#: extensions/inc/stringarrays.hrc:84
msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
msgid "Post"
msgstr "ប្រកាស"
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:90
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "ផ្នែក​ច្រើន"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "អត្ថបទ"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "ស្តង់ដារ (ខ្លី)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:97
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "ស្តង់ដារ (YY ខ្លី)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:98
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "ស្តង់ដារ (YYYY ខ្លី)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "ស្តង់ដារ (វែង)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:100
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "DD/MM/YY"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:101
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/DD/YY"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:102
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "YY/MM/DD"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:103
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "DD/MM/YYYY"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:104
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/DD/YYYY"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:105
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "YYYY/MM/DD"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:106
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "YY-MM-DD"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:107
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "YYYY-MM-DD"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:112
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:113
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:114
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 ល្ងាច"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:115
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 ល្ងាច"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:120
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "មិន​បាន​ជ្រើស"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:121
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "បាន​ជ្រើស"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:122
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "មិន​បាន​កំណត់"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:127
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "កំណត់​ត្រា​ទាំងអស់"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:128
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "កំណត់​ត្រា​សកម្ម"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:129
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "ទំព័រ​បច្ចុប្បន្ន"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "ទេ"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:135
#, fuzzy
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "បាទ/ចាស"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:136
#, fuzzy
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "សំណុំ​បែបបទ​មេ"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr ""
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr ""
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr ""
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:144
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "ទៅ"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "គ្មាន"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "តែ​មួយ"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:151
#, fuzzy
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "ច្រើន"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:152
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "ជួរ"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:157
#, fuzzy
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "ផ្ដេក"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:158
#, fuzzy
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "បញ្ឈរ"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "លំនាំដើម"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "យល់ព្រម"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:165
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "បោះបង់"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:166
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "ជំនួយ"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:171
#, fuzzy
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "ធាតុ​ដែល​បាន​ជ្រើស"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:172
#, fuzzy
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "ទីតាំង​របស់​ថត​ដែល​បាន​ជ្រើស"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:177
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "បន្ទាត់​មួយ​"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:178
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "ពហុ​​បន្ទាត់​"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:179
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "ពហុ​​បន្ទាត់​​ដែល​​មាន​​​ទ្រង់​ទ្រាយ​​"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:184
#, fuzzy
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (យូនីក)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:185
#, fuzzy
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (វីនដូ)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "គ្មាន"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:191
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "ផ្ដេក"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:192
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "បញ្ឈរ"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:193
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "ទាំង​ពីរ​"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "ត្រីមាត្រ"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:199
#, fuzzy
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "សំប៉ែត"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:204
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "​ឆ្វេង កំពូល"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:205
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "ឆ្វេង​ កណ្តាល​"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:206
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "​ឆ្វេង បាត"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:207
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "​ស្តាំ កំពូល"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:208
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "ស្តាំ​ កណ្តាល​"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:209
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "​ស្តាំ បាត"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:210
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "លើ​ ឆ្វេង"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:211
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "​លើ​ កណ្តាល"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:212
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "​​លើ​ ស្តាំ​"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:213
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "​ក្រោម ឆ្វេង"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:214
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "​​​ក្រោម​ កណ្តាល​"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:215
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "ក្រោម ស្តាំ​"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:216
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "កណ្តាល"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:221
#, fuzzy
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "បង្ការ"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:222
#, fuzzy
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "ជំនួស​"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:223
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "វេញ"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "ទេ"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:229
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "រក្សាទុក​សមាមាត្រ"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:230
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "សម​ទៅ​នឹង​ទំហំ"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "ពី​ឆ្វេង​ទៅ​ស្ដាំ"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "ពី​ស្ដាំ​ទៅ​ឆ្វេង"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:237
#, fuzzy
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "ប្រើ​ការ​កំណត់​វត្ថុ​ដែល​មាន​លំដាប់​ខ្ពស់ជាង"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:242
#, fuzzy
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "កុំ"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:243
#, fuzzy
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "នៅពេល​ផ្ដោត"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "ជា​និច្ច"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:249
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "ទៅ​កថាខណ្ឌ"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:250
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "តួអក្សរ"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:251
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "ទៅ​ទំព័រ"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:252
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "ទៅ​ស៊ុម"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:253
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "តួអក្សរ"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:258
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "ទៅ​ទំព័រ"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:259
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
@@ -3267,10 +3267,10 @@ msgctxt "datasourcepage|available"
msgid "Make this address book available to all modules in %PRODUCTNAME."
msgstr "ធ្វើ​​ឲ្យ​​សៀវភៅ​អាសយដ្ឋាន​​​​នេះ​​​ អាច​​ប្រើ​​បាន​ចំពោះ​​គ្រប់​​ម៉ូឌុល​​ទាំង​​អស់​​ក្នុង​​ %PRODUCTNAME ។"
-#. F3UzV
+#. iPwFJ
#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:134
msgctxt "datasourcepage|extended_tip|available"
-msgid "Registers the newly created database file in %PRODUCTNAME. The database will then be listed in the Data sources pane (Ctrl+Shift+F4). If this check box is cleared, the database will be available only by opening the database file."
+msgid "Registers the newly created database file in the office suite. The database will then be listed in the Data sources pane (Ctrl+Shift+F4). If this check box is cleared, the database will be available only by opening the database file."
msgstr ""
#. jbrum
@@ -3601,17 +3601,17 @@ msgstr ""
"ប្រ​ភព​​​​ទិន្នន័យ​​​​​ខាង​​ក្រៅ​​​​ដែល​​​​អ្នក​​​​បាន​​​​ជ្រើស ​​​​​មាន​​​​សៀវភៅ​អាសយដ្ឋាន​លើស​ពី​មួយ។\n"
"សូម​ជ្រើស​​ប្រភព​ទិន្នន័យ​មួយ​ដែល​អ្នក​ចង់​ធ្វើ​ដំណើរការ៖"
-#. YkkV4
+#. 2aTdA
#: extensions/uiconfig/sabpilot/ui/selecttablepage.ui:77
msgctxt "selecttablepage|extended_tip|table"
-msgid "Specifies the table that is to serve as the address book for the %PRODUCTNAME templates."
-msgstr "បញ្ជាក់​​តារាង​ ដែល​ត្រូវ​​​ប្រើ​ជា​សៀវ​ភៅ​អាស័យ​ដ្ឋាន​សម្រាប់​ពុម្ព​ %PRODUCTNAME ។​"
+msgid "Specifies the table that is to serve as the address book for the office suite templates."
+msgstr ""
-#. F6ySC
+#. K8W3u
#: extensions/uiconfig/sabpilot/ui/selecttablepage.ui:90
msgctxt "selecttablepage|extended_tip|SelectTablePage"
-msgid "Specifies a table from the Seamonkey / Netscape address book source that is used as the address book in %PRODUCTNAME."
-msgstr "បញ្ជាក់​តារាង​ពី​ប្រភព​សៀវភៅ​អាសយដ្ឋាន Seamonkey / Netscape ដែល​ត្រូវ​បាន​ប្រើ​ជា​សៀវភៅ​អាសយដ្ឋាន​នៅ​ក្នុង %PRODUCTNAME ។"
+msgid "Specifies a table from the Seamonkey / Netscape address book source that is used as the address book in the office suite."
+msgstr ""
#. bCndk
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:15
@@ -3703,11 +3703,11 @@ msgctxt "selecttypepage|other"
msgid "Other external data source"
msgstr "ប្រភព​ទិន្នន័យ​ខាងក្រៅ​ផ្សេង​ទៀត"
-#. xvf2d
+#. XHBju
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:171
msgctxt "selecttypepage|extended_tip|other"
-msgid "Select this option if you want to register another data source as address book in %PRODUCTNAME."
-msgstr "ជ្រើស​ជម្រើស​នេះ​​ ប្រសិន​អ្នក​​ចង់​ចុះ​ឈ្មោះ​ប្រភព​ទិន្នន័យ​ផ្សេង​​ទៀត​ ជា​សៀវភៅ​អាស័យ​ដ្ឋាន​ក្នុង​ %PRODUCTNAME ។​"
+msgid "Select this option if you want to register another data source as address book in the office suite."
+msgstr ""
#. HyBth
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:184
@@ -3715,11 +3715,11 @@ msgctxt "selecttypepage|label1"
msgid "Select the type of your external address book:"
msgstr ""
-#. xdzuR
+#. zEGmu
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:207
msgctxt "selecttypepage|extended_tip|SelectTypePage"
-msgid "This wizard registers an existing address book as a data source in %PRODUCTNAME."
-msgstr "កម្មវិធី​ជំនួយ​នេះ​ចុះឈ្មោះ​សៀវភៅ​អាស័យដ្ឋានដែលមាន​រួច​មួយ ជា​ប្រភព​ទិន្នន័យ​នៅក្នុង %PRODUCTNAME ។"
+msgid "This wizard registers an existing address book as a data source in the office suite."
+msgstr ""
#. f33Eh
#: extensions/uiconfig/sabpilot/ui/tableselectionpage.ui:56
diff --git a/source/km/filter/messages.po b/source/km/filter/messages.po
index 30545a0f200..6212e8f0f57 100644
--- a/source/km/filter/messages.po
+++ b/source/km/filter/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-01-15 15:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -752,10 +752,10 @@ msgctxt "pdfgeneralpage|emptypages"
msgid "Exp_ort automatically inserted blank pages"
msgstr "នាំចេញ​ទំព័រ​ទទេ​ដែល​បាន​បញ្ចូល​ដោយ​ស្វ័យប្រវត្តិ"
-#. ZkGWy
+#. Drp3w
#: filter/uiconfig/ui/pdfgeneralpage.ui:871
msgctxt "pdfgeneralpage|extended_tip|emptypages"
-msgid "If switched on, automatically inserted blank pages are exported to the PDF file. This is best if you are printing the pdf file double-sided. Example: In a book a chapter paragraph style is set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to export that even numbered page or not."
+msgid "If switched on, automatically inserted blank pages are exported to the PDF file. This is best if you are printing the pdf file double-sided. Example: In a book a chapter paragraph style is set to always start with an odd numbered page. If the previous chapter ends on an odd page, then an even numbered blank page is normally automatically inserted. This option controls whether to export that even numbered page or not."
msgstr ""
#. sHqKP
@@ -1775,14 +1775,14 @@ msgid "Tests the XSLT stylesheets used by the selected XML filter."
msgstr "សាកល្បង​សន្លឹក​រចនាប័ទ្ម XSLT បាន​ប្រើ​ដោយ​ តម្រង XML ដែល​បាន​ជ្រើស ។"
#. DEJXN
-#: filter/uiconfig/ui/warnpdfdialog.ui:19
+#: filter/uiconfig/ui/warnpdfdialog.ui:18
#, fuzzy
msgctxt "warnpdfdialog|WarnPDFDialog"
msgid "Problems During PDF Export"
msgstr "មាន​បញ្ហា​​អំឡុង​ពេល​នាំចេញ PDF"
#. 2BpUz
-#: filter/uiconfig/ui/warnpdfdialog.ui:26
+#: filter/uiconfig/ui/warnpdfdialog.ui:25
msgctxt "warnpdfdialog|WarnPDFDialog"
msgid "During PDF export the following problems occurred:"
msgstr "មាន​បញ្ហា​​ដូច​ខាង​ក្រោម​បាន​កើតឡើង ខណៈ​ពេល​នាំចេញ PDF ៖"
@@ -1942,11 +1942,11 @@ 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 "បញ្ចូល​ឈ្មោះ​ដែល​អ្នក​ចង់​បង្ហាញ​ក្នុង​ប្រអប់បញ្ជី​របស់​ប្រអប់​ ការ​កំណត់​តម្រង​ XML ។"
-#. yTwyU
+#. Tbmcc
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:119
msgctxt "xmlfiltertabpagegeneral|extended_tip|extension"
-msgid "Enter the file extension to use when you open a file without specifying a filter. %PRODUCTNAME uses the file extension to determine which filter to use."
-msgstr "បញ្ចូល​កន្ទុយ​ឯកសារ​ ដើម្បី​ប្រើ​ពេល​អ្នក​បើក​ឯកសារ​មួយ​ដោយ​មិន​​បញ្ជាក់​​តម្រង​មួយ​ ។ %PRODUCTNAME ប្រើ​កន្ទុយ​ឯកសារ​ដើម្បី​កំណត់​តម្រង​ណាមួយ​ត្រូវ​ប្រើ ។"
+msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension to used to determine which filter to use."
+msgstr ""
#. fZvBA
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:138
diff --git a/source/km/filter/source/config/fragments/filters.po b/source/km/filter/source/config/fragments/filters.po
index a1b33623bc2..253dac828e2 100644
--- a/source/km/filter/source/config/fragments/filters.po
+++ b/source/km/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: filters\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-20 13:20+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-07-01 22:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -1295,6 +1295,16 @@ msgctxt ""
msgid "Microsoft Visio 2000-2013"
msgstr "Microsoft Visio 2000-2013"
+#. XqQUq
+#: WEBP___WebP.xcu
+msgctxt ""
+"WEBP___WebP.xcu\n"
+"WEBP - WebP\n"
+"UIName\n"
+"value.text"
+msgid "WEBP - WebP Image"
+msgstr ""
+
#. zUxn7
#: WMF___MS_Windows_Metafile.xcu
msgctxt ""
@@ -1536,6 +1546,16 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics"
msgstr ""
+#. xAURF
+#: calc_webp_Export.xcu
+msgctxt ""
+"calc_webp_Export.xcu\n"
+"calc_webp_Export\n"
+"UIName\n"
+"value.text"
+msgid "WEBP - WebP Image"
+msgstr ""
+
#. ASgi2
#: chart8.xcu
msgctxt ""
@@ -1716,6 +1736,16 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - Tagged Image File Format"
+#. zoHw3
+#: draw_webp_Export.xcu
+msgctxt ""
+"draw_webp_Export.xcu\n"
+"draw_webp_Export\n"
+"UIName\n"
+"value.text"
+msgid "WEBP - WebP Image"
+msgstr ""
+
#. RgBSz
#: draw_wmf_Export.xcu
msgctxt ""
@@ -1946,6 +1976,16 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - Tagged Image File Format"
+#. RRsQE
+#: impress_webp_Export.xcu
+msgctxt ""
+"impress_webp_Export.xcu\n"
+"impress_webp_Export\n"
+"UIName\n"
+"value.text"
+msgid "WEBP - WebP Image"
+msgstr ""
+
#. 3yHCC
#: impress_wmf_Export.xcu
msgctxt ""
@@ -2176,6 +2216,26 @@ msgctxt ""
msgid "PNG - Portable Network Graphics"
msgstr ""
+#. SyN4Q
+#: writer_web_webp_Export.xcu
+msgctxt ""
+"writer_web_webp_Export.xcu\n"
+"writer_web_webp_Export\n"
+"UIName\n"
+"value.text"
+msgid "WEBP - WebP Image"
+msgstr ""
+
+#. DxENG
+#: writer_webp_Export.xcu
+msgctxt ""
+"writer_webp_Export.xcu\n"
+"writer_webp_Export\n"
+"UIName\n"
+"value.text"
+msgid "WEBP - WebP Image"
+msgstr ""
+
#. iRPFB
#: writerglobal8.xcu
msgctxt ""
diff --git a/source/km/filter/source/config/fragments/internalgraphicfilters.po b/source/km/filter/source/config/fragments/internalgraphicfilters.po
index ff672e614a0..926a789f74e 100644
--- a/source/km/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/km/filter/source/config/fragments/internalgraphicfilters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-20 13:20+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-01-15 15:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -356,6 +356,26 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - Tagged Image File Format"
+#. NCR2v
+#: webp_Export.xcu
+msgctxt ""
+"webp_Export.xcu\n"
+"webp_Export\n"
+"UIName\n"
+"value.text"
+msgid "WEBP - WebP Image"
+msgstr ""
+
+#. ZABzk
+#: webp_Import.xcu
+msgctxt ""
+"webp_Import.xcu\n"
+"webp_Import\n"
+"UIName\n"
+"value.text"
+msgid "WEBP - WebP Image"
+msgstr ""
+
#. fUdGf
#: wmf_Export.xcu
msgctxt ""
diff --git a/source/km/formula/messages.po b/source/km/formula/messages.po
index 9c9ecbccb1f..acee0bce827 100644
--- a/source/km/formula/messages.po
+++ b/source/km/formula/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2020-11-14 08:36+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Central Khmer <https://weblate.documentfoundation.org/projects/libo_ui-master/formulamessages/km/>\n"
@@ -16,2366 +16,2366 @@ msgstr ""
"X-Generator: LibreOffice\n"
#. YfKFn
-#: formula/inc/core_resource.hrc:2277
+#: formula/inc/core_resource.hrc:2278
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IF"
msgstr "IF"
#. EgqkZ
-#: formula/inc/core_resource.hrc:2278
+#: formula/inc/core_resource.hrc:2279
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IFERROR"
msgstr "IFERROR"
#. Vowev
-#: formula/inc/core_resource.hrc:2279
+#: formula/inc/core_resource.hrc:2280
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IFNA"
msgstr "IFNA"
#. LcdBW
-#: formula/inc/core_resource.hrc:2280
+#: formula/inc/core_resource.hrc:2281
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHOOSE"
msgstr "CHOOSE"
#. nMD3h
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2282
+#: formula/inc/core_resource.hrc:2283
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#All"
msgstr "#ទាំង​អស់"
#. tuvMu
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2284
+#: formula/inc/core_resource.hrc:2285
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#Headers"
msgstr "#បឋមកថា"
#. amt53
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2286
+#: formula/inc/core_resource.hrc:2287
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#Data"
msgstr "#ទិន្នន័យ​"
#. 8z4ov
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2288
+#: formula/inc/core_resource.hrc:2289
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#Totals"
msgstr ""
#. ZF2Pc
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2290
+#: formula/inc/core_resource.hrc:2291
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#This Row"
msgstr ""
#. kHXXq
-#: formula/inc/core_resource.hrc:2291
+#: formula/inc/core_resource.hrc:2292
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AND"
msgstr "AND"
#. wUQor
-#: formula/inc/core_resource.hrc:2292
+#: formula/inc/core_resource.hrc:2293
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "OR"
msgstr "OR"
#. P5Wdb
-#: formula/inc/core_resource.hrc:2293
+#: formula/inc/core_resource.hrc:2294
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "XOR"
msgstr "XOR"
#. BhVsr
-#: formula/inc/core_resource.hrc:2294
+#: formula/inc/core_resource.hrc:2295
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NOT"
msgstr "NOT"
#. xBKEY
-#: formula/inc/core_resource.hrc:2295
+#: formula/inc/core_resource.hrc:2296
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NEG"
msgstr "NEG"
#. hR3ty
-#: formula/inc/core_resource.hrc:2296
+#: formula/inc/core_resource.hrc:2297
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PI"
msgstr "PI"
#. HyFVg
#. ???
-#: formula/inc/core_resource.hrc:2297
+#: formula/inc/core_resource.hrc:2298
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RAND"
msgstr "RAND"
#. FJXfC
-#: formula/inc/core_resource.hrc:2298
+#: formula/inc/core_resource.hrc:2299
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRUE"
msgstr "TRUE"
#. SRUmC
-#: formula/inc/core_resource.hrc:2299
+#: formula/inc/core_resource.hrc:2300
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FALSE"
msgstr "FALSE"
#. o5Qoc
-#: formula/inc/core_resource.hrc:2300
+#: formula/inc/core_resource.hrc:2301
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TODAY"
msgstr "TODAY"
#. AbGu2
-#: formula/inc/core_resource.hrc:2301
+#: formula/inc/core_resource.hrc:2302
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NOW"
msgstr "NOW"
#. 3SbN6
-#: formula/inc/core_resource.hrc:2302
+#: formula/inc/core_resource.hrc:2303
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NA"
msgstr "NA"
#. XMVcP
-#: formula/inc/core_resource.hrc:2303
+#: formula/inc/core_resource.hrc:2304
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CURRENT"
msgstr "CURRENT"
#. csFkg
-#: formula/inc/core_resource.hrc:2304
+#: formula/inc/core_resource.hrc:2305
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DEGREES"
msgstr "DEGREES"
#. jupWo
-#: formula/inc/core_resource.hrc:2305
+#: formula/inc/core_resource.hrc:2306
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RADIANS"
msgstr "RADIANS"
#. on6aZ
-#: formula/inc/core_resource.hrc:2306
+#: formula/inc/core_resource.hrc:2307
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SIN"
msgstr "SIN"
#. LEVGF
-#: formula/inc/core_resource.hrc:2307
+#: formula/inc/core_resource.hrc:2308
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COS"
msgstr "COS"
#. rYeEc
-#: formula/inc/core_resource.hrc:2308
+#: formula/inc/core_resource.hrc:2309
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TAN"
msgstr "TAN"
#. sUchi
-#: formula/inc/core_resource.hrc:2309
+#: formula/inc/core_resource.hrc:2310
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COT"
msgstr "COT"
#. 2wT6v
-#: formula/inc/core_resource.hrc:2310
+#: formula/inc/core_resource.hrc:2311
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ASIN"
msgstr "ASIN"
#. gP8uF
-#: formula/inc/core_resource.hrc:2311
+#: formula/inc/core_resource.hrc:2312
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ACOS"
msgstr "ACOS"
#. Dh9Sj
-#: formula/inc/core_resource.hrc:2312
+#: formula/inc/core_resource.hrc:2313
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ATAN"
msgstr "ATAN"
#. EdF3d
-#: formula/inc/core_resource.hrc:2313
+#: formula/inc/core_resource.hrc:2314
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ACOT"
msgstr "ACOT"
#. 2EsXj
-#: formula/inc/core_resource.hrc:2314
+#: formula/inc/core_resource.hrc:2315
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SINH"
msgstr "SINH"
#. AawuL
-#: formula/inc/core_resource.hrc:2315
+#: formula/inc/core_resource.hrc:2316
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COSH"
msgstr "COSH"
#. ziyn3
-#: formula/inc/core_resource.hrc:2316
+#: formula/inc/core_resource.hrc:2317
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TANH"
msgstr "TANH"
#. HD5CF
-#: formula/inc/core_resource.hrc:2317
+#: formula/inc/core_resource.hrc:2318
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COTH"
msgstr "COTH"
#. gLCtP
-#: formula/inc/core_resource.hrc:2318
+#: formula/inc/core_resource.hrc:2319
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ASINH"
msgstr "ASINH"
#. yYGWp
-#: formula/inc/core_resource.hrc:2319
+#: formula/inc/core_resource.hrc:2320
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ACOSH"
msgstr "ACOSH"
#. hxEdg
-#: formula/inc/core_resource.hrc:2320
+#: formula/inc/core_resource.hrc:2321
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ATANH"
msgstr "ATANH"
#. rPpEs
-#: formula/inc/core_resource.hrc:2321
+#: formula/inc/core_resource.hrc:2322
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ACOTH"
msgstr "ACOTH"
#. 4zZ7F
-#: formula/inc/core_resource.hrc:2322
+#: formula/inc/core_resource.hrc:2323
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CSC"
msgstr "CSC"
#. Wt7bF
-#: formula/inc/core_resource.hrc:2323
+#: formula/inc/core_resource.hrc:2324
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SEC"
msgstr "SEC"
#. FAKWX
-#: formula/inc/core_resource.hrc:2324
+#: formula/inc/core_resource.hrc:2325
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CSCH"
msgstr "CSCH"
#. aaj9f
-#: formula/inc/core_resource.hrc:2325
+#: formula/inc/core_resource.hrc:2326
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SECH"
msgstr "SECH"
#. WksHp
-#: formula/inc/core_resource.hrc:2326
+#: formula/inc/core_resource.hrc:2327
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EXP"
msgstr "EXP"
#. jvQxZ
-#: formula/inc/core_resource.hrc:2327
+#: formula/inc/core_resource.hrc:2328
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LN"
msgstr "LN"
#. uMYFB
-#: formula/inc/core_resource.hrc:2328
+#: formula/inc/core_resource.hrc:2329
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SQRT"
msgstr "SQRT"
#. pWWMs
-#: formula/inc/core_resource.hrc:2329
+#: formula/inc/core_resource.hrc:2330
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FACT"
msgstr "FACT"
#. E77CE
-#: formula/inc/core_resource.hrc:2330
+#: formula/inc/core_resource.hrc:2331
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "YEAR"
msgstr "YEAR"
#. pyoEq
-#: formula/inc/core_resource.hrc:2331
+#: formula/inc/core_resource.hrc:2332
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MONTH"
msgstr "MONTH"
#. hNQAF
-#: formula/inc/core_resource.hrc:2332
+#: formula/inc/core_resource.hrc:2333
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DAY"
msgstr "DAY"
#. EGzo7
-#: formula/inc/core_resource.hrc:2333
+#: formula/inc/core_resource.hrc:2334
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HOUR"
msgstr "HOUR"
#. Qo346
-#: formula/inc/core_resource.hrc:2334
+#: formula/inc/core_resource.hrc:2335
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MINUTE"
msgstr "MINUTE"
#. UQsEw
-#: formula/inc/core_resource.hrc:2335
+#: formula/inc/core_resource.hrc:2336
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SECOND"
msgstr "SECOND"
#. PE9Eb
-#: formula/inc/core_resource.hrc:2336
+#: formula/inc/core_resource.hrc:2337
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SIGN"
msgstr "SIGN"
#. svANJ
-#: formula/inc/core_resource.hrc:2337
+#: formula/inc/core_resource.hrc:2338
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ABS"
msgstr "ABS"
#. FATD5
-#: formula/inc/core_resource.hrc:2338
+#: formula/inc/core_resource.hrc:2339
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INT"
msgstr "INT"
#. gQnYU
-#: formula/inc/core_resource.hrc:2339
+#: formula/inc/core_resource.hrc:2340
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PHI"
msgstr "PHI"
#. Qhk4a
-#: formula/inc/core_resource.hrc:2340
+#: formula/inc/core_resource.hrc:2341
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAUSS"
msgstr "GAUSS"
#. B3Abo
-#: formula/inc/core_resource.hrc:2341
+#: formula/inc/core_resource.hrc:2342
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISBLANK"
msgstr "ISBLANK"
#. QDbkj
-#: formula/inc/core_resource.hrc:2342
+#: formula/inc/core_resource.hrc:2343
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISTEXT"
msgstr "ISTEXT"
#. 7cwz3
-#: formula/inc/core_resource.hrc:2343
+#: formula/inc/core_resource.hrc:2344
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISNONTEXT"
msgstr "ISNONTEXT"
#. Sf78G
-#: formula/inc/core_resource.hrc:2344
+#: formula/inc/core_resource.hrc:2345
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISLOGICAL"
msgstr "ISLOGICAL"
#. cp5XL
-#: formula/inc/core_resource.hrc:2345
+#: formula/inc/core_resource.hrc:2346
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TYPE"
msgstr "TYPE"
#. TosDP
-#: formula/inc/core_resource.hrc:2346
+#: formula/inc/core_resource.hrc:2347
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CELL"
msgstr "CELL"
#. CEEAs
-#: formula/inc/core_resource.hrc:2347
+#: formula/inc/core_resource.hrc:2348
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISREF"
msgstr "ISREF"
#. oYFSL
-#: formula/inc/core_resource.hrc:2348
+#: formula/inc/core_resource.hrc:2349
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISNUMBER"
msgstr "ISNUMBER"
#. KtYgY
-#: formula/inc/core_resource.hrc:2349
+#: formula/inc/core_resource.hrc:2350
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISFORMULA"
msgstr "ISFORMULA"
#. JmCq7
-#: formula/inc/core_resource.hrc:2350
+#: formula/inc/core_resource.hrc:2351
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISNA"
msgstr "ISNA"
#. eSL6y
-#: formula/inc/core_resource.hrc:2351
+#: formula/inc/core_resource.hrc:2352
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISERR"
msgstr "ISERR"
#. XUgnE
-#: formula/inc/core_resource.hrc:2352
+#: formula/inc/core_resource.hrc:2353
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISERROR"
msgstr "ISERROR"
#. CgkSX
-#: formula/inc/core_resource.hrc:2353
+#: formula/inc/core_resource.hrc:2354
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISEVEN"
msgstr "ISEVEN"
#. NF3DL
-#: formula/inc/core_resource.hrc:2354
+#: formula/inc/core_resource.hrc:2355
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISODD"
msgstr "ISODD"
#. zWjQ2
-#: formula/inc/core_resource.hrc:2355
+#: formula/inc/core_resource.hrc:2356
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "N"
msgstr "N"
#. Rpyy9
-#: formula/inc/core_resource.hrc:2356
+#: formula/inc/core_resource.hrc:2357
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DATEVALUE"
msgstr "DATEVALUE"
#. YoZ86
-#: formula/inc/core_resource.hrc:2357
+#: formula/inc/core_resource.hrc:2358
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TIMEVALUE"
msgstr "TIMEVALUE"
#. u9Cq2
-#: formula/inc/core_resource.hrc:2358
+#: formula/inc/core_resource.hrc:2359
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CODE"
msgstr "CODE"
#. Tfa7V
-#: formula/inc/core_resource.hrc:2359
+#: formula/inc/core_resource.hrc:2360
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRIM"
msgstr "TRIM"
#. DTAHH
-#: formula/inc/core_resource.hrc:2360
+#: formula/inc/core_resource.hrc:2361
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "UPPER"
msgstr "UPPER"
#. B8s34
-#: formula/inc/core_resource.hrc:2361
+#: formula/inc/core_resource.hrc:2362
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PROPER"
msgstr "PROPER"
#. DDm7q
-#: formula/inc/core_resource.hrc:2362
+#: formula/inc/core_resource.hrc:2363
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOWER"
msgstr "LOWER"
#. nKRuv
-#: formula/inc/core_resource.hrc:2363
+#: formula/inc/core_resource.hrc:2364
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LEN"
msgstr "LEN"
#. L2QYN
-#: formula/inc/core_resource.hrc:2364
+#: formula/inc/core_resource.hrc:2365
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T"
msgstr "T"
#. WR2P5
-#: formula/inc/core_resource.hrc:2365
+#: formula/inc/core_resource.hrc:2366
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VALUE"
msgstr "VALUE"
#. scQDa
-#: formula/inc/core_resource.hrc:2366
+#: formula/inc/core_resource.hrc:2367
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CLEAN"
msgstr "CLEAN"
#. vn5fL
-#: formula/inc/core_resource.hrc:2367
+#: formula/inc/core_resource.hrc:2368
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHAR"
msgstr "CHAR"
#. D5tnq
-#: formula/inc/core_resource.hrc:2368
+#: formula/inc/core_resource.hrc:2369
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "JIS"
msgstr "JIS"
#. fjcZG
-#: formula/inc/core_resource.hrc:2369
+#: formula/inc/core_resource.hrc:2370
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ASC"
msgstr "ASC"
#. FLCLC
-#: formula/inc/core_resource.hrc:2370
+#: formula/inc/core_resource.hrc:2371
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "UNICODE"
msgstr "UNICODE"
#. AYPzA
-#: formula/inc/core_resource.hrc:2371
+#: formula/inc/core_resource.hrc:2372
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "UNICHAR"
msgstr "UNICHAR"
#. 6D3EV
-#: formula/inc/core_resource.hrc:2372
+#: formula/inc/core_resource.hrc:2373
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOG10"
msgstr "LOG10"
#. BHS3K
-#: formula/inc/core_resource.hrc:2373
+#: formula/inc/core_resource.hrc:2374
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EVEN"
msgstr "EVEN"
#. kTKKZ
-#: formula/inc/core_resource.hrc:2374
+#: formula/inc/core_resource.hrc:2375
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ODD"
msgstr "ODD"
#. s3xj3
-#: formula/inc/core_resource.hrc:2375
+#: formula/inc/core_resource.hrc:2376
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORMSDIST"
msgstr "NORMSDIST"
#. iXthM
-#: formula/inc/core_resource.hrc:2376
+#: formula/inc/core_resource.hrc:2377
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORM.S.DIST"
msgstr "NORM.S.DIST"
#. CADmA
-#: formula/inc/core_resource.hrc:2377
+#: formula/inc/core_resource.hrc:2378
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FISHER"
msgstr "FISHER"
#. isCQ3
-#: formula/inc/core_resource.hrc:2378
+#: formula/inc/core_resource.hrc:2379
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FISHERINV"
msgstr "FISHERINV"
#. BaYfe
-#: formula/inc/core_resource.hrc:2379
+#: formula/inc/core_resource.hrc:2380
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORMSINV"
msgstr "NORMSINV"
#. pCD9f
-#: formula/inc/core_resource.hrc:2380
+#: formula/inc/core_resource.hrc:2381
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORM.S.INV"
msgstr "NORM.S.INV"
#. 6MkED
-#: formula/inc/core_resource.hrc:2381
+#: formula/inc/core_resource.hrc:2382
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMALN"
msgstr "GAMMALN"
#. 7CNvA
-#: formula/inc/core_resource.hrc:2382
+#: formula/inc/core_resource.hrc:2383
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMALN.PRECISE"
msgstr "GAMMALN.PRECISE"
#. uq6bt
-#: formula/inc/core_resource.hrc:2383
+#: formula/inc/core_resource.hrc:2384
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ERRORTYPE"
msgstr "ERRORTYPE"
#. VvyBc
-#: formula/inc/core_resource.hrc:2384
+#: formula/inc/core_resource.hrc:2385
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ERROR.TYPE"
msgstr "ERRORTYPE"
#. hA6t7
-#: formula/inc/core_resource.hrc:2385
+#: formula/inc/core_resource.hrc:2386
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORMULA"
msgstr "FORMULA"
#. vNCQC
-#: formula/inc/core_resource.hrc:2386
+#: formula/inc/core_resource.hrc:2387
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ARABIC"
msgstr "ARABIC"
#. EQ5yx
-#: formula/inc/core_resource.hrc:2387
+#: formula/inc/core_resource.hrc:2388
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ATAN2"
msgstr "ATAN2"
#. Gw9Fm
-#: formula/inc/core_resource.hrc:2388
+#: formula/inc/core_resource.hrc:2389
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING.MATH"
msgstr ""
#. MCSCn
-#: formula/inc/core_resource.hrc:2389
+#: formula/inc/core_resource.hrc:2390
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING"
msgstr "CEILING"
#. scaZA
-#: formula/inc/core_resource.hrc:2390
+#: formula/inc/core_resource.hrc:2391
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING.XCL"
msgstr ""
#. WvaBc
-#: formula/inc/core_resource.hrc:2391
+#: formula/inc/core_resource.hrc:2392
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING.PRECISE"
msgstr "CEILING.PRECISE"
#. rEus7
-#: formula/inc/core_resource.hrc:2392
+#: formula/inc/core_resource.hrc:2393
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISO.CEILING"
msgstr "ISO.CEILING"
#. Q8bBZ
-#: formula/inc/core_resource.hrc:2393
+#: formula/inc/core_resource.hrc:2394
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR"
msgstr "FLOOR"
#. AmYrj
-#: formula/inc/core_resource.hrc:2394
+#: formula/inc/core_resource.hrc:2395
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR.XCL"
msgstr ""
#. wALpZ
-#: formula/inc/core_resource.hrc:2395
+#: formula/inc/core_resource.hrc:2396
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR.MATH"
msgstr ""
#. rKCyS
-#: formula/inc/core_resource.hrc:2396
+#: formula/inc/core_resource.hrc:2397
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR.PRECISE"
msgstr "FLOOR.PRECISE"
#. WHtuv
-#: formula/inc/core_resource.hrc:2397
+#: formula/inc/core_resource.hrc:2398
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUND"
msgstr "ROUND"
#. TZEFs
-#: formula/inc/core_resource.hrc:2398
+#: formula/inc/core_resource.hrc:2399
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUNDUP"
msgstr "ROUNDUP"
#. 3tjA5
-#: formula/inc/core_resource.hrc:2399
+#: formula/inc/core_resource.hrc:2400
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUNDDOWN"
msgstr "ROUNDDOWN"
#. XBWFh
-#: formula/inc/core_resource.hrc:2400
+#: formula/inc/core_resource.hrc:2401
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRUNC"
msgstr "TRUNC"
#. LKBqy
-#: formula/inc/core_resource.hrc:2401
+#: formula/inc/core_resource.hrc:2402
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOG"
msgstr "LOG"
#. Asn3C
-#: formula/inc/core_resource.hrc:2402
+#: formula/inc/core_resource.hrc:2403
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "POWER"
msgstr "POWER"
#. fNofY
-#: formula/inc/core_resource.hrc:2403
+#: formula/inc/core_resource.hrc:2404
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GCD"
msgstr "GCD"
#. aTzGm
-#: formula/inc/core_resource.hrc:2404
+#: formula/inc/core_resource.hrc:2405
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LCM"
msgstr "LCM"
#. HqKX8
-#: formula/inc/core_resource.hrc:2405
+#: formula/inc/core_resource.hrc:2406
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MOD"
msgstr "MOD"
#. 4pDQY
-#: formula/inc/core_resource.hrc:2406
+#: formula/inc/core_resource.hrc:2407
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMPRODUCT"
msgstr "SUMPRODUCT"
#. iYnCx
-#: formula/inc/core_resource.hrc:2407
+#: formula/inc/core_resource.hrc:2408
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMSQ"
msgstr "SUMSQ"
#. TCmLs
-#: formula/inc/core_resource.hrc:2408
+#: formula/inc/core_resource.hrc:2409
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMX2MY2"
msgstr "SUMX2MY2"
#. 3CA6E
-#: formula/inc/core_resource.hrc:2409
+#: formula/inc/core_resource.hrc:2410
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMX2PY2"
msgstr "SUMX2PY2"
#. yE6FJ
-#: formula/inc/core_resource.hrc:2410
+#: formula/inc/core_resource.hrc:2411
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMXMY2"
msgstr "SUMXMY2"
#. Kq3Fv
-#: formula/inc/core_resource.hrc:2411
+#: formula/inc/core_resource.hrc:2412
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DATE"
msgstr "DATE"
#. 7daHs
-#: formula/inc/core_resource.hrc:2412
+#: formula/inc/core_resource.hrc:2413
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TIME"
msgstr "TIME"
#. XMgdw
-#: formula/inc/core_resource.hrc:2413
+#: formula/inc/core_resource.hrc:2414
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DAYS"
msgstr "DAYS"
#. GmFrk
-#: formula/inc/core_resource.hrc:2414
+#: formula/inc/core_resource.hrc:2415
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DAYS360"
msgstr "DAYS360"
#. ryXRy
-#: formula/inc/core_resource.hrc:2415
+#: formula/inc/core_resource.hrc:2416
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DATEDIF"
msgstr "DATEDIF"
#. hfE7B
-#: formula/inc/core_resource.hrc:2416
+#: formula/inc/core_resource.hrc:2417
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MIN"
msgstr "MIN"
#. AnAVr
-#: formula/inc/core_resource.hrc:2417
+#: formula/inc/core_resource.hrc:2418
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MINA"
msgstr "MINA"
#. Gix6E
-#: formula/inc/core_resource.hrc:2418
+#: formula/inc/core_resource.hrc:2419
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MAX"
msgstr "MAX"
#. Y6F2B
-#: formula/inc/core_resource.hrc:2419
+#: formula/inc/core_resource.hrc:2420
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MAXA"
msgstr "MAXA"
#. CZXHr
-#: formula/inc/core_resource.hrc:2420
+#: formula/inc/core_resource.hrc:2421
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUM"
msgstr "SUM"
#. 4KA5C
-#: formula/inc/core_resource.hrc:2421
+#: formula/inc/core_resource.hrc:2422
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PRODUCT"
msgstr "PRODUCT"
#. qpU73
-#: formula/inc/core_resource.hrc:2422
+#: formula/inc/core_resource.hrc:2423
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVERAGE"
msgstr "AVERAGE"
#. sHZ7d
-#: formula/inc/core_resource.hrc:2423
+#: formula/inc/core_resource.hrc:2424
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVERAGEA"
msgstr "AVERAGEA"
#. CFSpv
-#: formula/inc/core_resource.hrc:2424
+#: formula/inc/core_resource.hrc:2425
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNT"
msgstr "COUNT"
#. JYFiS
-#: formula/inc/core_resource.hrc:2425
+#: formula/inc/core_resource.hrc:2426
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNTA"
msgstr "COUNTA"
#. JjXDM
-#: formula/inc/core_resource.hrc:2426
+#: formula/inc/core_resource.hrc:2427
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NPV"
msgstr "NPV"
#. YjgAC
-#: formula/inc/core_resource.hrc:2427
+#: formula/inc/core_resource.hrc:2428
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IRR"
msgstr "IRR"
#. BYTjL
-#: formula/inc/core_resource.hrc:2428
+#: formula/inc/core_resource.hrc:2429
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MIRR"
msgstr "MIRR"
#. v9GAT
-#: formula/inc/core_resource.hrc:2429
+#: formula/inc/core_resource.hrc:2430
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISPMT"
msgstr "ISPMT"
#. K7EeP
-#: formula/inc/core_resource.hrc:2430
+#: formula/inc/core_resource.hrc:2431
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VAR"
msgstr "VAR"
#. CXPNH
-#: formula/inc/core_resource.hrc:2431
+#: formula/inc/core_resource.hrc:2432
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VARA"
msgstr "VARA"
#. zYRiw
-#: formula/inc/core_resource.hrc:2432
+#: formula/inc/core_resource.hrc:2433
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VARP"
msgstr "VARP"
#. 38coa
-#: formula/inc/core_resource.hrc:2433
+#: formula/inc/core_resource.hrc:2434
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VARPA"
msgstr "VARPA"
#. 9ofpD
-#: formula/inc/core_resource.hrc:2434
+#: formula/inc/core_resource.hrc:2435
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VAR.P"
msgstr "VAR.P"
#. CmJnc
-#: formula/inc/core_resource.hrc:2435
+#: formula/inc/core_resource.hrc:2436
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VAR.S"
msgstr "VAR.S"
#. Fn4hd
-#: formula/inc/core_resource.hrc:2436
+#: formula/inc/core_resource.hrc:2437
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEV"
msgstr "STDEV"
#. bzGrU
-#: formula/inc/core_resource.hrc:2437
+#: formula/inc/core_resource.hrc:2438
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEVA"
msgstr "STDEVA"
#. u4EE9
-#: formula/inc/core_resource.hrc:2438
+#: formula/inc/core_resource.hrc:2439
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEVP"
msgstr "STDEVP"
#. qcdgn
-#: formula/inc/core_resource.hrc:2439
+#: formula/inc/core_resource.hrc:2440
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEVPA"
msgstr "STDEVPA"
#. wJefG
-#: formula/inc/core_resource.hrc:2440
+#: formula/inc/core_resource.hrc:2441
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEV.P"
msgstr "STDEV.P"
#. ZQKhp
-#: formula/inc/core_resource.hrc:2441
+#: formula/inc/core_resource.hrc:2442
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEV.S"
msgstr "STDEV.S"
#. dnFm9
-#: formula/inc/core_resource.hrc:2442
+#: formula/inc/core_resource.hrc:2443
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "B"
msgstr "B"
#. vSS7A
-#: formula/inc/core_resource.hrc:2443
+#: formula/inc/core_resource.hrc:2444
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORMDIST"
msgstr "NORMDIST"
#. ZmN24
-#: formula/inc/core_resource.hrc:2444
+#: formula/inc/core_resource.hrc:2445
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORM.DIST"
msgstr "NORM.DIST"
#. ZotkE
-#: formula/inc/core_resource.hrc:2445
+#: formula/inc/core_resource.hrc:2446
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EXPONDIST"
msgstr "EXPONDIST"
#. QR4X5
-#: formula/inc/core_resource.hrc:2446
+#: formula/inc/core_resource.hrc:2447
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EXPON.DIST"
msgstr "EXPON.DIST"
#. rj7xi
-#: formula/inc/core_resource.hrc:2447
+#: formula/inc/core_resource.hrc:2448
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BINOMDIST"
msgstr "BINOMDIST"
#. 3DUoC
-#: formula/inc/core_resource.hrc:2448
+#: formula/inc/core_resource.hrc:2449
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BINOM.DIST"
msgstr "BINOM.DIST"
#. 5PEVt
-#: formula/inc/core_resource.hrc:2449
+#: formula/inc/core_resource.hrc:2450
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "POISSON"
msgstr "POISSON"
#. 3KDHP
-#: formula/inc/core_resource.hrc:2450
+#: formula/inc/core_resource.hrc:2451
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "POISSON.DIST"
msgstr "POISSON.DIST"
#. TJ2Am
-#: formula/inc/core_resource.hrc:2451
+#: formula/inc/core_resource.hrc:2452
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COMBIN"
msgstr "COMBIN"
#. uooUA
-#: formula/inc/core_resource.hrc:2452
+#: formula/inc/core_resource.hrc:2453
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COMBINA"
msgstr "COMBINA"
#. YAwK5
-#: formula/inc/core_resource.hrc:2453
+#: formula/inc/core_resource.hrc:2454
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERMUT"
msgstr "PERMUT"
#. cBPLT
-#: formula/inc/core_resource.hrc:2454
+#: formula/inc/core_resource.hrc:2455
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERMUTATIONA"
msgstr "PERMUTATIONA"
#. t93rk
-#: formula/inc/core_resource.hrc:2455
+#: formula/inc/core_resource.hrc:2456
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PV"
msgstr "PV"
#. tKLfE
-#: formula/inc/core_resource.hrc:2456
+#: formula/inc/core_resource.hrc:2457
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SYD"
msgstr "SYD"
#. 7BwE3
-#: formula/inc/core_resource.hrc:2457
+#: formula/inc/core_resource.hrc:2458
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DDB"
msgstr "DDB"
#. C536Y
-#: formula/inc/core_resource.hrc:2458
+#: formula/inc/core_resource.hrc:2459
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DB"
msgstr "DB"
#. rpLvw
-#: formula/inc/core_resource.hrc:2459
+#: formula/inc/core_resource.hrc:2460
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VDB"
msgstr "VDB"
#. GCfAw
-#: formula/inc/core_resource.hrc:2460
+#: formula/inc/core_resource.hrc:2461
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PDURATION"
msgstr "DURATION"
#. i6LFt
-#: formula/inc/core_resource.hrc:2461
+#: formula/inc/core_resource.hrc:2462
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SLN"
msgstr "SLN"
#. CvELN
-#: formula/inc/core_resource.hrc:2462
+#: formula/inc/core_resource.hrc:2463
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PMT"
msgstr "PMT"
#. sbNXE
-#: formula/inc/core_resource.hrc:2463
+#: formula/inc/core_resource.hrc:2464
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COLUMNS"
msgstr "COLUMNS"
#. UrxAN
-#: formula/inc/core_resource.hrc:2464
+#: formula/inc/core_resource.hrc:2465
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROWS"
msgstr "ROWS"
#. 6JRiQ
-#: formula/inc/core_resource.hrc:2465
+#: formula/inc/core_resource.hrc:2466
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SHEETS"
msgstr "SHEETS"
#. FYiZp
-#: formula/inc/core_resource.hrc:2466
+#: formula/inc/core_resource.hrc:2467
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COLUMN"
msgstr "COLUMN"
#. W2Dnn
-#: formula/inc/core_resource.hrc:2467
+#: formula/inc/core_resource.hrc:2468
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROW"
msgstr "ROW"
#. CrPhx
-#: formula/inc/core_resource.hrc:2468
+#: formula/inc/core_resource.hrc:2469
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SHEET"
msgstr "SHEET"
#. u57Dj
-#: formula/inc/core_resource.hrc:2469
+#: formula/inc/core_resource.hrc:2470
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RRI"
msgstr "RRI"
#. EyAQF
-#: formula/inc/core_resource.hrc:2470
+#: formula/inc/core_resource.hrc:2471
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FV"
msgstr "FV"
#. EaLTQ
-#: formula/inc/core_resource.hrc:2471
+#: formula/inc/core_resource.hrc:2472
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NPER"
msgstr "NPER"
#. LGUbb
-#: formula/inc/core_resource.hrc:2472
+#: formula/inc/core_resource.hrc:2473
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RATE"
msgstr "RATE"
#. AGdL3
-#: formula/inc/core_resource.hrc:2473
+#: formula/inc/core_resource.hrc:2474
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IPMT"
msgstr "IPMT"
#. vpLQh
-#: formula/inc/core_resource.hrc:2474
+#: formula/inc/core_resource.hrc:2475
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PPMT"
msgstr "PPMT"
#. ABfAb
-#: formula/inc/core_resource.hrc:2475
+#: formula/inc/core_resource.hrc:2476
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CUMIPMT"
msgstr "CUMIPMT"
#. aCEVC
-#: formula/inc/core_resource.hrc:2476
+#: formula/inc/core_resource.hrc:2477
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CUMPRINC"
msgstr "CUMPRINC"
#. KNTdw
-#: formula/inc/core_resource.hrc:2477
+#: formula/inc/core_resource.hrc:2478
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EFFECT"
msgstr "EFFECT"
#. fovF4
-#: formula/inc/core_resource.hrc:2478
+#: formula/inc/core_resource.hrc:2479
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NOMINAL"
msgstr "NOMINAL"
#. bxEkk
-#: formula/inc/core_resource.hrc:2479
+#: formula/inc/core_resource.hrc:2480
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUBTOTAL"
msgstr "SUBTOTAL"
#. nggfn
-#: formula/inc/core_resource.hrc:2480
+#: formula/inc/core_resource.hrc:2481
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DSUM"
msgstr "DSUM"
#. u6fWB
-#: formula/inc/core_resource.hrc:2481
+#: formula/inc/core_resource.hrc:2482
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DCOUNT"
msgstr "DCOUNT"
#. Gg8SK
-#: formula/inc/core_resource.hrc:2482
+#: formula/inc/core_resource.hrc:2483
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DCOUNTA"
msgstr "DCOUNTA"
#. 3SNxX
-#: formula/inc/core_resource.hrc:2483
+#: formula/inc/core_resource.hrc:2484
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DAVERAGE"
msgstr "DAVERAGE"
#. bc6DT
-#: formula/inc/core_resource.hrc:2484
+#: formula/inc/core_resource.hrc:2485
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DGET"
msgstr "DGET"
#. isoy2
-#: formula/inc/core_resource.hrc:2485
+#: formula/inc/core_resource.hrc:2486
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DMAX"
msgstr "DMAX"
#. AW7vP
-#: formula/inc/core_resource.hrc:2486
+#: formula/inc/core_resource.hrc:2487
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DMIN"
msgstr "DMIN"
#. pGgvo
-#: formula/inc/core_resource.hrc:2487
+#: formula/inc/core_resource.hrc:2488
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DPRODUCT"
msgstr "DPRODUCT"
#. ZyFwP
-#: formula/inc/core_resource.hrc:2488
+#: formula/inc/core_resource.hrc:2489
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DSTDEV"
msgstr "DSTDEV"
#. oC55j
-#: formula/inc/core_resource.hrc:2489
+#: formula/inc/core_resource.hrc:2490
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DSTDEVP"
msgstr "DSTDEVP"
#. yGRGB
-#: formula/inc/core_resource.hrc:2490
+#: formula/inc/core_resource.hrc:2491
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DVAR"
msgstr "DVAR"
#. yoXqK
-#: formula/inc/core_resource.hrc:2491
+#: formula/inc/core_resource.hrc:2492
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DVARP"
msgstr "DVARP"
#. 2Lt4B
-#: formula/inc/core_resource.hrc:2492
+#: formula/inc/core_resource.hrc:2493
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INDIRECT"
msgstr "INDIRECT"
#. hoG6e
-#: formula/inc/core_resource.hrc:2493
+#: formula/inc/core_resource.hrc:2494
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ADDRESS"
msgstr "ADDRESS"
#. oC9GV
-#: formula/inc/core_resource.hrc:2494
+#: formula/inc/core_resource.hrc:2495
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MATCH"
msgstr "MATCH"
#. xuDNa
-#: formula/inc/core_resource.hrc:2495
+#: formula/inc/core_resource.hrc:2496
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNTBLANK"
msgstr "COUNTBLANK"
#. Zqz6p
-#: formula/inc/core_resource.hrc:2496
+#: formula/inc/core_resource.hrc:2497
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNTIF"
msgstr "COUNTIF"
#. DtDEf
-#: formula/inc/core_resource.hrc:2497
+#: formula/inc/core_resource.hrc:2498
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMIF"
msgstr "SUMIF"
#. PLSLe
-#: formula/inc/core_resource.hrc:2498
+#: formula/inc/core_resource.hrc:2499
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVERAGEIF"
msgstr "AVERAGEIF"
#. gBitk
-#: formula/inc/core_resource.hrc:2499
+#: formula/inc/core_resource.hrc:2500
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMIFS"
msgstr "SUMIFS"
#. eoVP4
-#: formula/inc/core_resource.hrc:2500
+#: formula/inc/core_resource.hrc:2501
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVERAGEIFS"
msgstr "AVERAGEIFS"
#. EFZv9
-#: formula/inc/core_resource.hrc:2501
+#: formula/inc/core_resource.hrc:2502
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNTIFS"
msgstr "COUNTIFS"
#. FRVEu
-#: formula/inc/core_resource.hrc:2502
+#: formula/inc/core_resource.hrc:2503
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOOKUP"
msgstr "LOOKUP"
#. ZzCnC
-#: formula/inc/core_resource.hrc:2503
+#: formula/inc/core_resource.hrc:2504
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VLOOKUP"
msgstr "VLOOKUP"
#. Exee6
-#: formula/inc/core_resource.hrc:2504
+#: formula/inc/core_resource.hrc:2505
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HLOOKUP"
msgstr "HLOOKUP"
#. dTotR
-#: formula/inc/core_resource.hrc:2505
+#: formula/inc/core_resource.hrc:2506
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MULTIRANGE"
msgstr "MULTIRANGE"
#. ui5BC
#. legacy for range list (union)
-#: formula/inc/core_resource.hrc:2506
+#: formula/inc/core_resource.hrc:2507
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "OFFSET"
msgstr "OFFSET"
#. j43Ns
-#: formula/inc/core_resource.hrc:2507
+#: formula/inc/core_resource.hrc:2508
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INDEX"
msgstr "INDEX"
#. DpRD2
#. ?? first character = I ??
-#: formula/inc/core_resource.hrc:2508
+#: formula/inc/core_resource.hrc:2509
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AREAS"
msgstr "AREAS"
#. BBMGS
-#: formula/inc/core_resource.hrc:2509
+#: formula/inc/core_resource.hrc:2510
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DOLLAR"
msgstr "DOLLAR"
#. dL3Bf
-#: formula/inc/core_resource.hrc:2510
+#: formula/inc/core_resource.hrc:2511
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "REPLACE"
msgstr "REPLACE"
#. UZak8
-#: formula/inc/core_resource.hrc:2511
+#: formula/inc/core_resource.hrc:2512
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FIXED"
msgstr "FIXED"
#. 8t8KR
-#: formula/inc/core_resource.hrc:2512
+#: formula/inc/core_resource.hrc:2513
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FIND"
msgstr "FIND"
#. oDxoA
-#: formula/inc/core_resource.hrc:2513
+#: formula/inc/core_resource.hrc:2514
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EXACT"
msgstr "EXACT"
#. dqyCD
-#: formula/inc/core_resource.hrc:2514
+#: formula/inc/core_resource.hrc:2515
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LEFT"
msgstr "LEFT"
#. 5Cmkf
-#: formula/inc/core_resource.hrc:2515
+#: formula/inc/core_resource.hrc:2516
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RIGHT"
msgstr "RIGHT"
#. eoXGy
-#: formula/inc/core_resource.hrc:2516
+#: formula/inc/core_resource.hrc:2517
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SEARCH"
msgstr "SEARCH"
#. BAmDj
-#: formula/inc/core_resource.hrc:2517
+#: formula/inc/core_resource.hrc:2518
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MID"
msgstr "MID"
#. CcD9A
-#: formula/inc/core_resource.hrc:2518
+#: formula/inc/core_resource.hrc:2519
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LENB"
msgstr "LENB"
#. LNZ8z
-#: formula/inc/core_resource.hrc:2519
+#: formula/inc/core_resource.hrc:2520
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RIGHTB"
msgstr "RIGHTB"
#. WtUCd
-#: formula/inc/core_resource.hrc:2520
+#: formula/inc/core_resource.hrc:2521
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LEFTB"
msgstr "LEFTB"
#. hMJEw
-#: formula/inc/core_resource.hrc:2521
+#: formula/inc/core_resource.hrc:2522
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "REPLACEB"
msgstr "REPLACE"
#. KAutM
-#: formula/inc/core_resource.hrc:2522
+#: formula/inc/core_resource.hrc:2523
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MIDB"
msgstr "MIDB"
#. 5ouAE
-#: formula/inc/core_resource.hrc:2523
+#: formula/inc/core_resource.hrc:2524
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TEXT"
msgstr "TEXT"
#. EVEza
-#: formula/inc/core_resource.hrc:2524
+#: formula/inc/core_resource.hrc:2525
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUBSTITUTE"
msgstr "SUBSTITUTE"
#. i3GvS
-#: formula/inc/core_resource.hrc:2525
+#: formula/inc/core_resource.hrc:2526
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "REPT"
msgstr "REPT"
#. 2ai5X
-#: formula/inc/core_resource.hrc:2526
+#: formula/inc/core_resource.hrc:2527
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONCATENATE"
msgstr "CONCATENATE"
#. BUBLF
-#: formula/inc/core_resource.hrc:2527
+#: formula/inc/core_resource.hrc:2528
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONCAT"
msgstr ""
#. 5iLsv
-#: formula/inc/core_resource.hrc:2528
+#: formula/inc/core_resource.hrc:2529
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TEXTJOIN"
msgstr ""
#. XFAVk
-#: formula/inc/core_resource.hrc:2529
+#: formula/inc/core_resource.hrc:2530
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IFS"
msgstr ""
#. mqNA5
-#: formula/inc/core_resource.hrc:2530
+#: formula/inc/core_resource.hrc:2531
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SWITCH"
msgstr ""
#. adC5v
-#: formula/inc/core_resource.hrc:2531
+#: formula/inc/core_resource.hrc:2532
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MINIFS"
msgstr ""
#. cXh5s
-#: formula/inc/core_resource.hrc:2532
+#: formula/inc/core_resource.hrc:2533
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MAXIFS"
msgstr ""
#. 6DKDF
-#: formula/inc/core_resource.hrc:2533
+#: formula/inc/core_resource.hrc:2534
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MVALUE"
msgstr "MVALUE"
#. oo8ci
-#: formula/inc/core_resource.hrc:2534
+#: formula/inc/core_resource.hrc:2535
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MDETERM"
msgstr "MDETERM"
#. ApX8N
-#: formula/inc/core_resource.hrc:2535
+#: formula/inc/core_resource.hrc:2536
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MINVERSE"
msgstr "MINVERSE"
#. tyjoM
-#: formula/inc/core_resource.hrc:2536
+#: formula/inc/core_resource.hrc:2537
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MMULT"
msgstr "MMULT"
#. KmpNP
-#: formula/inc/core_resource.hrc:2537
+#: formula/inc/core_resource.hrc:2538
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRANSPOSE"
msgstr "TRANSPOSE"
#. Q2ER4
-#: formula/inc/core_resource.hrc:2538
+#: formula/inc/core_resource.hrc:2539
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MUNIT"
msgstr "MUNIT"
#. kmGD3
-#: formula/inc/core_resource.hrc:2539
+#: formula/inc/core_resource.hrc:2540
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GOALSEEK"
msgstr "GOALSEEK"
#. i7qgX
-#: formula/inc/core_resource.hrc:2540
+#: formula/inc/core_resource.hrc:2541
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HYPGEOMDIST"
msgstr "HYPGEOMDIST"
#. oUBqZ
-#: formula/inc/core_resource.hrc:2541
+#: formula/inc/core_resource.hrc:2542
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HYPGEOM.DIST"
msgstr "HYPGEOM.DIST"
#. XWa2D
-#: formula/inc/core_resource.hrc:2542
+#: formula/inc/core_resource.hrc:2543
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGNORMDIST"
msgstr "LOGNORMDIST"
#. g2ozv
-#: formula/inc/core_resource.hrc:2543
+#: formula/inc/core_resource.hrc:2544
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGNORM.DIST"
msgstr "LOGNORM.DIST"
#. bWRCD
-#: formula/inc/core_resource.hrc:2544
+#: formula/inc/core_resource.hrc:2545
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TDIST"
msgstr "TDIST"
#. fEd5s
-#: formula/inc/core_resource.hrc:2545
+#: formula/inc/core_resource.hrc:2546
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.DIST.2T"
msgstr "T.DIST.2T"
#. F5Pfo
-#: formula/inc/core_resource.hrc:2546
+#: formula/inc/core_resource.hrc:2547
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.DIST"
msgstr "T.DIST"
#. BVPMN
-#: formula/inc/core_resource.hrc:2547
+#: formula/inc/core_resource.hrc:2548
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.DIST.RT"
msgstr "T.DIST.RT"
#. CHDLb
-#: formula/inc/core_resource.hrc:2548
+#: formula/inc/core_resource.hrc:2549
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FDIST"
msgstr "FDIST"
#. XBqcu
-#: formula/inc/core_resource.hrc:2549
+#: formula/inc/core_resource.hrc:2550
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.DIST"
msgstr "F.DIST"
#. P9uGQ
-#: formula/inc/core_resource.hrc:2550
+#: formula/inc/core_resource.hrc:2551
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.DIST.RT"
msgstr "F.DIST.RT"
#. 9iTFp
-#: formula/inc/core_resource.hrc:2551
+#: formula/inc/core_resource.hrc:2552
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHIDIST"
msgstr "CHIDIST"
#. 4bU9E
-#: formula/inc/core_resource.hrc:2552
+#: formula/inc/core_resource.hrc:2553
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.DIST.RT"
msgstr "CHISQ.DIST.RT"
#. CA3gq
-#: formula/inc/core_resource.hrc:2553
+#: formula/inc/core_resource.hrc:2554
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEIBULL"
msgstr "WEIBULL"
#. cfK8c
-#: formula/inc/core_resource.hrc:2554
+#: formula/inc/core_resource.hrc:2555
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEIBULL.DIST"
msgstr "WEIBULL.DIST"
#. BuVL2
-#: formula/inc/core_resource.hrc:2555
+#: formula/inc/core_resource.hrc:2556
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NEGBINOMDIST"
msgstr "NEGBINOMDIST"
#. JDW2e
-#: formula/inc/core_resource.hrc:2556
+#: formula/inc/core_resource.hrc:2557
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NEGBINOM.DIST"
msgstr "NEGBINOM.DIST"
#. WGm4P
-#: formula/inc/core_resource.hrc:2557
+#: formula/inc/core_resource.hrc:2558
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CRITBINOM"
msgstr "CRITBINOM"
#. GJqSo
-#: formula/inc/core_resource.hrc:2558
+#: formula/inc/core_resource.hrc:2559
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BINOM.INV"
msgstr "BINOM.INV"
#. HXdvV
-#: formula/inc/core_resource.hrc:2559
+#: formula/inc/core_resource.hrc:2560
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "KURT"
msgstr "KURT"
#. gVato
-#: formula/inc/core_resource.hrc:2560
+#: formula/inc/core_resource.hrc:2561
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HARMEAN"
msgstr "HARMEAN"
#. UWQAS
-#: formula/inc/core_resource.hrc:2561
+#: formula/inc/core_resource.hrc:2562
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GEOMEAN"
msgstr "GEOMEAN"
#. tpAGN
-#: formula/inc/core_resource.hrc:2562
+#: formula/inc/core_resource.hrc:2563
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STANDARDIZE"
msgstr "STANDARDIZE"
#. xZDRE
-#: formula/inc/core_resource.hrc:2563
+#: formula/inc/core_resource.hrc:2564
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVEDEV"
msgstr "AVEDEV"
#. jFsMN
-#: formula/inc/core_resource.hrc:2564
+#: formula/inc/core_resource.hrc:2565
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SKEW"
msgstr "SKEW"
#. pENWD
-#: formula/inc/core_resource.hrc:2565
+#: formula/inc/core_resource.hrc:2566
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SKEWP"
msgstr ""
#. DWBTD
-#: formula/inc/core_resource.hrc:2566
+#: formula/inc/core_resource.hrc:2567
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DEVSQ"
msgstr "DEVSQ"
#. mGW7t
-#: formula/inc/core_resource.hrc:2567
+#: formula/inc/core_resource.hrc:2568
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MEDIAN"
msgstr "MEDIAN"
#. an6ST
-#: formula/inc/core_resource.hrc:2568
+#: formula/inc/core_resource.hrc:2569
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MODE"
msgstr "MODE"
#. unFXZ
-#: formula/inc/core_resource.hrc:2569
+#: formula/inc/core_resource.hrc:2570
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MODE.SNGL"
msgstr "MODE.SNGL"
#. MUvgH
-#: formula/inc/core_resource.hrc:2570
+#: formula/inc/core_resource.hrc:2571
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MODE.MULT"
msgstr "MODE.MULT"
#. DYFQo
-#: formula/inc/core_resource.hrc:2571
+#: formula/inc/core_resource.hrc:2572
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ZTEST"
msgstr "ZTEST"
#. QLThG
-#: formula/inc/core_resource.hrc:2572
+#: formula/inc/core_resource.hrc:2573
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "Z.TEST"
msgstr "Z.TEST"
#. uG2Uy
-#: formula/inc/core_resource.hrc:2573
+#: formula/inc/core_resource.hrc:2574
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AGGREGATE"
msgstr ""
#. ky6Cc
-#: formula/inc/core_resource.hrc:2574
+#: formula/inc/core_resource.hrc:2575
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TTEST"
msgstr "TTEST"
#. FR8fD
-#: formula/inc/core_resource.hrc:2575
+#: formula/inc/core_resource.hrc:2576
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.TEST"
msgstr "T.TEST"
#. YbRDQ
-#: formula/inc/core_resource.hrc:2576
+#: formula/inc/core_resource.hrc:2577
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RANK"
msgstr "RANK"
#. zDE8s
-#: formula/inc/core_resource.hrc:2577
+#: formula/inc/core_resource.hrc:2578
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTILE"
msgstr "PERCENTILE"
#. zFA3A
-#: formula/inc/core_resource.hrc:2578
+#: formula/inc/core_resource.hrc:2579
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTRANK"
msgstr "PERCENTRANK"
#. eRFHC
-#: formula/inc/core_resource.hrc:2579
+#: formula/inc/core_resource.hrc:2580
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTILE.INC"
msgstr "PERCENTILE.INC"
#. L7s3h
-#: formula/inc/core_resource.hrc:2580
+#: formula/inc/core_resource.hrc:2581
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTRANK.INC"
msgstr "PERCENTRANK.INC"
#. wNGXD
-#: formula/inc/core_resource.hrc:2581
+#: formula/inc/core_resource.hrc:2582
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "QUARTILE.INC"
msgstr "QUARTILE.INC"
#. 29rpM
-#: formula/inc/core_resource.hrc:2582
+#: formula/inc/core_resource.hrc:2583
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RANK.EQ"
msgstr "RANK.EQ"
#. yEcqx
-#: formula/inc/core_resource.hrc:2583
+#: formula/inc/core_resource.hrc:2584
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTILE.EXC"
msgstr "PERCENTILE.EXC"
#. AEPUL
-#: formula/inc/core_resource.hrc:2584
+#: formula/inc/core_resource.hrc:2585
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTRANK.EXC"
msgstr "PERCENTRANK.EXC"
#. gFk6s
-#: formula/inc/core_resource.hrc:2585
+#: formula/inc/core_resource.hrc:2586
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "QUARTILE.EXC"
msgstr "QUARTILE.EXC"
#. TDAAm
-#: formula/inc/core_resource.hrc:2586
+#: formula/inc/core_resource.hrc:2587
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RANK.AVG"
msgstr "RANK.AVG"
#. gK7Lz
-#: formula/inc/core_resource.hrc:2587
+#: formula/inc/core_resource.hrc:2588
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LARGE"
msgstr "LARGE"
#. 4HcBe
-#: formula/inc/core_resource.hrc:2588
+#: formula/inc/core_resource.hrc:2589
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SMALL"
msgstr "SMALL"
#. HBgVF
-#: formula/inc/core_resource.hrc:2589
+#: formula/inc/core_resource.hrc:2590
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FREQUENCY"
msgstr "FREQUENCY"
#. F7gC7
-#: formula/inc/core_resource.hrc:2590
+#: formula/inc/core_resource.hrc:2591
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "QUARTILE"
msgstr "QUARTILE"
#. s6cqj
-#: formula/inc/core_resource.hrc:2591
+#: formula/inc/core_resource.hrc:2592
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORMINV"
msgstr "NORMINV"
#. CABJF
-#: formula/inc/core_resource.hrc:2592
+#: formula/inc/core_resource.hrc:2593
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORM.INV"
msgstr "NORM.INV"
#. vd2Tg
-#: formula/inc/core_resource.hrc:2593
+#: formula/inc/core_resource.hrc:2594
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONFIDENCE"
msgstr "CONFIDENCE"
#. 3jWj2
-#: formula/inc/core_resource.hrc:2594
+#: formula/inc/core_resource.hrc:2595
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONFIDENCE.NORM"
msgstr "CONFIDENCE.NORM"
#. JqE2i
-#: formula/inc/core_resource.hrc:2595
+#: formula/inc/core_resource.hrc:2596
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONFIDENCE.T"
msgstr "CONFIDENCE.T"
#. ADALA
-#: formula/inc/core_resource.hrc:2596
+#: formula/inc/core_resource.hrc:2597
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FTEST"
msgstr "FTEST"
#. xBfc3
-#: formula/inc/core_resource.hrc:2597
+#: formula/inc/core_resource.hrc:2598
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.TEST"
msgstr ""
#. gqjR4
-#: formula/inc/core_resource.hrc:2598
+#: formula/inc/core_resource.hrc:2599
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRIMMEAN"
msgstr "TRIMMEAN"
#. TrtZc
-#: formula/inc/core_resource.hrc:2599
+#: formula/inc/core_resource.hrc:2600
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PROB"
msgstr "PROB"
#. JkPA6
-#: formula/inc/core_resource.hrc:2600
+#: formula/inc/core_resource.hrc:2601
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CORREL"
msgstr "CORREL"
#. jiAKA
-#: formula/inc/core_resource.hrc:2601
+#: formula/inc/core_resource.hrc:2602
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COVAR"
msgstr "COVAR"
#. yFdKv
-#: formula/inc/core_resource.hrc:2602
+#: formula/inc/core_resource.hrc:2603
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COVARIANCE.P"
msgstr "COVARIANCE.P"
#. X9QM6
-#: formula/inc/core_resource.hrc:2603
+#: formula/inc/core_resource.hrc:2604
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COVARIANCE.S"
msgstr "COVARIANCE.S"
#. 735GD
-#: formula/inc/core_resource.hrc:2604
+#: formula/inc/core_resource.hrc:2605
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PEARSON"
msgstr "PEARSON"
#. DSNju
-#: formula/inc/core_resource.hrc:2605
+#: formula/inc/core_resource.hrc:2606
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RSQ"
msgstr "RSQ"
#. VPked
-#: formula/inc/core_resource.hrc:2606
+#: formula/inc/core_resource.hrc:2607
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STEYX"
msgstr "STEYX"
#. oAAm2
-#: formula/inc/core_resource.hrc:2607
+#: formula/inc/core_resource.hrc:2608
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SLOPE"
msgstr "SLOPE"
#. H5rVZ
-#: formula/inc/core_resource.hrc:2608
+#: formula/inc/core_resource.hrc:2609
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INTERCEPT"
msgstr "INTERCEPT"
#. Gj8xf
-#: formula/inc/core_resource.hrc:2609
+#: formula/inc/core_resource.hrc:2610
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TREND"
msgstr "TREND"
#. PNYCG
-#: formula/inc/core_resource.hrc:2610
+#: formula/inc/core_resource.hrc:2611
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GROWTH"
msgstr "GROWTH"
#. xFQTH
-#: formula/inc/core_resource.hrc:2611
+#: formula/inc/core_resource.hrc:2612
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LINEST"
msgstr "LINEST"
#. EYFD6
-#: formula/inc/core_resource.hrc:2612
+#: formula/inc/core_resource.hrc:2613
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGEST"
msgstr "LOGEST"
#. b6Dkz
-#: formula/inc/core_resource.hrc:2613
+#: formula/inc/core_resource.hrc:2614
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST"
msgstr "FORECAST"
#. gBGyu
-#: formula/inc/core_resource.hrc:2614
+#: formula/inc/core_resource.hrc:2615
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.ADD"
msgstr ""
#. CgCME
-#: formula/inc/core_resource.hrc:2615
+#: formula/inc/core_resource.hrc:2616
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.SEASONALITY"
msgstr ""
#. Ea5Fw
-#: formula/inc/core_resource.hrc:2616
+#: formula/inc/core_resource.hrc:2617
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.MULT"
msgstr ""
#. WSLPQ
-#: formula/inc/core_resource.hrc:2617
+#: formula/inc/core_resource.hrc:2618
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.PI.ADD"
msgstr ""
#. Qb7FC
-#: formula/inc/core_resource.hrc:2618
+#: formula/inc/core_resource.hrc:2619
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.PI.MULT"
msgstr ""
#. CqQHS
-#: formula/inc/core_resource.hrc:2619
+#: formula/inc/core_resource.hrc:2620
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.STAT.ADD"
msgstr ""
#. tHMWM
-#: formula/inc/core_resource.hrc:2620
+#: formula/inc/core_resource.hrc:2621
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.STAT.MULT"
msgstr ""
#. 2DtCt
-#: formula/inc/core_resource.hrc:2621
+#: formula/inc/core_resource.hrc:2622
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.LINEAR"
msgstr ""
#. pid8Q
-#: formula/inc/core_resource.hrc:2622
+#: formula/inc/core_resource.hrc:2623
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHIINV"
msgstr "CHIINV"
#. W4s9c
-#: formula/inc/core_resource.hrc:2623
+#: formula/inc/core_resource.hrc:2624
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.INV.RT"
msgstr "CHISQ.INV.RT"
#. FAYGA
-#: formula/inc/core_resource.hrc:2624
+#: formula/inc/core_resource.hrc:2625
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMADIST"
msgstr "GAMMADIST"
#. hDsw2
-#: formula/inc/core_resource.hrc:2625
+#: formula/inc/core_resource.hrc:2626
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMA.DIST"
msgstr "GAMMA.DIST"
#. YnUod
-#: formula/inc/core_resource.hrc:2626
+#: formula/inc/core_resource.hrc:2627
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMAINV"
msgstr "GAMMAINV"
#. UsH9F
-#: formula/inc/core_resource.hrc:2627
+#: formula/inc/core_resource.hrc:2628
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMA.INV"
msgstr "GAMMA.INV"
#. uVsmG
-#: formula/inc/core_resource.hrc:2628
+#: formula/inc/core_resource.hrc:2629
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TINV"
msgstr "TINV"
#. BARyo
-#: formula/inc/core_resource.hrc:2629
+#: formula/inc/core_resource.hrc:2630
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.INV.2T"
msgstr "T.INV.2T"
#. QEgDG
-#: formula/inc/core_resource.hrc:2630
+#: formula/inc/core_resource.hrc:2631
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.INV"
msgstr "T.INV"
#. GyiqD
-#: formula/inc/core_resource.hrc:2631
+#: formula/inc/core_resource.hrc:2632
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FINV"
msgstr "FINV"
#. vxU5e
-#: formula/inc/core_resource.hrc:2632
+#: formula/inc/core_resource.hrc:2633
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.INV"
msgstr "F.INV"
#. zQB8F
-#: formula/inc/core_resource.hrc:2633
+#: formula/inc/core_resource.hrc:2634
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.INV.RT"
msgstr "F.INV.RT"
#. DduFG
-#: formula/inc/core_resource.hrc:2634
+#: formula/inc/core_resource.hrc:2635
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHITEST"
msgstr "CHITEST"
#. 8RNiE
-#: formula/inc/core_resource.hrc:2635
+#: formula/inc/core_resource.hrc:2636
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.TEST"
msgstr "CHISQ.TEST"
#. SHLfw
-#: formula/inc/core_resource.hrc:2636
+#: formula/inc/core_resource.hrc:2637
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGINV"
msgstr "LOGINV"
#. CEKRG
-#: formula/inc/core_resource.hrc:2637
+#: formula/inc/core_resource.hrc:2638
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGNORM.INV"
msgstr "LOGNORM.INV"
#. EVF8A
-#: formula/inc/core_resource.hrc:2638
+#: formula/inc/core_resource.hrc:2639
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MULTIPLE.OPERATIONS"
msgstr "MULTIPLE.OPERATIONS"
#. 2A5ui
-#: formula/inc/core_resource.hrc:2639
+#: formula/inc/core_resource.hrc:2640
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BETADIST"
msgstr "BETADIST"
#. mALNC
-#: formula/inc/core_resource.hrc:2640
+#: formula/inc/core_resource.hrc:2641
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BETAINV"
msgstr "BETAINV"
#. LKwJS
-#: formula/inc/core_resource.hrc:2641
+#: formula/inc/core_resource.hrc:2642
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BETA.DIST"
msgstr "BETA.DIST"
#. psoXo
-#: formula/inc/core_resource.hrc:2642
+#: formula/inc/core_resource.hrc:2643
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BETA.INV"
msgstr "BETA.INV"
#. yg6Em
-#: formula/inc/core_resource.hrc:2643
+#: formula/inc/core_resource.hrc:2644
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEEKNUM"
msgstr "WEEKNUM"
#. AQAu7
-#: formula/inc/core_resource.hrc:2644
+#: formula/inc/core_resource.hrc:2645
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISOWEEKNUM"
msgstr ""
#. iN85u
-#: formula/inc/core_resource.hrc:2645
+#: formula/inc/core_resource.hrc:2646
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEEKNUM_OOO"
msgstr ""
#. SWHk4
-#: formula/inc/core_resource.hrc:2646
+#: formula/inc/core_resource.hrc:2647
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EASTERSUNDAY"
msgstr "EASTERSUNDAY"
#. TFPFc
-#: formula/inc/core_resource.hrc:2647
+#: formula/inc/core_resource.hrc:2648
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEEKDAY"
msgstr "WEEKDAY"
#. aGkBh
-#: formula/inc/core_resource.hrc:2648
+#: formula/inc/core_resource.hrc:2649
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NETWORKDAYS"
msgstr "NETWORKDAYS"
#. KUR7o
-#: formula/inc/core_resource.hrc:2649
+#: formula/inc/core_resource.hrc:2650
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NETWORKDAYS.INTL"
msgstr "NETWORKDAYS.INTL"
#. QAzUk
-#: formula/inc/core_resource.hrc:2650
+#: formula/inc/core_resource.hrc:2651
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WORKDAY.INTL"
msgstr "WORKDAY.INTL"
#. CFhSp
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2652
+#: formula/inc/core_resource.hrc:2653
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#NAME!"
msgstr "#NAME!"
#. LQhGc
-#: formula/inc/core_resource.hrc:2653
+#: formula/inc/core_resource.hrc:2654
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STYLE"
msgstr "STYLE"
#. Xvnfv
-#: formula/inc/core_resource.hrc:2654
+#: formula/inc/core_resource.hrc:2655
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DDE"
msgstr "DDE"
#. UDgRG
-#: formula/inc/core_resource.hrc:2655
+#: formula/inc/core_resource.hrc:2656
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BASE"
msgstr "BASE"
#. PXCbM
-#: formula/inc/core_resource.hrc:2656
+#: formula/inc/core_resource.hrc:2657
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DECIMAL"
msgstr "DECIMAL"
#. 7D826
-#: formula/inc/core_resource.hrc:2657
+#: formula/inc/core_resource.hrc:2658
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONVERT_OOO"
msgstr ""
#. Pdt6b
-#: formula/inc/core_resource.hrc:2658
+#: formula/inc/core_resource.hrc:2659
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROMAN"
msgstr "ROMAN"
#. EAFPL
-#: formula/inc/core_resource.hrc:2659
+#: formula/inc/core_resource.hrc:2660
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HYPERLINK"
msgstr "HYPERLINK"
#. nGCAP
-#: formula/inc/core_resource.hrc:2660
+#: formula/inc/core_resource.hrc:2661
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INFO"
msgstr "INFO"
#. AnDA3
-#: formula/inc/core_resource.hrc:2661
+#: formula/inc/core_resource.hrc:2662
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BAHTTEXT"
msgstr "BAHTTEXT"
#. AUXa8
-#: formula/inc/core_resource.hrc:2662
+#: formula/inc/core_resource.hrc:2663
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GETPIVOTDATA"
msgstr "GETPIVOTDATA"
#. ByRr8
-#: formula/inc/core_resource.hrc:2663
+#: formula/inc/core_resource.hrc:2664
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EUROCONVERT"
msgstr "EUROCONVERT"
#. WAGGZ
-#: formula/inc/core_resource.hrc:2664
+#: formula/inc/core_resource.hrc:2665
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NUMBERVALUE"
msgstr "NUMBERVALUE"
#. TxAAw
-#: formula/inc/core_resource.hrc:2665
+#: formula/inc/core_resource.hrc:2666
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMA"
msgstr "GAMMA"
#. ash3y
-#: formula/inc/core_resource.hrc:2666
+#: formula/inc/core_resource.hrc:2667
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQDIST"
msgstr "CHISQDIST"
#. N57in
-#: formula/inc/core_resource.hrc:2667
+#: formula/inc/core_resource.hrc:2668
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.DIST"
msgstr "CHISQ.DIST"
#. XA6Hg
-#: formula/inc/core_resource.hrc:2668
+#: formula/inc/core_resource.hrc:2669
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQINV"
msgstr "CHISQINV"
#. RAQNt
-#: formula/inc/core_resource.hrc:2669
+#: formula/inc/core_resource.hrc:2670
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.INV"
msgstr "CHISQ.INV"
#. B7QQq
-#: formula/inc/core_resource.hrc:2670
+#: formula/inc/core_resource.hrc:2671
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITAND"
msgstr "BITAND"
#. wgJLF
-#: formula/inc/core_resource.hrc:2671
+#: formula/inc/core_resource.hrc:2672
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITOR"
msgstr "BITOR"
#. xFRAb
-#: formula/inc/core_resource.hrc:2672
+#: formula/inc/core_resource.hrc:2673
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITXOR"
msgstr "BITXOR"
#. kuvCF
-#: formula/inc/core_resource.hrc:2673
+#: formula/inc/core_resource.hrc:2674
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITRSHIFT"
msgstr "BITRSHIFT"
#. KntNH
-#: formula/inc/core_resource.hrc:2674
+#: formula/inc/core_resource.hrc:2675
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITLSHIFT"
msgstr "BITLSHIFT"
@@ -2384,7 +2384,7 @@ msgstr "BITLSHIFT"
#. BEGIN defined ERROR.TYPE() values.
#. ERROR.TYPE( #NULL! ) == 1
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2678
+#: formula/inc/core_resource.hrc:2679
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#NULL!"
msgstr "#NULL!"
@@ -2392,7 +2392,7 @@ msgstr "#NULL!"
#. 8HAoC
#. ERROR.TYPE( #DIV/0! ) == 2
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2681
+#: formula/inc/core_resource.hrc:2682
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#DIV/0!"
msgstr "#DIV/0!"
@@ -2400,7 +2400,7 @@ msgstr "#DIV/0!"
#. rADeJ
#. ERROR.TYPE( #VALUE! ) == 3
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2684
+#: formula/inc/core_resource.hrc:2685
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#VALUE!"
msgstr "#VALUE!"
@@ -2408,7 +2408,7 @@ msgstr "#VALUE!"
#. GwFUm
#. ERROR.TYPE( #REF! ) == 4
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2687
+#: formula/inc/core_resource.hrc:2688
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#REF!"
msgstr "#REF!"
@@ -2416,7 +2416,7 @@ msgstr "#REF!"
#. aMvVe
#. ERROR.TYPE( #NAME! ) == 5
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2690
+#: formula/inc/core_resource.hrc:2691
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#NAME?"
msgstr "#NAME?"
@@ -2424,7 +2424,7 @@ msgstr "#NAME?"
#. cqeXG
#. ERROR.TYPE( #NUM! ) == 6
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2693
+#: formula/inc/core_resource.hrc:2694
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#NUM!"
msgstr "#NUM!"
@@ -2432,94 +2432,94 @@ msgstr "#NUM!"
#. tXNHL
#. ERROR.TYPE( #N/A ) == 7
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2696
+#: formula/inc/core_resource.hrc:2697
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#N/A"
msgstr "#N/A"
#. bfyEe
#. END defined ERROR.TYPE() values.
-#: formula/inc/core_resource.hrc:2699
+#: formula/inc/core_resource.hrc:2700
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FILTERXML"
msgstr "FILTERXML"
#. KNiFR
-#: formula/inc/core_resource.hrc:2700
+#: formula/inc/core_resource.hrc:2701
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COLOR"
msgstr "ពណ៌"
#. ufFAa
-#: formula/inc/core_resource.hrc:2701
+#: formula/inc/core_resource.hrc:2702
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEBSERVICE"
msgstr "WEBSERVICE"
#. ftd3C
-#: formula/inc/core_resource.hrc:2702
+#: formula/inc/core_resource.hrc:2703
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ERF.PRECISE"
msgstr "ERF.PRECISE"
#. Gz4Zt
-#: formula/inc/core_resource.hrc:2703
+#: formula/inc/core_resource.hrc:2704
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ERFC.PRECISE"
msgstr "ERFC.PRECISE"
#. ywAMF
-#: formula/inc/core_resource.hrc:2704
+#: formula/inc/core_resource.hrc:2705
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ENCODEURL"
msgstr ""
#. kQW77
-#: formula/inc/core_resource.hrc:2705
+#: formula/inc/core_resource.hrc:2706
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RAWSUBTRACT"
msgstr ""
#. DgyUW
-#: formula/inc/core_resource.hrc:2706
+#: formula/inc/core_resource.hrc:2707
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUNDSIG"
msgstr ""
#. nAvYh
-#: formula/inc/core_resource.hrc:2707
+#: formula/inc/core_resource.hrc:2708
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FINDB"
msgstr "FIND"
#. 8FkJr
-#: formula/inc/core_resource.hrc:2708
+#: formula/inc/core_resource.hrc:2709
#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SEARCHB"
msgstr "SEARCH"
#. tNMTu
-#: formula/inc/core_resource.hrc:2709
+#: formula/inc/core_resource.hrc:2710
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "REGEX"
msgstr ""
#. FWYvN
-#: formula/inc/core_resource.hrc:2710
+#: formula/inc/core_resource.hrc:2711
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FOURIER"
msgstr ""
#. RJfcx
-#: formula/inc/core_resource.hrc:2711
+#: formula/inc/core_resource.hrc:2712
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RAND.NV"
msgstr ""
#. uYSAT
-#: formula/inc/core_resource.hrc:2712
+#: formula/inc/core_resource.hrc:2713
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RANDBETWEEN.NV"
msgstr ""
diff --git a/source/km/helpcontent2/source/text/sbasic/guide.po b/source/km/helpcontent2/source/text/sbasic/guide.po
index 8ccfb590056..d90872147eb 100644
--- a/source/km/helpcontent2/source/text/sbasic/guide.po
+++ b/source/km/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-04-25 12:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1645,13 +1645,13 @@ msgctxt ""
msgid "Global Function for Loading Dialogs"
msgstr "អនុគមន៍​សកល សម្រាប់​ផ្ទុក​ប្រអប់"
-#. uCCWG
+#. uREk8
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
"par_id3153032\n"
"help.text"
-msgid "<literal>LoadDialog</literal> function is stored in <literal>Tools.ModuleControls</literal> available from %PRODUCTNAME Macros and Dialogs."
+msgid "<literal>LoadDialog</literal> function is stored in <literal>Tools.ModuleControls</literal> available from Application Macros and Dialogs."
msgstr ""
#. kBLFU
diff --git a/source/km/helpcontent2/source/text/sbasic/python.po b/source/km/helpcontent2/source/text/sbasic/python.po
index 2fd28039424..d51c7926da0 100644
--- a/source/km/helpcontent2/source/text/sbasic/python.po
+++ b/source/km/helpcontent2/source/text/sbasic/python.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-20 13:20+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -76,13 +76,13 @@ msgctxt ""
msgid "You can execute Python scripts choosing <menuitem>Tools - Macros - Run Macro</menuitem>. Editing scripts can be done with your preferred text editor. Python scripts are present in various locations detailed hereafter. You can refer to Programming examples for macros illustrating how to run the Python interactive console from %PRODUCTNAME."
msgstr ""
-#. g2dUC
+#. nytCF
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
"par_id131568902936659\n"
"help.text"
-msgid "The %PRODUCTNAME scripting framework for Python is optional on some GNU/Linux distributions. If it is installed, selecting <menuitem>Tools - Macros - Run Macro</menuitem> and checking <literal>%PRODUCTNAME Macros</literal> for the presence of <literal>HelloWorld – HelloWorldPython</literal> macro is sufficient. If absent, please refer to your distribution documentation in order to install the %PRODUCTNAME scripting framework for Python."
+msgid "The %PRODUCTNAME scripting framework for Python is optional on some GNU/Linux distributions. If it is installed, selecting <menuitem>Tools - Macros - Run Macro</menuitem> and checking <literal>Application Macros</literal> for the presence of <literal>HelloWorld – HelloWorldPython</literal> macro is sufficient. If absent, please refer to your distribution documentation in order to install the %PRODUCTNAME scripting framework for Python."
msgstr ""
#. naZBV
@@ -400,22 +400,22 @@ msgctxt ""
msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
-#. WAuH7
+#. MZJA9
#: python_dialogs.xhp
msgctxt ""
"python_dialogs.xhp\n"
"N0337\n"
"help.text"
-msgid "%PRODUCTNAME static dialogs are created with the <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog editor\">Dialog editor</link> and are stored in varying places according to their personal (My Macros), shared (%PRODUCTNAME Macros) or document-embedded nature. In reverse, dynamic dialogs are constructed at runtime, from Basic or Python scripts, or using any other <link href=\"text/shared/guide/scripting.xhp\">%PRODUCTNAME supported language</link> for that matter. Opening static dialogs with Python is illustrated herewith. Exception handling and internationalization are omitted for clarity."
+msgid "%PRODUCTNAME static dialogs are created with the <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog editor\">Dialog editor</link> and are stored in varying places according to their personal (My Macros), shared (Application Macros) or document-embedded nature. In reverse, dynamic dialogs are constructed at runtime, from Basic or Python scripts, or using any other <link href=\"text/shared/guide/scripting.xhp\">%PRODUCTNAME supported language</link> for that matter. Opening static dialogs with Python is illustrated herewith. Exception handling and internationalization are omitted for clarity."
msgstr ""
-#. BNxEA
+#. AbdfS
#: python_dialogs.xhp
msgctxt ""
"python_dialogs.xhp\n"
"N0338\n"
"help.text"
-msgid "My Macros or %PRODUCTNAME Macros dialogs"
+msgid "My Macros or Application Macros dialogs"
msgstr ""
#. pcUEy
@@ -2227,13 +2227,13 @@ msgctxt ""
msgid "<emph>My Macros:</emph> personal macros available for the %PRODUCTNAME user"
msgstr ""
-#. BB8K2
+#. VGmNv
#: python_locations.xhp
msgctxt ""
"python_locations.xhp\n"
"par_id471636114847530\n"
"help.text"
-msgid "<emph>%PRODUCTNAME Macros:</emph> system macros distributed with LibreOffice for every computer user"
+msgid "<emph>Application Macros:</emph> system macros distributed with LibreOffice for every computer user"
msgstr ""
#. kVY4C
@@ -2263,13 +2263,13 @@ msgctxt ""
msgid "Refer to <link href=\"text/sbasic/python/python_session.xhp\" name=\"Getting Session Information\">Getting Session Information</link> in order to get programmatic access to Python script locations."
msgstr ""
-#. 2NPrE
+#. GDrUs
#: python_locations.xhp
msgctxt ""
"python_locations.xhp\n"
"hd_id591544049572647\n"
"help.text"
-msgid "%PRODUCTNAME Macros"
+msgid "Application Macros"
msgstr ""
#. xBzRT
diff --git a/source/km/helpcontent2/source/text/sbasic/shared.po b/source/km/helpcontent2/source/text/sbasic/shared.po
index 7bdd985e9f1..2509782052c 100644
--- a/source/km/helpcontent2/source/text/sbasic/shared.po
+++ b/source/km/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shared\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-20 13:20+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-10-21 20:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -539,13 +539,13 @@ msgctxt ""
msgid "Open <item type=\"menuitem\">Tools - Macros - Organize Dialogs</item> and select <item type=\"menuitem\">%PRODUCTNAME Dialogs</item> container."
msgstr ""
-#. C3yvQ
+#. QFmDV
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
"par_id631529000528928\n"
"help.text"
-msgid "Open <item type=\"menuitem\">Tools - Macros - %PRODUCTNAME Basic - Edit</item> and select <item type=\"menuitem\">%PRODUCTNAME Macros</item> container."
+msgid "Open <item type=\"menuitem\">Tools - Macros - %PRODUCTNAME Basic - Edit</item> and select <item type=\"menuitem\">Application Macros</item> container."
msgstr ""
#. 7wPgQ
@@ -2042,13 +2042,13 @@ msgctxt ""
msgid "Using Variables"
msgstr "ការ​ប្រើ​អថេរ"
-#. Wdrgx
+#. gaCJC
#: 01020100.xhp
msgctxt ""
"01020100.xhp\n"
"bm_id3149346\n"
"help.text"
-msgid "<bookmark_value>names of variables</bookmark_value> <bookmark_value>variables; using</bookmark_value> <bookmark_value>types of variables</bookmark_value> <bookmark_value>declaring variables</bookmark_value> <bookmark_value>values;of variables</bookmark_value> <bookmark_value>literals;date</bookmark_value> <bookmark_value>literals;integer</bookmark_value> <bookmark_value>literals;hexadecimal</bookmark_value> <bookmark_value>literals;integer</bookmark_value> <bookmark_value>literals;octal</bookmark_value> <bookmark_value>literals;&h notation</bookmark_value> <bookmark_value>literals;&o notation</bookmark_value> <bookmark_value>literals;floating-point</bookmark_value> <bookmark_value>constants</bookmark_value> <bookmark_value>arrays;declaring</bookmark_value> <bookmark_value>defining;constants</bookmark_value>"
+msgid "<bookmark_value>names of variables</bookmark_value> <bookmark_value>variables; using</bookmark_value> <bookmark_value>types of variables</bookmark_value> <bookmark_value>declaring variables</bookmark_value> <bookmark_value>values;of variables</bookmark_value> <bookmark_value>literals;date</bookmark_value> <bookmark_value>literals;integer</bookmark_value> <bookmark_value>literals;integer</bookmark_value> <bookmark_value>literals;floating point</bookmark_value> <bookmark_value>constants</bookmark_value> <bookmark_value>arrays;declaring</bookmark_value> <bookmark_value>defining;constants</bookmark_value>"
msgstr ""
#. VAkCC
@@ -2582,6 +2582,15 @@ msgctxt ""
msgid "Date variables can only contain dates and time values stored in an internal format. Values assigned to Date variables with <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph>Timeserial</emph></link> or <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> are automatically converted to the internal format. Date-variables are converted to normal numbers by using the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function. The internal format enables a comparison of date/time values by calculating the difference between two numbers. These variables can only be declared with the key word <emph>Date</emph>."
msgstr "អថេរ​កាល​បរិច្ឆេទ​អាច​មាន​តែ​តម្លៃ​កាល​បរិច្ឆេទ និង​ពេល​វេលា​ដែល​រក្សា​ទុក​ក្នុង​ទ្រង់ទ្រាយ​ខាង​ក្នុង ។ តម្លៃ​ដែល​បាន​ផ្តល់​ទៅ​អថេរ​កាល​បរិច្ឆេទ​ជាមួយ <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph>Timeserial</emph></link> ឬ<link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> ត្រូវ​បាន​បម្លែង​ដោយ​ស្វ័យ​ប្រវត្តិ​ទៅ​ជា​ទ្រង់ទ្រាយ​ខាង​ក្នុង ។ អថេរ​កាល​បរិច្ឆេទ​ត្រូវ​បាន​បម្លែង​ជា​លេខ​ធម្មតា​ដោយ​ប្រើ​អនុគមន៍ <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> ឬ<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> ។ ទ្រង់ទ្រាយ​ខាង​ក្នុង​អាច​ធ្វើ​ឲ្យ​ប្រើ​បាន​ការ​ប្រៀបធៀប​នៃ​តម្លៃ​កាល​បរិច្ឆេទ​/​ពេល​វេលា ដោយ​គណនា​ភាព​ខុស​គ្នា​រវាង​ចំនួន​ពីរ ។ អថេរ​ទាំង​នេះ​អាច​ត្រូវ​បាន​ប្រកាស​តែ​ជាមួយ​ពាក្យ​គន្លឹះ <emph>Date</emph> ប៉ុណ្ណោះ ។"
+#. RzVub
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"bm_id3150669\n"
+"help.text"
+msgid "<bookmark_value>ampersand symbol; in literal notation</bookmark_value> <bookmark_value>literals;hexadecimal</bookmark_value> <bookmark_value>literals;octal</bookmark_value> <bookmark_value>literals;&h notation</bookmark_value> <bookmark_value>literals;&o notation</bookmark_value>"
+msgstr ""
+
#. x883R
#: 01020100.xhp
msgctxt ""
@@ -4040,13 +4049,13 @@ msgctxt ""
msgid "%PRODUCTNAME Basic libraries can be stored in 3 different containers:"
msgstr ""
-#. HYjJE
+#. dAbrb
#: 01030400.xhp
msgctxt ""
"01030400.xhp\n"
"par_id571574079618609\n"
"help.text"
-msgid "<emph>%PRODUCTNAME Macros</emph>: libraries stored in this container are available for all users of the computer and are managed by the computer administrator. The container is located in the %PRODUCTNAME installation directory."
+msgid "<emph>Application Macros</emph>: libraries stored in this container are available for all users of the computer and are managed by the computer administrator. The container is located in the %PRODUCTNAME installation directory."
msgstr ""
#. UG2dG
@@ -4067,13 +4076,13 @@ msgctxt ""
msgid "<emph>Document</emph>: libraries stored in the document container are only available for the document and are accessible only when the document is open. You cannot access macros of a document from another document."
msgstr ""
-#. GCWxT
+#. fP4ya
#: 01030400.xhp
msgctxt ""
"01030400.xhp\n"
"par_id881574081445896\n"
"help.text"
-msgid "To access macros stored in libraries of <emph>%PRODUCTNAME Macros</emph> or <emph>My Macros</emph> from another container, including the document container, use the <link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">GlobalScope specifier</link>."
+msgid "To access macros stored in libraries of <emph>Application Macros</emph> or <emph>My Macros</emph> from another container, including the document container, use the <link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">GlobalScope specifier</link>."
msgstr ""
#. bGzjL
@@ -4112,14 +4121,14 @@ msgctxt ""
msgid "Click the <emph>Libraries</emph> tab."
msgstr "ចុច​ផ្ទាំង <emph>បណ្ណាល័យ</emph> ។"
-#. 4ERU5
+#. htC8c
#: 01030400.xhp
msgctxt ""
"01030400.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Select to where you want to attach the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be attached to this document and only available from there."
-msgstr "ជ្រើស​កន្លែង​ដែល​អ្នក​ចង់​ភ្ជាប់​បណ្ណាល័យ នៅ​ក្នុង​បញ្ជី <emph>ទីតាំង</emph> ។ បើ​អ្នក​ជ្រើស​ម៉ាក្រូ & ប្រអប់ %PRODUCTNAME បណ្ណាល័យ​នឹង​ជា​របស់​កម្មវិធី $[officename] ហើយ​នឹង​មាន​សម្រាប់​ឯកសារ​ទាំងអស់ ។ បើ​អ្នក​ជ្រើស​ឯកសារ​មួយ បណ្ណាល័យ​នឹង​ត្រូវ​បាន​ភ្ជាប់​ទៅ​ឯកសារ​នេះ ហើយ​អាច​មាន​តែ​នៅ​ទីនោះ​ប៉ុណ្ណោះ ។"
+msgid "Select to where you want to attach the library in the <emph>Location</emph> list. If you select Application Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be attached to this document and only available from there."
+msgstr ""
#. PCjRC
#: 01030400.xhp
@@ -4157,14 +4166,14 @@ msgctxt ""
msgid "Click the <emph>Libraries</emph> tab."
msgstr "ចុច​ផ្ទាំង <emph>បណ្ណាល័យ</emph> ។"
-#. 5jXQ8
+#. 7w5hH
#: 01030400.xhp
msgctxt ""
"01030400.xhp\n"
"par_id3145640\n"
"help.text"
-msgid "Select to where you want to import the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be imported to this document and only available from there."
-msgstr "ជ្រើស​កន្លែង​ដែល​អ្នក​ចង់​បន្ថែម​បណ្ណាល័យ នៅ​ក្នុង​បញ្ជី <emph>ទីតាំង</emph> ។ បើ​អ្នក​ជ្រើស​ម៉ាក្រូ & ប្រអប់ %PRODUCTNAME បណ្ណាល័យ​នឹង​ជា​របស់​កម្មវិធី $[officename] ហើយ​នឹង​មាន​សម្រាប់​ឯកសារ​ទាំងអស់ ។ បើ​អ្នក​ជ្រើស​ឯកសារ​មួយ បណ្ណាល័យ​នឹង​ត្រូវ​បាន​បន្ថែម​ទៅ​ឯកសារ​នេះ ហើយ​អាច​មាន​តែ​នៅ​ទីនោះ​ប៉ុណ្ណោះ ។"
+msgid "Select to where you want to import the library in the <emph>Location</emph> list. If you select Application Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be imported to this document and only available from there."
+msgstr ""
#. dUvoX
#: 01030400.xhp
@@ -8801,23 +8810,14 @@ msgctxt ""
msgid "Returns the blue component of the specified composite color code."
msgstr ""
-#. VLvxx
-#: 03010301.xhp
-msgctxt ""
-"03010301.xhp\n"
-"hd_id3149670\n"
-"help.text"
-msgid "Syntax:"
-msgstr "វាក្យ​សម្ពន្ធ ៖"
-
-#. 6NsAv
+#. qNGaq
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
-"hd_id3149656\n"
+"par_id3149457\n"
"help.text"
-msgid "Return value:"
-msgstr "តម្លៃ​ត្រឡប់ ៖"
+msgid "Blue (Color As Long)"
+msgstr "Blue (Color As Long)"
#. vGp8m
#: 03010301.xhp
@@ -8828,15 +8828,6 @@ msgctxt ""
msgid "Integer"
msgstr "ចំនួន​គត់"
-#. GiJXy
-#: 03010301.xhp
-msgctxt ""
-"03010301.xhp\n"
-"hd_id3156423\n"
-"help.text"
-msgid "Parameter:"
-msgstr "ប៉ារ៉ាម៉ែត្រ ៖"
-
#. JY6Z8
#: 03010301.xhp
msgctxt ""
@@ -8846,14 +8837,14 @@ msgctxt ""
msgid "<emph>Color value</emph>: Long integer expression that specifies any composite color code for which to return the blue component."
msgstr ""
-#. roGL5
+#. NEqxG
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
-"hd_id3153091\n"
+"par_id671639922129017\n"
"help.text"
-msgid "Example:"
-msgstr "ឧទាហរណ៍ ៖"
+msgid "Under VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), the function Blue() is incompatible with VBA colors, when color from previous call to <link href=\"text/sbasic/shared/03010306.xhp\" name=\"linkrgbvba\"><literal>function RGB [VBA]</literal></link> is passed."
+msgstr ""
#. a3s7N
#: 03010301.xhp
@@ -8927,23 +8918,14 @@ msgctxt ""
msgid "Returns the Green component of the given composite color code."
msgstr ""
-#. qAgBp
+#. yGCYn
#: 03010302.xhp
msgctxt ""
"03010302.xhp\n"
-"hd_id3154140\n"
-"help.text"
-msgid "Syntax:"
-msgstr "វាក្យ​សម្ពន្ធ ៖"
-
-#. q3DPS
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3154124\n"
+"par_id3153969\n"
"help.text"
-msgid "Return value:"
-msgstr "តម្លៃ​ត្រឡប់ ៖"
+msgid "Green (Color As Long)"
+msgstr "Green (Color As Long)"
#. wbFdA
#: 03010302.xhp
@@ -8954,15 +8936,6 @@ msgctxt ""
msgid "Integer"
msgstr "ចំនួន​គត់"
-#. rGUxM
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3154909\n"
-"help.text"
-msgid "Parameter:"
-msgstr "ប៉ារ៉ាម៉ែត្រ ៖"
-
#. YKcLU
#: 03010302.xhp
msgctxt ""
@@ -8972,15 +8945,6 @@ msgctxt ""
msgid "<emph>Color</emph>: Long integer expression that specifies a composite color code for which to return the Green component."
msgstr ""
-#. DBLfM
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3149664\n"
-"help.text"
-msgid "Example:"
-msgstr "ឧទាហរណ៍ ៖"
-
#. 6vcEb
#: 03010302.xhp
msgctxt ""
@@ -9053,23 +9017,14 @@ msgctxt ""
msgid "Returns the Red component of the specified composite color code."
msgstr ""
-#. YSmcx
+#. 3nHCU
#: 03010303.xhp
msgctxt ""
"03010303.xhp\n"
-"hd_id3148799\n"
-"help.text"
-msgid "Syntax:"
-msgstr "វាក្យ​សម្ពន្ធ ៖"
-
-#. nbbWR
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3151042\n"
+"par_id3150448\n"
"help.text"
-msgid "Return value:"
-msgstr "តម្លៃ​ត្រឡប់ ៖"
+msgid "Red (ColorNumber As Long)"
+msgstr "Red (ColorNumber As Long)"
#. XD3jj
#: 03010303.xhp
@@ -9080,15 +9035,6 @@ msgctxt ""
msgid "Integer"
msgstr "ចំនួន​គត់"
-#. HzvQ6
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3154685\n"
-"help.text"
-msgid "Parameter:"
-msgstr "ប៉ារ៉ាម៉ែត្រ ៖"
-
#. 8TeVm
#: 03010303.xhp
msgctxt ""
@@ -9098,23 +9044,23 @@ msgctxt ""
msgid "<emph>ColorNumber</emph>: Long integer expression that specifies any composite color code for which to return the Red component."
msgstr ""
-#. iiUNB
+#. YDBFF
#: 03010303.xhp
msgctxt ""
"03010303.xhp\n"
-"par_id961588421825749\n"
+"par_id671639922129017\n"
"help.text"
-msgid "The <link href=\"text/shared/optionen/01010501.xhp\" name=\"color picker dialog\">color picker dialog</link> details the red, green and blue components of a composite color code, as well as its hexadecimal expression. <link href=\"text/shared/guide/text_color.xhp\" name=\"Changing the color of text\">Changing the color of text</link> and selecting <emph>Custom color</emph> displays the color picker dialog."
+msgid "Under VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), the function Red() is incompatible with VBA colors, when color from previous call to <link href=\"text/sbasic/shared/03010306.xhp\" name=\"linkrgbvba\"><literal>function RGB [VBA]</literal></link> is passed."
msgstr ""
-#. DsCGZ
+#. iiUNB
#: 03010303.xhp
msgctxt ""
"03010303.xhp\n"
-"hd_id3148575\n"
+"par_id961588421825749\n"
"help.text"
-msgid "Example:"
-msgstr "ឧទាហរណ៍ ៖"
+msgid "The <link href=\"text/shared/optionen/01010501.xhp\" name=\"color picker dialog\">color picker dialog</link> details the red, green and blue components of a composite color code, as well as its hexadecimal expression. <link href=\"text/shared/guide/text_color.xhp\" name=\"Changing the color of text\">Changing the color of text</link> and selecting <emph>Custom color</emph> displays the color picker dialog."
+msgstr ""
#. 4txDN
#: 03010303.xhp
@@ -9188,32 +9134,14 @@ msgctxt ""
msgid "Returns the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> color code of the color passed as a color value through an older MS-DOS based programming system."
msgstr "ត្រឡប់​លេខ​ពណ៌ <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> នៃ​ពណ៌​ដែល​បាន​ហុច​ជា​តម្លៃ​ពណ៌​មួយ តាម​រយៈ​ប្រព័ន្ធ​សរសេរ​កម្មវិធី​ដែល​ផ្អែក​លើ MS-DOS មុន​ៗ ។"
-#. sAgxm
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3154140\n"
-"help.text"
-msgid "Syntax:"
-msgstr "វាក្យ​សម្ពន្ធ ៖"
-
-#. 32yR4
+#. scoHN
#: 03010304.xhp
msgctxt ""
"03010304.xhp\n"
-"hd_id3145172\n"
-"help.text"
-msgid "Return value:"
-msgstr "តម្លៃ​ត្រឡប់ ៖"
-
-#. Z9k2a
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3156560\n"
+"par_id3151042\n"
"help.text"
-msgid "Parameter:"
-msgstr "ប៉ារ៉ាម៉ែត្រ ៖"
+msgid "QBColor (ColorNumber As Integer)"
+msgstr "QBColor (ColorNumber As Integer)"
#. pTA5y
#: 03010304.xhp
@@ -9386,15 +9314,6 @@ msgctxt ""
msgid "This function is used only to convert from older MS-DOS based BASIC applications that use the above color codes. The function returns a long integer value indicating the color to be used in the $[officename] IDE."
msgstr "អនុគមន៍​នេះ​ត្រូវ​បាន​ប្រើ​ដើម្បី​បម្លែង​ពី​កម្មវិធី MS-DOS មុន​ៗ ដែល​ផ្អែក​លើ​កម្មវិធី BASIC ដែល​ប្រើ​លេខ​ពណ៌​ខាង​លើ ។ អនុគមន៍​ត្រឡប់​តម្លៃ​ចំនួន​គត់​ធំ ដែល​ចង្អុល​បង្ហាញពី​ពណ៌​ដែល​នឹង​ត្រូវ​ប្រើ​ក្នុង $[officename] IDE ។"
-#. a9cbE
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3148406\n"
-"help.text"
-msgid "Example:"
-msgstr "ឧទាហរណ៍ ៖"
-
#. GPDgr
#: 03010304.xhp
msgctxt ""
@@ -9440,32 +9359,14 @@ msgctxt ""
msgid "Returns a <literal>Long</literal> integer color value consisting of red, green, and blue components."
msgstr ""
-#. MiCPe
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3147229\n"
-"help.text"
-msgid "Syntax:"
-msgstr "វាក្យ​សម្ពន្ធ ៖"
-
-#. T8jX4
+#. rd647
#: 03010305.xhp
msgctxt ""
"03010305.xhp\n"
-"hd_id3156442\n"
+"par_id3155132\n"
"help.text"
-msgid "Return value:"
-msgstr "តម្លៃ​ត្រឡប់ ៖"
-
-#. FRE8M
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3154013\n"
-"help.text"
-msgid "Parameter:"
-msgstr "ប៉ារ៉ាម៉ែត្រ ៖"
+msgid "RGB (Red, Green, Blue)"
+msgstr "RGB (Red, Green, Blue)"
#. QM73e
#: 03010305.xhp
@@ -9494,23 +9395,32 @@ msgctxt ""
msgid "<emph>blue</emph>: Any integer expression that represents the blue component (0-255) of the composite color."
msgstr ""
-#. cFpDD
+#. c4KCL
#: 03010305.xhp
msgctxt ""
"03010305.xhp\n"
-"par_id211587653651037\n"
+"par_id101639922410794\n"
"help.text"
-msgid "The <link href=\"text/shared/optionen/01010501.xhp\" name=\"color picker dialog\">color picker dialog</link> helps computing red, green and blue components of a composite color. <link href=\"text/shared/guide/text_color.xhp\" name=\"Changing the color of text\">Changing the color of text</link> and selecting <emph>Custom color</emph> displays the color picker dialog."
+msgid "The resulting <literal>Long</literal> value is calculated with the following formula:<br/><literal>Result = red×65536 + green×256 + blue</literal>."
msgstr ""
-#. Vn6Jr
+#. iDgoc
#: 03010305.xhp
msgctxt ""
"03010305.xhp\n"
-"hd_id3147435\n"
+"par_id671639922129017\n"
"help.text"
-msgid "Example:"
-msgstr "ឧទាហរណ៍ ៖"
+msgid "Under VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), the <literal>Long</literal> value is calculated as<br/><literal>Result = red + green×256 + blue×65536</literal><br/>See <link href=\"text/sbasic/shared/03010306.xhp\" name=\"rgbvba\">RGB Function [VBA]</link>"
+msgstr ""
+
+#. cFpDD
+#: 03010305.xhp
+msgctxt ""
+"03010305.xhp\n"
+"par_id211587653651037\n"
+"help.text"
+msgid "The <link href=\"text/shared/optionen/01010501.xhp\" name=\"color picker dialog\">color picker dialog</link> helps computing red, green and blue components of a composite color. <link href=\"text/shared/guide/text_color.xhp\" name=\"Changing the color of text\">Changing the color of text</link> and selecting <emph>Custom color</emph> displays the color picker dialog."
+msgstr ""
#. GWhFy
#: 03010305.xhp
@@ -9548,6 +9458,60 @@ msgctxt ""
msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
msgstr "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
+#. 4pPor
+#: 03010306.xhp
+msgctxt ""
+"03010306.xhp\n"
+"tit\n"
+"help.text"
+msgid "RGB Function [VBA]"
+msgstr ""
+
+#. JbDc8
+#: 03010306.xhp
+msgctxt ""
+"03010306.xhp\n"
+"bm_id851576768070903\n"
+"help.text"
+msgid "<bookmark_value>RGB function [VBA]</bookmark_value>"
+msgstr ""
+
+#. RSnVb
+#: 03010306.xhp
+msgctxt ""
+"03010306.xhp\n"
+"hd_id3150792\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function\">RGB Function [VBA]</link>"
+msgstr ""
+
+#. ZMjZi
+#: 03010306.xhp
+msgctxt ""
+"03010306.xhp\n"
+"par_id3150447\n"
+"help.text"
+msgid "Returns a <literal>Long</literal> integer color value consisting of red, green, and blue components, according to VBA color formula."
+msgstr ""
+
+#. LNVC5
+#: 03010306.xhp
+msgctxt ""
+"03010306.xhp\n"
+"par_id671639922129017\n"
+"help.text"
+msgid "Because of the VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), the <literal>Long</literal> value is calculated as<br/><literal>Result = red + green×256 + blue×65536</literal>."
+msgstr ""
+
+#. cDKcg
+#: 03010306.xhp
+msgctxt ""
+"03010306.xhp\n"
+"par_id621639924528952\n"
+"help.text"
+msgid "Print lVar; ' returns 13107328"
+msgstr ""
+
#. kpKGV
#: 03020000.xhp
msgctxt ""
@@ -9647,6 +9611,15 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/Close_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Close Statement diagram</alt></image>"
msgstr ""
+#. FEDAa
+#: 03020101.xhp
+msgctxt ""
+"03020101.xhp\n"
+"par_id3147265\n"
+"help.text"
+msgid "Close [[#]fileNum [, [#]fileNum2 [,...]]]"
+msgstr ""
+
#. gdqMu
#: 03020101.xhp
msgctxt ""
@@ -10016,6 +9989,15 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/Get_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Get Statement diagram</alt></image>"
msgstr ""
+#. xBhKA
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3150792\n"
+"help.text"
+msgid "Get [#]fileNum, [recordNum|filePos], variable"
+msgstr ""
+
#. UM9CG
#: 03020201.xhp
msgctxt ""
@@ -10439,6 +10421,15 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/Put_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Put Statement diagram</alt></image>"
msgstr ""
+#. RBpeh
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3155132\n"
+"help.text"
+msgid "Put [#]fileNum, [recordNum|filePos], variable"
+msgstr ""
+
#. bSFd2
#: 03020204.xhp
msgctxt ""
@@ -10646,6 +10637,15 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "កំណត់​ប្រសិន​បើ​ទ្រនិច​ឯកសារ បាន​ទៅ​ដល់​ចុង​បញ្ចប់​នៃ​ឯកសារ ។"
+#. KmauZ
+#: 03020301.xhp
+msgctxt ""
+"03020301.xhp\n"
+"par_id3147399\n"
+"help.text"
+msgid "Eof (intexpression As Integer)"
+msgstr "Eof (intexpression As Integer)"
+
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10718,6 +10718,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
+#. K5Bo8
+#: 03020302.xhp
+msgctxt ""
+"03020302.xhp\n"
+"par_id3150768\n"
+"help.text"
+msgid "Loc(FileNumber)"
+msgstr "Loc (FileNumber)"
+
#. 2TN73
#: 03020302.xhp
msgctxt ""
@@ -10799,6 +10808,15 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "ត្រឡប់​ទំហំ​នៃ​ឯកសារ​ដែល​បើក គិត​ជា​បៃ ។"
+#. 43MqD
+#: 03020303.xhp
+msgctxt ""
+"03020303.xhp\n"
+"par_id3150359\n"
+"help.text"
+msgid "Lof (FileNumber)"
+msgstr "Lof (FileNumber)"
+
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -10889,6 +10907,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
+#. kDJUc
+#: 03020304.xhp
+msgctxt ""
+"03020304.xhp\n"
+"par_id3145365\n"
+"help.text"
+msgid "Seek (FileNumber)"
+msgstr "Seek (FileNumber)"
+
#. CPK2A
#: 03020304.xhp
msgctxt ""
@@ -10979,6 +11006,15 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/Seek_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Seek Statement diagram</alt></image>"
msgstr ""
+#. PjcAp
+#: 03020305.xhp
+msgctxt ""
+"03020305.xhp\n"
+"par_id3145273\n"
+"help.text"
+msgid "Seek [#]filePos, {filePos|recordNum}"
+msgstr ""
+
#. vwzuK
#: 03020305.xhp
msgctxt ""
@@ -11654,6 +11690,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
+#. LnQdV
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"par_id3146957\n"
+"help.text"
+msgid "FileCopy TextFrom As String, TextTo As String"
+msgstr "FileCopy TextFrom As String, TextTo As String"
+
#. CjRbT
#: 03020406.xhp
msgctxt ""
@@ -11744,6 +11789,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
+#. CPCBG
+#: 03020407.xhp
+msgctxt ""
+"03020407.xhp\n"
+"par_id3154124\n"
+"help.text"
+msgid "FileDateTime (Text As String)"
+msgstr "FileDateTime (Text As String)"
+
#. meGd2
#: 03020407.xhp
msgctxt ""
@@ -11825,6 +11879,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
+#. MoBSd
+#: 03020408.xhp
+msgctxt ""
+"03020408.xhp\n"
+"par_id3149656\n"
+"help.text"
+msgid "FileLen (Text As String)"
+msgstr "FileLen (Text As String)"
+
#. LVwBo
#: 03020408.xhp
msgctxt ""
@@ -11915,6 +11978,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
+#. 45fLv
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id3150359\n"
+"help.text"
+msgid "GetAttr (Text As String)"
+msgstr "GetAttr (Text As String)"
+
#. mBMu7
#: 03020409.xhp
msgctxt ""
@@ -12401,6 +12473,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
+#. AUhBt
+#: 03020412.xhp
+msgctxt ""
+"03020412.xhp\n"
+"par_id3153381\n"
+"help.text"
+msgid "Name OldName As String As NewName As String"
+msgstr "Name OldName As String As NewName As String"
+
#. 7AwQo
#: 03020412.xhp
msgctxt ""
@@ -12482,6 +12563,15 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
msgstr ""
+#. uE7FC
+#: 03020413.xhp
+msgctxt ""
+"03020413.xhp\n"
+"par_id3154367\n"
+"help.text"
+msgid "RmDir Text As String"
+msgstr "RmDir Text As String"
+
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -12545,6 +12635,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
+#. CrLq9
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3154365\n"
+"help.text"
+msgid "SetAttr FileName As String, Attribute As Integer"
+msgstr "SetAttr FileName As String, Attribute As Integer"
+
#. 7arWD
#: 03020414.xhp
msgctxt ""
@@ -12707,6 +12806,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
+#. Tvkos
+#: 03020415.xhp
+msgctxt ""
+"03020415.xhp\n"
+"par_id3154685\n"
+"help.text"
+msgid "FileExists(FileName As String | DirectoryName As String)"
+msgstr "FileExists(FileName As String | DirectoryName As String)"
+
#. iTkt5
#: 03020415.xhp
msgctxt ""
@@ -12860,6 +12968,15 @@ msgctxt ""
msgid "Returns a <emph>Date</emph> value for a specified year, month, or day."
msgstr "ត្រឡប់​តម្លៃ <emph>កាល​បរិច្ឆេទ</emph> សម្រាប់​ថ្ងៃ ខែ ឆ្នាំ​ដែល​បាន​បញ្ជាក់ ។"
+#. 5G7kZ
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"par_id3149670\n"
+"help.text"
+msgid "DateSerial (year, month, day)"
+msgstr "DateSerial (year, month, day)"
+
#. xroUB
#: 03030101.xhp
msgctxt ""
@@ -12977,40 +13094,76 @@ msgctxt ""
msgid "<variable id=\"DateValue_H1\"><link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function\">DateValue Function</link></variable>"
msgstr ""
-#. K3nhZ
+#. CDPDz
#: 03030102.xhp
msgctxt ""
"03030102.xhp\n"
"par_id3150542\n"
"help.text"
-msgid "Returns a date value from a date string. The date string is a complete date in a single numeric value. You can also use this serial number to determine the difference between two dates."
-msgstr "ត្រឡប់​តម្លៃ​កាល​បរិច្ឆេទ​ពី​ខ្សែ​អក្សរ​កាល​បរិច្ឆេទ ។ ខ្សែ​អក្សរ​បរិច្ឆេទ​គឺ​ជា​កាល​បរិច្ឆេទ​ពេញ​លេញ​ក្នុង​តម្លៃ​លេខ​តែ​មួយ ។ អ្នក​អាច​ប្រើ​លេខ​សម្គាល់​ដើម្បី​កំណត់​ភាព​ខុស​គ្នា​រវាង​កាល​បរិច្ឆេទ​ទាំងពីរ ។"
+msgid "Returns a <emph>Date</emph> object from a string representing a date."
+msgstr ""
+
+#. Svwc6
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"par_id671643046319326\n"
+"help.text"
+msgid "The returned object is represented internally as a single numeric value corresponding to the specified date. This value can be used to calculate the number of days between two dates."
+msgstr ""
-#. PxEGo
+#. DCJAK
#: 03030102.xhp
msgctxt ""
"03030102.xhp\n"
"par_id3154910\n"
"help.text"
-msgid "DateValue(date)"
+msgid "DateValue(date As String)"
msgstr ""
-#. vxxyq
+#. rK8mE
#: 03030102.xhp
msgctxt ""
"03030102.xhp\n"
"par_id3153770\n"
"help.text"
-msgid "<emph>Date</emph>: String expression that contains the date that you want to calculate. In contrast to the DateSerial function that passes years, months and days as separate numeric values, the DateValue function requests the date string to be according to either one of the date acceptance patterns defined for your locale setting (see <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - Language Settings - Languages</menuitem>) or to ISO date format (momentarily, only the ISO format with hyphens, e.g. \"2012-12-31\" is accepted)."
+msgid "<emph>date</emph>: A string that contains the date that will be converted to a <emph>Date</emph> object."
msgstr ""
-#. KmwFZ
+#. fAM5v
#: 03030102.xhp
msgctxt ""
"03030102.xhp\n"
-"par_id3153194\n"
+"par_id841643046880968\n"
+"help.text"
+msgid "The string passed to <literal>DateValue</literal> must be expressed in one of the date formats defined by your locale setting (see <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - Language Settings - Languages</menuitem>) or using the ISO date format \"yyyy-mm-dd\" (year, month and day separated by hyphens)."
+msgstr ""
+
+#. aGJzN
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"bas_id461643047301827\n"
+"help.text"
+msgid "' Prints the localized date"
+msgstr ""
+
+#. tSeu3
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"bas_id616430473023063\n"
+"help.text"
+msgid "' Extracts the year, month and day from the date object"
+msgstr ""
+
+#. NkfKq
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"bas_id601643047303420\n"
"help.text"
-msgid "The computed date."
+msgid "' Prints the numeric value corresponding to the date (as Long type)"
msgstr ""
#. wDviP
@@ -14309,6 +14462,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
+#. cPRUh
+#: 03030111.xhp
+msgctxt ""
+"03030111.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "CDateToUnoDate(aDate)"
+msgstr "CDateToUnoDate(aDate)"
+
#. iGwfJ
#: 03030111.xhp
msgctxt ""
@@ -14489,6 +14651,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
+#. ABYMv
+#: 03030113.xhp
+msgctxt ""
+"03030113.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "CDateToUnoTime(aDate)"
+msgstr "CDateToUnoTime(aDate)"
+
#. N7qeB
#: 03030113.xhp
msgctxt ""
@@ -14579,6 +14750,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
+#. EQoqi
+#: 03030114.xhp
+msgctxt ""
+"03030114.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "CDateFromUnoTime(aTime)"
+msgstr "CDateFromUnoTime(aTime)"
+
#. QreGF
#: 03030114.xhp
msgctxt ""
@@ -14669,6 +14849,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
+#. TMAGP
+#: 03030115.xhp
+msgctxt ""
+"03030115.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "CDateToUnoDateTime(aDate)"
+msgstr "CDateToUnoDateTime(aDate)"
+
#. 9vAhc
#: 03030115.xhp
msgctxt ""
@@ -14759,6 +14948,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
+#. qhgq3
+#: 03030116.xhp
+msgctxt ""
+"03030116.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "CDateFromUnoDateTime(aDateTime)"
+msgstr "CDateFromUnoDateTime(aDateTime)"
+
#. kjYF8
#: 03030116.xhp
msgctxt ""
@@ -14840,6 +15038,15 @@ msgctxt ""
msgid "Returns the number of date or time intervals between two given date values."
msgstr ""
+#. AzmeS
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN10648\n"
+"help.text"
+msgid "DateDiff (interval As String, date1 As Date, date2 As Date [, firstDayOfWeek As Integer [, firstWeekOfYear As Integer]]) As Double"
+msgstr ""
+
#. BPDH8
#: 03030120.xhp
msgctxt ""
@@ -15182,6 +15389,15 @@ msgctxt ""
msgid "The DatePart function returns a specified part of a date."
msgstr "អនុគមន៍ DatePart ត្រឡប់​ផ្នែក​នៃ​កាលបរិច្ឆេទ​ដែលបាន​បញ្ជាក់ ។"
+#. GWMCJ
+#: 03030130.xhp
+msgctxt ""
+"03030130.xhp\n"
+"par_idN105E8\n"
+"help.text"
+msgid "DatePart (interval As String, date As Date [, firstDayOfWeek As Integer [, firstWeekOfYear As Integer]]) As Long"
+msgstr ""
+
#. wi5B9
#: 03030130.xhp
msgctxt ""
@@ -15740,6 +15956,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
+#. rBHrY
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"par_id3150792\n"
+"help.text"
+msgid "TimeSerial (hour, minute, second)"
+msgstr "TimeSerial (hour, minute, second)"
+
#. mCg7g
#: 03030205.xhp
msgctxt ""
@@ -15938,6 +16163,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
+#. WPuDv
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3156282\n"
+"help.text"
+msgid "TimeValue (Text As String)"
+msgstr "TimeValue (Text As String)"
+
#. NQV5A
#: 03030206.xhp
msgctxt ""
@@ -17198,6 +17432,15 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/On-Error_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">On Error Statement diagram</alt></image>"
msgstr ""
+#. CKJJr
+#: 03050500.xhp
+msgctxt ""
+"03050500.xhp\n"
+"par_id3145173\n"
+"help.text"
+msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
+msgstr ""
+
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17270,14 +17513,14 @@ msgctxt ""
msgid "Logical Operators"
msgstr "សញ្ញា​ប្រមាណ​វិធី​តក្ក​វិជ្ជា"
-#. R8Yqr
+#. 8jdra
#: 03060000.xhp
msgctxt ""
"03060000.xhp\n"
"hd_id3147559\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">Logical Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical perators\">សញ្ញា​ប្រមាណ​វិធី​តក្ក​វិជ្ជា</link>"
+msgid "<variable id=\"BoolOper_h1\"><link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">Logical Operators</link></variable>"
+msgstr ""
#. E9c8W
#: 03060000.xhp
@@ -17342,6 +17585,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
+#. jairQ
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"par_id3156344\n"
+"help.text"
+msgid "Result = Expression1 And Expression2"
+msgstr "Result = Expression1 And Expression2"
+
#. Nfu49
#: 03060100.xhp
msgctxt ""
@@ -17495,6 +17747,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
+#. m9bM6
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3154910\n"
+"help.text"
+msgid "Result = Expression1 Eqv Expression2"
+msgstr "Result = Expression1 Eqv Expression2"
+
#. 7fkPv
#: 03060200.xhp
msgctxt ""
@@ -18161,14 +18422,14 @@ msgctxt ""
msgid "Mathematical Operators"
msgstr "សញ្ញា​ប្រមាណវិធី​គណិតវិទ្យា"
-#. e5AQV
+#. LGC5F
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
"hd_id3149234\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">សញ្ញា​ប្រមាណវិធី​គណិតវិទ្យា</link>"
+msgid "<variable id=\"MathOper_h1\"><link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link></variable>"
+msgstr ""
#. YBZiW
#: 03070000.xhp
@@ -18827,6 +19088,114 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
msgstr ""
+#. zzEFW
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"tit\n"
+"help.text"
+msgid "\"\\\" Operator"
+msgstr ""
+
+#. wFv3P
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"hd_id3150669\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03070700.xhp\">\"\\\" Operator</link>"
+msgstr ""
+
+#. tUDMG
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_id3149670\n"
+"help.text"
+msgid "Performs the integer division on two numbers and returns the result."
+msgstr ""
+
+#. azS7k
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"bm_id3150669\n"
+"help.text"
+msgid "<bookmark_value>Operators;Integer division (\\)</bookmark_value> <bookmark_value>\"\\\" operator (mathematical)</bookmark_value>"
+msgstr ""
+
+#. KDgG2
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_id3153360\n"
+"help.text"
+msgid "result = expression1 \\ expression2"
+msgstr ""
+
+#. jSHq3
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_id3154141\n"
+"help.text"
+msgid "<emph>result</emph>: A numerical value that contains the result of the integer division."
+msgstr ""
+
+#. K3YrU
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_id3150448\n"
+"help.text"
+msgid "<emph>expression1, expression2</emph>: Dividend and diviser operands of the integer division."
+msgstr ""
+
+#. 8WPwU
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_id951642689912087\n"
+"help.text"
+msgid "Before integer division, both operands are rounded to the nearest integer down. The fractional part of the result is dropped."
+msgstr ""
+
+#. nDd3u
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_idm1341471776\n"
+"help.text"
+msgid "Print 15 / 4 ' prints 3.75"
+msgstr ""
+
+#. GMudb
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_idm1341471777\n"
+"help.text"
+msgid "Print -15 \\ 4 ' prints -3"
+msgstr ""
+
+#. D9q99
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_idm1341471778\n"
+"help.text"
+msgid "Print 16.9 / 5.6 ' prints 3.017857114"
+msgstr ""
+
+#. SNhKe
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_idm1341471779\n"
+"help.text"
+msgid "Print 16.9 \\ -5.6 ' prints -3"
+msgstr ""
+
#. cFFCi
#: 03080000.xhp
msgctxt ""
@@ -18944,15 +19313,6 @@ msgctxt ""
msgid "Atn (Number As Double) As Double"
msgstr ""
-#. nnJyb
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3150359\n"
-"help.text"
-msgid "Double"
-msgstr "ទ្វេ"
-
#. rLBjg
#: 03080101.xhp
msgctxt ""
@@ -19115,15 +19475,6 @@ msgctxt ""
msgid "Cos (Number As Double) As Double"
msgstr ""
-#. 5SNwE
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3150449\n"
-"help.text"
-msgid "Double"
-msgstr "ទ្វេ"
-
#. jbCKb
#: 03080102.xhp
msgctxt ""
@@ -19286,15 +19637,6 @@ msgctxt ""
msgid "Sin (Number As Double) As Double"
msgstr ""
-#. q3Gct
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3150870\n"
-"help.text"
-msgid "Double"
-msgstr "ទ្វេ"
-
#. VeDqk
#: 03080103.xhp
msgctxt ""
@@ -19457,15 +19799,6 @@ msgctxt ""
msgid "Tan (Number As Double) As Double"
msgstr ""
-#. XMyAh
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3156281\n"
-"help.text"
-msgid "Double"
-msgstr "ទ្វេ"
-
#. BJjuJ
#: 03080104.xhp
msgctxt ""
@@ -19655,15 +19988,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. fxbBA
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"par_id3149670\n"
-"help.text"
-msgid "Double"
-msgstr "ទ្វេ"
-
#. ohN8G
#: 03080201.xhp
msgctxt ""
@@ -19763,15 +20087,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. K67vi
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3150791\n"
-"help.text"
-msgid "Double"
-msgstr "ទ្វេ"
-
#. fCeUd
#: 03080202.xhp
msgctxt ""
@@ -20042,15 +20357,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. Ge9kH
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3154365\n"
-"help.text"
-msgid "Double"
-msgstr "ទ្វេ"
-
#. 4W4JJ
#: 03080302.xhp
msgctxt ""
@@ -20213,15 +20519,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. ToCoX
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"par_id3156343\n"
-"help.text"
-msgid "Double"
-msgstr "ទ្វេ"
-
#. RB3SF
#: 03080401.xhp
msgctxt ""
@@ -20330,15 +20627,6 @@ msgctxt ""
msgid "Fix (Expression)"
msgstr "Fix (Expression)"
-#. XGeET
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"par_id3148947\n"
-"help.text"
-msgid "Double"
-msgstr "ទ្វេ"
-
#. T274X
#: 03080501.xhp
msgctxt ""
@@ -20438,15 +20726,6 @@ msgctxt ""
msgid "Int (Number)"
msgstr "Int (Number)"
-#. x8Eh5
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3150400\n"
-"help.text"
-msgid "Double"
-msgstr "ទ្វេ"
-
#. byiBG
#: 03080502.xhp
msgctxt ""
@@ -20699,15 +20978,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. Egjc2
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"par_id3149670\n"
-"help.text"
-msgid "Double"
-msgstr "ទ្វេ"
-
#. Duhzt
#: 03080601.xhp
msgctxt ""
@@ -20861,15 +21131,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. xpsBz
-#: 03080701.xhp
-msgctxt ""
-"03080701.xhp\n"
-"par_id3150359\n"
-"help.text"
-msgid "Integer"
-msgstr "ចំនួន​គត់"
-
#. hBAHj
#: 03080701.xhp
msgctxt ""
@@ -20888,14 +21149,14 @@ msgctxt ""
msgid "<emph>Number:</emph> Numeric expression that determines the value that is returned by the function."
msgstr "<emph>ចំនួន​ ៖</emph> កន្សោម​លេខ​ដែល​កំណត់​តម្លៃ​ ដែល​ត្រូវ​បាន​ត្រឡប់​ដោយ​អនុគមន៍ ។"
-#. xdxDc
+#. R8M7A
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "NumExpression"
-msgstr "កន្សោម​លេខ"
+msgid "Number"
+msgstr ""
#. ZhDdh
#: 03080701.xhp
@@ -22985,14 +23246,14 @@ msgctxt ""
msgid "Parameters:"
msgstr "ប៉ារ៉ាម៉ែត្រ ៖"
-#. m7HGU
+#. XzZKD
#: 03090402.xhp
msgctxt ""
"03090402.xhp\n"
"par_id3148664\n"
"help.text"
-msgid "<emph>Index:</emph> A numeric expression that specifies the value to return."
-msgstr "<emph>សន្ទស្សន៍​ ៖</emph> កន្សោម​លេខ​ដែល​បញ្ជាក់​ពី​តម្លៃ ដើម្បី​ត្រឡប់ ។"
+msgid "<emph>Index:</emph> Integer value starting at 1 that specifies which of the possible choices to return."
+msgstr ""
#. NBqbi
#: 03090402.xhp
@@ -23003,14 +23264,14 @@ msgctxt ""
msgid "<emph>Selection1:</emph> Any expression that contains one of the possible choices."
msgstr "<emph>Selection1 ៖</emph> កន្សោម​ណា​មួយ​ដែល​មាន​ជម្រើស​មួយ​ក្នុង​ជម្រើស​ដែល​អាច​ទៅ​រួច ។"
-#. nFWBz
+#. EnHLY
#: 03090402.xhp
msgctxt ""
"03090402.xhp\n"
"par_id3151043\n"
"help.text"
-msgid "The <emph>Choose</emph> function returns a value from the list of expressions based on the index value. If Index = 1, the function returns the first expression in the list, if index i= 2, it returns the second expression, and so on."
-msgstr "អនុគមន៍ <emph>Choose</emph> ត្រឡប់​តម្លៃ​ពី​បញ្ជី​កន្សោម​ដោយ​ផ្អែក​លើ​តម្លៃ​សន្ទស្សន៍ ។ ប្រសិន​បើ សន្ទស្សន៍ = 1 អនុគមន៍​ត្រឡប់​កន្សោម​ទី​មួយ​ក្នុង​បញ្ជី ប្រសិន​បើ​សន្ទស្សន៍ i= 2 វា​ត្រឡប់​កន្សោម​ទី​ពីរ និង​បន្ត​បន្ទាប់ ។"
+msgid "The <emph>Choose</emph> function returns a value from the list of expressions based on the index value. If <emph>Index = 1</emph>, the function returns the first expression in the list, if <emph>Index = 2</emph>, it returns the second expression, and so on."
+msgstr ""
#. FovWL
#: 03090402.xhp
@@ -23651,15 +23912,6 @@ msgctxt ""
msgid "Specifies that a program line is a comment."
msgstr "បញ្ជាក់​ថា​ជួរ​កម្មវិធី​គឺ​ជាមតិយោបល់​​មួយ​ ។"
-#. CBchn
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"par_id3154141\n"
-"help.text"
-msgid "Rem Text"
-msgstr "Rem Text"
-
#. P5CAo
#: 03090407.xhp
msgctxt ""
@@ -23930,15 +24182,6 @@ msgctxt ""
msgid "Example:"
msgstr "ឧទាហរណ៍ ៖"
-#. ubwpM
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3149579\n"
-"help.text"
-msgid "sGender = GetGenderIndex( \"John\" )"
-msgstr "sGender = GetGenderIndex( \"John\" )"
-
#. wjCDQ
#: 03090410.xhp
msgctxt ""
@@ -24290,13 +24533,13 @@ msgctxt ""
msgid "<bookmark_value>CCur function</bookmark_value>"
msgstr "<bookmark_value>អនុគមន៍ CCur</bookmark_value>"
-#. FbuTr
+#. dj5DM
#: 03100050.xhp
msgctxt ""
"03100050.xhp\n"
"par_idN10541\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100050.xhp\">CCur Function</link>"
+msgid "<variable id=\"CCur_h1\"><link href=\"text/sbasic/shared/03100050.xhp\">CCur Function</link></variable>"
msgstr ""
#. iR5VT
@@ -24308,32 +24551,14 @@ msgctxt ""
msgid "Converts a string expression or numeric expression to a currency expression. The locale settings are used for decimal separators and currency symbols."
msgstr "បម្លែង​កន្សោម​ខ្សែ​អក្សរ ឬ​កន្សោម​លេខ​ទៅ​ជា​កន្សោម​រូបិយប័ណ្ណ ។ ការ​កំណត់​មូលដ្ឋាន​ត្រូវ​បាន​ប្រើ​សម្រាប់​សញ្ញា​ក្បៀស និង​សញ្ញា​រូបិយប័ណ្ណ ។"
-#. 8ZHR9
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "Syntax:"
-msgstr "វាក្យ​សម្ពន្ធ ៖"
-
-#. qHMVC
+#. 4E7mH
#: 03100050.xhp
msgctxt ""
"03100050.xhp\n"
"par_idN105E8\n"
"help.text"
-msgid "CCur(Expression)"
-msgstr "CCur(កន្សោម)"
-
-#. F5gzk
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105EB\n"
-"help.text"
-msgid "Return value:"
-msgstr "តម្លៃ​ត្រឡប់ ៖"
+msgid "CCur(Expression As Variant) As Currency"
+msgstr ""
#. R6AfV
#: 03100050.xhp
@@ -24344,23 +24569,14 @@ msgctxt ""
msgid "Currency"
msgstr "រូបិយប័ណ្ណ"
-#. M8Tpx
+#. FnhL7
#: 03100050.xhp
msgctxt ""
"03100050.xhp\n"
-"par_idN105F2\n"
-"help.text"
-msgid "Parameter:"
-msgstr "ប៉ារ៉ាម៉ែត្រ ៖"
-
-#. YRdHq
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105F6\n"
+"par_id3145068\n"
"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "កន្សោម ៖ កន្សោម​ខ្សែ​អក្សរ ឬ​កន្សោម​លេខ​ដែល​អ្នក​ចង់​បម្លែង ។"
+msgid "<emph>Expression</emph>: Any string or a numeric expression that you want to convert to a number. <br/><literal>CCur(EMPTY)</literal> returns 0."
+msgstr ""
#. KyDFD
#: 03100060.xhp
@@ -24650,122 +24866,113 @@ msgctxt ""
msgid "<bookmark_value>CBool function</bookmark_value>"
msgstr "<bookmark_value>អនុគមន៍ CBool</bookmark_value>"
-#. 8cv5m
+#. wkGF9
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"CBool Function\">CBool Function</link>"
+msgid "<variable id=\"CBool_h1\"><link href=\"text/sbasic/shared/03100100.xhp\" name=\"CBool Function\">CBool Function</link></variable>"
msgstr ""
-#. LbrGN
+#. fENzo
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
"par_id3145136\n"
"help.text"
-msgid "Converts a string comparison or numeric comparison to a Boolean expression, or converts a single numeric expression to a Boolean expression."
-msgstr "បម្លែង​ការ​ប្រៀបធៀប​ខ្សែ​អក្សរ ឬ​ការ​ប្រៀបធៀប​លេខ​ទៅ​ជា​កន្សោម​ប៊ូលីន ឬ​បម្លែង​កន្សោម​លេខ​តែ​មួយ​ទៅ​ជា​កន្សោម​ប៊ូលីន ។"
-
-#. 4ZGU9
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"hd_id3153345\n"
-"help.text"
-msgid "Syntax:"
-msgstr "វាក្យ​សម្ពន្ធ ៖"
+msgid "Converts an expression or a set of expressions into a boolean. An expression is composed of strings, numbers and operators. Comparison, logical or mathematical operators are allowed inside expressions."
+msgstr ""
-#. gALnc
+#. VXn7B
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
-"par_id3149514\n"
+"par_id681638266349216\n"
"help.text"
-msgid "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)"
-msgstr "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)"
+msgid "<literal>expression</literal> can be a number or a set of combined expressions."
+msgstr ""
-#. aFAKM
+#. EDCrC
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
-"hd_id3156152\n"
+"par_id3155419\n"
"help.text"
-msgid "Return value:"
-msgstr "តម្លៃ​ត្រឡប់ ៖"
+msgid "Boolean"
+msgstr ""
-#. DciQf
+#. ZqnCA
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
-"par_id3155419\n"
+"par_id791636986444058\n"
"help.text"
-msgid "Bool"
-msgstr "ប៊ូល"
+msgid "<emph>expression</emph>: A logical expression, a mathematical formula, a numeric expression or a set of expressions combined with operators. During expression evaluation <link href=\"text/sbasic/shared/03060000.xhp\" name=\"logical operators\">logical operators</link> take preceedence over <link href=\"text/sbasic/shared/03110100.xhp\" name=\"comparison operators\">comparison operators</link>, which in turn take preceedence over <link href=\"text/sbasic/shared/03070000.xhp\" name=\"mathematical operators\">mathematical operators</link>."
+msgstr ""
-#. E8Bpf
+#. LEuzF
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
-"hd_id3147530\n"
+"par_id1001638264728895\n"
"help.text"
-msgid "Parameters:"
-msgstr "ប៉ារ៉ាម៉ែត្រ ៖"
+msgid "The <literal>expression</literal> can be a number or mathematical formula. When equals to 0, <literal>False</literal> is returned, otherwise <literal>True</literal> is returned."
+msgstr ""
-#. nsCwH
+#. 4jZzA
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
-"par_id3156344\n"
+"par_id3149655\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any string or numeric expressions that you want to compare. If the expressions match, the <emph>CBool</emph> function returns <emph>True</emph>, otherwise <emph>False</emph> is returned."
-msgstr "<emph>កន្សោម​ទី​1, កន្សោម​ទី​2 ៖</emph> កន្សោម​ខ្សែ​អក្សរ ឬ​លេខ​ណា​មួយ​ដែល​អ្នក​ចង់​ប្រៀបធៀប ។ ប្រសិន​បើ​កន្សោម​ផ្គូផ្គង អនុគមន៍ <emph>CBool</emph> ត្រឡប់ <emph>ពិត​</emph> បើ​ពុំ​នោះ​សោត <emph>មិនពិត​</emph> ត្រូវ​បាន​ត្រឡប់ ។"
+msgid "Multiple expressions such as <input>expr1 [[{operator] expr2]..]</input> can be combined. <input>expr1</input> and <input>expr2</input> can be any string or numeric expressions that you want to evaluate. <literal>CBool</literal> combines the expressions and returns either <literal>True</literal> or <literal>False</literal>. <input>operator</input> can be a <link href=\"text/sbasic/shared/03070000.xhp\" name=\"mathematical operator\">mathematical operator</link>, <link href=\"text/sbasic/shared/03060000.xhp\" name=\"logical operator\">logical operator</link> or <link href=\"text/sbasic/shared/03110100.xhp\" name=\"comparison operator\">comparison operator</link>."
+msgstr ""
-#. hQiDG
+#. wMSZE
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
-"par_id3149655\n"
+"par_id3145171\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to convert. If the expression equals 0, <emph>False</emph> is returned, otherwise <emph>True</emph> is returned."
-msgstr "<emph>ចំនួន​ ៖</emph> កន្សោម​លេខ​ណា​មួយ ដែល​អ្នក​ចង់​បម្លែង ។ ប្រសិន​បើ​កន្សោម​ស្មើ ០ <emph>មិន​ពិត​</emph> ត្រូវ​បាន​ត្រឡប់ បើ​ពុំ​នោះ​សោត <emph>ពិត​</emph> ត្រូវ​បាន​ត្រឡប់ ។"
+msgid "The following examples computes a logical expression and a mathematical formula. It uses the <literal>CBool</literal> function to evaluate the value that is returned by the <literal>Instr</literal> function. The function checks if the word \"and\" is found in the sentence that was entered by the user."
+msgstr ""
-#. ybBL2
+#. 2SpGu
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
-"par_id3145171\n"
+"bas_id961636989038747\n"
"help.text"
-msgid "The following example uses the <emph>CBool</emph> function to evaluate the value that is returned by the <emph>Instr</emph> function. The function checks if the word \"and\" is found in the sentence that was entered by the user."
-msgstr "ឧទាហរណ៍​ដូច​ខាង​ក្រោម ប្រើ​អនុគមន៍ <emph>CBool</emph> ដើម្បី​វាយ​តម្លៃ ​តម្លៃ​ដែល​ត្រូវ​បាន​ត្រឡប់​ដោយ​អនុគមន៍ <emph>Instr</emph> ។ អនុគមន៍​ពិនិត្យ​មើល​ប្រសិន​បើ​រក​ឃើញ​ពាក្យ \"and\" ក្នុង​ប្រយោគ​ដែល​ត្រូវ​បាន​បញ្ចូល​ដោយ​អ្នក​ប្រើ ។"
+msgid "Print CBool( 1>2 Xor 44 ) ' computes to True"
+msgstr ""
-#. WAM8E
+#. bjPRQ
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
-"hd_id3156212\n"
+"bas_id991636996682074\n"
"help.text"
-msgid "Example:"
-msgstr "ឧទាហរណ៍ ៖"
+msgid "Print CBool( expression := 15 /2 -7.5 ) ' displays False as expression equals 0"
+msgstr ""
-#. 2yvsi
+#. xxrvS
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
"par_id3155132\n"
"help.text"
-msgid "sText = InputBox(\"Please enter a short sentence:\")"
-msgstr "sText = InputBox(\"Please enter a short sentence:\")"
+msgid "txt = InputBox(\"Please enter a short sentence:\")"
+msgstr ""
-#. Aq5CG
+#. FPJDk
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
"par_id3155855\n"
"help.text"
-msgid "' Proof if the word »and« appears in the sentence."
-msgstr "REM Proof if the word »and« appears in the sentence."
+msgid "' Proof if the character \"a\" appears in the sentence."
+msgstr ""
#. GFk66
#: 03100100.xhp
@@ -24776,15 +24983,6 @@ msgctxt ""
msgid "' Instead of the command line"
msgstr "REM Instead of the command line"
-#. WQ7VE
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3148576\n"
-"help.text"
-msgid "' If Instr(Input, \"and\")<>0 Then..."
-msgstr "REM If Instr(Input, \"and\")<>0 Then..."
-
#. fCMAJ
#: 03100100.xhp
msgctxt ""
@@ -24794,23 +24992,14 @@ msgctxt ""
msgid "' the CBool function is applied as follows:"
msgstr "REM the CBool function is applied as follows:"
-#. DXRy4
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3155413\n"
-"help.text"
-msgid "If CBool(Instr(sText, \"and\")) Then"
-msgstr "If CBool(Instr(sText, \"and\")) Then"
-
-#. FKuLf
+#. TgisK
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
"par_id3152940\n"
"help.text"
-msgid "MsgBox \"The word »and« appears in the sentence you entered!\""
-msgstr "MsgBox \"The word »and« appears in the sentence you entered!\""
+msgid "MsgBox \"The character »a« appears in the sentence you entered!\""
+msgstr ""
#. 8FnUJ
#: 03100300.xhp
@@ -24866,15 +25055,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. 9g6CX
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"par_id3159414\n"
-"help.text"
-msgid "Date"
-msgstr "កាល​​បរិច្ឆេទ"
-
#. 3E4Gd
#: 03100300.xhp
msgctxt ""
@@ -24956,15 +25136,6 @@ msgctxt ""
msgid "Return value"
msgstr "តម្លៃ​ត្រឡប់"
-#. Pypm7
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"par_id3145068\n"
-"help.text"
-msgid "Double"
-msgstr "ទ្វេ"
-
#. LM9Ye
#: 03100400.xhp
msgctxt ""
@@ -25055,15 +25226,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. oLemu
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"par_id3147560\n"
-"help.text"
-msgid "Integer"
-msgstr "ចំនួន​គត់"
-
#. a2YC7
#: 03100500.xhp
msgctxt ""
@@ -25226,15 +25388,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. WbDFK
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"par_id3153897\n"
-"help.text"
-msgid "Long"
-msgstr "Long"
-
#. pC3ZX
#: 03100600.xhp
msgctxt ""
@@ -25514,15 +25667,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. jtGVk
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"par_id3153750\n"
-"help.text"
-msgid "Single"
-msgstr "តែ​មួយ"
-
#. cSsM4
#: 03100900.xhp
msgctxt ""
@@ -25613,15 +25757,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. FhYA8
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153897\n"
-"help.text"
-msgid "String"
-msgstr "ខ្សែ​អក្សរ"
-
#. cHP4B
#: 03101000.xhp
msgctxt ""
@@ -25649,15 +25784,6 @@ msgctxt ""
msgid "Expression Types and Conversion Returns"
msgstr "ប្រភេទ​កន្សោម និង​ការ​ត្រឡប់​នៃ​ការ​បម្លែង"
-#. gA73v
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153192\n"
-"help.text"
-msgid "Boolean :"
-msgstr "ប៊ូលីន ៖"
-
#. wjcDB
#: 03101000.xhp
msgctxt ""
@@ -25667,15 +25793,6 @@ msgctxt ""
msgid "String that evaluates to either <emph>True</emph> or <emph>False</emph>."
msgstr "ខ្សែ​អក្សរ​ដែល​វាយ​តម្លៃ​ទាំង <emph>ពិត</emph> ឬ​<emph>មិន​ពិត</emph> ។"
-#. yuw3Z
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3147287\n"
-"help.text"
-msgid "Date :"
-msgstr "កាល​បរិច្ឆេទ ៖"
-
#. CrwVu
#: 03101000.xhp
msgctxt ""
@@ -25685,15 +25802,6 @@ msgctxt ""
msgid "String that contains the date and time."
msgstr "ខ្សែ​អក្សរ​ដែល​មាន​កាល​បរិច្ឆេទ និង​ពេល​វេលា ។"
-#. QE5bi
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3147428\n"
-"help.text"
-msgid "Null :"
-msgstr "គ្មាន​សោះ ៖"
-
#. ZATnW
#: 03101000.xhp
msgctxt ""
@@ -25703,15 +25811,6 @@ msgctxt ""
msgid "Run-time error."
msgstr "កំហុស​ពេល​រត់ ។"
-#. DWkQW
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153953\n"
-"help.text"
-msgid "Empty :"
-msgstr "ទទេ ៖"
-
#. SfQUa
#: 03101000.xhp
msgctxt ""
@@ -25721,15 +25820,6 @@ msgctxt ""
msgid "String without any characters."
msgstr "ខ្សែ​អក្សរ​ដែល​គ្មាន​តួ​អក្សរ ។"
-#. rmvhR
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3149260\n"
-"help.text"
-msgid "Any :"
-msgstr "ណា​មួយ ៖"
-
#. vzaXy
#: 03101000.xhp
msgctxt ""
@@ -26873,15 +26963,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. mBAAA
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"par_id3154685\n"
-"help.text"
-msgid "Bool"
-msgstr "ប៊ូល"
-
#. 4tEeP
#: 03102200.xhp
msgctxt ""
@@ -26972,15 +27053,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. 7vqAp
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"par_id3147560\n"
-"help.text"
-msgid "Bool"
-msgstr "ប៊ូល"
-
#. D758U
#: 03102300.xhp
msgctxt ""
@@ -27008,24 +27080,6 @@ msgctxt ""
msgid "Example:"
msgstr "ឧទាហរណ៍ ៖"
-#. ymgXU
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"par_id3150869\n"
-"help.text"
-msgid "Print IsDate(sDateVar) ' Returns True"
-msgstr "print IsDate(sDateVar) REM Returns True"
-
-#. oxti5
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"par_id3147288\n"
-"help.text"
-msgid "Print IsDate(sDateVar) ' Returns False"
-msgstr "print IsDate(sDateVar) REM Returns False"
-
#. pVhKT
#: 03102400.xhp
msgctxt ""
@@ -27089,15 +27143,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. EdFoX
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3156344\n"
-"help.text"
-msgid "Bool"
-msgstr "ប៊ូល"
-
#. BrRWw
#: 03102400.xhp
msgctxt ""
@@ -27125,15 +27170,6 @@ msgctxt ""
msgid "Example:"
msgstr "ឧទាហរណ៍ ៖"
-#. EmyBP
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3154863\n"
-"help.text"
-msgid "Print IsEmpty(sVar) ' Returns True"
-msgstr "Print IsEmpty(sVar) REM Returns True"
-
#. dr2Py
#: 03102450.xhp
msgctxt ""
@@ -27278,15 +27314,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. f4EB6
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"par_id3145609\n"
-"help.text"
-msgid "Bool"
-msgstr "ប៊ូល"
-
#. 2r2f2
#: 03102600.xhp
msgctxt ""
@@ -27386,15 +27413,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. FRiSB
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3148944\n"
-"help.text"
-msgid "Bool"
-msgstr "ប៊ូល"
-
#. doi6A
#: 03102700.xhp
msgctxt ""
@@ -27422,24 +27440,6 @@ msgctxt ""
msgid "Example:"
msgstr "ឧទាហរណ៍ ៖"
-#. FWWbs
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3147230\n"
-"help.text"
-msgid "Print IsNumeric(vVar) ' Returns False"
-msgstr "Print IsNumeric(vVar) REM Returns False"
-
-#. F4fqG
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3154910\n"
-"help.text"
-msgid "Print IsNumeric(vVar) ' Returns True"
-msgstr "Print IsNumeric(vVar) REM Returns True"
-
#. vieWA
#: 03102800.xhp
msgctxt ""
@@ -27701,15 +27701,6 @@ msgctxt ""
msgid "UBound (ArrayName [, Dimension])"
msgstr "UBound (ArrayName [, Dimension])"
-#. xVQ87
-#: 03103000.xhp
-msgctxt ""
-"03103000.xhp\n"
-"par_id3149670\n"
-"help.text"
-msgid "Long"
-msgstr ""
-
#. Svuit
#: 03103000.xhp
msgctxt ""
@@ -27728,42 +27719,6 @@ msgctxt ""
msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper(<emph>Ubound</emph>) or lower (<emph>LBound</emph>) boundary for. If no value is specified, the boundary of the first dimension is returned."
msgstr "<emph>[Dimension] ៖</emph> ចំនួន​គត់​ដែល​បញ្ជាក់​តើ​វិមាត្រ​ណា​មួយ​ដើម្បី​ត្រឡប់​ព្រំដែន​ខាង​លើ (<emph>Ubound</emph>) ឬ​ខាង​ក្រោម (<emph>LBound</emph>) ។ ប្រសិន​បើ​គ្មាន​តម្លៃ​ត្រូវ​បាន​បញ្ជាក់ ព្រំដែន​នៃ​វិមាត្រ​ទី​មួយ​ត្រូវ​បាន​ត្រឡប់ ។"
-#. HPb5a
-#: 03103000.xhp
-msgctxt ""
-"03103000.xhp\n"
-"par_idm1206768352\n"
-"help.text"
-msgid "Print LBound(v()) ' returns 10"
-msgstr ""
-
-#. aaaDh
-#: 03103000.xhp
-msgctxt ""
-"03103000.xhp\n"
-"par_id3145365\n"
-"help.text"
-msgid "Print LBound(t), UBound(t()) ' returns 10 20"
-msgstr ""
-
-#. fqeRG
-#: 03103000.xhp
-msgctxt ""
-"03103000.xhp\n"
-"par_id3149665\n"
-"help.text"
-msgid "Print LBound(t(),2) ' returns - 5"
-msgstr ""
-
-#. TBxHC
-#: 03103000.xhp
-msgctxt ""
-"03103000.xhp\n"
-"par_id3159154\n"
-"help.text"
-msgid "Print UBound(t,2) ' returns 70"
-msgstr ""
-
#. QHhrj
#: 03103100.xhp
msgctxt ""
@@ -28322,15 +28277,6 @@ msgctxt ""
msgid "TypeName (Variable) / VarType (Variable)"
msgstr ""
-#. gaAwa
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3148947\n"
-"help.text"
-msgid "String; Integer"
-msgstr "ខ្សែ​អក្សរ ចំនួន​គត់"
-
#. CmbDF
#: 03103600.xhp
msgctxt ""
@@ -28340,13 +28286,13 @@ msgctxt ""
msgid "<emph>Variable:</emph> The variable that you want to determine the type of. You can use the following values:"
msgstr "<emph>Variable ៖</emph> អថេរ​ដែល​អ្នក​ចង់​កំណត់​ប្រភេទ ។ អ្នក​អាច​ប្រើ​តម្លៃ​ដូច​ខាង​ក្រោម ៖"
-#. oxuiK
+#. AJ9RG
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
"par_id3145171\n"
"help.text"
-msgid "keyword"
+msgid "Keyword"
msgstr ""
#. EAezL
@@ -28358,15 +28304,6 @@ msgctxt ""
msgid "Named constant"
msgstr ""
-#. rJXbZ
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3156212\n"
-"help.text"
-msgid "VarType"
-msgstr "VarType"
-
#. ZyZMD
#: 03103600.xhp
msgctxt ""
@@ -29033,14 +28970,14 @@ msgctxt ""
msgid "Returns the type Variant with a data field."
msgstr "ត្រឡប់​ប្រភេទ​វ៉ារ្យង់​ជាមួយ​វាល​ទិន្នន័យ ។"
-#. hVxRf
+#. XYnnC
#: 03104200.xhp
msgctxt ""
"03104200.xhp\n"
"par_id3153126\n"
"help.text"
-msgid "Array ( Argument list)"
-msgstr "Array ( Argument list)"
+msgid "Array (ArgumentList)"
+msgstr ""
#. EuCLG
#: 03104200.xhp
@@ -29051,23 +28988,14 @@ msgctxt ""
msgid "See also <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
msgstr "មើល <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link> ផង​ដែរ"
-#. ZsSRT
+#. VXL3Y
#: 03104200.xhp
msgctxt ""
"03104200.xhp\n"
"par_id3145609\n"
"help.text"
-msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
-msgstr "<emph>Argument list ៖</emph> បញ្ជី​នៃ​អាគុយម៉ង់ ដែល​ត្រូវ​បាន​បំបែក​ដោយ​​សញ្ញា​ក្បៀស (,) ។"
-
-#. EhDw8
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"par_id3153525\n"
-"help.text"
-msgid "A = Array(\"Fred\",\"Tom\",\"Bill\")"
-msgstr "A = Array(\"Fred\",\"Tom\",\"Bill\")"
+msgid "<emph>ArgumentList:</emph> A list of any number of arguments that are separated by commas."
+msgstr ""
#. 2d2eF
#: 03104300.xhp
@@ -29114,14 +29042,14 @@ msgctxt ""
msgid "Syntax:"
msgstr "វាក្យ​សម្ពន្ធ ៖"
-#. f4XPA
+#. D2Tbd
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
"par_id3148473\n"
"help.text"
-msgid "DimArray ( Argument list)"
-msgstr "DimArray (បញ្ជី​អាគុយម៉ង់)"
+msgid "DimArray (ArgumentList)"
+msgstr ""
#. xfuoC
#: 03104300.xhp
@@ -29150,14 +29078,14 @@ msgctxt ""
msgid "Parameters:"
msgstr "ប៉ារ៉ាម៉ែត្រ ៖"
-#. 8cqdA
+#. B7CBa
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
"par_id3159414\n"
"help.text"
-msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
-msgstr "<emph>Argument list ៖</emph> បញ្ជី​នៃ​អាគុយម៉ង់ ដែល​ត្រូវ​បាន​បំបែក​ដោយ​​សញ្ញា​ក្បៀស (,) ។"
+msgid "<emph>ArgumentList:</emph> A list of any number of arguments that are separated by commas."
+msgstr ""
#. wCCAj
#: 03104300.xhp
@@ -29231,15 +29159,6 @@ msgctxt ""
msgid "HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
msgstr "HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
-#. TCBDe
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3148538\n"
-"help.text"
-msgid "Bool"
-msgstr "ប៊ូល"
-
#. qxagP
#: 03104400.xhp
msgctxt ""
@@ -29303,15 +29222,6 @@ msgctxt ""
msgid "IsUnoStruct( Uno type )"
msgstr "IsUnoStruct( Uno type )"
-#. MDtGg
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_id3145315\n"
-"help.text"
-msgid "Bool"
-msgstr "ប៊ូល"
-
#. uXjgH
#: 03104500.xhp
msgctxt ""
@@ -29555,77 +29465,50 @@ msgctxt ""
msgid "Comparison Operators"
msgstr ""
-#. HvC8D
+#. eBuGF
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
"bm_id3150682\n"
"help.text"
-msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value> <bookmark_value>operators;comparisons</bookmark_value>"
-msgstr "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value><bookmark_value>ការរី; ការប្រៀបធៀប</bookmark_value>"
+msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value> <bookmark_value>Operators;comparison</bookmark_value> <bookmark_value>Operators;equal sign (=)</bookmark_value> <bookmark_value>Operators;greater than (>)</bookmark_value> <bookmark_value>Operators;greater than or equal to (>=)</bookmark_value> <bookmark_value>Operators;less than (<>)</bookmark_value> <bookmark_value>Operators;less than or equal to (<=)</bookmark_value> <bookmark_value>Operators;not equal to (<>)</bookmark_value>"
+msgstr ""
-#. ABXhw
+#. k9nDv
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
"hd_id3150682\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
+msgid "<variable id=\"CompOper_h1\"><link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators\">Comparison Operators</link></variable>"
msgstr ""
-#. Xi8Hg
+#. vzC53
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
"par_id3156042\n"
"help.text"
-msgid "Comparison operators compare two expressions. The result is returned as a Boolean expression that determines if the comparison is True (-1) or False (0)."
-msgstr "សញ្ញា​ប្រមាណ​វិធី​ប្រៀបធៀប ប្រៀបធៀប​កន្សោម​ពីរ ។ លទ្ធផល​ត្រូវ​បាន​ត្រឡប់​ជា​កន្សោម \"ប៊ូលីន\" ដែល​បញ្ជាក់​ថា​តើ​ការ​ប្រៀបធៀប ពិត(-1) ឬ​មិន​ពិត (0) ។"
-
-#. eCMr5
-#: 03110100.xhp
-msgctxt ""
-"03110100.xhp\n"
-"hd_id3147291\n"
-"help.text"
-msgid "Syntax:"
-msgstr "វាក្យ​សម្ពន្ធ ៖"
-
-#. rzJup
-#: 03110100.xhp
-msgctxt ""
-"03110100.xhp\n"
-"par_id3149177\n"
-"help.text"
-msgid "Result = Expression1 { = | < | > | <= | >= } Expression2"
-msgstr "Result = Expression1 { = | < | > | <= | >= } Expression2"
-
-#. Grmm6
-#: 03110100.xhp
-msgctxt ""
-"03110100.xhp\n"
-"hd_id3145316\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ប៉ារ៉ាម៉ែត្រ ៖"
+msgid "Comparison operators compare two expressions. The result is returned as a boolean expression that determines if the comparison is <literal>True</literal> (-1) or <literal>False</literal> (0)."
+msgstr ""
-#. CoGtG
+#. ikYGG
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
"par_id3147573\n"
"help.text"
-msgid "<emph>Result:</emph> Boolean expression that specifies the result of the comparison (True, or False)"
-msgstr "<emph>Result ៖</emph> កន្សោម​ប៊ូលីន​ដែល​បញ្ជាក់​ពី​លទ្ធផល​នៃ​ការ​ប្រៀបធៀប (ពិត ឬ​មិន​ពិត)"
+msgid "<emph>result</emph>: Boolean that specifies the result of the comparison (<literal>True</literal>, or <literal>False</literal>)"
+msgstr ""
-#. djWb8
+#. GYpPy
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric values or strings that you want to compare."
-msgstr "<emph>Expression1, Expression2 ៖</emph> តម្លៃ​លេខ ឬ​ខ្សែ​អក្សរ​ណា​មួយ ដែល​អ្នក​ចង់​ប្រៀបធៀប ។"
+msgid "<emph>expression1, expression2</emph>: Any numeric values or strings that you want to compare."
+msgstr ""
#. VeMGA
#: 03110100.xhp
@@ -29690,15 +29573,6 @@ msgctxt ""
msgid "<> : Not equal to"
msgstr "<> ៖ មិន​ស្មើ"
-#. 2whHT
-#: 03110100.xhp
-msgctxt ""
-"03110100.xhp\n"
-"hd_id3154686\n"
-"help.text"
-msgid "Example:"
-msgstr "ឧទាហរណ៍ ៖"
-
#. 4F32A
#: 03110100.xhp
msgctxt ""
@@ -29897,31 +29771,31 @@ msgctxt ""
msgid "Returns the character that corresponds to the specified character code."
msgstr "ត្រឡប់​តួអក្សរ​ដែល​ត្រូវ​គ្នា​ទៅ​នឹង​កូដ​តួ​អក្សរ​ជាក់លាក់ ។"
-#. cR5b8
+#. Q8gEU
#: 03120102.xhp
msgctxt ""
"03120102.xhp\n"
-"par_id3150669\n"
+"bas_id91642668171601\n"
"help.text"
-msgid "Chr[$](expression As Integer) As String"
+msgid "Chr[$](charcode As Integer) As String"
msgstr ""
-#. 4nv5b
+#. 6bDTr
#: 03120102.xhp
msgctxt ""
"03120102.xhp\n"
"par_id3149295\n"
"help.text"
-msgid "<emph>Expression:</emph> a numeric expression that represents a valid 8-bit ASCII value (0-255) or a 16-bit Unicode value. (To support expressions with a nominally negative argument like <emph>Chr(&H8000)</emph> in a backwards-compatible way, values in the range −32768 to −1 are internally mapped to the range 32768 to 65535.)"
+msgid "<emph>charcode</emph>: a numeric expression that represents a valid 8-bit ASCII value (0-255) or a 16-bit Unicode value. (To support expressions with a nominally negative argument like <emph>Chr(&H8000)</emph> in a backwards-compatible way, values in the range −32768 to −1 are internally mapped to the range 32768 to 65535.)"
msgstr ""
-#. RKtSB
+#. Xyjgr
#: 03120102.xhp
msgctxt ""
"03120102.xhp\n"
"par_id991552913928635\n"
"help.text"
-msgid "When VBA compatibility mode is enabled (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>OPTION VBASUPPORT 1</literal></link>), <emph>Expression</emph> is a numeric expression that represents a valid 8-bit ASCII value (0-255) only."
+msgid "When VBA compatibility mode is enabled (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), <literal>charcode</literal> is a numeric expression that represents a valid 8-bit ASCII value (0-255) only."
msgstr ""
#. sw8rF
@@ -29951,13 +29825,13 @@ msgctxt ""
msgid "' This example inserts quotation marks (ASCII value 34) in a string."
msgstr "REM This example inserts quotation marks (ASCII value 34) in a string."
-#. PpQfe
+#. rTCjE
#: 03120102.xhp
msgctxt ""
"03120102.xhp\n"
"par_id3151380\n"
"help.text"
-msgid "MsgBox \"A \"+ Chr$(34)+\"short\" + Chr(34)+\" trip.\""
+msgid "MsgBox \"A \" + Chr$(34) + \"short\" + Chr(34) + \" trip.\""
msgstr ""
#. iCsGw
@@ -29969,6 +29843,15 @@ msgctxt ""
msgid "' The printout appears in the dialog as: A \"short\" trip."
msgstr "REM សន្លឹក​បោះពុម្ព​​នឹង​បង្ហាញ​ក្នុង​ប្រអប់​ជា ៖ A \"short\" trip ។"
+#. TeaSB
+#: 03120102.xhp
+msgctxt ""
+"03120102.xhp\n"
+"bas_id481642668824226\n"
+"help.text"
+msgid "MsgBox Chr(charcode := 64) ' \"@\" sign"
+msgstr ""
+
#. bzZDz
#: 03120103.xhp
msgctxt ""
@@ -29987,95 +29870,122 @@ msgctxt ""
msgid "<bookmark_value>Str function</bookmark_value>"
msgstr "<bookmark_value>អនុគមន៍ Str</bookmark_value>"
-#. vHDFf
+#. 29Gzu
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
"hd_id3143272\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function\">Str Function</link>"
+msgid "<variable id=\"Str_h1\"><link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function\">Str Function</link></variable>"
msgstr ""
-#. sMBFZ
+#. Z8JfH
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
"par_id3155100\n"
"help.text"
-msgid "Converts a numeric expression into a string."
-msgstr "បម្លែង​កន្សោម​ជា​លេខ​ទៅ​ជា​ខ្សែ​អក្សរ​មួយ ។"
+msgid "The <literal>Str</literal> function converts the contents of variables into a string. It handles numeric values, dates, strings and currency values."
+msgstr ""
-#. AtDCX
+#. Zxy4r
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
-"hd_id3109850\n"
+"par_id3146958\n"
"help.text"
-msgid "Syntax:"
-msgstr "វាក្យ​សម្ពន្ធ ៖"
+msgid "Positive numbers are preceded by a blank space. Negative numbers are preceded by a minus sign."
+msgstr ""
-#. FCB5S
+#. A5Fyi
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
-"par_id3149497\n"
+"par_id331641237252390\n"
"help.text"
-msgid "Str (Expression)"
-msgstr "Str (Expression)"
+msgid "For numeric values the string returned by the <literal>Str</literal> function is locale-independent. Hence the dot is used as the decimal separator when needed."
+msgstr ""
-#. euwuq
+#. HjAty
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
-"hd_id3150040\n"
+"par_id601641237849695\n"
"help.text"
-msgid "Return value:"
-msgstr "តម្លៃ​ត្រឡប់ ៖"
+msgid "If a string is passed as argument, it is returned without any changes."
+msgstr ""
-#. GFLxD
+#. nfPG2
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
-"par_id3146117\n"
+"par_id231641251937406\n"
"help.text"
-msgid "String"
-msgstr "ខ្សែ​អក្សរ"
+msgid "Dates are converted into locale-dependent strings."
+msgstr ""
-#. gC8ux
+#. NEAum
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
-"hd_id3155805\n"
+"par_id3149497\n"
"help.text"
-msgid "Parameters:"
-msgstr "ប៉ារ៉ាម៉ែត្រ ៖"
+msgid "Str (Value As Variant)"
+msgstr ""
-#. MUTuz
+#. BPCDW
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
"par_id3149178\n"
"help.text"
-msgid "<emph>Expression: </emph>Any numeric expression."
-msgstr "<emph>កន្សោម​ ៖ </emph>កន្សោម​ជា​លេខ​ណា​មួយ ។"
+msgid "<emph>Value:</emph> Any value to be converted into a string."
+msgstr ""
-#. i56aX
+#. hHwSa
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
-"par_id3146958\n"
+"par_id401641251970766\n"
"help.text"
-msgid "The <emph>Str</emph> function converts a numeric variable, or the result of a calculation into a string. Negative numbers are preceded by a minus sign. Positive numbers are preceded by a space (instead of the plus sign)."
-msgstr "អនុគមន៍ <emph>Str</emph> បម្លែង​អថេរ​លេខ ឬ​លទ្ធផល​នៃ​ការ​គណនា​ទៅ​ជា​ខ្សែ​អក្សរ​មួយ ។ ចំនួន​អវិជ្ជមាន​ត្រូវ​បាន​នាំ​មុខ​ដោយ​សញ្ញា​ដក ។ ចំនួន​វិជ្ជមាន​ត្រូវ​បាន​នាំ​មុខ​ដោយ​ដក​ឃ្លា (ជំនួស​ឲ្យ​សញ្ញា​បូក) ។"
+msgid "Below are some numeric examples using the <literal>Str</literal> function."
+msgstr ""
-#. Ewk3i
+#. viBgo
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
-"hd_id3155419\n"
+"bas_id831641238784987\n"
"help.text"
-msgid "Example:"
-msgstr "ឧទាហរណ៍ ៖"
+msgid "' Note the blank space at the beginning of the returned strings"
+msgstr ""
+
+#. A8Cbc
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"bas_id991641238830710\n"
+"help.text"
+msgid "' Strings passed as arguments are left unchanged"
+msgstr ""
+
+#. kjJa8
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"par_id601641238259787\n"
+"help.text"
+msgid "Use the <literal>LTrim</literal> function to remove the blank space at the beginning of the returned string."
+msgstr ""
+
+#. FDMfX
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"par_id881641252036753\n"
+"help.text"
+msgid "The <literal>Str</literal> function can also handle <literal>Date</literal> variables."
+msgstr ""
#. vYQmG
#: 03120104.xhp
@@ -30095,32 +30005,32 @@ msgctxt ""
msgid "<bookmark_value>Val function</bookmark_value>"
msgstr "<bookmark_value>អនុគមន៍ Val</bookmark_value>"
-#. qLhSm
+#. h82YR
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
"hd_id3149205\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Val Function\">Val Function</link>"
+msgid "<variable id=\"Val_h1\"><link href=\"text/sbasic/shared/03120104.xhp\" name=\"Val Function\">Val Function</link></variable>"
msgstr ""
-#. BCyui
+#. VDZFx
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "Converts a string to a numeric expression."
-msgstr "បម្លែង​ខ្សែ​អក្សរ​មួយ​ទៅ​ជា​កន្សោម​​​លេខ ។"
+msgid "Use the <literal>Val</literal> function to convert a string that represents a number into numeric data type."
+msgstr ""
-#. 4Jho2
+#. aQ5EY
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
-"hd_id3159157\n"
+"par_id281641235880765\n"
"help.text"
-msgid "Syntax:"
-msgstr "វាក្យ​សម្ពន្ធ ៖"
+msgid "The string passed to the <literal>Val</literal> function is locale-independent. This means that commas are interpreted as thousands separators and a dot is used as the decimal separator."
+msgstr ""
#. Rk6u2
#: 03120104.xhp
@@ -30131,59 +30041,59 @@ msgctxt ""
msgid "Val (Text As String)"
msgstr "Val (Text As String)"
-#. ZBgwS
+#. Gi4Ag
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
-"hd_id3150669\n"
+"par_id3143228\n"
"help.text"
-msgid "Return value:"
-msgstr "តម្លៃ​ត្រឡប់ ៖"
+msgid "Double"
+msgstr "ទ្វេ"
-#. Gi4Ag
+#. DmE2F
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
-"par_id3143228\n"
+"par_id3154348\n"
"help.text"
-msgid "Double"
-msgstr "ទ្វេ"
+msgid "<emph>Text:</emph> String that represents a number."
+msgstr "<emph>Text ៖</emph> ខ្សែ​អក្សរ​ដែល​តំណាង​ឲ្យ​ចំនួន​មួយ ។"
-#. 9YWca
+#. e9c9u
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
-"hd_id3156024\n"
+"par_id3149670\n"
"help.text"
-msgid "Parameters:"
-msgstr "ប៉ារ៉ាម៉ែត្រ ៖"
+msgid "If only part of the string contains numbers, only the first appropriate characters of the string are converted. If the string does not contain any numbers then <literal>Val</literal> returns 0."
+msgstr ""
-#. DmE2F
+#. JLvDd
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
-"par_id3154348\n"
+"bas_id131641236938068\n"
"help.text"
-msgid "<emph>Text:</emph> String that represents a number."
-msgstr "<emph>Text ៖</emph> ខ្សែ​អក្សរ​ដែល​តំណាង​ឲ្យ​ចំនួន​មួយ ។"
+msgid "' Below 123,1 is interpreted as 1231 since \",\" is the thousands separator"
+msgstr ""
-#. 9ZYpb
+#. qMAhh
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
-"par_id3149670\n"
+"bas_id681641252873197\n"
"help.text"
-msgid "Using the Val function, you can convert a string that represents numbers into numeric expressions. This is the inverse of the <emph>Str</emph> function. If only part of the string contains numbers, only the first appropriate characters of the string are converted. If the string does not contain any numbers, the <emph>Val</emph> function returns the value 0."
-msgstr "ដោយ​ប្រើ​អនុគមន៍ Val អ្នក​អាច​បម្លែង​ខ្សែ​អក្សរ​ដែល​តំណាង​ឲ្យ​លេខ​ទៅ​ជា​កន្សោម​លេខ ។ នេះ​គឺ​ផ្ទុយ​នឹង​អនុគមន៍ <emph>Str</emph> ។ ប្រសិន​បើ​ខ្សែ​អក្សរ​មាន​តែ​ផ្នែក​ខ្លះ​ជា​លេខ នោះ​មាន​តែ​តួ​អក្សរ​សមរម្យ​ដំបូង​នៃ​ខ្សែ​អក្សរ​ប៉ុណ្ណោះ ដែល​នឹង​ត្រូវ​បាន​បម្លែង ។ ប្រសិន​បើ​ខ្សែ​អក្សរ​គ្មាន​លេខ​ អនុគមន៍ <emph>Val</emph> ត្រឡប់​តម្លៃ 0 ។"
+msgid "' All numbers are considered until a non-numeric character is reached"
+msgstr ""
-#. zEtva
+#. i9otK
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
-"hd_id3154365\n"
+"bas_id911641237027667\n"
"help.text"
-msgid "Example:"
-msgstr "ឧទាហរណ៍ ៖"
+msgid "' The example below returns 0 (zero) since the string provided does not start with a number"
+msgstr ""
#. MeApW
#: 03120105.xhp
@@ -30203,77 +30113,50 @@ msgctxt ""
msgid "<bookmark_value>CByte function</bookmark_value>"
msgstr "<bookmark_value>អនុគមន៍ CByte</bookmark_value>"
-#. MBuSG
+#. VkMAp
#: 03120105.xhp
msgctxt ""
"03120105.xhp\n"
"hd_id3156027\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function\">CByte Function</link>"
+msgid "<variable id=\"CByte_h1\"><link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function\">CByte Function</link></variable>"
msgstr ""
-#. WtRZK
+#. qP4eK
#: 03120105.xhp
msgctxt ""
"03120105.xhp\n"
"par_id3143267\n"
"help.text"
-msgid "Converts a string or a numeric expression to the type Byte."
-msgstr "បម្លែង​កន្សោម​ខ្សែ​អក្សរ ឬ​លេខ​ទៅ​ជា​ប្រភេទ​បៃ ។"
-
-#. KBtph
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"hd_id3149811\n"
-"help.text"
-msgid "Syntax:"
-msgstr "វាក្យ​សម្ពន្ធ ៖"
+msgid "Converts a string or a numeric expression to the <literal>Byte</literal> type."
+msgstr ""
-#. y5eP6
+#. 8h2Wu
#: 03120105.xhp
msgctxt ""
"03120105.xhp\n"
"par_id3147573\n"
"help.text"
-msgid "Cbyte( expression )"
-msgstr "Cbyte( expression )"
-
-#. c9ZeV
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"hd_id3145315\n"
-"help.text"
-msgid "Return value:"
-msgstr "តម្លៃ​ត្រឡប់ ៖"
-
-#. uBqQC
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"par_id3148473\n"
-"help.text"
-msgid "Byte"
-msgstr "បៃ"
+msgid "Cbyte( expression As Variant) As Byte"
+msgstr ""
-#. y52Yv
+#. 4vJi5
#: 03120105.xhp
msgctxt ""
"03120105.xhp\n"
-"hd_id3147530\n"
+"par_id3145068\n"
"help.text"
-msgid "Parameters:"
-msgstr "ប៉ារ៉ាម៉ែត្រ ៖"
+msgid "<emph>Expression</emph>: Any string or a numeric expression that can be evaluated to a number. Decimal values are rounded to the nearest tenth. Valid values range from 0 to 256."
+msgstr ""
-#. YE4pG
+#. dfezQ
#: 03120105.xhp
msgctxt ""
"03120105.xhp\n"
-"par_id3145068\n"
+"bas_id941637751110886\n"
"help.text"
-msgid "<emph>Expression:</emph> A string or a numeric expression."
-msgstr "<emph>កន្សោម​ ៖</emph> ខ្សែ​អក្សរ ឬ​កន្សោម​ជា​លេខ​មួយ ។"
+msgid "' Above expressions are computed as 16, 0 and 3"
+msgstr ""
#. svGqi
#: 03120111.xhp
@@ -30392,15 +30275,6 @@ msgctxt ""
msgid "Returns the Unicode character that corresponds to the specified character code."
msgstr ""
-#. X2EkR
-#: 03120112.xhp
-msgctxt ""
-"03120112.xhp\n"
-"par_id3150669\n"
-"help.text"
-msgid "ChrW(Expression As Integer) As String"
-msgstr ""
-
#. mA9x6
#: 03120112.xhp
msgctxt ""
@@ -30410,13 +30284,13 @@ msgctxt ""
msgid "String"
msgstr ""
-#. WzBnm
+#. iFApG
#: 03120112.xhp
msgctxt ""
"03120112.xhp\n"
"par_id3149295\n"
"help.text"
-msgid "<emph>Expression:</emph> Numeric variables that represent a valid 16 bit Unicode value (0-65535). (To support expressions with a nominally negative argument like <emph>ChrW(&H8000)</emph> in a backwards-compatible way, values in the range −32768 to −1 are internally mapped to the range 32768 to 65535.) An empty value returns error code 5. A value out of the range [0,65535] returns error code 6."
+msgid "<emph>charcode</emph>: Numeric expression that represent a valid 16 bit Unicode value (0-65535). (To support expressions with a nominally negative argument like <emph>ChrW(&H8000)</emph> in a backwards-compatible way, values in the range −32768 to −1 are internally mapped to the range 32768 to 65535.) An empty value returns error code 5. A value out of the range [0 to 65535] returns error code 6."
msgstr ""
#. 8DF8a
@@ -30428,13 +30302,13 @@ msgctxt ""
msgid "' This example inserts the Greek letters alpha and omega in a string."
msgstr ""
-#. AGZSD
+#. ZtgsJ
#: 03120112.xhp
msgctxt ""
"03120112.xhp\n"
"par_id3151380\n"
"help.text"
-msgid "MsgBox \"From \"+ ChrW(913)+\" to \" + ChrW(937)"
+msgid "MsgBox \"From \" + ChrW(913) + \" to \" + ChrW(937)"
msgstr ""
#. zPJDa
@@ -30446,6 +30320,15 @@ msgctxt ""
msgid "' The printout appears in the dialog as: From Α to Ω"
msgstr ""
+#. eE9Nq
+#: 03120112.xhp
+msgctxt ""
+"03120112.xhp\n"
+"bas_id181642669411658\n"
+"help.text"
+msgid "MsgBox ChrW(charcode := 116) ' \"t\" lowercase T letter"
+msgstr ""
+
#. E7Eoi
#: 03120200.xhp
msgctxt ""
@@ -30635,15 +30518,6 @@ msgctxt ""
msgid "Editing String Contents"
msgstr "ការ​កែ​សម្រួល​មាតិកា​ខ្សែ​អក្សរ"
-#. 5nF4q
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"bm_id7499008\n"
-"help.text"
-msgid "<bookmark_value>ampersand symbol in StarBasic</bookmark_value>"
-msgstr "<bookmark_value>និមិត្តសញ្ញា & នៅ​ក្នុង StarBasic</bookmark_value>"
-
#. qvgJA
#: 03120300.xhp
msgctxt ""
@@ -30653,14 +30527,23 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Editing String Contents\">Editing String Contents</link>"
msgstr "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Editing String Contents\">ការ​កែ​សម្រួល​មាតិកា​​ខ្សែ​អក្សរ</link>"
-#. hU6eu
+#. pHEcz
#: 03120300.xhp
msgctxt ""
"03120300.xhp\n"
"par_id3149178\n"
"help.text"
-msgid "The following functions edit, format, and align the contents of strings. Use the & operator to concatenate strings."
-msgstr "អនុគមន៍​ដូច​ខាង​ក្រោម កែ​សម្រួល ធ្វើ​ទ្រង់ទ្រាយ និង​តម្រឹម​មាតិកា​នៃ​ខ្សែ​អក្សរ ។ ប្រើ​សញ្ញា & ដើម្បី​ដាក់​ខ្សែ​អក្សរ​បន្ត​គ្នា ។"
+msgid "The following functions edit, format, and align the contents of strings. Use the <literal>&</literal> or <literal>+</literal> operators to concatenate strings."
+msgstr ""
+
+#. PG2TT
+#: 03120300.xhp
+msgctxt ""
+"03120300.xhp\n"
+"bm_id3150669\n"
+"help.text"
+msgid "<bookmark_value>ampersand symbol; in string handling</bookmark_value> <bookmark_value>Operators;concatenation (& or +)</bookmark_value> <bookmark_value>\"& or +\" concatenation (strings)</bookmark_value>"
+msgstr ""
#. hAn8q
#: 03120301.xhp
@@ -31076,15 +30959,6 @@ msgctxt ""
msgid "LCase (Text As String)"
msgstr "LCase (Text As String)"
-#. 8RHAp
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"par_id3144760\n"
-"help.text"
-msgid "String"
-msgstr "ខ្សែ​អក្សរ"
-
#. 2dpqA
#: 03120302.xhp
msgctxt ""
@@ -31094,24 +30968,6 @@ msgctxt ""
msgid "<emph>Text:</emph> Any string expression that you want to convert."
msgstr "<emph>Text ៖</emph> កន្សោម​ខ្សែ​អក្សរ​ណា​មួយ ដែល​អ្នក​ចង់​បម្លែង ។"
-#. HcFTs
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"par_id3146121\n"
-"help.text"
-msgid "Print LCase(sVar) ' Returns \"las vegas\""
-msgstr "Print LCase(sVar) REM Returns \"las vegas\""
-
-#. F9rGM
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"par_id3146986\n"
-"help.text"
-msgid "Print UCase(sVar) ' Returns \"LAS VEGAS\""
-msgstr "Print UCase(sVar) REM Returns \"LAS VEGAS\""
-
#. UGH3C
#: 03120303.xhp
msgctxt ""
@@ -31364,15 +31220,6 @@ msgctxt ""
msgid "LTrim (Text As String)"
msgstr "LTrim (Text As String)"
-#. LyUCE
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"par_id3151056\n"
-"help.text"
-msgid "String"
-msgstr "ខ្សែ​អក្សរ"
-
#. x85WJ
#: 03120305.xhp
msgctxt ""
@@ -31796,15 +31643,6 @@ msgctxt ""
msgid "RTrim (Text As String)"
msgstr "RTrim (Text As String)"
-#. awasf
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"par_id3153381\n"
-"help.text"
-msgid "String"
-msgstr "ខ្សែ​អក្សរ"
-
#. UW5Fx
#: 03120309.xhp
msgctxt ""
@@ -31868,15 +31706,6 @@ msgctxt ""
msgid "UCase (Text As String)"
msgstr "UCase (Text As String)"
-#. 8fcKn
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3146795\n"
-"help.text"
-msgid "String"
-msgstr "ខ្សែ​អក្សរ"
-
#. TgevM
#: 03120310.xhp
msgctxt ""
@@ -31886,24 +31715,6 @@ msgctxt ""
msgid "<emph>Text:</emph> Any string expression that you want to convert."
msgstr "<emph>Text ៖</emph> កន្សោម​ខ្សែ​អក្សរ​ណា​មួយ ដែល​អ្នក​ចង់​បម្លែង ។"
-#. MmcFn
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3149204\n"
-"help.text"
-msgid "Print LCase(sVar) ' returns \"las vegas\""
-msgstr "Print LCase(sVar) REM returns \"las vegas\""
-
-#. dNrts
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3156280\n"
-"help.text"
-msgid "Print UCase(sVar) ' returns \"LAS VEGAS\""
-msgstr "Print UCase(sVar) REM returns \"LAS VEGAS\""
-
#. 9APfU
#: 03120311.xhp
msgctxt ""
@@ -31949,15 +31760,6 @@ msgctxt ""
msgid "Trim( Text As String )"
msgstr "Trim( Text As String )"
-#. f9pGG
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"par_id3143228\n"
-"help.text"
-msgid "String"
-msgstr "ខ្សែ​អក្សរ"
-
#. kLdYS
#: 03120311.xhp
msgctxt ""
@@ -32012,32 +31814,14 @@ msgctxt ""
msgid "ConvertToURL(filename)"
msgstr "ConvertToURL(filename)"
-#. V6WhB
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3147530\n"
-"help.text"
-msgid "String"
-msgstr "ខ្សែ​អក្សរ"
-
-#. Dka3U
+#. ycPs6
#: 03120312.xhp
msgctxt ""
"03120312.xhp\n"
"par_id3148947\n"
"help.text"
-msgid "<emph>Filename:</emph> A file name as string."
-msgstr "<emph>Filename ៖</emph> ឈ្មោះ​ឯកសារ​ជា​ខ្សែ​អក្សរ ។"
-
-#. AHBLc
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3150792\n"
-"help.text"
-msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
-msgstr "systemFile$ = \"c:\\folder\\mytext.txt\""
+msgid "<emph>filename:</emph> A file name as string."
+msgstr ""
#. Fgfbo
#: 03120313.xhp
@@ -32084,23 +31868,14 @@ msgctxt ""
msgid "ConvertFromURL(filename)"
msgstr "ConvertFromURL(filename)"
-#. ESx7C
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3150669\n"
-"help.text"
-msgid "String"
-msgstr "ខ្សែ​អក្សរ"
-
-#. 8R25b
+#. HRYNv
#: 03120313.xhp
msgctxt ""
"03120313.xhp\n"
"par_id3156023\n"
"help.text"
-msgid "<emph>Filename:</emph> A file name as a string."
-msgstr "<emph>Filename ៖</emph> ឈ្មោះ​ឯកសារ​ជា​ខ្សែ​អក្សរ​មួយ​ ។"
+msgid "<emph>filename:</emph> A file name as a string."
+msgstr ""
#. b5PSp
#: 03120314.xhp
@@ -32228,15 +32003,6 @@ msgctxt ""
msgid "Join (Text As String Array, delimiter)"
msgstr "Join (Text As String Array, delimiter)"
-#. Sx96w
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"par_id3150359\n"
-"help.text"
-msgid "String"
-msgstr "ខ្សែ​អក្សរ"
-
#. sEXB3
#: 03120315.xhp
msgctxt ""
@@ -32354,15 +32120,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. g3ECS
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3149763\n"
-"help.text"
-msgid "Integer"
-msgstr "ចំនួន​គត់"
-
#. AHBXf
#: 03120401.xhp
msgctxt ""
@@ -32426,24 +32183,6 @@ msgctxt ""
msgid "Example:"
msgstr "ឧទាហរណ៍ ៖"
-#. 6BbAy
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3144760\n"
-"help.text"
-msgid "sInput = \"Office\""
-msgstr "sInput = \"Office\""
-
-#. 97MNg
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3154125\n"
-"help.text"
-msgid "iPos = Instr(sInput,\"c\")"
-msgstr "iPos = Instr(sInput,\"c\")"
-
#. ZG3QS
#: 03120402.xhp
msgctxt ""
@@ -32507,15 +32246,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. t6pbk
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"par_id3143270\n"
-"help.text"
-msgid "Long"
-msgstr "Long"
-
#. FyaMN
#: 03120402.xhp
msgctxt ""
@@ -32543,15 +32273,6 @@ msgctxt ""
msgid "Example:"
msgstr "ឧទាហរណ៍ ៖"
-#. PDnri
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"par_id3156214\n"
-"help.text"
-msgid "MsgBox Len(sText) REM Returns 9"
-msgstr "MsgBox Len(sText) REM Returns 9"
-
#. pCc2y
#: 03120403.xhp
msgctxt ""
@@ -32615,15 +32336,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. PhXU3
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3156152\n"
-"help.text"
-msgid "Integer"
-msgstr "ចំនួន​គត់"
-
#. swgoh
#: 03120403.xhp
msgctxt ""
@@ -32759,15 +32471,6 @@ msgctxt ""
msgid "InStrRev (Text1 As String, Text2 As String [,Start As Long] [, Compare As Integer])"
msgstr ""
-#. Mirn4
-#: 03120411.xhp
-msgctxt ""
-"03120411.xhp\n"
-"par_id3149763\n"
-"help.text"
-msgid "Long"
-msgstr ""
-
#. aUMEF
#: 03120411.xhp
msgctxt ""
@@ -32831,42 +32534,24 @@ msgctxt ""
msgid "To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted."
msgstr ""
-#. yABaM
-#: 03120411.xhp
-msgctxt ""
-"03120411.xhp\n"
-"par_id3144760\n"
-"help.text"
-msgid "sInput = \"The book is on the table\""
-msgstr ""
-
-#. z9KNH
+#. GExuT
#: 03120411.xhp
msgctxt ""
"03120411.xhp\n"
-"par_id3154125\n"
+"par_id31541255547\n"
"help.text"
msgid "iPos = InStrRev(sInput,\"the\",10,1) ' Returns 1, search is case-insensitive"
msgstr ""
-#. caoEj
+#. Yxhru
#: 03120411.xhp
msgctxt ""
"03120411.xhp\n"
-"par_id051920170322141162\n"
+"par_id05192017032\n"
"help.text"
msgid "iPos = InStrRev(sInput,\"the\",10,0) ' Returns 0, search is case-sensitive"
msgstr ""
-#. HSqzK
-#: 03120411.xhp
-msgctxt ""
-"03120411.xhp\n"
-"par_id051920170316395065\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120401.xhp\">InStr</link>"
-msgstr ""
-
#. YWCD7
#: 03120412.xhp
msgctxt ""
@@ -32912,15 +32597,6 @@ msgctxt ""
msgid "StrReverse (Text1 As String)"
msgstr ""
-#. 2YT7g
-#: 03120412.xhp
-msgctxt ""
-"03120412.xhp\n"
-"par_id3149763\n"
-"help.text"
-msgid "String"
-msgstr ""
-
#. x74Dw
#: 03120412.xhp
msgctxt ""
@@ -33416,15 +33092,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. 2Yv2V
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"par_id3149762\n"
-"help.text"
-msgid "Long"
-msgstr "Long"
-
#. FmsU2
#: 03130700.xhp
msgctxt ""
@@ -33515,15 +33182,6 @@ msgctxt ""
msgid "Return value:"
msgstr "តម្លៃ​ត្រឡប់ ៖"
-#. 4DpFE
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"par_id3148473\n"
-"help.text"
-msgid "String"
-msgstr "ខ្សែ​អក្សរ"
-
#. 5aaU3
#: 03130800.xhp
msgctxt ""
@@ -34100,15 +33758,6 @@ msgctxt ""
msgid "' display \"live\" dialog"
msgstr "' display \"live\" dialog"
-#. GkzVk
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"tit\n"
-"help.text"
-msgid "GlobalScope"
-msgstr ""
-
#. Rdvas
#: 03131900.xhp
msgctxt ""
@@ -34127,13 +33776,13 @@ msgctxt ""
msgid "<variable id=\"GlobalScope_h1\"><link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">GlobalScope specifier</link></variable>"
msgstr ""
-#. BKWJA
+#. Bp3q2
#: 03131900.xhp
msgctxt ""
"03131900.xhp\n"
"par_id991572457387308\n"
"help.text"
-msgid "To manage personal or shared library containers (<emph>%PRODUCTNAME Macros</emph> or <emph>My Macros</emph>) from within a document, use the <literal>GlobalScope</literal> specifier."
+msgid "To manage personal or shared library containers (<emph>Application Macros</emph> or <emph>My Macros</emph>) from within a document, use the <literal>GlobalScope</literal> specifier."
msgstr ""
#. Jz8ET
@@ -34181,13 +33830,13 @@ msgctxt ""
msgid "Dialog libraries and dialogs can be managed with the <literal>DialogLibraries</literal> object. <link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog\">Opening a Dialog With Basic</link> illustrates how to display %PRODUCTNAME shared dialogs."
msgstr ""
-#. eBUEF
+#. XUR24
#: 03131900.xhp
msgctxt ""
"03131900.xhp\n"
"par_id3150543\n"
"help.text"
-msgid "<literal>BasicLibraries</literal> and <literal>DialogLibraries</literal> containers exist at application level and within every document. Document's library containers do not need the <literal>GlobalScope</literal> specifier to be managed. If you want to call a global library container (located in <emph>%PRODUCTNAME Macros</emph> or <emph>My Macros</emph>) from within a document, you must use the <literal>GlobalScope</literal> specifier."
+msgid "<literal>BasicLibraries</literal> and <literal>DialogLibraries</literal> containers exist at application level and within every document. Document's library containers do not need the <literal>GlobalScope</literal> specifier to be managed. If you want to call a global library container (located in <emph>Application Macros</emph> or <emph>My Macros</emph>) from within a document, you must use the <literal>GlobalScope</literal> specifier."
msgstr ""
#. BDRji
@@ -34343,15 +33992,6 @@ msgctxt ""
msgid "In this example, the Listener-Interface uses the following methods:"
msgstr "ក្នុង​ឧទាហរណ៍​​នេះ ផ្ទៃ​ប្រទាក់ Listener ប្រើ​វិធីសាស្ត្រ​ដូច​ខាង​ក្រោម ៖"
-#. miuA2
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3151176\n"
-"help.text"
-msgid "disposing:"
-msgstr "disposing:"
-
#. yK2Er
#: 03132000.xhp
msgctxt ""
@@ -34361,15 +34001,6 @@ msgctxt ""
msgid "Listener base interface (com.sun.star.lang.XEventListener): base interface for all Listener Interfaces"
msgstr "ចំណុច​ប្រទាក់​មូលដ្ឋាន Listener (com.sun.star.lang.XEventListener) ៖ ចំណុច​ប្រទាក់​មូលដ្ឋាន​សម្រាប់​ចំណុច​ប្រទាក់ Listener ទាំងអស់ ។"
-#. 2HzDU
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3156212\n"
-"help.text"
-msgid "elementInserted:"
-msgstr "elementInserted:"
-
#. MrmiF
#: 03132000.xhp
msgctxt ""
@@ -34379,15 +34010,6 @@ msgctxt ""
msgid "Method of the com.sun.star.container.XContainerListener interface"
msgstr "វិធីសាស្ត្រ​នៃ​ចំណុច​​ប្រទាក់ com.sun.star.container.XContainerListener"
-#. TjuCT
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3147287\n"
-"help.text"
-msgid "elementRemoved:"
-msgstr "elementRemoved:"
-
#. RDU7w
#: 03132000.xhp
msgctxt ""
@@ -34397,15 +34019,6 @@ msgctxt ""
msgid "Method of the com.sun.star.container.XContainerListener interface"
msgstr "វិធីសាស្ត្រ​នៃ​ចំណុច​​ប្រទាក់ com.sun.star.container.XContainerListener"
-#. tkbYn
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3153951\n"
-"help.text"
-msgid "elementReplaced:"
-msgstr "elementReplaced:"
-
#. SusGE
#: 03132000.xhp
msgctxt ""
@@ -34424,42 +34037,6 @@ msgctxt ""
msgid "In this example, the prefix is ContListener_. The following subroutines must therefore be implemented in Basic:"
msgstr "ក្នុង​ឧទាហរណ៍​នេះ បុព្វបទ​គឺ ContListener_ ។ ដូច្នេះ​ទម្រង់​ការ​រង​ដូច​ខាង​ក្រោម ត្រូវ​តែ​ប្រតិបត្តិ​ក្នុង Basic ៖"
-#. SGZEE
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3155411\n"
-"help.text"
-msgid "ContListener_disposing"
-msgstr "ContListener_disposing"
-
-#. 6mUaL
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3146923\n"
-"help.text"
-msgid "ContListener_elementInserted"
-msgstr "ContListener_elementInserted"
-
-#. qpmso
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3147318\n"
-"help.text"
-msgid "ContListener_elementRemoved"
-msgstr "ContListener_elementRemoved"
-
-#. nSKDC
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3152578\n"
-"help.text"
-msgid "ContListener_elementReplaced"
-msgstr "ContListener_elementReplaced"
-
#. DkGAT
#: 03132000.xhp
msgctxt ""
@@ -34469,42 +34046,6 @@ msgctxt ""
msgid "An event structure type that contains information about an event exists for every Listener type. When a Listener method is called, an instance of this event is passed to the method as a parameter. Basic Listener methods can also call these event objects, so long as the appropriate parameter is passed in the Sub declaration. For example:"
msgstr "ប្រភេទ​​រចនា​សម្ព័ន្ធ​ព្រឹត្តិការណ៍​មួយ ដែល​មាន​ព័ត៌មាន​អំពី​ព្រឹត្តិការណ៍​មួយ ដែល​​មាន​ស្រាប់​សម្រាប់​គ្រប់​ប្រភេទ Listener ។ នៅ​ពេល​វិធីសាស្ត្រ Listener មួយ​ត្រូវ​បាន​ហៅ វត្ថុ​មួយ​នៃ​ព្រឹត្តិការណ៍​នេះ នឹង​ត្រូវ​បាន​ហុច​ទៅ​វិធីសាស្ត្រ​ជា​ប៉ារ៉ាម៉ែត្រ​មួយ ។ វិធីសាស្ត្រ Listener របស់ Basic ក៏​អាច​ហៅ​វត្ថុ​ព្រឹត្តិការណ៍​ទាំង​នេះ ឲ្យ​តែ​ប៉ារ៉ាម៉ែត្រ​ដែល​សមស្រប​ត្រូវ​បាន​ហុច​ក្នុង​ការ​ប្រកាស Sub ។ ឧទាហរណ៍ ៖"
-#. 2KgyV
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3153876\n"
-"help.text"
-msgid "MsgBox \"disposing\""
-msgstr "MsgBox \"disposing\""
-
-#. VexRZ
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3154098\n"
-"help.text"
-msgid "MsgBox \"elementInserted\""
-msgstr "MsgBox \"elementInserted\""
-
-#. nDpha
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3153947\n"
-"help.text"
-msgid "MsgBox \"elementRemoved\""
-msgstr "MsgBox \"elementRemoved\""
-
-#. LAA8q
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3148915\n"
-"help.text"
-msgid "MsgBox \"elementReplaced\""
-msgstr "MsgBox \"elementReplaced\""
-
#. LEsCM
#: 03132000.xhp
msgctxt ""
@@ -38429,13 +37970,13 @@ msgctxt ""
msgid "' Always use the function name in English"
msgstr ""
-#. x87Fg
+#. TDuCT
#: calc_functions.xhp
msgctxt ""
"calc_functions.xhp\n"
"par_id241629988142878\n"
"help.text"
-msgid "The macro below presents an example of how the <literal>MyVlook</literal> function can be called. If first creates a 5-by-2 data array and then calls the function <literal>MyVlook</literal> and shows the returned value using <literal>MsgBox</literal>."
+msgid "The macro below presents an example of how the <literal>MyVlook</literal> function can be called. It first creates a 5-by-2 data array and then calls the function <literal>MyVlook</literal> and shows the returned value using <literal>MsgBox</literal>."
msgstr ""
#. XincG
@@ -38564,13 +38105,13 @@ msgctxt ""
msgid "Calling Add-In Calc Functions in BASIC"
msgstr ""
-#. ufZSW
+#. q7CYD
#: calc_functions.xhp
msgctxt ""
"calc_functions.xhp\n"
"par_id261592359338681\n"
"help.text"
-msgid "The Calc Add-In functions are in service <literal>com.sun.star.sheet.addin.Analysis</literal>."
+msgid "The Calc Add-In functions are in the UNO services <link href=\"text/sbasic/shared/calc_functions.xhp#analysis\" name=\"analysis\"><literal>com.sun.star.sheet.addin.Analysis</literal></link>, <link href=\"text/sbasic/shared/calc_functions.xhp#dates\" name=\"dates\"><literal>com.sun.star.sheet.addin.DateFunctions</literal></link> and <link href=\"text/sbasic/shared/calc_functions.xhp#pricing\" name=\"pricing\"><literal>com.sun.star.sheet.addin.PricingFunctions</literal></link>."
msgstr ""
#. 94wim
@@ -38636,22 +38177,40 @@ msgctxt ""
msgid "REM Cell A1 displays the localized function name"
msgstr ""
-#. mYEEy
+#. gtxdC
#: calc_functions.xhp
msgctxt ""
"calc_functions.xhp\n"
"hd_id661632676716180\n"
"help.text"
-msgid "Add-In Functions UNO service Names"
+msgid "UNO Service Names for Analysis Add-In Functions"
msgstr ""
-#. PsFhU
+#. SBEpf
#: calc_functions.xhp
msgctxt ""
"calc_functions.xhp\n"
"par_id651629988674793\n"
"help.text"
-msgid "The table below presents a list of all Calc Add-In functions and their respective UNO service names."
+msgid "The table below presents a list of all Calc Analysis Add-In functions and their respective UNO service names."
+msgstr ""
+
+#. 2NxGD
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id511592356505781\n"
+"help.text"
+msgid "Calc Function name"
+msgstr ""
+
+#. b2FSD
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id471592356505782\n"
+"help.text"
+msgid "UNO service name"
msgstr ""
#. emGWD
@@ -39563,22 +39122,265 @@ msgctxt ""
msgid "YIELDMAT"
msgstr ""
-#. MqMrx
-#: classmodule.xhp
+#. 9EfRH
+#: calc_functions.xhp
msgctxt ""
-"classmodule.xhp\n"
-"tit\n"
+"calc_functions.xhp\n"
+"hd_id661632676736180\n"
"help.text"
-msgid "Option ClassModule"
+msgid "UNO Service Names for Date Add-In Functions"
msgstr ""
-#. HFQ4r
-#: classmodule.xhp
+#. QMryg
+#: calc_functions.xhp
msgctxt ""
-"classmodule.xhp\n"
-"N0082\n"
+"calc_functions.xhp\n"
+"par_id751629988674793\n"
"help.text"
-msgid "<bookmark_value>Option ClassModule</bookmark_value>"
+msgid "The table below presents a list of all Calc Date Add-In functions and their respective UNO service names."
+msgstr ""
+
+#. dcQK3
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id511593356505781\n"
+"help.text"
+msgid "Calc Function name"
+msgstr ""
+
+#. TEzJG
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id471593356505782\n"
+"help.text"
+msgid "UNO service name"
+msgstr ""
+
+#. J6Jdh
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id721593355432992\n"
+"help.text"
+msgid "DAYSINMONTH"
+msgstr ""
+
+#. yW5C5
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id761641413741892\n"
+"help.text"
+msgid "DAYSINYEAR"
+msgstr ""
+
+#. 377AZ
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id361641413741893\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.DateFunctions.getDaysInMonth"
+msgstr ""
+
+#. vXhZ9
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id11641413916930\n"
+"help.text"
+msgid "MONTHS"
+msgstr ""
+
+#. ug6Q2
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id261641413916931\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.DateFunctions.getDiffMonths"
+msgstr ""
+
+#. gWTY8
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id761641413962003\n"
+"help.text"
+msgid "WEEKS"
+msgstr ""
+
+#. EEsD8
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id811641413962004\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.DateFunctions.getDiffWeeks"
+msgstr ""
+
+#. DjCEK
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id71641413988924\n"
+"help.text"
+msgid "YEARS"
+msgstr ""
+
+#. 2bFJG
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id401641413988926\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.DateFunctions.getDiffYears"
+msgstr ""
+
+#. bNKK9
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id341641414018758\n"
+"help.text"
+msgid "ROT13"
+msgstr ""
+
+#. XPK2a
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id831641414018760\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.DateFunctions.getRot13"
+msgstr ""
+
+#. A7nYJ
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id171641414040589\n"
+"help.text"
+msgid "WEEKSINYEAR"
+msgstr ""
+
+#. sQKRo
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id391641414040590\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.DateFunctions.getWeeksInYear"
+msgstr ""
+
+#. qqkuj
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"hd_id661632676732180\n"
+"help.text"
+msgid "UNO Service Names for Pricing Add-In Functions"
+msgstr ""
+
+#. ErZSq
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id751629983674793\n"
+"help.text"
+msgid "The table below presents a list of all Calc Pricing Add-In functions and their respective UNO service names."
+msgstr ""
+
+#. mwzeA
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id511593356506781\n"
+"help.text"
+msgid "Calc Function name"
+msgstr ""
+
+#. TRZn5
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id471593356505762\n"
+"help.text"
+msgid "UNO service name"
+msgstr ""
+
+#. rQJPp
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id701641414383401\n"
+"help.text"
+msgid "OPT_BARRIER"
+msgstr ""
+
+#. F3AGd
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id761641414383403\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.PrincingFunctions.getOptBarrier"
+msgstr ""
+
+#. zF653
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id131641414493411\n"
+"help.text"
+msgid "OPT_PROB_HIT"
+msgstr ""
+
+#. NCqSi
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id191641414493413\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.PrincingFunctions.getOptProbHit"
+msgstr ""
+
+#. 2xAys
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id81641414542294\n"
+"help.text"
+msgid "OPT_PROB_INMONEY"
+msgstr ""
+
+#. GwG8J
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id861641414542296\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.PrincingFunctions.getOptProbInMoney"
+msgstr ""
+
+#. WKVoC
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id711641414594816\n"
+"help.text"
+msgid "OPT_TOUCH"
+msgstr ""
+
+#. kRZEk
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id561641414594817\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.PrincingFunctions.getOptTouch"
msgstr ""
#. WS3B9
@@ -39608,15 +39410,6 @@ msgctxt ""
msgid "This statement must be used jointly with <literal>Option Compatible</literal> statement or <literal>Option VBASupport 1</literal>, the former is enabling VBA compatibility mode, while the latter is enforcing VBA support on top of compatibility."
msgstr ""
-#. dmcDt
-#: classmodule.xhp
-msgctxt ""
-"classmodule.xhp\n"
-"N0086\n"
-"help.text"
-msgid "Option ClassModule"
-msgstr ""
-
#. UoERn
#: classmodule.xhp
msgctxt ""
@@ -39698,15 +39491,6 @@ msgctxt ""
msgid "Multiple thorough class examples are available from <link href=\"text/sbasic/guide/access2base.xhp\">Access2Base shared Basic library</link>."
msgstr ""
-#. Z2Mg6
-#: code-stubs.xhp
-msgctxt ""
-"code-stubs.xhp\n"
-"tit\n"
-"help.text"
-msgid "BasicCodeStubs"
-msgstr ""
-
#. vSapF
#: collection.xhp
msgctxt ""
@@ -40076,13 +39860,13 @@ msgctxt ""
msgid "<variable id=\"compatibilitymodeh1\"><link href=\"text/sbasic/shared/compatibilitymode.xhp\" name=\"CompatibilityMode\">CompatibilityMode() Function</link></variable>"
msgstr ""
-#. KwAAR
+#. ipFPG
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
"N0120\n"
"help.text"
-msgid "<literal>CompatibilityMode()</literal> function is controlling runtime mode and affects all code executed after setting or resetting the mode."
+msgid "<literal>CompatibilityMode()</literal> function controls runtime mode and affects all code executed after setting or resetting the mode."
msgstr ""
#. YSokk
@@ -40139,6 +39923,15 @@ msgctxt ""
msgid "Changing behavior of Basic <literal>Dir</literal> command. The directory flag (16) for the <literal>Dir</literal> command means that only directories are returned in %PRODUCTNAME Basic, while in VBA normal files and directories are returned."
msgstr ""
+#. DMpTx
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"par_id901639929393688\n"
+"help.text"
+msgid "Color components calculation with the <link href=\"text/sbasic/shared/03010303.xhp\" name=\"linkred\"><literal>Red</literal></link> and <link href=\"text/sbasic/shared/03010301.xhp\" name=\"linkblue\"><literal>Blue</literal></link> functions which <emph>are interchanged</emph> (The <link href=\"text/sbasic/shared/03010302.xhp\" name=\"linkgreen\"><literal>Green</literal></link> function is not affected)."
+msgstr ""
+
#. piCTC
#: compatibilitymode.xhp
msgctxt ""
@@ -40202,22 +39995,13 @@ msgctxt ""
msgid "Variables scope modification in <link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link> with <literal>CompatibilityMode()</literal> function."
msgstr ""
-#. 8pEXC
-#: compatible.xhp
-msgctxt ""
-"compatible.xhp\n"
-"tit\n"
-"help.text"
-msgid "Option Compatible"
-msgstr ""
-
-#. NVDrC
+#. YwBF4
#: compatible.xhp
msgctxt ""
"compatible.xhp\n"
"N0103\n"
"help.text"
-msgid "<bookmark_value>Option Compatible</bookmark_value> <bookmark_value>VBA compatibility option</bookmark_value>"
+msgid "<bookmark_value>VBA compatibility option</bookmark_value>"
msgstr ""
#. imVdb
diff --git a/source/km/helpcontent2/source/text/sbasic/shared/03.po b/source/km/helpcontent2/source/text/sbasic/shared/03.po
index 80d37b5b6d9..5b15abe1483 100644
--- a/source/km/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/km/helpcontent2/source/text/sbasic/shared/03.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-20 13:20+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-07-12 14:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1078,13 +1078,13 @@ msgctxt ""
msgid "<variable id=\"ArrayService\"><link href=\"text/sbasic/shared/03/sf_array.xhp\" name=\"ScriptForge.Array Service\"><literal>ScriptForge</literal>.<literal>Array</literal> service</link></variable>"
msgstr ""
-#. SyLSL
+#. jMjFA
#: sf_array.xhp
msgctxt ""
"sf_array.xhp\n"
"par_id991582454416549\n"
"help.text"
-msgid "Provides a collection of methods for manipulating and transforming arrays of one dimension (vectors) and arrays of two dimensions (matrices). This includes set operations, sorting, importing to and exporting from text files."
+msgid "Provides a collection of methods for manipulating and transforming arrays of one dimension (vectors) and arrays of two dimensions (matrices). This includes set operations, sorting, importing from and exporting to text files."
msgstr ""
#. WjgHr
@@ -1708,6 +1708,33 @@ msgctxt ""
msgid "Consider the CSV file \"myFile.csv\" with the following contents:"
msgstr ""
+#. T6E8L
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id281626980354105\n"
+"help.text"
+msgid "<input>Name,DateOfBirth,Address,City</input>"
+msgstr ""
+
+#. FRZKB
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id301626980648833\n"
+"help.text"
+msgid "<input>Anna,2002/03/31,\"Rue de l'église, 21\",Toulouse</input>"
+msgstr ""
+
+#. g2r8f
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id881626980658900\n"
+"help.text"
+msgid "<input>Fred,1998/05/04,\"Rue Albert Einstein, 113A\",Carcassonne</input>"
+msgstr ""
+
#. xNCNA
#: sf_array.xhp
msgctxt ""
@@ -1717,6 +1744,78 @@ msgctxt ""
msgid "The examples below in Basic and Python read the contents of the CSV file into an <literal>Array</literal> object."
msgstr ""
+#. F4yYB
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id531585561482408\n"
+"help.text"
+msgid "arr = SF_Array.ImportFromCSVFile(\"C:\\Temp\\myFile.csv\", DateFormat := \"YYYY/MM/DD\")"
+msgstr ""
+
+#. wyEqv
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id621585561482783\n"
+"help.text"
+msgid "MsgBox arr(0, 3) ' City"
+msgstr ""
+
+#. tDMNL
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id21585564425349\n"
+"help.text"
+msgid "MsgBox arr(1, 2) ' Rue de l'église, 21"
+msgstr ""
+
+#. SBfVW
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id831585564433851\n"
+"help.text"
+msgid "MsgBox arr(1, 3) ' Toulouse"
+msgstr ""
+
+#. DpxfS
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"pyc_id511626979992999\n"
+"help.text"
+msgid "arr = svc.ImportFromCSVFile(r\"C:\\Temp\\myFile.csv\", dateformat = \"YYYY/MM/DD\")"
+msgstr ""
+
+#. asqiD
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"pyc_id211626979993191\n"
+"help.text"
+msgid "bas.MsgBox(arr[0][3]) # City"
+msgstr ""
+
+#. 2gFXA
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"pyc_id671626979993408\n"
+"help.text"
+msgid "bas.MsgBox(arr[1][2]) # Rue de l'église, 21"
+msgstr ""
+
+#. kYfmG
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"pyc_id481626979993648\n"
+"help.text"
+msgid "bas.MsgBox(arr[1][3]) # Toulouse"
+msgstr ""
+
#. xCx7D
#: sf_array.xhp
msgctxt ""
@@ -2644,13 +2743,13 @@ msgctxt ""
msgid "' ... Run queries, SQL statements, ..."
msgstr ""
-#. DA8ob
+#. eRmFK
#: sf_base.xhp
msgctxt ""
"sf_base.xhp\n"
"pyc_id351623104861223\n"
"help.text"
-msgid "' ... Run queries, SQL statements, ..."
+msgid "# ... Run queries, SQL statements, ..."
msgstr ""
#. mBphD
@@ -4786,13 +4885,13 @@ msgctxt ""
msgid "If only <literal>sheetname</literal> is specified, an zero-based array of strings containing the names of all charts is returned."
msgstr ""
-#. pGvVW
+#. CLbLn
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id371635438509045\n"
"help.text"
-msgid "If a <literal>chartname</literal> is provided, than a single object corresponding to the desired chart is returned. The specified chart must exist."
+msgid "If a <literal>chartname</literal> is provided, then a single object corresponding to the desired chart is returned. The specified chart must exist."
msgstr ""
#. T2e3d
@@ -5587,13 +5686,13 @@ msgctxt ""
msgid "The language is English/US, which implies that the decimal separator is \".\" and the thousands separator is \",\"."
msgstr ""
-#. TX82d
+#. tDYGo
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id531611757154931\n"
"help.text"
-msgid "To learn more about the CSV Filter Options, refer to the <link href=\"https://wiki.openoffice.org/wiki/Documentation/DevGuide/Spreadsheets/Filter_Options#Filter_Options_for_the_CSV_Filter\" name=\"Filter Options\">Filter Options Wiki page</link>."
+msgid "To learn more about the CSV Filter Options, refer to the <link href=\"text/shared/guide/csv_params.xhp\" name=\"CSV Filter Options\">CSV Filter Options help page</link>."
msgstr ""
#. vPPYx
@@ -6460,13 +6559,13 @@ msgctxt ""
msgid "Moves a given range of cells downwards by inserting empty rows. The current selection is not affected."
msgstr ""
-#. VTxxB
+#. 5qm5w
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id801637929435655\n"
"help.text"
-msgid "Depending on the value of the <literal>wholerows</literal> argument the inserted rows can either span the width of the specified range or span all columns in the row."
+msgid "Depending on the value of the <literal>wholerow</literal> argument the inserted rows can either span the width of the specified range or span all columns in the row."
msgstr ""
#. uvH4j
@@ -6559,13 +6658,13 @@ msgctxt ""
msgid "Deletes the leftmost columns of a given range and moves to the left all cells to the right of the affected range. The current selection is not affected."
msgstr ""
-#. iawBn
+#. EzzWo
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id801637929460261\n"
"help.text"
-msgid "Depending on the value of the <literal>wholecolumns</literal> argument the deleted columns can either span the height of the specified range or span all rows in the column."
+msgid "Depending on the value of the <literal>wholecolumn</literal> argument the deleted columns can either span the height of the specified range or span all rows in the column."
msgstr ""
#. BXEkG
@@ -6640,13 +6739,13 @@ msgctxt ""
msgid "Deletes the topmost rows of a given range and moves upwards all cells below the affected range. The current selection is not affected."
msgstr ""
-#. kb5h3
+#. zkYo7
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id801637929435361\n"
"help.text"
-msgid "Depending on the value of the <literal>wholerows</literal> argument the deleted rows can either span the width of the specified range or span all columns in the row."
+msgid "Depending on the value of the <literal>wholerow</literal> argument the deleted rows can either span the width of the specified range or span all columns in the row."
msgstr ""
#. s9Nfb
@@ -6721,13 +6820,13 @@ msgctxt ""
msgid "Moves a given range of cells to the right by inserting empty columns. The current selection is not affected."
msgstr ""
-#. RxvcF
+#. CDi3E
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id801637929335255\n"
"help.text"
-msgid "Depending on the value of the <literal>wholecolumns</literal> argument the inserted columns can either span the height of the specified range or span all rows in the column."
+msgid "Depending on the value of the <literal>wholecolumn</literal> argument the inserted columns can either span the height of the specified range or span all rows in the column."
msgstr ""
#. Fh33o
@@ -6883,22 +6982,22 @@ msgctxt ""
msgid "'Sort range based on columns A (ascending) and C (descending)"
msgstr ""
-#. rGNeZ
+#. HyPhE
#: sf_chart.xhp
msgctxt ""
"sf_chart.xhp\n"
"tit\n"
"help.text"
-msgid "ScriptForge.Chart service"
+msgid "SFDocuments.Chart service"
msgstr ""
-#. UFBLD
+#. bv49k
#: sf_chart.xhp
msgctxt ""
"sf_chart.xhp\n"
"bm_id681600788076499\n"
"help.text"
-msgid "<variable id=\"ChartService\"><link href=\"text/sbasic/shared/03/sf_chart.xhp\" name=\"Chart service\"><literal>ScriptForge</literal>.<literal>Chart</literal> service</link></variable>"
+msgid "<variable id=\"ChartService\"><link href=\"text/sbasic/shared/03/sf_chart.xhp\" name=\"Chart service\"><literal>SFDocuments</literal>.<literal>Chart</literal> service</link></variable>"
msgstr ""
#. nPHDK
@@ -10843,13 +10942,13 @@ msgctxt ""
msgid "<emph>alignments</emph>: Defines the alignment in each column as a string in which each character can be \"L\" (Left), \"C\" (Center), \"R\" (Right) or \" \" (whitespace, default, meaning left for strings and right for numeric values). If the length of the string is shorter than the number of columns in the table, then the last character in the string is used to define the alignment of the remaining columns."
msgstr ""
-#. FCNEg
+#. CK6RC
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id381638569172413\n"
"help.text"
-msgid "The following example assumes that the dialog <literal>myDialog</literal> has a <literal>TableControl</literal> named <literal>Grid1</literal> with \"Show header row\" and \"Show column row\" properties set to \"Yes\"."
+msgid "The following example assumes that the dialog <literal>myDialog</literal> has a <literal>TableControl</literal> named <literal>Grid1</literal> with \"Show row header\" and \"Show column header\" properties set to \"Yes\"."
msgstr ""
#. N9Byz
@@ -10879,15 +10978,6 @@ msgctxt ""
msgid "MsgBox \"Row \" & oTable.ListIndex & \" is selected.\""
msgstr ""
-#. yyATt
-#: sf_dialogcontrol.xhp
-msgctxt ""
-"sf_dialogcontrol.xhp\n"
-"pyc_id111638569958471\n"
-"help.text"
-msgid "dlg = CreateScriptService(\"Dialog\", \"GlobalScope\", \"Standard\", \"myDialog\")"
-msgstr ""
-
#. HNmmm
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -11347,13 +11437,13 @@ msgctxt ""
msgid "Note in the example below that a Python dictionary needs to be passed as the second argument of the <literal>CreateScriptService</literal> method."
msgstr ""
-#. wTUQt
+#. oZEpN
#: sf_dictionary.xhp
msgctxt ""
"sf_dictionary.xhp\n"
"par_id421610393306916\n"
"help.text"
-msgid "Many services and methods in the UNO library take in parameters represented using the <literal>PropertyValue</literal> struct, which is part of the LibreOffice API."
+msgid "Many services and methods in the UNO library take in parameters represented using the <literal>PropertyValue</literal> struct, which is part of the %PRODUCTNAME API."
msgstr ""
#. 3afLF
@@ -11455,13 +11545,13 @@ msgctxt ""
msgid "Inserts the contents of an array of <literal>PropertyValue</literal> objects into the current dictionary. <literal>PropertyValue</literal> Names are used as Keys in the dictionary, whereas Values contain the corresponding values. Returns <literal>True</literal> if successful."
msgstr ""
-#. 95A5W
+#. BQybf
#: sf_dictionary.xhp
msgctxt ""
"sf_dictionary.xhp\n"
"par_id751588941968522\n"
"help.text"
-msgid "<emph>propertyvalues</emph>: A zero-based 1-dimensional array containing <literal>com.sun.star.beans.PropertyValue</literal> objects. This parameter may also be a single <literal>propertyvalue</literal> object not contained in an Array."
+msgid "<emph>propertyvalues</emph>: A zero-based 1-dimensional array containing <literal>com.sun.star.beans.PropertyValue</literal> objects. This parameter may also be a single <literal>PropertyValue</literal> object not contained in an Array."
msgstr ""
#. g5bHm
@@ -11491,13 +11581,13 @@ msgctxt ""
msgid "Retrieves an existing dictionary entry based on its key. Returns the value of the item if successful, otherwise returns <literal>Empty</literal>."
msgstr ""
-#. CGLFi
+#. MV7Wq
#: sf_dictionary.xhp
msgctxt ""
"sf_dictionary.xhp\n"
"par_id551582890399669\n"
"help.text"
-msgid "<emph>key</emph>: Not case-sensitive. Must exist in the dictionary, otherwise an <literal>UNKNOWNKEYERROR</literal> error is raised."
+msgid "<emph>key</emph>: Not case-sensitive. If it does not exist, <literal>Empty</literal> value is returned."
msgstr ""
#. rGqyT
@@ -12085,6 +12175,105 @@ msgctxt ""
msgid "<emph>saveask</emph> : If <literal>True</literal> (default), the user is invited to confirm if the changes should be written on disk. This argument is ignored if the document was not modified."
msgstr ""
+#. RhAbC
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id651589200121080\n"
+"help.text"
+msgid "Creates a new menu entry in the menubar of a given document window."
+msgstr ""
+
+#. A7owo
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id981611149616155\n"
+"help.text"
+msgid "This method returns an instance of the <link href=\"text/sbasic/shared/03/sf_menu.xhp\" name=\"Menu_link1\"><input>SFWidgets.Menu</input></link> service."
+msgstr ""
+
+#. GKeq5
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id721643121487974\n"
+"help.text"
+msgid "The menu created is only available during the current %PRODUCTNAME session and is not saved neither in the document nor in the global application settings. Hence closing the document window will make the menu disappear. It will only reappear when the macro that creates the menu is executed again."
+msgstr ""
+
+#. szVYB
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id361589200120316\n"
+"help.text"
+msgid "<emph>menuheader</emph>: The toplevel name of the new menu."
+msgstr ""
+
+#. iCSZE
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id361589200129686\n"
+"help.text"
+msgid "<emph>before</emph>: The name (as a string) or position (as an integer starting at 1) of an existing menu before which the new menu will be placed. If no value is defined for this argument, the menu will be created at the last position in the menubar."
+msgstr ""
+
+#. LX4b9
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id361589200122507\n"
+"help.text"
+msgid "<emph>submenuchar</emph>: The delimiter used to create menu trees when calling methods as <literal>AddItem</literal> from the <literal>Menu</literal> service. The default value is \">\"."
+msgstr ""
+
+#. FhwFZ
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"bas_id751622827903865\n"
+"help.text"
+msgid "Set oMenu = oDoc.CreateMenu(\"My Menu\")"
+msgstr ""
+
+#. iDefE
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"bas_id391643120224507\n"
+"help.text"
+msgid "' Add items to the menu"
+msgstr ""
+
+#. t4cXb
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"bas_id100164312025160\n"
+"help.text"
+msgid "' After creating the menu, the service instance can be disposed of"
+msgstr ""
+
+#. WuNHU
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"pyc_id221622827943208\n"
+"help.text"
+msgid "menu = doc.CreateMenu(\"My Menu\")"
+msgstr ""
+
+#. Jx4RF
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id271643139068194\n"
+"help.text"
+msgid "Refer to the <link href=\"text/sbasic/shared/03/sf_menu.xhp\" name=\"Menu_link2\"><input>SFWidgets.Menu</input></link> help page to learn more about how to create/remove menus in %PRODUCTNAME document windows."
+msgstr ""
+
#. CGKZA
#: sf_document.xhp
msgctxt ""
@@ -12211,6 +12400,60 @@ msgctxt ""
msgid "<emph>copies</emph>: The number of copies. Default is 1."
msgstr ""
+#. VDMiZ
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id651589200165470\n"
+"help.text"
+msgid "Removes a toplevel menu from the menubar of a given document window."
+msgstr ""
+
+#. wfDbr
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id981611149610695\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the specified menu could be removed. If the specified menu does not exist, the method returns <literal>False</literal>."
+msgstr ""
+
+#. eNVDJ
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id571643121106014\n"
+"help.text"
+msgid "This method can be used to remove any menu entry from the document window, including default menus. However, none of these changes in the menubar are saved to the document or to the application settings. To restore the menubar to the default settings, simply close and reopen the document window."
+msgstr ""
+
+#. E6ahL
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id361589200121156\n"
+"help.text"
+msgid "<emph>menuheader</emph>: The toplevel name of the menu to be removed."
+msgstr ""
+
+#. yRoDW
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"bas_id391643120223147\n"
+"help.text"
+msgid "oDoc.RemoveMenu(\"My Menu\")"
+msgstr ""
+
+#. BnmiF
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"pyc_id221622827946338\n"
+"help.text"
+msgid "doc.RemoveMenu(\"My Menu\")"
+msgstr ""
+
#. Nmwv9
#: sf_document.xhp
msgctxt ""
@@ -18925,6 +19168,681 @@ msgctxt ""
msgid "Consider the following code is running on a %PRODUCTNAME installation with locale set to \"es-ES\". Additionally, there is a file \"es-ES.po\" inside the specified folder that translates the string passed to the <literal>GetText</literal> method:"
msgstr ""
+#. yD78g
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFWidgets.Menu service"
+msgstr ""
+
+#. F5KPb
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bm_id681600788076499\n"
+"help.text"
+msgid "<variable id=\"MenuService\"><link href=\"text/sbasic/shared/03/sf_menu.xhp\" name=\"Menu service\"><literal>SFWidgets</literal>.<literal>Menu</literal> service</link></variable>"
+msgstr ""
+
+#. FqGPg
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id181600788076612\n"
+"help.text"
+msgid "The <literal>Menu</literal> service can be used to create and remove menus from the menubar of a %PRODUCTNAME document window. Each menu entry can be associated with a script or with a UNO command. This service provides the following capabilities:"
+msgstr ""
+
+#. UYDdv
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id301600788076785\n"
+"help.text"
+msgid "Creation of menus with custom entries, checkboxes, radio buttons and separators."
+msgstr ""
+
+#. KB9XF
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id1001600788076848\n"
+"help.text"
+msgid "Decoration of menu items with icons and tooltips."
+msgstr ""
+
+#. JSwJW
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id581643133675012\n"
+"help.text"
+msgid "Menus created with this service are available only for a specified document window. They are not saved into the document or as application settings. Closing and opening the document will restore the default menubar settings."
+msgstr ""
+
+#. FEfWE
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id291643224925643\n"
+"help.text"
+msgid "When OLE objects such as Math formulas or Calc charts are edited from within a document, %PRODUCTNAME reconfigures the menubar according to the object. When this happens, the menus created with the <literal>Menu</literal> service are removed and are not be restored after editing the OLE object."
+msgstr ""
+
+#. GftK9
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"hd_id281600788076359\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. DzDmt
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id321614902851541\n"
+"help.text"
+msgid "The <literal>Menu</literal> service is instantiated by calling the <link href=\"text/sbasic/shared/03/sf_document.xhp#CreateMenu\" name=\"CreateMenu_link\"><literal>CreateMenu</literal></link> method from the <literal>Document</literal> service. The code snippet below creates a menu named <emph>My Menu</emph> in the current document window with two entries <emph>Item A</emph> and <emph>Item B</emph>."
+msgstr ""
+
+#. pf7FV
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id261643134374056\n"
+"help.text"
+msgid "Set oMenu = oDoc.CreateMenu(\"My Menu\")"
+msgstr ""
+
+#. Hoh4Q
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id431643134582213\n"
+"help.text"
+msgid ".AddItem(\"Item A\", Command := \"About\")"
+msgstr ""
+
+#. u52BY
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id571643134582396\n"
+"help.text"
+msgid ".AddItem(\"Item B\", Script := \"vnd.sun.star.script:Standard.Module1.ItemB_Listener?language=Basic&location=application\")"
+msgstr ""
+
+#. nd5od
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id371643135157996\n"
+"help.text"
+msgid "After creating the menu, it is recommended to call the <literal>Dispose</literal> method to free the resources used by the <literal>Menu</literal> service instance."
+msgstr ""
+
+#. 2VDkD
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id341636718182262\n"
+"help.text"
+msgid "In the example above, <emph>Item A</emph> is associated with the UNO command <literal>.uno:About</literal> whereas <emph>Item B</emph> is associated with the script <literal>ItemB_Listener</literal> defined in <literal>Module1</literal> of the <literal>Standard</literal> library of the <literal>My Macros</literal> container."
+msgstr ""
+
+#. 9G7de
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id851635274721129\n"
+"help.text"
+msgid "The following example defines <literal>ItemB_Listener</literal> that will be called when <emph>Item B</emph> is clicked. This listener simply splits the argument string passed to the <literal>Sub</literal> and shows them in a message box."
+msgstr ""
+
+#. AFHBG
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id716431354225603\n"
+"help.text"
+msgid "' Process the argument string passed to the listener"
+msgstr ""
+
+#. GzLwF
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id901643135423012\n"
+"help.text"
+msgid "MsgBox \"Menu name: \" & sArgs(0) & Chr(13) & _"
+msgstr ""
+
+#. qGB7L
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id301643136028263\n"
+"help.text"
+msgid "\"Menu item: \" & sArgs(1) & Chr(13) & _"
+msgstr ""
+
+#. wFTww
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id181643136028557\n"
+"help.text"
+msgid "\"Item ID: \" & sArgs(2) & Chr(13) & _"
+msgstr ""
+
+#. 9SGVd
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id561643136028710\n"
+"help.text"
+msgid "\"Item status: \" & sArgs(3)"
+msgstr ""
+
+#. MQJ7M
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id531636493797707\n"
+"help.text"
+msgid "As shown in the example above, menu entries associated with a script receive a comma-separated string argument with the following values:"
+msgstr ""
+
+#. uprfo
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id921643136489994\n"
+"help.text"
+msgid "The toplevel name of the menu."
+msgstr ""
+
+#. 7Jxz9
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id611643136491059\n"
+"help.text"
+msgid "The string ID of the selected menu entry."
+msgstr ""
+
+#. hENoG
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id961643136491491\n"
+"help.text"
+msgid "The numeric ID of the selected menu entry."
+msgstr ""
+
+#. nYABy
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id381643136494580\n"
+"help.text"
+msgid "The current state of the menu item. This is useful for checkboxes and radio buttons. If the item is checked, the value \"1\" is returned, otherwise \"0\" is returned."
+msgstr ""
+
+#. HHjiV
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id131635275172617\n"
+"help.text"
+msgid "The examples above can be written in Python as follows:"
+msgstr ""
+
+#. ENT7Q
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"pyc_id981636717957632\n"
+"help.text"
+msgid "msg = f\"Menu item: {s_args[0]}\\n\""
+msgstr ""
+
+#. 8MYNj
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"pyc_id851636718008427\n"
+"help.text"
+msgid "msg += f\"Menu name: {s_args[1]}\\n\""
+msgstr ""
+
+#. EfEaE
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"pyc_id331636727047102\n"
+"help.text"
+msgid "msg += f\"Item ID: {s_args[2]}\\n\""
+msgstr ""
+
+#. FPzcf
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"pyc_id71643137333404\n"
+"help.text"
+msgid "msg += f\"Item status: {s_args[3]}\""
+msgstr ""
+
+#. XxChZ
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"hd_id711600788076834\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. 98USM
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id461600788076917\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. fT8mQ
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id221600788076591\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. DGBgA
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id761600788076328\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. 2EE9k
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id67160078807636\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. qnRDA
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id49160078807654\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. LE27e
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id81600788076419\n"
+"help.text"
+msgid "Character used to define the access key of a menu item. The default character is \"~\"."
+msgstr ""
+
+#. GSJAG
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id311600788076756\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. fb3iG
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id441600788076826\n"
+"help.text"
+msgid "Character or string that defines how menu items are nested. The default character is \">\"."
+msgstr ""
+
+#. bDCZ8
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"hd_id181636719707892\n"
+"help.text"
+msgid "Menu and Submenus"
+msgstr ""
+
+#. YE5FL
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id741636719725402\n"
+"help.text"
+msgid "To create a menu with submenus, use the character defined in the <literal>SubmenuCharacter</literal> property while creating the menu entry to define where it will be placed. For instance, consider the following menu/submenu hierarchy."
+msgstr ""
+
+#. Y4ETY
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id211636720111489\n"
+"help.text"
+msgid "The code below uses the default submenu character \">\" to create the menu/submenu hierarchy defined above:"
+msgstr ""
+
+#. WkCis
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id121636721243578\n"
+"help.text"
+msgid "The string \"---\" is used to define line separators in menus or submenus."
+msgstr ""
+
+#. CYbLC
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"hd_id501582887473754\n"
+"help.text"
+msgid "Methods"
+msgstr ""
+
+#. Lofgb
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the Menu Service"
+msgstr ""
+
+#. aDqJH
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id93158919969864\n"
+"help.text"
+msgid "Inserts a check box in the menu. Returns an integer value that identifies the inserted item."
+msgstr ""
+
+#. T8Fkq
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203996\n"
+"help.text"
+msgid "<emph>menuitem:</emph> Defines the text to be displayed in the menu. This argument also defines the hierarchy of the item inside the menu by using the submenu character."
+msgstr ""
+
+#. SkMmC
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203116\n"
+"help.text"
+msgid "<emph>name:</emph> String value used to identify the menu item. By default, the last component of the menu hierarchy is used."
+msgstr ""
+
+#. 7zhpM
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203133\n"
+"help.text"
+msgid "<emph>status:</emph> Defines whether the item is selected when the menu is created (Default = <literal>False</literal>)."
+msgstr ""
+
+#. JPboo
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653313\n"
+"help.text"
+msgid "<emph>icon:</emph> Path and name of the icon to be displayed without the leading path separator. The actual icon shown depends on the icon set being used."
+msgstr ""
+
+#. YzJwB
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653208\n"
+"help.text"
+msgid "<emph>tooltip:</emph> Text to be displayed as tooltip."
+msgstr ""
+
+#. 3WPXT
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653328\n"
+"help.text"
+msgid "<emph>command:</emph> The name of a UNO command without the <literal>.uno:</literal> prefix. If the command name does not exist, nothing happens."
+msgstr ""
+
+#. LaF26
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653107\n"
+"help.text"
+msgid "<emph>script:</emph> The URI for a Basic or Python script that will be executed when the item is clicked."
+msgstr ""
+
+#. PTXhK
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id31643198954204\n"
+"help.text"
+msgid "The arguments <literal>command</literal> and <literal>script</literal> are mutually exclusive, hence only one of them can be set for each menu item."
+msgstr ""
+
+#. 7fb2n
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id31643148484084\n"
+"help.text"
+msgid "Read <link href=\"https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification\" name=\"URI_Notation\">Scripting Framework URI Specification</link> to learn more about the URI syntax used in the <literal>script</literal> argument."
+msgstr ""
+
+#. Aj8cF
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id191643306748853\n"
+"help.text"
+msgid "' Menu entry associated with the .uno:Paste command"
+msgstr ""
+
+#. gQCkK
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id271643147793320\n"
+"help.text"
+msgid "' Runs the Basic script Standard.Module1.MyListener stored in the document"
+msgstr ""
+
+#. zSD5u
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id801643306742620\n"
+"help.text"
+msgid "' Runs the Python script MysListener located in file myScripts.py in the user scripts folder"
+msgstr ""
+
+#. uAbp9
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id93158919963364\n"
+"help.text"
+msgid "Inserts a label entry in the menu. Returns an integer value that identifies the inserted item."
+msgstr ""
+
+#. tCHcD
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203021\n"
+"help.text"
+msgid "<emph>menuitem:</emph> Defines the text to be displayed in the menu. This argument also defines the hierarchy of the item inside the menu by using the submenu character."
+msgstr ""
+
+#. yFQns
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203026\n"
+"help.text"
+msgid "<emph>name:</emph> String value to be returned when the item is clicked. By default, the last component of the menu hierarchy is used."
+msgstr ""
+
+#. DMEeJ
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721652886\n"
+"help.text"
+msgid "<emph>icon:</emph> Path and name of the icon to be displayed without the leading path separator. The actual icon shown depends on the icon set being used."
+msgstr ""
+
+#. aZPNP
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653118\n"
+"help.text"
+msgid "<emph>tooltip:</emph> Text to be displayed as tooltip."
+msgstr ""
+
+#. 23fax
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653314\n"
+"help.text"
+msgid "<emph>command:</emph> The name of a UNO command without the <literal>.uno:</literal> prefix. If the command name does not exist, nothing happens."
+msgstr ""
+
+#. wysyV
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721652057\n"
+"help.text"
+msgid "<emph>script:</emph> The URI for a Basic or Python script that will be executed when the item is clicked."
+msgstr ""
+
+#. QYzCL
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id41158919969106\n"
+"help.text"
+msgid "oMenu.AddItem(\"Item A\", Tooltip := \"A descriptive message\")"
+msgstr ""
+
+#. dxYAv
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"pyc_id321621534170554\n"
+"help.text"
+msgid "oMenu.AddItem(\"Item A\", tooltip = \"A descriptive message\")"
+msgstr ""
+
+#. qB7zU
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id93158919969399\n"
+"help.text"
+msgid "Inserts a radio button entry in the menu. Returns an integer value that identifies the inserted item."
+msgstr ""
+
+#. FTrvY
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203501\n"
+"help.text"
+msgid "<emph>menuitem:</emph> Defines the text to be displayed in the menu. This argument also defines the hierarchy of the item inside the menu by using the submenu character."
+msgstr ""
+
+#. syjtC
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631228716\n"
+"help.text"
+msgid "<emph>name:</emph> String value to be returned when the item is clicked. By default, the last component of the menu hierarchy is used."
+msgstr ""
+
+#. 7WBgE
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203643\n"
+"help.text"
+msgid "<emph>status:</emph> Defines whether the item is selected when the menu is created (Default = <literal>False</literal>)."
+msgstr ""
+
+#. 4uxXA
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653228\n"
+"help.text"
+msgid "<emph>icon:</emph> Path and name of the icon to be displayed without the leading path separator. The actual icon shown depends on the icon set being used."
+msgstr ""
+
+#. ZfFDR
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653114\n"
+"help.text"
+msgid "<emph>tooltip:</emph> Text to be displayed as tooltip."
+msgstr ""
+
+#. Sx9Bm
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653447\n"
+"help.text"
+msgid "<emph>command:</emph> The name of a UNO command without the <literal>.uno:</literal> prefix. If the command name does not exist, nothing happens."
+msgstr ""
+
+#. AEnA6
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721652598\n"
+"help.text"
+msgid "<emph>script:</emph> The URI for a Basic or Python script that will be executed when the item is clicked."
+msgstr ""
+
#. yYNtX
#: sf_methods.xhp
msgctxt ""
@@ -19582,22 +20500,22 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060104.xhp#bm_id3691824\" name=\"Calc_Info\">Platform information with INFO(\"system\") Calc formula</link>"
msgstr ""
-#. 3RZGR
+#. h6atN
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
"tit\n"
"help.text"
-msgid "ScriptForge.PopupMenu service"
+msgid "SFWidgets.PopupMenu service"
msgstr ""
-#. NWwqN
+#. QADne
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
"bm_id681600788076499\n"
"help.text"
-msgid "<variable id=\"PopupMenuService\"><link href=\"text/sbasic/shared/03/sf_popupmenu.xhp\" name=\"PopupMenu service\"><literal>ScriptForge</literal>.<literal>PopupMenu</literal> service</link></variable>"
+msgid "<variable id=\"PopupMenuService\"><link href=\"text/sbasic/shared/03/sf_popupmenu.xhp\" name=\"PopupMenu service\"><literal>SFWidgets</literal>.<literal>PopupMenu</literal> service</link></variable>"
msgstr ""
#. DGbZ3
@@ -19789,40 +20707,40 @@ msgctxt ""
msgid "Description"
msgstr ""
-#. G2c6G
+#. qnMK2
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
-"par_id311600788076756\n"
+"par_id49160078807654\n"
"help.text"
msgid "No"
msgstr ""
-#. bcd7a
+#. zYGVp
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
-"par_id441600788076826\n"
+"par_id81600788076419\n"
"help.text"
-msgid "Character or string that defines how menu items are nested. The default character is \">\"."
+msgid "Character used to define the access key of a menu item. The default character is \"~\"."
msgstr ""
-#. qnMK2
+#. G2c6G
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
-"par_id49160078807654\n"
+"par_id311600788076756\n"
"help.text"
msgid "No"
msgstr ""
-#. zYGVp
+#. bcd7a
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
-"par_id81600788076419\n"
+"par_id441600788076826\n"
"help.text"
-msgid "Character used to define the access key of a menu item. The default character is \"~\"."
+msgid "Character or string that defines how menu items are nested. The default character is \">\"."
msgstr ""
#. drBFS
@@ -19870,13 +20788,13 @@ msgctxt ""
msgid "Using icons"
msgstr ""
-#. ddHxQ
+#. UKLV5
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
"par_id981636723485402\n"
"help.text"
-msgid "Items in the popup menu can have icons, which are specified as arguments in the <literal>AddCheckBox</literal>, <literal>AddItem</literal> and <literal>AddRadioButton</literal> methods."
+msgid "Items in the menu can have icons, which are specified as arguments in the <literal>AddCheckBox</literal>, <literal>AddItem</literal> and <literal>AddRadioButton</literal> methods."
msgstr ""
#. TLDpD
@@ -20050,13 +20968,13 @@ msgctxt ""
msgid "myPopup.AddItem(\"Item A\", Tooltip := \"A descriptive message\")"
msgstr ""
-#. 4euLD
+#. VDLFK
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
"pyc_id321621534170554\n"
"help.text"
-msgid "myPopup.AddItem(\"Item A\", tooltip = \"A descriptive message\")"
+msgid "my_popup.AddItem(\"Item A\", tooltip = \"A descriptive message\")"
msgstr ""
#. U2vBb
@@ -20122,13 +21040,13 @@ msgctxt ""
msgid "Displays the popup menu and waits for a user action. Returns the item clicked by the user."
msgstr ""
-#. GruyE
+#. qwwKx
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
"par_id101636726249788\n"
"help.text"
-msgid "If the user clicks outside the popup menu ou presses the <keycode>Esc</keycode> key, then no item is selected. In such cases, the returned value depends on the <literal>returnid</literal> parameter. If <literal>returnid = True</literal> and no item is selected, then the value 0 (zero) is returned. Otherwise an empty string \"\" is returned."
+msgid "If the user clicks outside the popup menu or presses the <keycode>Esc</keycode> key, then no item is selected. In such cases, the returned value depends on the <literal>returnid</literal> parameter. If <literal>returnid = True</literal> and no item is selected, then the value 0 (zero) is returned. Otherwise an empty string \"\" is returned."
msgstr ""
#. EFriZ
@@ -21598,6 +22516,15 @@ msgctxt ""
msgid "You can use the properties above to identify or insert the corresponding characters inside strings. For example, the Linefeed can be replaced by <literal>SF_String.sfLF</literal>."
msgstr ""
+#. DDXd3
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the String Service"
+msgstr ""
+
#. TFfR3
#: sf_string.xhp
msgctxt ""
@@ -25207,15 +26134,6 @@ msgctxt ""
msgid "Some methods are generic for all types of documents and are inherited from the <literal>SF_Document</literal> module, whereas other methods that are specific for Writer documents are defined in the <literal>SF_Writer</literal> module."
msgstr ""
-#. ojZFF
-#: sf_writer.xhp
-msgctxt ""
-"sf_writer.xhp\n"
-"par_id591589189364267\n"
-"help.text"
-msgid "The <literal>SF_Writer</literal> module is focused on:"
-msgstr ""
-
#. LTpqJ
#: sf_writer.xhp
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/scalc/00.po b/source/km/helpcontent2/source/text/scalc/00.po
index 25ad0f2ea5e..8a792e3ac21 100644
--- a/source/km/helpcontent2/source/text/scalc/00.po
+++ b/source/km/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -287,6 +287,15 @@ msgctxt ""
msgid "<variable id=\"seumvo\">Choose <emph>View - Page Break</emph>.</variable>"
msgstr ""
+#. YeaFw
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id3155383\n"
+"help.text"
+msgid "<variable id=\"functionlist\">Choose <menuitem>View - Function List</menuitem>.</variable>"
+msgstr ""
+
#. yDXA6
#: 00000404.xhp
msgctxt ""
@@ -584,15 +593,6 @@ msgctxt ""
msgid "<variable id=\"addinana\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
msgstr "<variable id=\"addinana\"><emph>បញ្ចូល - អនុគមន៍</emph> - ប្រភេទ <emph>បន្ថែម​ទៅក្នុង</emph></variable>"
-#. g8EoH
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3155383\n"
-"help.text"
-msgid "<variable id=\"funktionsliste\">Choose <menuitem>Insert - Function List</menuitem>.</variable>"
-msgstr ""
-
#. UQGrR
#: 00000404.xhp
msgctxt ""
@@ -602,13 +602,13 @@ msgctxt ""
msgid "<variable id=\"einamen\">Choose <menuitem>Insert - Named Range or Expression</menuitem>.</variable>"
msgstr ""
-#. VLxrw
+#. mQLYV
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3146776\n"
"help.text"
-msgid "<variable id=\"eiextdata\">Choose <menuitem>Sheet - Link to External Data</menuitem>.</variable>"
+msgid "<variable id=\"eiextdata\">Choose <menuitem>Sheet - External Links</menuitem>.</variable>"
msgstr ""
#. ECgNS
diff --git a/source/km/helpcontent2/source/text/scalc/01.po b/source/km/helpcontent2/source/text/scalc/01.po
index 24267c7af2b..29425b9b1c9 100644
--- a/source/km/helpcontent2/source/text/scalc/01.po
+++ b/source/km/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-20 13:20+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2020-12-31 12:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Central Khmer <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/km/>\n"
@@ -8279,13 +8279,13 @@ msgctxt ""
msgid "Always \"Windows (32-bit) NT 5.01\", for compatibility reasons"
msgstr "\"Windows (៣២-ប៊ីត​) NT ៥.០១\" ជានិច្ច​សម្រាប់​មូលហេតុ​ឆបគ្នា​"
-#. WNv2d
+#. cFWJe
#: 04060104.xhp
msgctxt ""
"04060104.xhp\n"
"par_id9841608\n"
"help.text"
-msgid "The type of the operating system: <br/>\"AIX\" for Advanced Interactive Executive IBM computer operating systems<br/>\"ANDROID\" for Google mobile operating system<br/>\"DRAGONFLY\" for DragonFly operating system forked from FreeBSD<br/>\"EMSCRIPTEM\" for browser WebAssembly system<br/>\"FREEBSD\", \"OPENBSD\" or \"NETBSD\" for operating systems based on the Berkeley Software Distribution (BSD)<br/>\"HAIKU\" for BeOS compatible operating system<br/>\"iOS\" for Apple mobile operating system <br/>\"LINUX\" for GNU/Linux based operating systems<br/>\"MACOSX\" for Apple Mac OS X<br/>\"SOLARIS\" for Oracle Solaris operating system<br/>\"WNT\" for Microsoft Windows"
+msgid "The type of the operating system: <br/>\"AIX\" for Advanced Interactive Executive IBM computer operating systems<br/>\"ANDROID\" for Google mobile operating system<br/>\"DRAGONFLY\" for DragonFly operating system forked from FreeBSD<br/>\"EMSCRIPTEN\" for browser WebAssembly system<br/>\"FREEBSD\", \"OPENBSD\" or \"NETBSD\" for operating systems based on the Berkeley Software Distribution (BSD)<br/>\"HAIKU\" for BeOS compatible operating system<br/>\"iOS\" for Apple mobile operating system <br/>\"LINUX\" for GNU/Linux based operating systems<br/>\"MACOSX\" for Apple Mac OS X<br/>\"SOLARIS\" for Oracle Solaris operating system<br/>\"WNT\" for Microsoft Windows"
msgstr ""
#. zcvAx
@@ -10952,14 +10952,14 @@ msgctxt ""
msgid "<bookmark_value>mathematical functions</bookmark_value> <bookmark_value>Function Wizard; mathematical</bookmark_value> <bookmark_value>functions; mathematical functions</bookmark_value> <bookmark_value>trigonometric functions</bookmark_value>"
msgstr "<bookmark_value>អនុគមន៍​គណិត​វិទ្យា</bookmark_value><bookmark_value>អ្នក​ជំនួយ​ការ​អនុគមន៍; គណិត​វិទ្យា</bookmark_value><bookmark_value>អនុគមន៍; អនុគមន៍​គណិតវិទ្យា\\</bookmark_value><bookmark_value>អនុគមន៍​ត្រីកោណមាត្រ</bookmark_value>"
-#. 9umC6
+#. BJjDo
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"hd_id3147124\n"
"help.text"
-msgid "Mathematical Functions"
-msgstr "អនុគមន៍​គណិតវិទ្យា"
+msgid "<variable id=\"math_functions_h1\"><link href=\"text/scalc/01/04060106.xhp\" name=\"math_link\">Mathematical Functions</link></variable>"
+msgstr ""
#. jjDha
#: 04060106.xhp
@@ -12833,103 +12833,13 @@ msgctxt ""
msgid "<item type=\"input\">=COMBINA(3;2)</item> returns 6."
msgstr "<item type=\"input\">=COMBINA(3;2)</item> ត្រឡប់ 6 ។"
-#. qUACJ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3156086\n"
-"help.text"
-msgid "<bookmark_value>TRUNC function</bookmark_value> <bookmark_value>decimal places;cutting off</bookmark_value>"
-msgstr "<bookmark_value>អនុគមន៍ TRUNC</bookmark_value><bookmark_value>ខ្ទង់ទសភាគ;ការ​កាត់ចោល</bookmark_value>"
-
-#. mD8uc
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3156086\n"
-"help.text"
-msgid "TRUNC"
-msgstr "TRUNC"
-
-#. svW2j
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3157866\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KUERZEN\">Truncates a number by removing decimal places.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KUERZEN\">កាត់​ចំនួន​ឲ្យ​ខ្លី ដោយ​យក​ខ្ទង់​ទសភាគ​ចេញ ។</ahelp>"
-
-#. MNndx
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3148511\n"
-"help.text"
-msgid "TRUNC(Number[; Count])"
-msgstr ""
-
-#. TXm3Z
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150796\n"
-"help.text"
-msgid "Returns <emph>Number</emph> with at most <emph>Count</emph> decimal places. Excess decimal places are simply removed, irrespective of sign."
-msgstr "ត្រឡប់ <emph>លេខ</emph> ដែល​មាន​ខ្ទង់​ទសភាព <emph>ចំនួន</emph> ជា​ច្រើន ។ លើស​​ខ្ទង់ទសភាគ​តាម​ធម្មតា​ត្រូវ​បាន​យក​ចេញ សញ្ញា​គ្មាន​កំណត់ ។"
-
-#. XA6JV
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150816\n"
-"help.text"
-msgid "<item type=\"literal\">TRUNC(Number; 0)</item> behaves as <item type=\"literal\">INT(Number)</item> for positive numbers, but effectively rounds towards zero for negative numbers."
-msgstr "<item type=\"literal\">TRUNC(Number; 0)</item> មាន​ឥរិយាបថ​ជា <item type=\"literal\">INT(Number)</item> សម្រាប់​លេខ​វិជ្ជមាន ប៉ុន្តែ​បង្គត់​ដែល​មាន​ប្រសិទ្ធិភាព​គឺ​សូន្យ​សម្រាប់​លេខ​អវិជ្ជមាន ។"
-
-#. SyxhC
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3148548\n"
-"help.text"
-msgid "The <emph>visible</emph> decimal places of the result are specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>."
-msgstr "<emph>ដែល​អាច​មើល​ឃើញ​</emph> ខ្ទង់​ទសភាគ​នៃ​​លទ្ធផល​ត្រូវ​បាន​បញ្ជាក់​ក្នុង​​ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ចំណូល​ចិត្ត​​</caseinline><defaultinline>ឧបករណ៍​​ - ជម្រើស​​</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - គណនា​​</link> ។"
-
-#. grGeQ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3152569\n"
-"help.text"
-msgid "<item type=\"input\">=TRUNC(1.239;2)</item> returns 1.23. The 9 is lost."
-msgstr "<item type=\"input\">=TRUNC(1.239;2)</item> ត្រឡប់ 1.23 ។ បាត់​ 9 ។"
-
-#. DJRaY
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id7050080\n"
-"help.text"
-msgid "<item type=\"input\">=TRUNC(-1.234999;3)</item> returns -1.234. All the 9s are lost."
-msgstr "<item type=\"input\">=TRUNC(-1.234999;3)</item> ត្រឡប់ -1.234 ។ បាត់9s ។"
-
-#. wGT5E
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id441635243969504\n"
-"help.text"
-msgid "<input>=TRUNC(-45.67)</input> returns -45. The default value for <emph>Count</emph> is 0."
-msgstr ""
-
-#. gMj5a
+#. ABMYW
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id151635245092041\n"
+"hd_id561641930400206\n"
"help.text"
-msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/TRUNC\" name=\"TRUNC_Wiki\">TRUNC</link> wiki page for more details about this function."
+msgid "<link href=\"text/scalc/01/func_trunc.xhp\" name=\"trunc_link\">TRUNC</link>"
msgstr ""
#. MQVNf
@@ -13778,96 +13688,15 @@ msgctxt ""
msgid "<item type=\"input\">=ROUND(987.65;-2)</item> returns 1000."
msgstr "<item type=\"input\">=ROUND(987.65;-2)</item> ត្រឡប់ 1000 ។"
-#. igSF4
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3145991\n"
-"help.text"
-msgid "<bookmark_value>ROUNDDOWN function</bookmark_value>"
-msgstr "<bookmark_value>អនុគមន៍ ROUNDDOWN</bookmark_value>"
-
-#. pGdu6
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3145991\n"
-"help.text"
-msgid "ROUNDDOWN"
-msgstr "ROUNDDOWN"
-
-#. 8CrTA
+#. 6qDk5
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3146020\n"
+"hd_id561641930400105\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Rounds a number down, toward zero, to a certain precision.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ABRUNDEN\">បង្គត់​លេខ​ចុះ​ទៅ​សូន្យ ទៅ​ចំនួន​ខ្ទង់​ជាក់លាក់ ។</ahelp>"
-
-#. MnKJo
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3146051\n"
-"help.text"
-msgid "ROUNDDOWN(Number [; Count])"
+msgid "<link href=\"text/scalc/01/func_rounddown.xhp\" name=\"rounddown_link\">ROUNDDOWN</link>"
msgstr ""
-#. EXn4P
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3146064\n"
-"help.text"
-msgid "Returns <emph>Number</emph> rounded down (towards zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds down to an integer. If Count is negative, the function rounds down to the next 10, 100, 1000, etc."
-msgstr "ត្រឡប់ <emph>លេខ</emph> បង្គត់​ចុះ (ទៅ​រក​សូន្យ) ទៅ <emph>ចំនួន</emph> ​ខ្ទង់ទសភាគ ។ ប្រសិន​បើ​ចំនួន​ត្រូវ​បាន​លុប ឬ​សូន្យ អនុគមន៍​​បង្គត់​ចុះ​ទៅ​ចំនួន​គត់ ។ ប្រសិនបើ​ចំនួន​អវិជ្ជមាន អនុគមន៍​បង្គត់​ចុះ​ទៅ​ចំនួន​បន្ទាប់ 10, 100, 1000, ។ល។"
-
-#. nFwPP
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id2188787\n"
-"help.text"
-msgid "This function rounds towards zero. See ROUNDUP and ROUND for alternatives."
-msgstr "អនុគមន៍​បង្គត់​ទៅ​សូន្យ ។ សូម​មើល ROUNDUP និង ROUND សម្រាប់​ជម្រើស ។"
-
-#. ZpuBm
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163178\n"
-"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> returns 1.23."
-msgstr "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> ត្រឡប់ 1.23 ។"
-
-#. DGvAw
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id5833307\n"
-"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> returns 45."
-msgstr "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> ត្រឡប់ 45 ។"
-
-#. H6KYd
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id7726676\n"
-"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(-45.67)</item> returns -45."
-msgstr "<item type=\"input\">=ROUNDDOWN(-45.67)</item> ត្រឡប់ -45 ។"
-
-#. hYEdB
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3729361\n"
-"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> returns 900."
-msgstr "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> ត្រឡប់ 900 ។"
-
#. HBbDL
#: 04060106.xhp
msgctxt ""
@@ -19790,14 +19619,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_HYPERLINK\">When you click a cell that contains the HYPERLINK function, the hyperlink opens.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_HYPERLINK\">ពេល​អ្នក​ចុច​ក្រឡា​មួយ​ដែល​មាន​អនុគមន៍ HYPERLINK នោះ​តំណ​ខ្ពស់​នឹង​បើក ។</ahelp>"
-#. 8js8d
+#. ciAoA
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN11800\n"
"help.text"
-msgid "If you use the optional <emph>CellText</emph> parameter, the formula locates the URL, and then displays the text or number."
-msgstr "បើ​អ្នក​ប្រើ​ប៉ារ៉ាម៉ែត្រ​ស្រេច​ចិត្ត <emph>អត្ថបទ​ក្រឡា</emph> នោះ​រូបមន្ត​នឹង​កំណត់​ទីតាំង URL ហើយ​បន្ទាប់​មក​បង្ហាញ​អត្ថបទ ។"
+msgid "If you use the optional <emph>CellValue</emph> parameter, the formula locates the URL, and then displays the text or number."
+msgstr ""
#. 7DGBz
#: 04060109.xhp
@@ -19808,23 +19637,23 @@ msgctxt ""
msgid "To open a hyperlinked cell with the keyboard, select the cell, press F2 to enter the Edit mode, move the cursor in front of the hyperlink, press Shift+F10, and then choose <emph>Open Hyperlink</emph>."
msgstr "ដើម្បី​បើក​ក្រឡា​តំណ​ខ្ពស់​មួយ​ដោយ​ប្រើ​ក្តារ​ចុច ជ្រើស​ក្រឡា ចុច F2 ដើម្បី​ចូល​របៀប​កែសម្រួល ផ្លាស់ទី​ទស្សន៍​ទ្រនិច​ទៅ​មុខ​តំណ​ខ្ពស់ ចុច ប្តូរ (Shift) + F10 ហើយ​បន្ទាប់​មក​ជ្រើស <emph>បើក​តំណ​ខ្ពស់</emph> ។"
-#. BzM9o
+#. YFNSo
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN1180E\n"
"help.text"
-msgid "HYPERLINK(\"URL\" [; \"CellText\"])"
+msgid "HYPERLINK(\"URL\" [; CellValue])"
msgstr ""
-#. UbAEY
+#. weY4K
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN11811\n"
"help.text"
-msgid "<emph>URL</emph> specifies the link target. The optional <emph>CellText</emph> parameter is the text or a number that is displayed in the cell and will be returned as the result. If the <emph>CellText</emph> parameter is not specified, the <emph>URL</emph> is displayed in the cell text and will be returned as the result."
-msgstr "<emph>URL</emph> បញ្ជាក់​គោលដៅ​តំណ ។ ប៉ារ៉ាម៉ែត្រ <emph>អត្ថបទ​ក្រឡា</emph> ជា​ជម្រើស​គឺ​ជា​អត្ថបទ​ដែល​ត្រូវ​បាន​​បង្ហាញ​នៅ​ក្នុង​ក្រឡា និង​លទ្ធផល​​របស់​អនុគមន៍ ។ ប្រសិន​បើ​ប៉ារ៉ាម៉ែត្រ <emph>អត្ថបទ​ក្រឡា</emph> មិន​ត្រូវ​បាន​បញ្ជាក់ <emph>URL</emph> ត្រូវ​បាន​បង្ហាញ​នៅ​ក្នុង​អត្ថបទ​ក្រឡា និង​នៅ​ក្នុង​លទ្ធផល​របស់​អនុគមន៍ ។​"
+msgid "<emph>URL</emph> specifies the link target. The optional <emph>CellValue</emph> parameter is the text or a number that is displayed in the cell and will be returned as the result. If the <emph>CellValue</emph> parameter is not specified, the <emph>URL</emph> is displayed in the cell text and will be returned as the result."
+msgstr ""
#. GdBa8
#: 04060109.xhp
@@ -23048,32 +22877,104 @@ msgctxt ""
msgid "WEEKS(StartDate; EndDate; Type)"
msgstr "WEEKS(កាល​បរិច្ឆេទ​​ចាប់ផ្តើម; កាល​បរិច្ឆេទ​​បញ្ចប់; ប្រភេទ)"
-#. DGrw3
+#. uwhoB
#: 04060111.xhp
msgctxt ""
"04060111.xhp\n"
"par_id3151387\n"
"help.text"
-msgid "<emph>StartDate</emph> is the first date"
-msgstr "<emph>កាលបរិច្ឆេទ​ចាប់ផ្ដើម</emph> គឺ​ជា​កាលបរិច្ឆេទ​ដំបូង"
+msgid "<emph>StartDate</emph> is the start date in the interval."
+msgstr ""
-#. VLEPK
+#. AGYKD
#: 04060111.xhp
msgctxt ""
"04060111.xhp\n"
"par_id3146324\n"
"help.text"
-msgid "<emph>EndDate</emph> is the second date"
-msgstr "<emph>កាលបរិច្ឆេទ​បញ្ចប់</emph> គឺ​ជា​កាលបរិច្ឆេទ​ទីពីរ"
+msgid "<emph>EndDate</emph> is the end date in the interval. The end date must be greater than the start date, or else an error is returned."
+msgstr ""
-#. YHupv
+#. PcBbC
#: 04060111.xhp
msgctxt ""
"04060111.xhp\n"
"par_id3166467\n"
"help.text"
-msgid "<emph>Type</emph> calculates the type of difference. The possible values are 0 (interval) and 1 (in numbers of weeks)."
-msgstr "<emph>ប្រភេទ</emph> គណនា​ប្រភេទ​ផ្សេងៗ ។ តម្លៃ​ដែល​អាច​ប្រើបាន គឺ 0 (ចន្លោះ​ពេល) និង 1 (ច្រើន​សប្ដាហ៍) ។"
+msgid "<emph>Type</emph> specifies the type of difference to be calculated. Possible values are 0 (time interval) or 1 (calendar weeks)."
+msgstr ""
+
+#. QaW6B
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id81641990941192\n"
+"help.text"
+msgid "If <emph>Type = 0</emph> the function will assume that 7 days is equivalent to one week without considering any specific day to mark the beginning of a week."
+msgstr ""
+
+#. geCV7
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id31641991010650\n"
+"help.text"
+msgid "If <emph>Type = 1</emph> the function will consider Monday to be the first day of the week. Therefore, except for the start date, each occurrence of a Monday in the interval is counted as an additional week."
+msgstr ""
+
+#. CF4K3
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id971641990480242\n"
+"help.text"
+msgid "This function considers Monday to be the first day of the week regardless of the current locale settings."
+msgstr ""
+
+#. H2Gpc
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id671641994821992\n"
+"help.text"
+msgid "In the following examples, dates are passed as strings. However, they can also be stored in separate cells and be passed as references."
+msgstr ""
+
+#. SyEBP
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id71641991391639\n"
+"help.text"
+msgid "<input>=WEEKS(\"01/12/2022\",\"01/17/2022\",0)</input> returns 0 because <emph>Type</emph> was set to 0 and there are only 5 days in the interval."
+msgstr ""
+
+#. zVfY3
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id71641991390039\n"
+"help.text"
+msgid "<input>=WEEKS(\"01/12/2022\",\"01/19/2022\",0)</input> returns 1 because <emph>Type</emph> was set to 0 and there are 7 days in the interval."
+msgstr ""
+
+#. rABLZ
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id71641991391123\n"
+"help.text"
+msgid "<input>=WEEKS(\"01/12/2022\",\"01/17/2022\",1)</input> returns 1 because <emph>Type</emph> was set to 1 and the interval contains a Monday, since 01/12/2022 is a Wednesday and 01/17/2022 is a Monday."
+msgstr ""
+
+#. AxokT
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id71641991332523\n"
+"help.text"
+msgid "<input>=WEEKS(\"01/10/2022\",\"01/15/2022\",1)</input> returns 0 because <emph>Type</emph> was set to 1 and the interval does not contain any Mondays, except for the start date."
+msgstr ""
#. 94JhK
#: 04060111.xhp
@@ -33155,186 +33056,6 @@ msgctxt ""
msgid "<emph>DataE</emph> is the range of the expected values."
msgstr "<emph>ទិន្នន័យ E</emph> គឺ​ជា​ជួរ​របស់​តម្លៃ​ដែល​រំពឹង​ទុក ។"
-#. KmntJ
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3154096\n"
-"help.text"
-msgid "Data_B (observed)"
-msgstr "ទិន្នន័យ B (បាន​អង្កេត)"
-
-#. ByU5t
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3152948\n"
-"help.text"
-msgid "Data_E (expected)"
-msgstr "ទិន្នន័យ E (បាន​រំពឹង)"
-
-#. jFpGp
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3152876\n"
-"help.text"
-msgid "1"
-msgstr ""
-
-#. yVGtC
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3159279\n"
-"help.text"
-msgid "<item type=\"input\">195</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#. ZGbzD
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149105\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. ZiBjZ
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149922\n"
-"help.text"
-msgid "2"
-msgstr ""
-
-#. zDgpW
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148621\n"
-"help.text"
-msgid "<item type=\"input\">151</item>"
-msgstr "<item type=\"input\">151</item>"
-
-#. RVD5R
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148987\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. FbArc
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149417\n"
-"help.text"
-msgid "3"
-msgstr ""
-
-#. BzCPW
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148661\n"
-"help.text"
-msgid "<item type=\"input\">148</item>"
-msgstr "<item type=\"input\">148</item>"
-
-#. FMqUi
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3151128\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. SnMGY
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148467\n"
-"help.text"
-msgid "4"
-msgstr ""
-
-#. pMLAc
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149237\n"
-"help.text"
-msgid "<item type=\"input\">189</item>"
-msgstr "<item type=\"input\">189</item>"
-
-#. MSsKd
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3145304\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. HztMb
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149927\n"
-"help.text"
-msgid "5"
-msgstr ""
-
-#. 9cTzf
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3150630\n"
-"help.text"
-msgid "<item type=\"input\">183</item>"
-msgstr "<item type=\"input\">183</item>"
-
-#. 4XAhh
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3150423\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. bZFnZ
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3143275\n"
-"help.text"
-msgid "6"
-msgstr ""
-
-#. P6GPe
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3144750\n"
-"help.text"
-msgid "<item type=\"input\">154</item>"
-msgstr "<item type=\"input\">154</item>"
-
-#. WpLSG
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3153947\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
#. rEABj
#: 04060181.xhp
msgctxt ""
@@ -33425,168 +33146,6 @@ msgctxt ""
msgid "Data_E (expected)"
msgstr "ទិន្នន័យ E (បាន​រំពឹង)"
-#. M2NhH
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2952876\n"
-"help.text"
-msgid "1"
-msgstr ""
-
-#. mEBPP
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2959279\n"
-"help.text"
-msgid "<item type=\"input\">195</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#. dToZL
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2949105\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. EWS97
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2949922\n"
-"help.text"
-msgid "2"
-msgstr ""
-
-#. DWkBk
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2948621\n"
-"help.text"
-msgid "<item type=\"input\">151</item>"
-msgstr "<item type=\"input\">151</item>"
-
-#. DEGVA
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2948987\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. Wwt2C
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2949417\n"
-"help.text"
-msgid "3"
-msgstr ""
-
-#. 7qHtk
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2948661\n"
-"help.text"
-msgid "<item type=\"input\">148</item>"
-msgstr "<item type=\"input\">148</item>"
-
-#. Ked6Y
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2951128\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. BSjh8
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2948467\n"
-"help.text"
-msgid "4"
-msgstr ""
-
-#. te7qv
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2949237\n"
-"help.text"
-msgid "<item type=\"input\">189</item>"
-msgstr "<item type=\"input\">189</item>"
-
-#. HHXxw
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2945304\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. wEAU9
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2949927\n"
-"help.text"
-msgid "5"
-msgstr ""
-
-#. 5PwZu
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2950630\n"
-"help.text"
-msgid "<item type=\"input\">183</item>"
-msgstr "<item type=\"input\">183</item>"
-
-#. GCF9s
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2950423\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. 4mWE7
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2943275\n"
-"help.text"
-msgid "6"
-msgstr ""
-
-#. BkDtt
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2944750\n"
-"help.text"
-msgid "<item type=\"input\">154</item>"
-msgstr "<item type=\"input\">154</item>"
-
-#. a278z
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2953947\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
#. CCSNU
#: 04060181.xhp
msgctxt ""
@@ -42974,14 +42533,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/scalc/ui/functionpanel/insert\">Inserts the selected function into the document.</ahelp>"
msgstr ""
-#. CHa3i
+#. fMNek
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
"tit\n"
"help.text"
-msgid "Link to External Data"
-msgstr "ភ្ជាប់​ទៅទិន្នន័យ​ខាងក្រៅ"
+msgid "External Links"
+msgstr ""
#. Fnwpz
#: 04090000.xhp
@@ -42992,14 +42551,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
msgstr ""
-#. kcfuM
+#. rGHoi
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
"hd_id3145785\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">Link to External Data</link>"
-msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">តភ្ជាប់​ទៅ​ទិន្នន័យ​ខាង​ក្រៅ</link>"
+msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">External Links</link>"
+msgstr ""
#. SaAut
#: 04090000.xhp
@@ -45359,23 +44918,32 @@ msgctxt ""
msgid "Conditional Formatting"
msgstr "​​ទ្រង់ទ្រាយ​​​តាម​លក្ខខណ្ឌ"
-#. wjrDJ
+#. qb52L
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "<variable id=\"bedingtetext\"><ahelp hid=\".\">Choose <emph>Conditional Formatting</emph> to define format styles depending on certain conditions.</ahelp></variable> If a style was already assigned to a cell, it remains unchanged. The style entered here is then evaluated. There are several types of conditional formatting that can be used."
+msgid "<variable id=\"bedingtetext\"><ahelp hid=\".\">Use <emph>Conditional Formatting</emph> to define range-based conditions that determine which cell style will be applied to each cell in a given range based on its contents.</ahelp></variable> The cell style corresponding to the first condition that evaluates to <emph>true</emph> is applied. Cell styles applied through Conditional Formatting override cell styles applied manually using the <link href=\"text/scalc/main0202.xhp\" name=\"FormattingBar_link\"><emph>Formatting Bar</emph></link> or the <emph>Styles</emph> sidebar."
msgstr ""
-#. aG8CH
+#. 2GWTv
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
"par_id3163711\n"
"help.text"
-msgid "You can enter several conditions that query the contents of cell values or formulas. The conditions are evaluated from the first to the last. If the condition 1 matches the condition, the defined style will be used. Otherwise, condition 2 is evaluated, and its defined style is used. If this style does not match, then the next condition is evaluated and so on."
-msgstr "អ្នក​អាច​បញ្ចូល​លក្ខខណ្ឌ​ច្រើន​ដើម្បី​ច្រោះ​មាតិកា​តម្លៃ​ក្រឡា ឬ​រូបមន្ត​បាន។ លក្ខខណ្ឌ​ត្រូវ​បាន​វាយតម្លៃ​ពី​ដើម​ទៅ​ចុង។ ប្រសិនបើ​លក្ខខណ្ឌ​ទី​មួយ​ផ្ទៀងផ្ទាត់ រចនាប័ទ្ម​ដែល​បាន​កំណត់​នឹង​ត្រូវ​បាន​ប្រើ។ បើមិនដូច្នោះទេ លក្ខខណ្ឌ​ទីពីរ​នឹង​ត្រូវ​បាន​វាយតម្លៃ ហើយ​រចនាប័ទ្ម​របស់​វា​នឹង​ត្រូវ​បាន​ប្រើ។ ហើយ​បើ​រចនាប័ទ្ម​នេះ​មិន​ផ្ទៀងផ្ទាត់​ទៀត​ នោះ​លក្ខខណ្ឌ​បន្ទាប់​នឹង​ត្រូវ​បាន​វាយតម្លៃ​ជា​បន្តបន្ទាប់។"
+msgid "You can enter several conditions that query the cell values or results of formulas. The conditions are evaluated from first to the last. If <emph>Condition 1</emph> is true based on the current cell contents, the corresponding cell style is applied. Otherwise, <emph>Condition 2</emph> is evaluated to determine if its corresponding style will be applied. If none of the conditions match cell contents, then no changes are made to the cell format."
+msgstr ""
+
+#. GNdvU
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id431642031216368\n"
+"help.text"
+msgid "Conditional formats do no overwrite cell styles and direct formatting applied manually. They remain saved as cell properties and are applied when the cell matches no conditions or when you remove all conditional formats."
+msgstr ""
#. AMXCn
#: 05120000.xhp
@@ -53162,6 +52730,132 @@ msgctxt ""
msgid "<ahelp hid=\".\">Commands to calculate formula cells.</ahelp>"
msgstr ""
+#. 9AbDs
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"tit\n"
+"help.text"
+msgid "Calculation Accuracy"
+msgstr ""
+
+#. 8Bv3f
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"bm_id741642020503366\n"
+"help.text"
+msgid "<bookmark_value>calculation;accuracy</bookmark_value> <bookmark_value>precision;calculation</bookmark_value>"
+msgstr ""
+
+#. 4gPte
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"hd_id961642017927878\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/calculation_accuracy.xhp\" name=\"accuracy\">%PRODUCTNAME Calculation Accuracy</link>"
+msgstr ""
+
+#. sW5fH
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"hd_id941642017968835\n"
+"help.text"
+msgid "Inherent Accuracy Problem"
+msgstr ""
+
+#. hov7p
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id541642018071800\n"
+"help.text"
+msgid "%PRODUCTNAME Calc, just like most other spreadsheet software, uses floating-point math capabilities available on hardware. Given that most contemporary hardware uses binary floating-point arithmetic with limited precision defined in <link href=\"https://en.wikipedia.org/wiki/IEEE_754\" name=\"IEEE754\">IEEE 754</link> standard, many decimal numbers - including as simple as 0.1 - cannot be precisely represented in %PRODUCTNAME Calc (which uses 64-bit double-precision numbers internally)."
+msgstr ""
+
+#. YPbto
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id191642019423811\n"
+"help.text"
+msgid "Calculations with those numbers necessarily <link href=\"https://en.wikipedia.org/wiki/Floating-point_arithmetic#Accuracy_problems\" name=\"wpediaaccuracy\">results in rounding errors</link>, and those accumulate with every calculation."
+msgstr ""
+
+#. dvRFz
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id221642019437175\n"
+"help.text"
+msgid "This is not a bug, but is expected and currently unavoidable without using complex calculations in software, which would incur inappropriate performance penalties, and thus is out of question. Users need to account for that, and use rounding and comparisons with <link href=\"https://en.wikipedia.org/wiki/Machine_epsilon\" name=\"macnie_epsilon\">machine epsilon (or unit roundoff)</link> as necessary."
+msgstr ""
+
+#. ncGy5
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id801642019531438\n"
+"help.text"
+msgid "An example with numbers:"
+msgstr ""
+
+#. BpnPy
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id761642018318896\n"
+"help.text"
+msgid "This will result in -999.129999999997 in A3, instead of expected -999.13 (you might need to increase shown decimal places in cell format to see this)."
+msgstr ""
+
+#. kDcn9
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id221642020132399\n"
+"help.text"
+msgid "An example with dates and times:"
+msgstr ""
+
+#. aWCYz
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id801642018326882\n"
+"help.text"
+msgid "Due to the specific of time representation in Calc, this also applies to all calculations involving times. For example, the cells A1 and A2 below show the date and time data as entered (in ISO 8601 format):"
+msgstr ""
+
+#. rcuhc
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id101643312991679\n"
+"help.text"
+msgid "Cell A3 will show 00:10:00 if the default formatting [HH]:MM:SS is applied to the cell. However, cell A3 will show 00:09:59.999999 instead of expected 00:10:00.000000 if formatted using [HH]:MM:SS.000000 format string. This happens despite only whole numbers of hours and minutes were used, because internally, any time is a fraction of a day, 12:00 (noon) being represented as 0.5."
+msgstr ""
+
+#. EZjhJ
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id921642020011065\n"
+"help.text"
+msgid "The data in A1 is represented internally as 43934.5125, and in A2 as 43934.5055555555591126903891563 (which is not exact representation of the entered datetime, which would be 43934.505555555555555555...)."
+msgstr ""
+
+#. QY6Ti
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id801642020017858\n"
+"help.text"
+msgid "Their subtraction results in 0.00694444443287037, a value slightly less than expected 0.00694444444444..., which is 10 minutes."
+msgstr ""
+
#. J8xZD
#: cell_styles.xhp
msgctxt ""
@@ -53216,6 +52910,24 @@ msgctxt ""
msgid "Examples"
msgstr ""
+#. XAFa7
+#: common_func.xhp
+msgctxt ""
+"common_func.xhp\n"
+"hd_id301640873452726\n"
+"help.text"
+msgid "Technical information"
+msgstr ""
+
+#. 7AVhU
+#: common_func.xhp
+msgctxt ""
+"common_func.xhp\n"
+"par_id251640873774457\n"
+"help.text"
+msgid "This function is not part of the <emph>Open Document Format for Office Applications (OpenDocument) Version 1.3. Part 4: Recalculated Formula (OpenFormula) Format</emph> standard. The name space is"
+msgstr ""
+
#. STMGF
#: common_func.xhp
msgctxt ""
@@ -54377,22 +54089,22 @@ msgctxt ""
msgid "<emph>values (mandatory):</emph> A numeric array or range. <emph>values</emph> are the historical values, for which you want to forecast the next points."
msgstr ""
-#. qBdZB
+#. S6DPQ
#: exponsmooth_embd.xhp
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0403201618594553\n"
"help.text"
-msgid "<emph>timeline (mandatory):</emph> A numeric array or range. The time line (x-value) range for the historical values."
+msgid "<emph>timeline (mandatory):</emph> A numeric array or range. The timeline (x-value) range for the historical values."
msgstr ""
-#. wE7cv
+#. Re7Cm
#: exponsmooth_embd.xhp
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id040320161859450\n"
"help.text"
-msgid "The time line doesn't have to to be sorted, the functions will sort it for calculations. <br/>The time line values must have a consistent step between them. <br/>If a constant step can't be identified in the sorted time line, the functions will return the #NUM! error. <br/>If the ranges of the time line and historical values aren't of same size, the functions will return the #N/A error.<br/>If the time line contains less than 2 periods of data, the functions will return the #VALUE! Error."
+msgid "The timeline does not have to be sorted, the functions will sort it for calculations.<br/>The timeline values must have a consistent step between them.<br/>If a constant step cannot be identified in the sorted timeline, the functions will return the #NUM! error.<br/>If the ranges of both the timeline and the historical values are not the same size, the functions will return the #N/A error.<br/>If the timeline contains fewer than 2 data periods, the functions will return the #VALUE! error."
msgstr ""
#. AbNWD
@@ -58058,6 +57770,15 @@ msgctxt ""
msgid "Torr"
msgstr ""
+#. CNDuZ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id911641306487164\n"
+"help.text"
+msgid "1 - The \"at\" unit is deprecated. Use \"atm\" instead."
+msgstr ""
+
#. vWzBh
#: func_convert.xhp
msgctxt ""
@@ -58607,6 +58328,15 @@ msgctxt ""
msgid "Cubic yard"
msgstr ""
+#. EsueL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id671641306535516\n"
+"help.text"
+msgid "2 - These units are not part of the <emph>Open Document Format for Office Applications (OpenDocument) Version 1.3. Part 4: Recalculated Formula (OpenFormula) Format</emph> standard for the CONVERT function. They are preserved for backward compatibility."
+msgstr ""
+
#. ej2DE
#: func_convert.xhp
msgctxt ""
@@ -59021,14 +58751,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_DATEDIF\">This function returns the number of whole days, months or years between Start date and End date.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DATUM\">អនុគមន៍​នេះ​​បង្ហាញ​លេខ​ថ្ងៃ, ខែ ឬ​ឆ្នាំ​សរុប​រវាង​កាលបរិច្ឆេទ​ចាប់ផ្ដើម និង​កាលបរិច្ឆេទ​បញ្ចប់។</ahelp>"
-#. hDLZF
+#. zRWUX
#: func_datedif.xhp
msgctxt ""
"func_datedif.xhp\n"
-"par_id3150474\n"
+"par_id531642776283977\n"
"help.text"
-msgid "DATEDIF(Start date; End date; Interval)"
-msgstr "DATEDIF(កាលបរិច្ឆេទ​ចាប់ផ្ដើម; កាលបរិច្ឆេទ​បញ្ចប់; ចន្លោះ​ពេល)"
+msgid "<input>DATEDIF(Start date; End date; Interval)</input>"
+msgstr ""
#. CMjse
#: func_datedif.xhp
@@ -59048,14 +58778,14 @@ msgctxt ""
msgid "<emph>End date</emph> is the date until the calculation is carried out. End date must be later, than Start date."
msgstr "<emph>កាលបរិច្ឆេទ​បញ្ចប់</emph> គឺជា​កាលបរិច្ឆេទ​ចុងក្រោយ​ដែល​ត្រូវ​យក​មក​គណនា។ កាលបរិច្ឆេទ​បញ្ចប់​ត្រូវតែ​ថ្មី​ជាង​កាលបរិច្ឆេទ​ចាប់ផ្ដើម។"
-#. FH5g5
+#. PZGXK
#: func_datedif.xhp
msgctxt ""
"func_datedif.xhp\n"
"par_id3153183\n"
"help.text"
-msgid "<emph>Interval</emph> is a string, accepted values are \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\"."
-msgstr "<emph>ចន្លោះ​ពេល</emph> គឺជា​តួអក្សរ, តួអក្សរ​ដែល​អាច​ប្រើ​បាន​គឺ៖ \"d\", \"m\", \"y\", \"ym\", \"md\" ឬ \"yd\" ។"
+msgid "<emph>Interval</emph> is a string that determines how the difference will be calculated. Possible values are \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\" regardless of the current language settings."
+msgstr ""
#. Lxgdp
#: func_datedif.xhp
@@ -60677,13 +60407,13 @@ msgctxt ""
msgid "<bookmark_value>FORECAST.ETS.MULT function</bookmark_value>"
msgstr "<bookmark_value>អនុគមន៍ EASTERSUNDAY</bookmark_value>"
-#. GByS5
+#. LnXao
#: func_forecastetsmult.xhp
msgctxt ""
"func_forecastetsmult.xhp\n"
"hd_id0603201610022291\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_forecastetsmult.xhp\"> FORECAST.ETS.MULT Function</link>"
+msgid "<link href=\"text/scalc/01/func_forecastetsmult.xhp\">FORECAST.ETS.MULT Function</link>"
msgstr ""
#. tYAjY
@@ -64151,13 +63881,13 @@ msgctxt ""
msgid "<bookmark_value>rawsubtract;subtraction</bookmark_value> <bookmark_value>RAWSUBTRACT function</bookmark_value>"
msgstr ""
-#. fYK6C
+#. e3VEx
#: func_rawsubtract.xhp
msgctxt ""
"func_rawsubtract.xhp\n"
"hd_2016112109231\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_rawsubtract.xhp\">RAWSUBTRACT</link>"
+msgid "<variable id=\"rawsubtracth1\"><link href=\"text/scalc/01/func_rawsubtract.xhp\">RAWSUBTRACT</link></variable>"
msgstr ""
#. CoCx7
@@ -64610,6 +64340,132 @@ msgctxt ""
msgid "<input>=ROMAN(0)</input> returns \"\" (empty text)."
msgstr ""
+#. aU68a
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"tit\n"
+"help.text"
+msgid "ROUNDDOWN function"
+msgstr ""
+
+#. riRPe
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"bm_id3156384\n"
+"help.text"
+msgid "<bookmark_value>ROUNDDOWN function</bookmark_value> <bookmark_value>numbers;rounding down</bookmark_value>"
+msgstr ""
+
+#. sroq5
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"hd_id601641846107898\n"
+"help.text"
+msgid "<variable id=\"rounddown_h1\"><link href=\"text/scalc/01/func_rounddown.xhp\" name=\"rounddown_link\">ROUNDDOWN function</link></variable>"
+msgstr ""
+
+#. dFaB6
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id841641927277474\n"
+"help.text"
+msgid "Rounds down a number while keeping a specified number of decimal digits."
+msgstr ""
+
+#. gchGZ
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id701642530512560\n"
+"help.text"
+msgid "This function is equivalent to the <link href=\"text/scalc/01/func_trunc.xhp\" name=\"TRUNC_link\">TRUNC function</link>."
+msgstr ""
+
+#. soLKp
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id341641927560587\n"
+"help.text"
+msgid "<input>ROUNDDOWN(Number [; Count])</input>"
+msgstr ""
+
+#. zMhAG
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id11641927688319\n"
+"help.text"
+msgid "<emph>Number:</emph> The number to be rounded down."
+msgstr ""
+
+#. CkVAE
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id861641927715672\n"
+"help.text"
+msgid "<emph>Count:</emph> Optional parameter that defines the number of decimal places to be kept. The default value is 0 (zero)."
+msgstr ""
+
+#. rJEFs
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id911641928545976\n"
+"help.text"
+msgid "Use negative values for <emph>Count</emph> to round the integer part of the original <emph>Number</emph>. For example, -1 will round down the first integer number before the decimal separator, -2 will round down the two integer numbers before the decimal separator, and so forth."
+msgstr ""
+
+#. WfEbN
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id181641929609906\n"
+"help.text"
+msgid "In %PRODUCTNAME the <emph>Count</emph> parameter is optional whereas in MS Excel this parameter is mandatory. When an ODS file contains a call to ROUNDDOWN without the <emph>Count</emph> parameter and the file is exported to XLS or XLSX formats, the missing argument will automatically be added with value zero to maintain compatibility."
+msgstr ""
+
+#. BCmT8
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id901641928192870\n"
+"help.text"
+msgid "<input>=ROUNDDOWN(21.89)</input> returns 21. Note that this example uses the default value for <emph>Count</emph> which is 0."
+msgstr ""
+
+#. aGJYK
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id901641928192110\n"
+"help.text"
+msgid "<input>=ROUNDDOWN(103.37,1)</input> returns 103.3."
+msgstr ""
+
+#. bzN7A
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id171641928456743\n"
+"help.text"
+msgid "<input>=ROUNDDOWN(0.664,2)</input> returns 0.66."
+msgstr ""
+
+#. e4fx9
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id641641928712287\n"
+"help.text"
+msgid "<input>=ROUNDDOWN(214.2,-1)</input> returns 210. Note the negative value for <emph>Count</emph>, which causes the first integer value before the decimal separator to be rounded towards zero."
+msgstr ""
+
#. E7heY
#: func_roundsig.xhp
msgctxt ""
@@ -64628,13 +64484,13 @@ msgctxt ""
msgid "<bookmark_value>ROUNDSIG Function</bookmark_value>"
msgstr ""
-#. jcZEL
+#. UCpWh
#: func_roundsig.xhp
msgctxt ""
"func_roundsig.xhp\n"
"hd_id351519154702177\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_roundsig.xhp\" name=\"command name\">ROUNDSIG</link>"
+msgid "<link href=\"text/scalc/01/func_roundsig.xhp\" name=\"function roundsig\">ROUNDSIG</link>"
msgstr ""
#. jJKBA
@@ -65726,6 +65582,132 @@ msgctxt ""
msgid "<item type=\"input\">TODAY()</item> returns the current computer system date."
msgstr "<item type=\"input\">TODAY()</item> ត្រឡប់​កាលបរិច្ឆេទ​របស់​ប្រព័ន្ធ​កុំព្យូទ័រ​បច្ចុប្បន្ន ។"
+#. Y2uYG
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"tit\n"
+"help.text"
+msgid "TRUNC function"
+msgstr ""
+
+#. UkBEB
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"bm_id3156384\n"
+"help.text"
+msgid "<bookmark_value>TRUNC function</bookmark_value> <bookmark_value>decimal places;cutting off</bookmark_value> <bookmark_value>numbers;truncate</bookmark_value>"
+msgstr ""
+
+#. CQ5Zg
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"hd_id601641846107898\n"
+"help.text"
+msgid "<variable id=\"trunc_h1\"><link href=\"text/scalc/01/func_trunc.xhp\" name=\"trunc_link\">TRUNC function</link></variable>"
+msgstr ""
+
+#. dkTrh
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id841641927277474\n"
+"help.text"
+msgid "Truncates a number while keeping a specified number of decimal digits."
+msgstr ""
+
+#. Hxed7
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id701642530512560\n"
+"help.text"
+msgid "This function is equivalent to the <link href=\"text/scalc/01/func_rounddown.xhp\" name=\"ROUNDDOWN_link\">ROUNDDOWN function</link>."
+msgstr ""
+
+#. oZAWU
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id321641927458888\n"
+"help.text"
+msgid "The rounding method used by this function is known as <emph>rounding towards zero</emph>. The resulting number will always be smaller than or equal to the original number."
+msgstr ""
+
+#. SqCQv
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id341641927560587\n"
+"help.text"
+msgid "<input>TRUNC(Number [; Count])</input>"
+msgstr ""
+
+#. RryDW
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id11641927688319\n"
+"help.text"
+msgid "<emph>Number:</emph> The number to be truncated."
+msgstr ""
+
+#. Hg6mt
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id861641927715672\n"
+"help.text"
+msgid "<emph>Count:</emph> Optional parameter that defines the number of decimal places to be kept. The default value is 0 (zero)."
+msgstr ""
+
+#. HKrSh
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id911641928545976\n"
+"help.text"
+msgid "Use negative values for <emph>Count</emph> to round the integer part of the original <emph>Number</emph>. For example, -1 will round down the first integer number before the decimal separator, -2 will round down the two integer numbers before the decimal separator, and so forth."
+msgstr ""
+
+#. EJFZd
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id901641928192870\n"
+"help.text"
+msgid "<input>=TRUNC(21.89)</input> returns 21. Note that this example uses the default value for <emph>Count</emph> which is 0."
+msgstr ""
+
+#. ccEGa
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id901641928192110\n"
+"help.text"
+msgid "<input>=TRUNC(103.37,1)</input> returns 103.3."
+msgstr ""
+
+#. jJvgo
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id171641928456743\n"
+"help.text"
+msgid "<input>=TRUNC(0.664,2)</input> returns 0.66."
+msgstr ""
+
+#. Qf3R9
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id641641928712287\n"
+"help.text"
+msgid "<input>=TRUNC(214.2,-1)</input> returns 210. Note the negative value for <emph>Count</emph>, which causes the first integer value before the decimal separator to be rounded towards zero."
+msgstr ""
+
#. w86Dm
#: func_value.xhp
msgctxt ""
@@ -67364,13 +67346,157 @@ msgctxt ""
msgid "<ahelp hid=\".\"><variable id=\"streams_desc\">Create live data streams for spreadsheets.</variable></ahelp>"
msgstr ""
-#. Zsu3z
+#. GmNXG
#: live_data_stream.xhp
msgctxt ""
"live_data_stream.xhp\n"
"par_id240920171007389295\n"
"help.text"
-msgid "Menu <menuitem>Data – Streams...</menuitem>"
+msgid "Choose <menuitem>Data – Streams</menuitem>"
+msgstr ""
+
+#. aV8Lc
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id221641995264796\n"
+"help.text"
+msgid "Data streaming is the continuous flow of data generated by various sources. In %PRODUCTNAME Calc, data streams can be processed, stored, analyzed, and acted upon as it's generated in real-time."
+msgstr ""
+
+#. KANFG
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id831641996045238\n"
+"help.text"
+msgid "Some real-life examples of streaming data include use cases in every industry, including real-time stock trades, up-to-the-minute retail inventory management, social media feeds, multiplayer game interactions, and ride-sharing apps."
+msgstr ""
+
+#. sWHpE
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id791641995257145\n"
+"help.text"
+msgid "Source stream"
+msgstr ""
+
+#. dyVdA
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id931641998122172\n"
+"help.text"
+msgid "URL"
+msgstr ""
+
+#. oYvgF
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id31641995269740\n"
+"help.text"
+msgid "URL of the source document in the local file system or internet."
+msgstr ""
+
+#. 3Bdbh
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id811641996480534\n"
+"help.text"
+msgid "Interpret stream data as"
+msgstr ""
+
+#. QpvTc
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id591641996318461\n"
+"help.text"
+msgid "<emph>value1,value2,...,valueN, and fill into range</emph>:"
+msgstr ""
+
+#. iB5Fv
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id441641996322078\n"
+"help.text"
+msgid "<emph>address,value</emph>:"
+msgstr ""
+
+#. JYyrF
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id241641998151807\n"
+"help.text"
+msgid "Empty lines trigger UI refresh"
+msgstr ""
+
+#. CEui4
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id341641995330350\n"
+"help.text"
+msgid "When new data arrives"
+msgstr ""
+
+#. snU6R
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id731641995339462\n"
+"help.text"
+msgid "There are three features of this option:"
+msgstr ""
+
+#. GLs5t
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id471641995370002\n"
+"help.text"
+msgid "<emph>Move existing data down</emph>: the existing data is moved down in index and the empty space is filled by arriving data. In short, we deal in fix range of indexes."
+msgstr ""
+
+#. nfgHU
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id841641995386510\n"
+"help.text"
+msgid "<emph>Move the range down</emph>: the arriving data is appended at the end of existing data and range of indexes to be processed is shifted."
+msgstr ""
+
+#. 4zg6F
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id1001641996559358\n"
+"help.text"
+msgid "<emph>Overwrite existing data</emph>: the arriving data overrides the existing data."
+msgstr ""
+
+#. ZHiEZ
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id121641995404922\n"
+"help.text"
+msgid "Maximal Amount of Rows"
+msgstr ""
+
+#. GTkWu
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id961641995414472\n"
+"help.text"
+msgid "Limit the maximum numbers of rows to a specified value or leave undefined, but limited to the %PRODUCTNAME Calc row limit."
msgstr ""
#. k7H5Y
diff --git a/source/km/helpcontent2/source/text/scalc/05.po b/source/km/helpcontent2/source/text/scalc/05.po
index 0fa4798f38a..c289bd160c8 100644
--- a/source/km/helpcontent2/source/text/scalc/05.po
+++ b/source/km/helpcontent2/source/text/scalc/05.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-09-03 13:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -431,13 +431,13 @@ msgctxt ""
msgid "519<br/>#VALUE!"
msgstr ""
-#. ESdqW
+#. c9Gyw
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3155954\n"
"help.text"
-msgid "No result (instead of Err:519 cell displays #VALUE!)"
+msgid "No value (instead of Err:519 cell displays #VALUE!)"
msgstr ""
#. cf6oh
@@ -530,13 +530,13 @@ msgctxt ""
msgid "524<br/>#REF!"
msgstr ""
-#. ioqDF
+#. aHB3e
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3154634\n"
"help.text"
-msgid "invalid references (instead of Err:524 cell displays #REF!)"
+msgid "Not a valid reference (instead of Err:524 cell displays #REF!)"
msgstr ""
#. iGGQE
diff --git a/source/km/helpcontent2/source/text/scalc/guide.po b/source/km/helpcontent2/source/text/scalc/guide.po
index 733439b3233..3fd0ccc12df 100644
--- a/source/km/helpcontent2/source/text/scalc/guide.po
+++ b/source/km/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: guide\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-25 12:48+0200\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -1871,14 +1871,14 @@ msgctxt ""
msgid "Area Selection"
msgstr "ការ​ជ្រើស​ផ្ទៃ"
-#. CB8nY
+#. y55CS
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
"par_id2011780\n"
"help.text"
-msgid "Use drag-and-drop to select the area where you want to input values. But start dragging from the last cell of the area and release the mouse button when you have selected the first cell. Now you can start to input values. Always press the Tab key to advance to the next cell. You will not leave the selected area."
-msgstr "ប្រើ អូស និង​ទម្លាក់ ដើម្បី​ជ្រើស​ផ្ទៃ​ដែលអ្នក​ចង់​បញ្ចូល​តម្លៃ ។ ប៉ុន្តែ​ចាប់ផ្ដើម​អូស​ពី​ក្រឡា​ចុងក្រោយ​នៃ​ផ្ទៃ ហើយ​លែង​ប៊ូតុង​កណ្ដុរ នៅពេល​ដែល​អ្នក​បាន​ជ្រើស​ក្រឡាទីមួយ ។ ឥឡូវ អ្នក​អាច​ចាប់ផ្ដើម​បញ្ចូល​តម្លៃ​បាន ។ សង្កត់​គ្រាប់ចុច​ថេប (Tab)​​ជានិច ដើម្បី​ទៅកាន់​ក្រឡា​បន្ទាប់ ។ អ្នក​នឹង​មិន​ចេញ​ពី​ផ្ទៃ​ដែល​បាន​ជ្រើស​ឡើយ ។"
+msgid "Select the area where you want to input values. Now you can start to input values from the cursor position in the selected area. Press the <keycode>Tab</keycode> key to advance to the next cell or <keycode>Shift</keycode> + <keycode>Tab</keycode> to move backward. At the edges of the selected area the tab key jumps inside the selected area. You will not leave the selected area."
+msgstr ""
#. HbCtq
#: cell_enter.xhp
@@ -1889,14 +1889,14 @@ msgctxt ""
msgid "<image id=\"img_id2811365\" src=\"media/helpimg/area2.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id2811365\">area selection</alt></image>"
msgstr "<image id=\"img_id2811365\" src=\"media/helpimg/area2.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id2811365\">ការ​ជ្រើស​ផ្ទៃ</alt></image>"
-#. Lgtau
+#. CCcpp
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
"par_id3232520\n"
"help.text"
-msgid "Select the area from E7 to B3. Now B3 is waiting for your input. Press Tab to advance to the next cell within the selected area."
-msgstr "ជ្រើស​ផ្ទៃ​ពី E7 ទៅ B3 ។ ឥឡូវ B3 កំពុង​រង់ចាំ​ការ​បញ្ចូល​របស់​អ្នក ។ សង្កត់​គ្រាប់​ចុចថេប (Tab)ដើម្បី​ទៅកាន់​ក្រឡា​បន្ទាប់​នៅ​ក្នុង​ផ្ទៃដែលបាន​ជ្រើស ។"
+msgid "Select the area from B3 to E7. Now B3 is waiting for your input. Press <keycode>Tab</keycode> to advance to the next cell within the selected area."
+msgstr ""
#. pbEDF
#: cell_enter.xhp
@@ -2636,13 +2636,13 @@ msgctxt ""
msgid "In a $[officename] Calc document, position the cursor in the cell into which you want to insert the external data."
msgstr "ក្នុង​ឯកសារ $[officename] Calc ដាក់​ទស្សន៍​ទ្រនិច​ក្នុង​ក្រឡា​ដែល​អ្នក​ចង់​បញ្ចូល​ទិន្នន័យ​ខាង​ក្រៅ ។"
-#. HRaaG
+#. 5JKBf
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
"par_id3145384\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Sheet - Link to External Data</item>. The <link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\"><item type=\"menuitem\">External Data</item></link> dialog appears."
+msgid "Choose <item type=\"menuitem\">Sheet - External Links</item>. The <link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\"><item type=\"menuitem\">External Data</item></link> dialog appears."
msgstr ""
#. EQzxX
@@ -13364,13 +13364,13 @@ msgctxt ""
msgid "Set the cell cursor at the cell where the new content will be inserted."
msgstr "កំណត់​ទស្សន៍​ទ្រនិច​ត្រង់​ក្រឡា​ដែល​នឹង​ត្រូវ​បញ្ចូល​មាតិកា​ថ្មី ។"
-#. AFBCH
+#. SCn3P
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
"par_id3145750\n"
"help.text"
-msgid "Choose <emph>Sheet - Link to External Data</emph>. This opens the <link href=\"text/scalc/01/04090000.xhp\">External Data</link> dialog."
+msgid "Choose <emph>Sheet - External Links</emph>. This opens the <link href=\"text/scalc/01/04090000.xhp\">External Data</link> dialog."
msgstr ""
#. AGj3g
diff --git a/source/km/helpcontent2/source/text/sdatabase.po b/source/km/helpcontent2/source/text/sdatabase.po
index 86748e23fa2..6102fa4fb68 100644
--- a/source/km/helpcontent2/source/text/sdatabase.po
+++ b/source/km/helpcontent2/source/text/sdatabase.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-19 15:44+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2785,13 +2785,13 @@ msgctxt ""
msgid "Natural"
msgstr ""
-#. 44FEn
+#. jNw6g
#: 02010101.xhp
msgctxt ""
"02010101.xhp\n"
"par_id0305200912031977\n"
"help.text"
-msgid "<ahelp hid=\".\">In a natural join, the keyword NATURAL in inserted into the SQL statement that defines the relation. The relation joins all columns that have the same column name in both tables. The resulting joined table contains only one column for each pair of equally named columns.</ahelp>"
+msgid "<ahelp hid=\".\">In a natural join, the keyword NATURAL is inserted into the SQL statement that defines the relation. The relation joins all columns that have the same column name in both tables. The resulting joined table contains only one column for each pair of equally named columns.</ahelp>"
msgstr ""
#. pK6MV
@@ -7825,15 +7825,6 @@ msgctxt ""
msgid "<link href=\"text/sdatabase/dabawiz02access.xhp\">Set up Microsoft Access or Microsoft Access 2007 connection</link>"
msgstr ""
-#. NCWx8
-#: dabawiz01.xhp
-msgctxt ""
-"dabawiz01.xhp\n"
-"par_idN1063A\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">Set up LDAP connection</link>"
-msgstr ""
-
#. 6qgTE
#: dabawiz01.xhp
msgctxt ""
@@ -9067,6 +9058,150 @@ msgctxt ""
msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
msgstr ""
+#. MBZfJ
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"tit\n"
+"help.text"
+msgid "PostgreSQL Connection"
+msgstr ""
+
+#. JBJjz
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"bm_id861587404584956\n"
+"help.text"
+msgid "<bookmark_value>PostgreSQL settings (Base)</bookmark_value>"
+msgstr ""
+
+#. e9apS
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"hd_id971643043442131\n"
+"help.text"
+msgid "<variable id=\"pgsqlh1\"><link href=\"text/sdatabase/dabawiz02pgsql.xhp\" name=\"pgconnection\">PostgreSQL Connection</link></variable>"
+msgstr ""
+
+#. mReEM
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id811643043442133\n"
+"help.text"
+msgid "Specifies the options for connecting to PostgreSQL databases."
+msgstr ""
+
+#. Chhvj
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"hd_id321643044241406\n"
+"help.text"
+msgid "DBMS/driver-specific connection string"
+msgstr ""
+
+#. Tb6Ng
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id341643044249556\n"
+"help.text"
+msgid "Enter the driver specific connection string. The connection string is sequence of keyword/value pairs separated by spaces. For example"
+msgstr ""
+
+#. wHmxd
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id471643044279530\n"
+"help.text"
+msgid "<literal>dbname=MyDatabase host=myHost port=5432</literal>"
+msgstr ""
+
+#. HCUdA
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id301643045873140\n"
+"help.text"
+msgid "where"
+msgstr ""
+
+#. okKGB
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id511643044303340\n"
+"help.text"
+msgid "<emph>dbname</emph>: the name of the database hosted in the DBMS server."
+msgstr ""
+
+#. 4GHUU
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id331643044364699\n"
+"help.text"
+msgid "<emph>host</emph>: the fully qualified name of the RDBMS server"
+msgstr ""
+
+#. 2gktB
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id931643044367236\n"
+"help.text"
+msgid "<emph>port</emph>: the server port. The default port for PostgreSQL is 5432."
+msgstr ""
+
+#. GYeTa
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id421643049901759\n"
+"help.text"
+msgid "You can also enter the connection string as"
+msgstr ""
+
+#. qAHKg
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id51643050033680\n"
+"help.text"
+msgid "<literal>postgresql://myHost:port/MyDatabase</literal>."
+msgstr ""
+
+#. J8uHf
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id71643046088031\n"
+"help.text"
+msgid "Refer to the database server administrator for the correct values of the keywords passed in the connection string. Values for <emph>user=</emph> and <emph>password=</emph> are ignored but will be requested at connection time."
+msgstr ""
+
+#. bsUA3
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id131643048856194\n"
+"help.text"
+msgid "The connection string is displayed in the %PRODUCTNAME Base status bar."
+msgstr ""
+
+#. FupET
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id571643046067450\n"
+"help.text"
+msgid "List of all keyword/value pairs for <link href=\"https://www.postgresql.org/docs/13/libpq-connect.html#LIBPQ-PARAMKEYWORDS\" name=\"PG13keywords\">PostgreSQL 13</link> connection string. Not every pair is handled by the %PRODUCTNAME driver manager."
+msgstr ""
+
#. XoiBM
#: dabawiz02spreadsheet.xhp
msgctxt ""
@@ -10201,13 +10336,13 @@ msgctxt ""
msgid "Report"
msgstr ""
-#. MT4CQ
+#. jiTyY
#: menuinsert.xhp
msgctxt ""
"menuinsert.xhp\n"
"par_idN1058F\n"
"help.text"
-msgid "<ahelp hid=\".\">Starts the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> window for the selected table, view, or query.</ahelp>"
+msgid "<ahelp hid=\".\">Starts the <link href=\"text/sdatabase/rep_main.xhp\">Report Builder</link> window for the selected table, view, or query.</ahelp>"
msgstr ""
#. 99GPr
@@ -10705,6 +10840,2931 @@ msgctxt ""
msgid "<ahelp hid=\".\">Refreshes the tables. </ahelp>"
msgstr ""
+#. kyYMn
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"tit\n"
+"help.text"
+msgid "Migrate Macros"
+msgstr ""
+
+#. KDtEB
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"bm_id6009095\n"
+"help.text"
+msgid "<bookmark_value>wizards;macros (Base)</bookmark_value> <bookmark_value>Macro Wizard (Base)</bookmark_value> <bookmark_value>macros;attaching new (Base)</bookmark_value> <bookmark_value>migrating macros (Base)</bookmark_value>"
+msgstr ""
+
+#. tjLuE
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"hd_id0112200902353472\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/migrate_macros.xhp\">Migrate Macros</link>"
+msgstr ""
+
+#. xMVrd
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"par_id0112200902353466\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Database Document Macro Migration Wizard moves existing macros from sub-documents of an old Base file into the new Base file's macro storage area.</ahelp>"
+msgstr ""
+
+#. ajASD
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"par_id0224200911454780\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Choose a location and file name to save the new database file. By default, the new file gets the same name as the old file, while the old file gets renamed with the string \"backup\" in the name.</ahelp>"
+msgstr ""
+
+#. M7aSL
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"par_id022420091145472\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">The list shows all changes that were applied to the database file.</ahelp>"
+msgstr ""
+
+#. hee9q
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"par_id0112200902353542\n"
+"help.text"
+msgid "Previously, macros have been allowed to reside only in the text sub-documents of forms and reports. Now macros can also be stored in the Base file itself. This means that macros in Base files can be called now from any of its sub-components: forms, reports, table design, query design, relation design, table data view."
+msgstr ""
+
+#. DhC2o
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"par_id0112200903075865\n"
+"help.text"
+msgid "However, it is technically not possible to store macros both in a Base file and in its sub-documents at the same time. So, if you want to attach some new macros to the Base file, while retaining any existing old macros that were stored in the sub-documents, you must move the existing old macros up to the Base file's macro storage area."
+msgstr ""
+
+#. mtCb7
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"par_id0112200903075830\n"
+"help.text"
+msgid "The Database Document Macro Migration Wizard can move the macros up into the Base file's storage area. You can then examine the macros and edit them as needed."
+msgstr ""
+
+#. RJUfX
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"par_id0112200903075951\n"
+"help.text"
+msgid "For example, it is possible that macros from the sub-documents had the same module names and macro names. After you moved the macros into one common macro storage area, you must edit the macros to make the names unique. The wizard cannot do this."
+msgstr ""
+
+#. pSFRn
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"par_id0112200903075915\n"
+"help.text"
+msgid "The wizard can backup the Base file to another folder of your choice. The wizard changes the original Base file. The backup remains unchanged."
+msgstr ""
+
+#. WCGZK
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"par_id0112200902353554\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Macros_in_Database_Documents\" name=\"wiki.documentfoundation.org Macros in Database Documents\">An in depth explanation by the developers (Wiki).</link>"
+msgstr ""
+
+#. WG9NH
+#: password.xhp
+msgctxt ""
+"password.xhp\n"
+"tit\n"
+"help.text"
+msgid "User Name and Password Required"
+msgstr ""
+
+#. WekVB
+#: password.xhp
+msgctxt ""
+"password.xhp\n"
+"par_idN10541\n"
+"help.text"
+msgid "User Name and Password Required"
+msgstr ""
+
+#. LCLTp
+#: password.xhp
+msgctxt ""
+"password.xhp\n"
+"par_idN1054D\n"
+"help.text"
+msgid "User name"
+msgstr ""
+
+#. Rx3tD
+#: password.xhp
+msgctxt ""
+"password.xhp\n"
+"par_idN10551\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the user name to connect to the data source.</ahelp>"
+msgstr ""
+
+#. dQH7s
+#: password.xhp
+msgctxt ""
+"password.xhp\n"
+"par_idN10568\n"
+"help.text"
+msgid "Password"
+msgstr ""
+
+#. dqjRr
+#: password.xhp
+msgctxt ""
+"password.xhp\n"
+"par_idN1056C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the password to connect to the data source.</ahelp>"
+msgstr ""
+
+#. TudyG
+#: password.xhp
+msgctxt ""
+"password.xhp\n"
+"par_idN10583\n"
+"help.text"
+msgid "Remember password till end of session"
+msgstr ""
+
+#. KYrgJ
+#: password.xhp
+msgctxt ""
+"password.xhp\n"
+"par_idN10587\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to use the same user name and password without further dialog, when you connect again to the same data source in the current %PRODUCTNAME session.</ahelp>"
+msgstr ""
+
+#. EWAYC
+#: querywizard00.xhp
+msgctxt ""
+"querywizard00.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Wizard"
+msgstr ""
+
+#. VGUsH
+#: querywizard00.xhp
+msgctxt ""
+"querywizard00.xhp\n"
+"par_idN1054C\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard00.xhp\">Query Wizard</link>"
+msgstr ""
+
+#. 7eeqf
+#: querywizard00.xhp
+msgctxt ""
+"querywizard00.xhp\n"
+"par_idN1055C\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Query Wizard helps you to design a database query.</ahelp> The saved query can be called later, either from the graphical user interface, or using the automatically created SQL language command."
+msgstr ""
+
+#. SCN34
+#: querywizard00.xhp
+msgctxt ""
+"querywizard00.xhp\n"
+"par_idN105D2\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard01.xhp\" name=\"Query Wizard - Field Selection\">Query Wizard - Field selection</link>"
+msgstr ""
+
+#. qKgrF
+#: querywizard01.xhp
+msgctxt ""
+"querywizard01.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Wizard - Field Selection"
+msgstr ""
+
+#. ago2e
+#: querywizard01.xhp
+msgctxt ""
+"querywizard01.xhp\n"
+"par_idN10546\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard01.xhp\">Query Wizard - Field Selection</link>"
+msgstr ""
+
+#. zvnWy
+#: querywizard01.xhp
+msgctxt ""
+"querywizard01.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "Specifies the table to create the query, and specifies which fields you wish to include in the query."
+msgstr ""
+
+#. bjRCe
+#: querywizard01.xhp
+msgctxt ""
+"querywizard01.xhp\n"
+"par_idN10559\n"
+"help.text"
+msgid "Tables"
+msgstr ""
+
+#. RBgge
+#: querywizard01.xhp
+msgctxt ""
+"querywizard01.xhp\n"
+"par_idN1055D\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the table for which the query is to be created.</ahelp>"
+msgstr ""
+
+#. BFXtZ
+#: querywizard01.xhp
+msgctxt ""
+"querywizard01.xhp\n"
+"par_idN10590\n"
+"help.text"
+msgid "Fields in the Query"
+msgstr ""
+
+#. n6cwc
+#: querywizard01.xhp
+msgctxt ""
+"querywizard01.xhp\n"
+"par_idN10594\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays all fields that will be included in the new query.</ahelp>"
+msgstr ""
+
+#. MJBo8
+#: querywizard01.xhp
+msgctxt ""
+"querywizard01.xhp\n"
+"par_idN10597\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard02.xhp\" name=\"Query Wizard - Sorting order\">Query Wizard - Sorting order</link>"
+msgstr ""
+
+#. T7jwS
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Wizard - Sorting Order"
+msgstr ""
+
+#. 6jtTb
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN10543\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard02.xhp\">Query Wizard - Sorting Order</link>"
+msgstr ""
+
+#. hv6wL
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN10553\n"
+"help.text"
+msgid "Specifies the sorting order for the data records in your query."
+msgstr ""
+
+#. eVr57
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "Sort by"
+msgstr ""
+
+#. CRtP3
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN105B2\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the field by which the created query is sorted.</ahelp>"
+msgstr ""
+
+#. xUjcF
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN1055C\n"
+"help.text"
+msgid "Ascending"
+msgstr ""
+
+#. aSXt6
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN105BF\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to sort in alphabetically or numerically ascending order.</ahelp>"
+msgstr ""
+
+#. pR3aG
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN10562\n"
+"help.text"
+msgid "Descending"
+msgstr ""
+
+#. 9BtoZ
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN105CC\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to sort in alphabetically or numerically descending order.</ahelp>"
+msgstr ""
+
+#. 6U4wS
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN10568\n"
+"help.text"
+msgid "And then by"
+msgstr ""
+
+#. CqmF3
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN105D9\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies additional fields by which the created query is sorted, if previous sort fields are equal.</ahelp>"
+msgstr ""
+
+#. pEGB3
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN1056E\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard03.xhp\" name=\"Query Wizard - Search conditions\">Query Wizard - Search conditions</link>"
+msgstr ""
+
+#. Ezdjv
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Wizard - Search Conditions"
+msgstr ""
+
+#. usSAE
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN10543\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard03.xhp\">Query Wizard - Search Conditions</link>"
+msgstr ""
+
+#. Axn74
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN10553\n"
+"help.text"
+msgid "Specifies the search conditions to filter the query."
+msgstr ""
+
+#. MBS9h
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "Match all of the following"
+msgstr ""
+
+#. eGvAt
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN105B2\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to filter the query by all the conditions using a logical AND.</ahelp>"
+msgstr ""
+
+#. mowq3
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN1055C\n"
+"help.text"
+msgid "Match any of the following"
+msgstr ""
+
+#. m9DAv
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN105BF\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to filter the query by any of the conditions using a logical OR.</ahelp>"
+msgstr ""
+
+#. YzKAZ
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN10562\n"
+"help.text"
+msgid "Field"
+msgstr ""
+
+#. zJBqq
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN105CC\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the field name for the filter condition.</ahelp>"
+msgstr ""
+
+#. cpBwd
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN10568\n"
+"help.text"
+msgid "Condition"
+msgstr ""
+
+#. FRFQM
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN105D9\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the condition for the filter.</ahelp>"
+msgstr ""
+
+#. dF2FF
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN1056E\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. ZKEEw
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN105E6\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the value for the filter condition.</ahelp>"
+msgstr ""
+
+#. huAnr
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN10574\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard04.xhp\" name=\"Query Wizard - Detail or Summary\">Query Wizard - Detail or summary</link>"
+msgstr ""
+
+#. AFtfc
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Wizard - Detail or Summary"
+msgstr ""
+
+#. He5oE
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN10543\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard04.xhp\">Query Wizard - Detail or Summary</link>"
+msgstr ""
+
+#. pvdAU
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN10553\n"
+"help.text"
+msgid "Specifies whether to display all records of the query, or only the results of aggregate functions."
+msgstr ""
+
+#. GNBdc
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "This page is only displayed when there are numerical fields in the query that allow the use of aggregate functions."
+msgstr ""
+
+#. LAhTk
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN10559\n"
+"help.text"
+msgid "Detailed query"
+msgstr ""
+
+#. aXtmP
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN105BD\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to show all records of the query.</ahelp>"
+msgstr ""
+
+#. h7yp9
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN105C2\n"
+"help.text"
+msgid "Summary query"
+msgstr ""
+
+#. 4VMFu
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN105C8\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to show only results of aggregate functions.</ahelp>"
+msgstr ""
+
+#. CEC9y
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN105D7\n"
+"help.text"
+msgid "Select the aggregate function and the field name of the numeric field in the list box. You can enter as many aggregate functions as you want, one in each row of controls."
+msgstr ""
+
+#. QCySK
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN1055D\n"
+"help.text"
+msgid "Aggregate function"
+msgstr ""
+
+#. H3vuB
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN105E4\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the aggregate function.</ahelp>"
+msgstr ""
+
+#. 7VBHB
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN105DD\n"
+"help.text"
+msgid "Field name"
+msgstr ""
+
+#. DhcSj
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN10656\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the numeric field name.</ahelp>"
+msgstr ""
+
+#. 2fBzx
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN105E7\n"
+"help.text"
+msgid "+"
+msgstr ""
+
+#. hM5kP
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN105FE\n"
+"help.text"
+msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
+msgstr ""
+
+#. psHk4
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN105F1\n"
+"help.text"
+msgid "−"
+msgstr ""
+
+#. MYCN9
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN1060B\n"
+"help.text"
+msgid "<ahelp hid=\".\">Removes the last row of controls.</ahelp>"
+msgstr ""
+
+#. 95hsW
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN1060E\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard05.xhp\" name=\"Query Wizard - Grouping\">Query Wizard - Grouping</link>"
+msgstr ""
+
+#. d4Arr
+#: querywizard05.xhp
+msgctxt ""
+"querywizard05.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Wizard - Grouping"
+msgstr ""
+
+#. kwKJA
+#: querywizard05.xhp
+msgctxt ""
+"querywizard05.xhp\n"
+"par_idN10546\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard05.xhp\">Query Wizard - Grouping</link>"
+msgstr ""
+
+#. yimYQ
+#: querywizard05.xhp
+msgctxt ""
+"querywizard05.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "Specifies whether to group the query. The data source must support the SQL statement \"Group by clauses\" to enable this page of the Wizard."
+msgstr ""
+
+#. BEcEC
+#: querywizard05.xhp
+msgctxt ""
+"querywizard05.xhp\n"
+"par_idN10589\n"
+"help.text"
+msgid "Group by"
+msgstr ""
+
+#. XSPcc
+#: querywizard05.xhp
+msgctxt ""
+"querywizard05.xhp\n"
+"par_idN1058D\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays all fields that are to be used to group the query.</ahelp>"
+msgstr ""
+
+#. bebrL
+#: querywizard05.xhp
+msgctxt ""
+"querywizard05.xhp\n"
+"par_idN10590\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard06.xhp\" name=\"Query Wizard - Grouping conditions\">Query Wizard - Grouping conditions</link>"
+msgstr ""
+
+#. FJyRe
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Wizard - Grouping Conditions"
+msgstr ""
+
+#. rvBec
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN10546\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard06.xhp\">Query Wizard - Grouping Conditions</link>"
+msgstr ""
+
+#. isYHF
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "Specifies the conditions to group the query. The data source must support the SQL statement \"Group by clauses\" to enable this page of the Wizard."
+msgstr ""
+
+#. E2hjZ
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN10559\n"
+"help.text"
+msgid "Match all of the following"
+msgstr ""
+
+#. tsdNz
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN1055D\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to group the query by all the conditions using a logical AND.</ahelp>"
+msgstr ""
+
+#. vG7ub
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN10560\n"
+"help.text"
+msgid "Match any of the following"
+msgstr ""
+
+#. H4kNz
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN10564\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to group the query by any of the conditions using a logical OR.</ahelp>"
+msgstr ""
+
+#. CRQPr
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN10567\n"
+"help.text"
+msgid "Field name"
+msgstr ""
+
+#. AUDUW
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN1056B\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the field name for the grouping condition.</ahelp>"
+msgstr ""
+
+#. vYSzM
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN1056E\n"
+"help.text"
+msgid "Condition"
+msgstr ""
+
+#. VHAhf
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN10572\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the condition for the grouping.</ahelp>"
+msgstr ""
+
+#. LYZYG
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN10575\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. GBywN
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN10579\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the value for the grouping condition.</ahelp>"
+msgstr ""
+
+#. tg3CC
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN1057C\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard07.xhp\" name=\"Query Wizard - Aliases\">Query Wizard - Aliases</link>"
+msgstr ""
+
+#. LGziG
+#: querywizard07.xhp
+msgctxt ""
+"querywizard07.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Wizard - Aliases"
+msgstr ""
+
+#. dCG5v
+#: querywizard07.xhp
+msgctxt ""
+"querywizard07.xhp\n"
+"par_idN10543\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard07.xhp\">Query Wizard - Aliases</link>"
+msgstr ""
+
+#. 8qMru
+#: querywizard07.xhp
+msgctxt ""
+"querywizard07.xhp\n"
+"par_idN10553\n"
+"help.text"
+msgid "Assigns aliases to field names. Aliases are optional, and can provide more user-friendly names, which are displayed in place of field names. For example, an alias can be used when fields from different tables have the same name."
+msgstr ""
+
+#. GKQBZ
+#: querywizard07.xhp
+msgctxt ""
+"querywizard07.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "Alias"
+msgstr ""
+
+#. TiaDt
+#: querywizard07.xhp
+msgctxt ""
+"querywizard07.xhp\n"
+"par_idN1055A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the alias for the field name.</ahelp>"
+msgstr ""
+
+#. cHhQS
+#: querywizard07.xhp
+msgctxt ""
+"querywizard07.xhp\n"
+"par_idN1055D\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard08.xhp\" name=\"Query Wizard - Overview\">Query Wizard - Overview</link>"
+msgstr ""
+
+#. ZD37L
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Wizard - Overview"
+msgstr ""
+
+#. eZifq
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN10543\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard08.xhp\">Query Wizard - Overview</link>"
+msgstr ""
+
+#. Eugc7
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN10553\n"
+"help.text"
+msgid "Enter a name of the query, and specify whether you want to display or to modify the query after the Wizard is finished."
+msgstr ""
+
+#. zjCxf
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "Name of the query"
+msgstr ""
+
+#. ZLJYh
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN1055A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the name of the query.</ahelp>"
+msgstr ""
+
+#. uC9Qc
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN1055D\n"
+"help.text"
+msgid "Display query"
+msgstr ""
+
+#. BJa3G
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN10561\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to save and display the query.</ahelp>"
+msgstr ""
+
+#. yN4FB
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN10564\n"
+"help.text"
+msgid "Modify query"
+msgstr ""
+
+#. VKpNF
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN10568\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to save the query and open it for editing.</ahelp>"
+msgstr ""
+
+#. 3ww32
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN1056B\n"
+"help.text"
+msgid "Overview"
+msgstr ""
+
+#. SfUBA
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN1056F\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays a summary of the query.</ahelp>"
+msgstr ""
+
+#. 8k8Fx
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN10572\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard00.xhp\" name=\"Query Wizard\">Query Wizard</link>"
+msgstr ""
+
+#. Us2de
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"tit\n"
+"help.text"
+msgid "Date and Time"
+msgstr ""
+
+#. eDaHU
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"hd_id2320932\n"
+"help.text"
+msgid "<variable id=\"rep_datetime\"><link href=\"text/sdatabase/rep_datetime.xhp\">Date and Time</link></variable>"
+msgstr ""
+
+#. DrUB4
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"par_id8638874\n"
+"help.text"
+msgid "<ahelp hid=\".\">You can open the Date and Time dialog of the <link href=\"text/sdatabase/rep_main.xhp\">Report Builder</link> by choosing <item type=\"menuitem\">Insert - Date and Time</item>.</ahelp>"
+msgstr ""
+
+#. tSLyd
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"par_id6278878\n"
+"help.text"
+msgid "Press <item type=\"keycode\">Shift-F1</item> and point with the mouse at an input box to see a help text for this input box."
+msgstr ""
+
+#. ppg4k
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"par_id393078\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enable Include Date to insert a date field into the active area of the report. The date field displays the current date when the report is executed.</ahelp>"
+msgstr ""
+
+#. 6ued5
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"par_id1271401\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a format to display the date.</ahelp>"
+msgstr ""
+
+#. VvPJF
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"par_id8718832\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enable Include Time to insert a time field into the active area of the report. The time field displays the current time when the report is executed.</ahelp>"
+msgstr ""
+
+#. DfCAA
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"par_id8561052\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a format to display the time.</ahelp>"
+msgstr ""
+
+#. cVAzu
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"par_id5992919\n"
+"help.text"
+msgid "Click OK to insert the field."
+msgstr ""
+
+#. WFpF6
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"par_id4320810\n"
+"help.text"
+msgid "You can click the date or time field and drag to another position within the same area, or edit the properties in the Properties window."
+msgstr ""
+
+#. DCjDN
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Fields"
+msgstr ""
+
+#. DiU2a
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"bm_id61540566967968\n"
+"help.text"
+msgid "<bookmark_value>insert fields;in report design</bookmark_value> <bookmark_value>add fields;in report design</bookmark_value> <bookmark_value>report design;add fields to report</bookmark_value>"
+msgstr ""
+
+#. ZSrFy
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"hd_id361540562942432\n"
+"help.text"
+msgid "<variable id=\"addfields\"><link href=\"text/sdatabase/rep_insertfield.xhp\" name=\"Add Fields\">Add fields to report</link></variable>"
+msgstr ""
+
+#. zFCzB
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id3587145\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Add Field window helps you to insert the table entries in the report.</ahelp>"
+msgstr ""
+
+#. dzGbq
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id4503921\n"
+"help.text"
+msgid "The Add Field window is shown automatically when you have selected a table in the Contents box and leave that box."
+msgstr ""
+
+#. hQDBC
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id171540674707522\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">View - Add Field</item>."
+msgstr ""
+
+#. hxBBt
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id991540674901837\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/cmd/lc_addfield.svg\" id=\"img_id621540674901837\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id491540674901837\">Add field icon</alt></image>"
+msgstr ""
+
+#. oEoAE
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id121540674874655\n"
+"help.text"
+msgid "Click the Add Field icon on the toolbar."
+msgstr ""
+
+#. BqWBD
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id141540563922693\n"
+"help.text"
+msgid "Select the field in the Add Field dialog and click <emph>Insert</emph>. You can select multiple fields pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while clicking on the fields name or using the Shift key while pressing the mouse button. Click <emph>Insert</emph> in the toolbar to add the fields to the report."
+msgstr ""
+
+#. BGjjH
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id4051026\n"
+"help.text"
+msgid "Drag and drop the field names one by one from the Add Field window into the Detail area of the report. Position the fields as you like. Use the icons in the toolbars to align the fields."
+msgstr ""
+
+#. Hk568
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id3397320\n"
+"help.text"
+msgid "It is not possible to overlap the fields. If you drop a table field on the Detail area, then a label and a text box are inserted."
+msgstr ""
+
+#. RGprC
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id3059785\n"
+"help.text"
+msgid "You can also insert text that should be the same on every page of the report. Click the Label Field icon <image id=\"img_id5605334\" src=\"media/icon-themes/cmd/lc_addfield.svg\" width=\"0.566cm\" height=\"0.566cm\" localize=\"true\"><alt id=\"alt_id5605334\">Icon</alt></image>, then drag a rectangle in the Page Header or Page Footer area. Edit the Label property to show the text you want."
+msgstr ""
+
+#. VjpkA
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"hd_id251540563929787\n"
+"help.text"
+msgid "Sorting fields names"
+msgstr ""
+
+#. pNfxS
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id651540564204840\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/cmd/sc_sortascending.svg\" id=\"img_id631540564204841\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id141540564204841\">Sort Ascending icon</alt></image>"
+msgstr ""
+
+#. EfMFi
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id401540563992665\n"
+"help.text"
+msgid "Sort names ascending."
+msgstr ""
+
+#. 9jVwk
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id811540564184191\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/cmd/sc_sortdescending.svg\" id=\"img_id391540564184192\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id571540564184192\">Sort descending icon</alt></image>"
+msgstr ""
+
+#. BEcwL
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id401540563942665\n"
+"help.text"
+msgid "Sort names descending,"
+msgstr ""
+
+#. GRKuP
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id851540564212907\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/cmd/lc_removefiltersort.svg\" id=\"img_id41540564212907\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id421540564212908\">Undo sorting icon</alt></image>"
+msgstr ""
+
+#. DVAm8
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id401540533942665\n"
+"help.text"
+msgid "Restore original sorting"
+msgstr ""
+
+#. gCECo
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"tit\n"
+"help.text"
+msgid "Report Builder"
+msgstr ""
+
+#. Yyb28
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"bm_id1614429\n"
+"help.text"
+msgid "<bookmark_value>Report Builder</bookmark_value> <bookmark_value>Oracle Report Builder</bookmark_value>"
+msgstr ""
+
+#. DouuB
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"hd_id8773155\n"
+"help.text"
+msgid "<variable id=\"rep_main\"><link href=\"text/sdatabase/rep_main.xhp\">Report Builder</link></variable>"
+msgstr ""
+
+#. tcUx2
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id5248573\n"
+"help.text"
+msgid "The Report Builder is a tool to create your own database reports. Unlike with the <link href=\"text/shared/autopi/01100000.xhp\">Report Wizard</link>, using the Report Builder you can take control to design the report the way you want. The generated report is a Writer document that you can edit, too."
+msgstr ""
+
+#. kCCcM
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7128818\n"
+"help.text"
+msgid "To use the Report Builder, the Java Runtime Environment (JRE) software must be installed, and this software must be selected in %PRODUCTNAME."
+msgstr ""
+
+#. MUFG8
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"hd_id556047\n"
+"help.text"
+msgid "To install the JRE software"
+msgstr ""
+
+#. CTy58
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id4515823\n"
+"help.text"
+msgid "The Report Builder requires an installed Java Runtime Environment (JRE)."
+msgstr ""
+
+#. t42Ud
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id4044312\n"
+"help.text"
+msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/java.xhp\">Advanced</link>."
+msgstr ""
+
+#. bGABC
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id1369060\n"
+"help.text"
+msgid "Wait up to one minute, while %PRODUCTNAME collects information on installed Java software on your system."
+msgstr ""
+
+#. oxLT3
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id860927\n"
+"help.text"
+msgid "If a recent JRE version is found on your system, you see an entry in the list."
+msgstr ""
+
+#. 87xW7
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id8581804\n"
+"help.text"
+msgid "Click the option button in front of the entry to enable this JRE version for use in %PRODUCTNAME."
+msgstr ""
+
+#. KmqC6
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7730033\n"
+"help.text"
+msgid "Ensure that <emph>Use a Java runtime environment</emph> is enabled."
+msgstr ""
+
+#. oeX8D
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id6317636\n"
+"help.text"
+msgid "If no JRE version is found on your system, open your web browser and download the JRE software from <link href=\"http://www.java.com\">http://www.java.com</link>. Install the JRE software. Then restart %PRODUCTNAME and open <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Advanced again."
+msgstr ""
+
+#. 87hJD
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"hd_id9759514\n"
+"help.text"
+msgid "To open the Report Builder"
+msgstr ""
+
+#. TxLZj
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id9076509\n"
+"help.text"
+msgid "Open a Base file or create a new database. The database must contain at least one table with at least one data field and a primary key field."
+msgstr ""
+
+#. NiuEf
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7050691\n"
+"help.text"
+msgid "Click the Reports icon in the Base window, then choose Create Report in Design View."
+msgstr ""
+
+#. u7db8
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7118747\n"
+"help.text"
+msgid "The Report Builder window opens."
+msgstr ""
+
+#. eC7Ku
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id8283639\n"
+"help.text"
+msgid "The Report Builder is divided into three parts. On the top you see the menu, with the toolbars below."
+msgstr ""
+
+#. FZucS
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id2291024\n"
+"help.text"
+msgid "On the right you see the Properties window with the property values of the currently selected object."
+msgstr ""
+
+#. 9iUTs
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id2100589\n"
+"help.text"
+msgid "The left part of the Report Builder window shows the Report Builder view. The Report Builder view is initially divided into three sections, from top to bottom:"
+msgstr ""
+
+#. bpA2e
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id5022125\n"
+"help.text"
+msgid "<emph>Page Header</emph> - drag control fields with fixed text into the Page Header area"
+msgstr ""
+
+#. TcX6C
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id6844386\n"
+"help.text"
+msgid "<emph>Detail</emph> - drag and drop database fields into the Detail area"
+msgstr ""
+
+#. k3qgL
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7018646\n"
+"help.text"
+msgid "<emph>Page Footer</emph> - drag control fields with fixed text into the Page Footer area"
+msgstr ""
+
+#. GbMdT
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id5857112\n"
+"help.text"
+msgid "To insert an additional <emph>Report Header</emph> and <emph>Report Footer</emph> area choose <item type=\"menuitem\">Edit - Insert Report Header/Footer</item>. These areas contain text that appears at the start and end of the whole report."
+msgstr ""
+
+#. cvEuz
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id6042664\n"
+"help.text"
+msgid "Click the \"-\" icon in front of an area name to collapse that area to one line in the Report Builder view. The \"-\" icon changes to a \"+\" icon, and you can click this to expand the area again."
+msgstr ""
+
+#. NCMdn
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id1589098\n"
+"help.text"
+msgid "You insert database fields by drag-and-drop into the Detail area. See the section \"To insert fields into the report\" below."
+msgstr ""
+
+#. 3dx6B
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id1278420\n"
+"help.text"
+msgid "In addition, you can click the Label Field or Text Box icon in the toolbar, then drag a rectangle in the Page Header or Page Footer area, to define a text that is the same on all pages. You enter the text in the Label box of the corresponding Properties window. You can also add graphics by using the Graphics icon."
+msgstr ""
+
+#. 25GDr
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7479476\n"
+"help.text"
+msgid "To connect the report to a database table"
+msgstr ""
+
+#. TuFVF
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id2218390\n"
+"help.text"
+msgid "Move the mouse to the Properties view. You see two tab pages General and Data."
+msgstr ""
+
+#. WdBn9
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7771538\n"
+"help.text"
+msgid "On the Data tab page, click Content to open the combo box."
+msgstr ""
+
+#. UKbEt
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id366527\n"
+"help.text"
+msgid "Select the table for that you want to create the report."
+msgstr ""
+
+#. NzJzg
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7996459\n"
+"help.text"
+msgid "After selecting the table, press the Tab key to leave the Content box."
+msgstr ""
+
+#. vmDAS
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id2531815\n"
+"help.text"
+msgid "The <link href=\"text/sdatabase/rep_insertfield.xhp\" name=\"add_fields_link\">Add fields to report</link> window opens automatically and shows all fields of the selected table."
+msgstr ""
+
+#. vsFKB
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7657399\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to align the objects at the left margin of the area.</ahelp>"
+msgstr ""
+
+#. BqG3G
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id8925138\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to align the objects at the right margin of the area.</ahelp>"
+msgstr ""
+
+#. UcCYH
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id5461897\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to align the objects at the top margin of the area.</ahelp>"
+msgstr ""
+
+#. gDxeY
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id8919339\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to align the objects at the bottom margin of the area.</ahelp>"
+msgstr ""
+
+#. nNfGG
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id4634235\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to resize the objects to the smallest width.</ahelp>"
+msgstr ""
+
+#. GuD9F
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id1393475\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to resize the objects to the smallest height.</ahelp>"
+msgstr ""
+
+#. NAFEu
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id6571550\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to resize the objects to the greatest width.</ahelp>"
+msgstr ""
+
+#. ssdFE
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id5376140\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to resize the objects to the greatest height.</ahelp>"
+msgstr ""
+
+#. yLQm4
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id9611499\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a horizontal line to the current area.</ahelp>"
+msgstr ""
+
+#. XVFTm
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id6765953\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a vertical line to the current area.</ahelp>"
+msgstr ""
+
+#. 5gYXB
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id0409200922242612\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shrinks the selected section to remove top and bottom empty space.</ahelp>"
+msgstr ""
+
+#. K9bij
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id0409200922242617\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shrinks the selected section to remove top empty space.</ahelp>"
+msgstr ""
+
+#. S4vSt
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id0409200922242661\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shrinks the selected section to remove bottom empty space.</ahelp>"
+msgstr ""
+
+#. bFTYS
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id1511581\n"
+"help.text"
+msgid "After inserting fields in the Detail view, the report is ready for execution."
+msgstr ""
+
+#. j9t2k
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id4881740\n"
+"help.text"
+msgid "To execute a report"
+msgstr ""
+
+#. FtAeF
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id8286385\n"
+"help.text"
+msgid "Click the Execute Report icon on the toolbar."
+msgstr ""
+
+#. QxSrq
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id341642784887818\n"
+"help.text"
+msgid "<image src=\"cmd/sc_executereport.svg\" id=\"img_id181642784887819\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id561642784887821\">Execute Report icon</alt></image>"
+msgstr ""
+
+#. FRApC
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id71642784887822\n"
+"help.text"
+msgid "Execute Report icon"
+msgstr ""
+
+#. EbwoS
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id2354197\n"
+"help.text"
+msgid "A Writer document opens and shows the report you have created, which contains all values of the database table which you have insert."
+msgstr ""
+
+#. CCUrN
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id2485122\n"
+"help.text"
+msgid "If the database contents did change, execute the report again to update the result report."
+msgstr ""
+
+#. XrBwB
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"hd_id8746910\n"
+"help.text"
+msgid "To edit a report"
+msgstr ""
+
+#. GinFd
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id9636524\n"
+"help.text"
+msgid "First decide if you want to edit the generated report, which is a static Writer document, or if you want to edit the Report Builder view and then generate a new report based on the new design."
+msgstr ""
+
+#. awMUn
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id5941648\n"
+"help.text"
+msgid "The Writer document is opened read-only. To edit the Writer document, click <emph>Edit Document</emph> on the information bar, or choose <emph>Edit - Edit Mode</emph>."
+msgstr ""
+
+#. G2dAA
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id8307138\n"
+"help.text"
+msgid "If you want to edit the Report Builder view, you can change some of its properties."
+msgstr ""
+
+#. XYvED
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7138889\n"
+"help.text"
+msgid "Click in the Details area. Then in the Properties window, change some properties, for example the background color."
+msgstr ""
+
+#. YbHaF
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id9869380\n"
+"help.text"
+msgid "After finishing, click the Execute Report icon to create a new report."
+msgstr ""
+
+#. h2c39
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id12512\n"
+"help.text"
+msgid "If you close the Report Builder, you will be asked if the report should be saved. Click Yes, give the report a name, and click OK."
+msgstr ""
+
+#. T8vuS
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id2676168\n"
+"help.text"
+msgid "Sorting the report"
+msgstr ""
+
+#. Cg7RE
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id2626422\n"
+"help.text"
+msgid "Without sorting or grouping, the records will be inserted into the report in the order in which they are retrieved from the database."
+msgstr ""
+
+#. ZgBCK
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id1743827\n"
+"help.text"
+msgid "Open the Report Builder view and click the Sorting and Grouping icon on the toolbar. You see the <link href=\"text/sdatabase/rep_sort.xhp\">Sorting and Grouping</link> dialog."
+msgstr ""
+
+#. rZjJB
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id241642785406292\n"
+"help.text"
+msgid "<image id=\"img_id9557786\" src=\"cmd/sc_dbsortingandgrouping.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id9557786\">Icon Sort and Grouping</alt></image>"
+msgstr ""
+
+#. EcCrC
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id81642785406296\n"
+"help.text"
+msgid "Icon Sort and Grouping"
+msgstr ""
+
+#. 35NvQ
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id4331797\n"
+"help.text"
+msgid "In the Groups box, click the field which you want as the first sort field, and set the Sorting property."
+msgstr ""
+
+#. heWc5
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id4191717\n"
+"help.text"
+msgid "Execute the report."
+msgstr ""
+
+#. FoAAB
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id2318796\n"
+"help.text"
+msgid "Grouping"
+msgstr ""
+
+#. gBGNE
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id399182\n"
+"help.text"
+msgid "Open the Report Builder view and click the Sorting and Grouping icon on the toolbar. You see the <link href=\"text/sdatabase/rep_sort.xhp\">Sorting and Grouping</link> dialog."
+msgstr ""
+
+#. zfuDw
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7588732\n"
+"help.text"
+msgid "In the Groups box, open the Group Header list box and select to show a group header."
+msgstr ""
+
+#. 6BQtB
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id95828\n"
+"help.text"
+msgid "Click the Add Field icon to open the Add Field window."
+msgstr ""
+
+#. VbSz2
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id911642785710911\n"
+"help.text"
+msgid "<image id=\"Graphic3\" src=\"cmd/sc_addfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_\">Icon Add Field</alt></image>"
+msgstr ""
+
+#. CKwKa
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id831642785710915\n"
+"help.text"
+msgid "Icon Add Field"
+msgstr ""
+
+#. WyQ6C
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id5675527\n"
+"help.text"
+msgid "Drag-and-drop the field entry that you want to group into the group header section. Then drag-and-drop the remaining fields into the Detail section."
+msgstr ""
+
+#. GscG2
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id3496200\n"
+"help.text"
+msgid "Execute the report. The report shows the grouped records."
+msgstr ""
+
+#. dLiAY
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7599108\n"
+"help.text"
+msgid "If you like to sort and group, open the Report Builder view, then open the Sorting and Grouping dialog. Select to show a Group Header for the fields that you want to group, and select to hide the Group Header for the fields that you want to be sorted. Close the Sorting and Grouping window and execute the report."
+msgstr ""
+
+#. WGFAC
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id888698\n"
+"help.text"
+msgid "Updating and printing your data"
+msgstr ""
+
+#. 9CfYU
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id3394573\n"
+"help.text"
+msgid "When you insert some new data or edit data in the table, a new report will show the updated data."
+msgstr ""
+
+#. WBEpS
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7594225\n"
+"help.text"
+msgid "Click the Reports icon and double-click your last saved report. A new Writer document will be created which shows the new data."
+msgstr ""
+
+#. UFpr2
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id191642785888796\n"
+"help.text"
+msgid "<image id=\"img_id4678487\" src=\"dbaccess/res/reports_32.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id4678487\">Icon Reports</alt></image>"
+msgstr ""
+
+#. DseWN
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id701642785888800\n"
+"help.text"
+msgid "Icon Reports"
+msgstr ""
+
+#. Kp54P
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id8147221\n"
+"help.text"
+msgid "To print a report, choose <item type=\"menuitem\">File - Print</item> from the Writer document."
+msgstr ""
+
+#. AnAta
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"tit\n"
+"help.text"
+msgid "Report Navigator"
+msgstr ""
+
+#. 6utJF
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"bm_id5823847\n"
+"help.text"
+msgid "<bookmark_value>formulas in reports;editing</bookmark_value><bookmark_value>functions in reports;editing</bookmark_value>"
+msgstr ""
+
+#. ruhgL
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"hd_id1821955\n"
+"help.text"
+msgid "<variable id=\"rep_navigator\"><link href=\"text/sdatabase/rep_navigator.xhp\">Report Navigator</link></variable>"
+msgstr ""
+
+#. 7hD99
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id1150852\n"
+"help.text"
+msgid "You can open the Report Navigator window of the <link href=\"text/sdatabase/rep_main.xhp\">Report Builder</link> by choosing <item type=\"menuitem\">View - Report Navigator</item>."
+msgstr ""
+
+#. hBVny
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id1111484\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Report Navigator reveals the structure of the report. You can use the Report Navigator to insert functions into the report.</ahelp>"
+msgstr ""
+
+#. LJxNC
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id8314157\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click an entry in the Report Navigator. The corresponding object or area is selected in the Report Builder view. Right-click an entry to open the context menu.</ahelp>"
+msgstr ""
+
+#. prLAV
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"hd_id2932828\n"
+"help.text"
+msgid "To enter functions to the report"
+msgstr ""
+
+#. CSJFz
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id5091708\n"
+"help.text"
+msgid "<ahelp hid=\".\">In the context menu of the Report Navigator, you see the same commands as in the Report Builder view, plus additional commands to create new functions or to delete them.</ahelp>"
+msgstr ""
+
+#. TVyh8
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id9449446\n"
+"help.text"
+msgid "Functions can be entered using a syntax as specified by the <link href=\"https://en.wikipedia.org/wiki/OpenFormula\" name=\"English Wikipedia: OpenFormula\">OpenFormula</link> proposal."
+msgstr ""
+
+#. 3GfjV
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id4095583\n"
+"help.text"
+msgid "See <link href=\"https://wiki.documentfoundation.org/Database\" name=\"wiki.documentfoundation.org Database\">Wiki page about Base</link> for some more help regarding the functions in a report."
+msgstr ""
+
+#. 2spAx
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"hd_id311593\n"
+"help.text"
+msgid "To calculate a sum for each client"
+msgstr ""
+
+#. zGU9C
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id3948789\n"
+"help.text"
+msgid "Open the Report Navigator."
+msgstr ""
+
+#. FSYuv
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id5391399\n"
+"help.text"
+msgid "Open the Groups entry and the group where you want to calculate the cost."
+msgstr ""
+
+#. bP94U
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id6989654\n"
+"help.text"
+msgid "The group has a sub entry called functions."
+msgstr ""
+
+#. FbfyS
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id1803643\n"
+"help.text"
+msgid "Open the context menu (right click) on the functions entry, choose to create a new function, and select it."
+msgstr ""
+
+#. hTbw9
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id868251\n"
+"help.text"
+msgid "In the property browser you see the function."
+msgstr ""
+
+#. KBn87
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id6247749\n"
+"help.text"
+msgid "Change the name to e.g. CostCalc and the formula to [CostCalc] + [enter your cost column name]."
+msgstr ""
+
+#. y2cwk
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id1565904\n"
+"help.text"
+msgid "In the initial value enter 0."
+msgstr ""
+
+#. RkdrZ
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id1569261\n"
+"help.text"
+msgid "Now you can insert a text field and bind it to your [CostCalc] (appears in the data field list box)."
+msgstr ""
+
+#. utdSG
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id9256874\n"
+"help.text"
+msgid "Maybe you have to set the initial value to the value of the field like [field]."
+msgstr ""
+
+#. Hp4tF
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id4601886\n"
+"help.text"
+msgid "If there are blank fields in the cost column, use the following formula to replace the blank fields' content with zero:"
+msgstr ""
+
+#. Dzpam
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id1754509\n"
+"help.text"
+msgid "[SumCost] + IF(ISBLANK([field]);0;[field])"
+msgstr ""
+
+#. tGCiz
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id8122196\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the formula that defines the function. Use OpenFormula syntax.</ahelp>"
+msgstr ""
+
+#. mTZGY
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id9909665\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the initial value for the evaluation of the formula. Often this is set to 0 or to 1.</ahelp>"
+msgstr ""
+
+#. qEtTN
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id9141819\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">If Deep traversing is enabled, functions are evaluated considering all lower levels of hierarchy. This would be used for instance for line numbering. If Deep traversing is not enabled, only the first level of hierarchy is evaluated.</ahelp>"
+msgstr ""
+
+#. XGkHa
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id6354869\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">If Pre evaluation is enabled, functions are evaluated only when the report is finished.</ahelp>"
+msgstr ""
+
+#. nNgrq
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"tit\n"
+"help.text"
+msgid "Page Numbers"
+msgstr ""
+
+#. nTPmB
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"hd_id3674123\n"
+"help.text"
+msgid "<variable id=\"rep_pagenumbers\"><link href=\"text/sdatabase/rep_pagenumbers.xhp\">Page Numbers</link></variable>"
+msgstr ""
+
+#. oPnyT
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id3424481\n"
+"help.text"
+msgid "<ahelp hid=\".\">You can open the Page Numbers dialog of the <link href=\"text/sdatabase/rep_main.xhp\">Report Builder</link> by choosing <item type=\"menuitem\">Insert - Page Numbers</item>.</ahelp>"
+msgstr ""
+
+#. ygaGw
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id1068758\n"
+"help.text"
+msgid "Press <item type=\"keycode\">Shift-F1</item> and point with the mouse at an input box to see a help text for this input box."
+msgstr ""
+
+#. Cz9Sk
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id1559190\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Page N</ahelp>"
+msgstr ""
+
+#. rcaDS
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id9879146\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Page N of M</ahelp>"
+msgstr ""
+
+#. tDDwG
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id9404278\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Top of Page (Header)</ahelp>"
+msgstr ""
+
+#. dvqcL
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id7626880\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Bottom of Page (Footer)</ahelp>"
+msgstr ""
+
+#. XRZPh
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id6124149\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Alignment</ahelp>"
+msgstr ""
+
+#. horox
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id8257087\n"
+"help.text"
+msgid "Select the format for the page numbers, either \"Page N\" or \"Page N of M\", where N stands for the current page number, and M for the total number of pages in the report."
+msgstr ""
+
+#. 84Dct
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id3479415\n"
+"help.text"
+msgid "Select to show the page numbers in the Page Header area or in the Page Footer area."
+msgstr ""
+
+#. GxdrQ
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id4441663\n"
+"help.text"
+msgid "Select an alignment. By default the page numbers are centered between the left and right margins. You can align the field to the left or right. You can also select Inside to print page number on odd pages on the left side and even page numbers on the right side. Select Outside for the opposite alignment."
+msgstr ""
+
+#. MJV32
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id3012176\n"
+"help.text"
+msgid "When you click OK, a data field for the page numbers is inserted. If no header or footer area exist, the area will be created as needed."
+msgstr ""
+
+#. 6QnRv
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id8532670\n"
+"help.text"
+msgid "You can click the data field and drag to another position within the same area, or edit the properties in the Properties window."
+msgstr ""
+
+#. 7uNv6
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"tit\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. CEY5D
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"hd_id8836939\n"
+"help.text"
+msgid "<variable id=\"rep_prop\"><link href=\"text/sdatabase/rep_prop.xhp\">Properties</link></variable>"
+msgstr ""
+
+#. yQEzY
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id2711264\n"
+"help.text"
+msgid "The Properties window of the <link href=\"text/sdatabase/rep_main.xhp\">Report Builder</link> always shows the properties of the currently selected object in the Report Builder view."
+msgstr ""
+
+#. hiDZo
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id1080660\n"
+"help.text"
+msgid "Press Shift-F1 and point with the mouse at an input box to see a help text for this input box."
+msgstr ""
+
+#. WFv9q
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id7175817\n"
+"help.text"
+msgid "On first start of the Report Builder, the Properties window shows the <emph>Data</emph> tab page for the whole report."
+msgstr ""
+
+#. khEAx
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id9895931\n"
+"help.text"
+msgid "Select a table from the Contents list, then press Tab or click outside the input box to leave the input box."
+msgstr ""
+
+#. krzKx
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id3587145\n"
+"help.text"
+msgid "<ahelp hid=\".\">The <link href=\"text/sdatabase/rep_insertfield.xhp\" name=\"add_fields_link\">Add fields to report</link> window is shown automatically when you have selected a table in the Contents box and leave that box. You can also click the Add Field icon on the toolbar, or choose <item type=\"menuitem\">View - Add Field</item>.</ahelp>"
+msgstr ""
+
+#. 5BJS6
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id6993926\n"
+"help.text"
+msgid "The <emph>General</emph> tab page can be used to change the name of the report, and to disable the Page Header or Page Footer areas, among others."
+msgstr ""
+
+#. eGuih
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id3729361\n"
+"help.text"
+msgid "<ahelp hid=\".\">To display the <emph>Data</emph> or <emph>General</emph> tab page for the whole report, choose <item type=\"menuitem\">Edit - Select All - Select Report</item>.</ahelp>"
+msgstr ""
+
+#. r4tre
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id1768852\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Groups are kept together by page or by column (default). You must enable Keep Together also.</ahelp>"
+msgstr ""
+
+#. PFQYf
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id6304818\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies in which context the page header will be printed: on all pages, or not on pages with a report header or footer.</ahelp>"
+msgstr ""
+
+#. 9rAVD
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id401623\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies in which context the page footer will be printed: on all pages, or not on pages with a report header or footer</ahelp>"
+msgstr ""
+
+#. rMRex
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id2162236\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print repeated values.</ahelp>"
+msgstr ""
+
+#. nCDvW
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id7022003\n"
+"help.text"
+msgid "If you click the Page Header or Page Footer area without selecting any object, you see the <emph>General</emph> tab page for that area."
+msgstr ""
+
+#. xACk2
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id7004303\n"
+"help.text"
+msgid "You can edit some visual properties for the area."
+msgstr ""
+
+#. hPUHN
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id2561723\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the background color for the selected object, both on screen and for printing.</ahelp>"
+msgstr ""
+
+#. BXnJc
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id1064485\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">An invisible object is not shown in the executed report. It is still visible in the Report Builder view.</ahelp>"
+msgstr ""
+
+#. Xd2SG
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id2356028\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Defines the height of the selected object.</ahelp>"
+msgstr ""
+
+#. GXpuh
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id1404461\n"
+"help.text"
+msgid "<ahelp hid=\".\">If the Conditional Print Expression evaluates to TRUE, the selected object will be printed.</ahelp>"
+msgstr ""
+
+#. jvkXA
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id7404705\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the background of the selected object is transparent or opaque.</ahelp>"
+msgstr ""
+
+#. qgLML
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id7466963\n"
+"help.text"
+msgid "If you click the <emph>Detail</emph> area without selecting any object, you see the <emph>General</emph> tab page for that area."
+msgstr ""
+
+#. kmEmG
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id3644215\n"
+"help.text"
+msgid "You can specify some properties to fine-tune the way the records are printed."
+msgstr ""
+
+#. cjDLx
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id3148899\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Force New Page specifies whether the current section and/or the next section is printed on a new page.</ahelp>"
+msgstr ""
+
+#. CuyG2
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id6164433\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">New Row Or Column specifies, for a multi-column design, whether the current section and/or the next section will be printed on a new row or column.</ahelp>"
+msgstr ""
+
+#. nHVy2
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id7405011\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Keep Together specifies to print the current object starting on top of a new page if it doesn't fit on the current page.</ahelp>"
+msgstr ""
+
+#. FjNyy
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id1536606\n"
+"help.text"
+msgid "Insert some data fields into the Detail area, or insert other control fields into any area. When you select an inserted field, you can set the properties in the Properties window."
+msgstr ""
+
+#. 2LAyX
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id9631641\n"
+"help.text"
+msgid "For a Label field, you can change the displayed text in the Label input box."
+msgstr ""
+
+#. iy4M5
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id7749565\n"
+"help.text"
+msgid "<ahelp hid=\".\">For a picture, you can specify to either insert the picture as a link to a file or only as an embedded object in the Base file. The embedded option increases the size of the Base file, while the link option is not as portable to other computers.</ahelp>"
+msgstr ""
+
+#. XKxxX
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id4041871\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the X Position for the selected object</ahelp>"
+msgstr ""
+
+#. bvgTD
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id9930722\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the Y Position for the selected object</ahelp>"
+msgstr ""
+
+#. YGfo2
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id5749687\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the width of the selected object.</ahelp>"
+msgstr ""
+
+#. pwu7Q
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id79348\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the font for the selected text object.</ahelp>"
+msgstr ""
+
+#. r9No9
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id2414014\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Print when group change</ahelp>"
+msgstr ""
+
+#. 25y9K
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id7617114\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Vert. Alignment</ahelp>"
+msgstr ""
+
+#. GXFDE
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id1593676\n"
+"help.text"
+msgid "On the <emph>General</emph> tab page of a data field, you can set the Formatting properties, among others."
+msgstr ""
+
+#. LyTPo
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id1243629\n"
+"help.text"
+msgid "<ahelp hid=\".\">On the Data tab page, you can change the data contents to be shown.</ahelp>"
+msgstr ""
+
+#. g3CBB
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sorting and Grouping"
+msgstr ""
+
+#. GPUqF
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"hd_id3486434\n"
+"help.text"
+msgid "<variable id=\"rep_sort\"><link href=\"text/sdatabase/rep_sort.xhp\">Sorting and Grouping</link></variable>"
+msgstr ""
+
+#. DCbhT
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id3068636\n"
+"help.text"
+msgid "<ahelp hid=\".\">In the Sorting and Grouping dialog of <link href=\"text/sdatabase/rep_main.xhp\">Report Builder</link>, you can define the fields that should be sorted in your report, and the fields that should be kept together to form a group.</ahelp> If you group your report by a certain field, all records with the same value of that field will be kept together in one group."
+msgstr ""
+
+#. KudoP
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id876186\n"
+"help.text"
+msgid "The Groups box shows the fields in an order from top to bottom. You can select any field, then click the Move Up or Move Down button to move this field up or down in the list."
+msgstr ""
+
+#. nG4vM
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id3939634\n"
+"help.text"
+msgid "The sorting and grouping will be applied in the order of the list from top to bottom."
+msgstr ""
+
+#. ZAFvB
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id599688\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the fields that will be used for sorting or grouping. The field at the top has the highest priority, the second field has the second priority, and so on.</ahelp>"
+msgstr ""
+
+#. ETyGL
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id1371501\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to open a list from which you can select a field.</ahelp>"
+msgstr ""
+
+#. kEwPE
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id4661702\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves the selected field up in the list.</ahelp>"
+msgstr ""
+
+#. YmDk5
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id7868892\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves the selected field down in the list.</ahelp>"
+msgstr ""
+
+#. amjzG
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id2188787\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the sorting order.</ahelp>"
+msgstr ""
+
+#. bYX8p
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id5833307\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select to show or hide the Group Header.</ahelp>"
+msgstr ""
+
+#. tN76n
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id7726676\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select to show or hide the Group Footer.</ahelp>"
+msgstr ""
+
+#. Ez4dt
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id3729361\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select to create a new group on each changed value, or on other properties.</ahelp>"
+msgstr ""
+
+#. bd2EW
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id0409200922142041\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Removes the selected field from the list.</ahelp>"
+msgstr ""
+
+#. CjspM
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id3405560\n"
+"help.text"
+msgid "By default a new group is created on every changed value of a record from the selected field. You can change this property depending on the type of field:"
+msgstr ""
+
+#. DD8mt
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id3409527\n"
+"help.text"
+msgid "For fields of type Text, you can select Prefix Characters and enter a number n of characters in the text box below. The records which are identical in the first n characters will be grouped together."
+msgstr ""
+
+#. DFvf2
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id7112338\n"
+"help.text"
+msgid "For fields of type Date/Time, you can group the records by the same year, quarter, month, week, day, hour, or minute. You can additionally specify an interval for weeks and hours: 2 weeks groups data in biweekly groups, 12 hours groups data in half-day groups."
+msgstr ""
+
+#. BBwXv
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id2855616\n"
+"help.text"
+msgid "For fields of type AutoNumber, Currency, or Number, you specify an interval."
+msgstr ""
+
+#. mjbMU
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id7700430\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the group interval value that records are grouped by.</ahelp>"
+msgstr ""
+
+#. XmWsa
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id1180455\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the level of detail by which a group is kept together on the same page.</ahelp>"
+msgstr ""
+
+#. KbCbd
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id2091433\n"
+"help.text"
+msgid "When you specify to keep together some records on the same page, you have three choices:"
+msgstr ""
+
+#. NnDGM
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id5092318\n"
+"help.text"
+msgid "No - page boundaries are not taken into account."
+msgstr ""
+
+#. Zmwag
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id9312417\n"
+"help.text"
+msgid "Whole Group - prints the group header, detail section, and group footer on the same page."
+msgstr ""
+
+#. Bzv5z
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id9089022\n"
+"help.text"
+msgid "With First Detail - prints the group header on a page only if the first detail record also can be printed on the same page."
+msgstr ""
+
#. eDFFK
#: tablewizard00.xhp
msgctxt ""
@@ -11443,353 +14503,884 @@ msgctxt ""
msgid "<link href=\"text/sdatabase/tablewizard00.xhp\" name=\"Table Wizard\">Table Wizard</link>"
msgstr ""
-#. PAxTq
-#: toolbars.xhp
+#. QjNBA
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_form.xhp\n"
"tit\n"
"help.text"
-msgid "Toolbars"
+msgid "Database Form Toolbar"
msgstr ""
-#. Tzgdb
-#: toolbars.xhp
+#. ViBjA
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10541\n"
+"toolbar_form.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "<variable id=\"toolbars\"><link href=\"text/sdatabase/toolbars.xhp\">Toolbars</link></variable>"
+msgid "<variable id=\"DatabaseFormToolbarh1\"><link href=\"text/sdatabase/toolbar_form.xhp\" name=\"Database Form Toolbar\">Database Form Toolbar</link></variable>"
msgstr ""
-#. B3mEW
-#: toolbars.xhp
+#. Ndnbt
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10545\n"
+"toolbar_form.xhp\n"
+"hd_id231642796157552\n"
"help.text"
-msgid "In a database file window, you can see the following toolbars."
+msgid "New database form"
msgstr ""
-#. ZNxCw
-#: toolbars.xhp
+#. g2PCm
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10548\n"
+"toolbar_form.xhp\n"
+"par_id431642796165270\n"
"help.text"
-msgid "Table"
+msgid "<image src=\"cmd/lc_dbnewform.svg\" id=\"img_id311642796165271\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id461642796165272\">Icon New Database Form</alt></image>"
msgstr ""
-#. JWHfj
-#: toolbars.xhp
+#. BmKGp
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10554\n"
+"toolbar_form.xhp\n"
+"par_id321642796165273\n"
"help.text"
-msgid "Open database object"
+msgid "Creates a new database form."
msgstr ""
-#. 4fvFG
-#: toolbars.xhp
+#. 89Xdx
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10558\n"
+"toolbar_form.xhp\n"
+"par_idN10634\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the selected table so you can enter, edit, or delete records.</ahelp>"
+msgid "Open database form"
msgstr ""
-#. LFKBo
-#: toolbars.xhp
+#. TaigW
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN1056F\n"
+"toolbar_form.xhp\n"
+"par_id581642794179327\n"
+"help.text"
+msgid "<image src=\"cmd/lc_open.svg\" id=\"img_id511642794179328\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id11642794179328\">Icon Open Form</alt></image>"
+msgstr ""
+
+#. 8rq4H
+#: toolbar_form.xhp
+msgctxt ""
+"toolbar_form.xhp\n"
+"par_idN10638\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected form so you can enter, edit, or delete records.</ahelp>"
+msgstr ""
+
+#. GF2hM
+#: toolbar_form.xhp
+msgctxt ""
+"toolbar_form.xhp\n"
+"par_idN1064F\n"
"help.text"
msgid "Edit"
msgstr ""
-#. tLLAy
-#: toolbars.xhp
+#. qnKpJ
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10573\n"
+"toolbar_form.xhp\n"
+"par_id1001642794252425\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the selected table so you can change the structure.</ahelp>"
+msgid "<image src=\"cmd/lc_dbformedit.svg\" id=\"img_id671642794252426\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id851642794252426\">Icon Edit Form</alt></image>"
msgstr ""
-#. FEBzp
-#: toolbars.xhp
+#. WE3Eo
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN1058A\n"
+"toolbar_form.xhp\n"
+"par_idN10653\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected form so you can change the layout.</ahelp>"
+msgstr ""
+
+#. dfaAA
+#: toolbar_form.xhp
+msgctxt ""
+"toolbar_form.xhp\n"
+"par_idN1066A\n"
"help.text"
msgid "Delete"
msgstr ""
-#. PDZsk
-#: toolbars.xhp
+#. AfDGM
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN1058E\n"
+"toolbar_form.xhp\n"
+"par_id941642794399538\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected table.</ahelp>"
+msgid "<image src=\"cmd/lc_dbformdelete.svg\" id=\"img_id541642794399538\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id521642794399539\">Icon Delete Form</alt></image>"
msgstr ""
-#. m7BX3
-#: toolbars.xhp
+#. 969sF
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN105A5\n"
+"toolbar_form.xhp\n"
+"par_idN1066E\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected form.</ahelp>"
+msgstr ""
+
+#. E8FTE
+#: toolbar_form.xhp
+msgctxt ""
+"toolbar_form.xhp\n"
+"par_idN10685\n"
"help.text"
msgid "Rename"
msgstr ""
-#. B596w
-#: toolbars.xhp
+#. pE8qg
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN105A9\n"
+"toolbar_form.xhp\n"
+"par_id601642794481349\n"
"help.text"
-msgid "<ahelp hid=\".\">Renames the selected table.</ahelp>"
+msgid "<image src=\"cmd/lc_dbformrename.svg\" id=\"img_id591642794481349\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id751642794481350\">Icon Rename Form</alt></image>"
msgstr ""
-#. LEWCs
-#: toolbars.xhp
+#. eMzAD
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN105B8\n"
+"toolbar_form.xhp\n"
+"par_idN10689\n"
"help.text"
-msgid "Query"
+msgid "<ahelp hid=\".\">Renames the selected form.</ahelp>"
msgstr ""
-#. VT3EG
-#: toolbars.xhp
+#. Ej7Bx
+#: toolbar_query.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_query.xhp\n"
+"tit\n"
+"help.text"
+msgid "Database Query Toolbar"
+msgstr ""
+
+#. MVKFj
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
+"par_idN10548\n"
+"help.text"
+msgid "<variable id=\"DatabaseQueryToolbarh1\"><link href=\"text/sdatabase/toolbar_query.xhp\" name=\"Database Query Toolbar\">Database Query Toolbar</link></variable>"
+msgstr ""
+
+#. bj47W
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
+"hd_id231642796157552\n"
+"help.text"
+msgid "New database query"
+msgstr ""
+
+#. yw8S8
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
+"par_id431642796165270\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbnewquery.svg\" id=\"img_id311642796165271\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id461642796165272\">Icon New Database Query</alt></image>"
+msgstr ""
+
+#. UnzqA
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
+"par_id321642796165273\n"
+"help.text"
+msgid "Creates a new database query."
+msgstr ""
+
+#. zqAQx
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
+"hd_id981642797173950\n"
+"help.text"
+msgid "New Database Query (SQL View)"
+msgstr ""
+
+#. bSoXy
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
+"par_id131642797178876\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbnewquerysql.svg\" id=\"img_id881642797178877\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id811642797178878\">Icon New query (SQL view)</alt></image>"
+msgstr ""
+
+#. CVC97
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
+"par_id911642797178879\n"
+"help.text"
+msgid "Opens the SQL window to edit a query in SQL language."
+msgstr ""
+
+#. G7DB4
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
"par_idN105C4\n"
"help.text"
-msgid "Open database object"
+msgid "Open database query"
msgstr ""
-#. 2cEFv
-#: toolbars.xhp
+#. 35ceG
+#: toolbar_query.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_query.xhp\n"
+"par_id791642791781980\n"
+"help.text"
+msgid "<image src=\"cmd/lc_open.svg\" id=\"img_id711642791781980\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id621642791781980\">Icon Open Query Object</alt></image>"
+msgstr ""
+
+#. yrGi6
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
"par_idN105C8\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the selected query so you can enter, edit, or delete records.</ahelp>"
msgstr ""
-#. yVNxZ
-#: toolbars.xhp
+#. Wpcih
+#: toolbar_query.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_query.xhp\n"
"par_idN105DF\n"
"help.text"
msgid "Edit"
msgstr ""
-#. kGSTA
-#: toolbars.xhp
+#. peDGL
+#: toolbar_query.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_query.xhp\n"
+"par_id291642791910891\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbqueryedit.svg\" id=\"img_id911642791910892\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id1001642791910892\">Icon Edit Query</alt></image>"
+msgstr ""
+
+#. FEN9q
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
"par_idN105E3\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the selected query so you can change the structure.</ahelp>"
msgstr ""
-#. W75xu
-#: toolbars.xhp
+#. 6jGeW
+#: toolbar_query.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_query.xhp\n"
"par_idN105FA\n"
"help.text"
msgid "Delete"
msgstr ""
-#. XJQBJ
-#: toolbars.xhp
+#. EHvLX
+#: toolbar_query.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_query.xhp\n"
+"par_id651642792045236\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbquerydelete.svg\" id=\"img_id411642792045236\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id211642792045237\">Icon Delete Query</alt></image>"
+msgstr ""
+
+#. Ejm28
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
"par_idN105FE\n"
"help.text"
msgid "<ahelp hid=\".\">Deletes the selected query.</ahelp>"
msgstr ""
-#. bC56u
-#: toolbars.xhp
+#. 9XGHW
+#: toolbar_query.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_query.xhp\n"
"par_idN10615\n"
"help.text"
msgid "Rename"
msgstr ""
-#. GDAZR
-#: toolbars.xhp
+#. H78Bh
+#: toolbar_query.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10619\n"
+"toolbar_query.xhp\n"
+"par_id561642792121799\n"
"help.text"
-msgid "<ahelp hid=\".\">Renames the selected query.</ahelp>"
+msgid "<image src=\"cmd/lc_dbqueryrename.svg\" id=\"img_id521642792121800\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id531642792121800\">Icon Rename Query</alt></image>"
msgstr ""
-#. mzY5g
-#: toolbars.xhp
+#. xXWqz
+#: toolbar_query.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10628\n"
+"toolbar_query.xhp\n"
+"par_idN10619\n"
"help.text"
-msgid "Form"
+msgid "<ahelp hid=\".\">Renames the selected query.</ahelp>"
msgstr ""
-#. BXrRw
-#: toolbars.xhp
+#. aqUue
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10634\n"
+"toolbar_report.xhp\n"
+"tit\n"
"help.text"
-msgid "Open database object"
+msgid "Database Report Toolbar"
msgstr ""
-#. GJDxB
-#: toolbars.xhp
+#. N5Spv
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10638\n"
+"toolbar_report.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the selected form so you can enter, edit, or delete records.</ahelp>"
+msgid "<variable id=\"DatabaseReportToolbarh1\"><link href=\"text/sdatabase/toolbar_report.xhp\" name=\"Database Report Toolbar\">Database Report Toolbar</link></variable>"
msgstr ""
-#. 7f3E9
-#: toolbars.xhp
+#. TaKok
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN1064F\n"
+"toolbar_report.xhp\n"
+"hd_id231642796157552\n"
"help.text"
-msgid "Edit"
+msgid "New database report"
msgstr ""
-#. ZmiNz
-#: toolbars.xhp
+#. hxRbm
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10653\n"
+"toolbar_report.xhp\n"
+"par_id431642796165270\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the selected form so you can change the layout.</ahelp>"
+msgid "<image src=\"cmd/lc_dbnewreport.svg\" id=\"img_id311642796165271\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id461642796165272\">Icon New Database Report</alt></image>"
msgstr ""
-#. xCBQ3
-#: toolbars.xhp
+#. FzBiP
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN1066A\n"
+"toolbar_report.xhp\n"
+"par_id321642796165273\n"
"help.text"
-msgid "Delete"
+msgid "Creates a new database report."
msgstr ""
-#. p5bD4
-#: toolbars.xhp
+#. DASFx
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN1066E\n"
+"toolbar_report.xhp\n"
+"hd_id261642796491626\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected form.</ahelp>"
+msgid "Database report wizard"
msgstr ""
-#. Jrqh7
-#: toolbars.xhp
+#. wRJAg
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10685\n"
+"toolbar_report.xhp\n"
+"par_id251642796542820\n"
"help.text"
-msgid "Rename"
+msgid "<image src=\"cmd/lc_dbnewreportautopilot.svg\" id=\"img_id811642796542821\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id231642796542822\">Icon Database report wizard</alt></image>"
msgstr ""
-#. CLTV2
-#: toolbars.xhp
+#. Ri9DE
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10689\n"
+"toolbar_report.xhp\n"
+"par_id261642796542823\n"
"help.text"
-msgid "<ahelp hid=\".\">Renames the selected form.</ahelp>"
+msgid "Opens the database report wizard, to guide you in creating a database report."
msgstr ""
-#. tkXGC
-#: toolbars.xhp
+#. VcR6f
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10698\n"
+"toolbar_report.xhp\n"
+"par_idN106A4\n"
"help.text"
-msgid "Report"
+msgid "Open database report"
msgstr ""
-#. GMWLb
-#: toolbars.xhp
+#. JytE5
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN106A4\n"
+"toolbar_report.xhp\n"
+"par_id321642794819375\n"
"help.text"
-msgid "Open database object"
+msgid "<image src=\"cmd/lc_open.svg\" id=\"img_id511642794179328\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id11642794179328\">Icon Open Report</alt></image>"
msgstr ""
-#. BzwcK
-#: toolbars.xhp
+#. RdAb4
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_report.xhp\n"
"par_idN106A8\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the selected report so you can enter, edit, or delete records.</ahelp>"
msgstr ""
-#. sLPTD
-#: toolbars.xhp
+#. XyYBD
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_report.xhp\n"
"par_idN106BF\n"
"help.text"
msgid "Edit"
msgstr ""
-#. DF32e
-#: toolbars.xhp
+#. mmfdU
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_report.xhp\n"
+"par_id141642794873165\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbreportedit.svg\" id=\"img_id111642794873165\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id811642794873165\">Icon Edit Report</alt></image>"
+msgstr ""
+
+#. 34f7b
+#: toolbar_report.xhp
+msgctxt ""
+"toolbar_report.xhp\n"
"par_idN106C3\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the selected report so you can change the layout.</ahelp>"
msgstr ""
-#. FGuUB
-#: toolbars.xhp
+#. B7hhM
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_report.xhp\n"
"par_idN106DA\n"
"help.text"
msgid "Delete"
msgstr ""
-#. xikUv
-#: toolbars.xhp
+#. frjJR
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_report.xhp\n"
+"par_id51642795131634\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbreportdelete.svg\" id=\"img_id971642795131634\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id531642795131634\">Icon Delete Report</alt></image>"
+msgstr ""
+
+#. rrRCi
+#: toolbar_report.xhp
+msgctxt ""
+"toolbar_report.xhp\n"
"par_idN106DE\n"
"help.text"
msgid "<ahelp hid=\".\">Deletes the selected report.</ahelp>"
msgstr ""
-#. kmUBC
-#: toolbars.xhp
+#. ftpNL
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_report.xhp\n"
"par_idN106F5\n"
"help.text"
msgid "Rename"
msgstr ""
-#. CgE7D
-#: toolbars.xhp
+#. cNjbm
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_report.xhp\n"
+"par_id551642795211226\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbreportrename.svg\" id=\"img_id631642795211227\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id551642795211227\">Icon Rename Report</alt></image>"
+msgstr ""
+
+#. EYSpz
+#: toolbar_report.xhp
+msgctxt ""
+"toolbar_report.xhp\n"
"par_idN106F9\n"
"help.text"
msgid "<ahelp hid=\".\">Renames the selected report.</ahelp>"
msgstr ""
+
+#. ezZJj
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"tit\n"
+"help.text"
+msgid "Database Table Toolbar"
+msgstr ""
+
+#. 6DNGE
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_idN10548\n"
+"help.text"
+msgid "<variable id=\"DatabaseTableToolbarh1\"><link href=\"text/sdatabase/toolbar_table.xhp\" name=\"Database Table Toolbar\">Database Table Toolbar</link></variable>"
+msgstr ""
+
+#. Y57HF
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"hd_id461642852368590\n"
+"help.text"
+msgid "Open document"
+msgstr ""
+
+#. pRvid
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id601642852258016\n"
+"help.text"
+msgid "<image src=\"cmd/lc_open.svg\" id=\"img_id941642787914042\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id291642787914043\">Icon Open Document</alt></image>"
+msgstr ""
+
+#. DAEuG
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id981642852258019\n"
+"help.text"
+msgid "Opens a %PRODUCTNAME document."
+msgstr ""
+
+#. Z4JdE
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"hd_id981642852403610\n"
+"help.text"
+msgid "Save document"
+msgstr ""
+
+#. EoGU4
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id731642852435520\n"
+"help.text"
+msgid "<image src=\"cmd/lc_save.svg\" id=\"img_id591642852435521\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id871642852435522\">Icon Save database file</alt></image>"
+msgstr ""
+
+#. AgrRB
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id481642852435523\n"
+"help.text"
+msgid "Saves current database file."
+msgstr ""
+
+#. mLNRZ
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"hd_id131642852596290\n"
+"help.text"
+msgid "Copy"
+msgstr ""
+
+#. xVmGj
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id381642853541654\n"
+"help.text"
+msgid "<image src=\"cmd/lc_copy.svg\" id=\"img_id21642853541655\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id801642853541656\">Icon copy</alt></image>"
+msgstr ""
+
+#. MSHcj
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id601642853541657\n"
+"help.text"
+msgid "Copies the selection to the clipboard."
+msgstr ""
+
+#. C9Ezf
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"hd_id941642852602272\n"
+"help.text"
+msgid "Paste"
+msgstr ""
+
+#. JDAZJ
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id761642853673909\n"
+"help.text"
+msgid "<image src=\"cmd/lc_paste.svg\" id=\"img_id811642853673910\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id951642853673911\">Icon Paste</alt></image>"
+msgstr ""
+
+#. nEsTe
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id321642853673912\n"
+"help.text"
+msgid "Inserts the contents of the clipboard at the location of the cursor, and replaces any selected text or objects."
+msgstr ""
+
+#. Ct5XD
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"hd_id1001642852606113\n"
+"help.text"
+msgid "Sort ascending"
+msgstr ""
+
+#. WDeBp
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id991642853830973\n"
+"help.text"
+msgid "<image src=\"cmd/lc_sortascending.svg\" id=\"img_id771642853830974\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id241642853830975\">Icon sort ascending</alt></image>"
+msgstr ""
+
+#. aRGCA
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id621642853830977\n"
+"help.text"
+msgid "Sorts the entries in the detail view in ascending order."
+msgstr ""
+
+#. 542jo
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"hd_id441642852616281\n"
+"help.text"
+msgid "Sort descending"
+msgstr ""
+
+#. iL4by
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id511642854313007\n"
+"help.text"
+msgid "<image src=\"cmd/lc_sortdescending.svg\" id=\"img_id531642854313009\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id661642854313010\">Icon Sort descending</alt></image>"
+msgstr ""
+
+#. e2A2e
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id81642854313011\n"
+"help.text"
+msgid "Sorts the entries in the detail view in descending order."
+msgstr ""
+
+#. VTRY7
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"hd_id231642796152552\n"
+"help.text"
+msgid "New database form"
+msgstr ""
+
+#. 4C7Bi
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id431643796165270\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbnewform.svg\" id=\"img_id311642796165271\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id461642796165272\">Icon New Database Form</alt></image>"
+msgstr ""
+
+#. YAoeV
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id321612796165273\n"
+"help.text"
+msgid "Creates a new database form (default). Use the drop-down toolbar to create a new database object directly."
+msgstr ""
+
+#. KuYJ7
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"hd_id231642796157552\n"
+"help.text"
+msgid "New table design"
+msgstr ""
+
+#. zKJDB
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id431642796165270\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbnewtable.svg\" id=\"img_id311642796165271\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id461642796165272\">Icon New Table design</alt></image>"
+msgstr ""
+
+#. p5PvJ
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id321642796165273\n"
+"help.text"
+msgid "Designs a new database table."
+msgstr ""
+
+#. zoHMV
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_idN10554\n"
+"help.text"
+msgid "Open database table"
+msgstr ""
+
+#. gptoW
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id521642787914042\n"
+"help.text"
+msgid "<image src=\"cmd/lc_open.svg\" id=\"img_id941642787914042\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id291642787914043\">Icon Open Database Table</alt></image>"
+msgstr ""
+
+#. FiWG5
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_idN10558\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected table so you can enter, edit, or delete records.</ahelp>"
+msgstr ""
+
+#. 2GZDb
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_idN1056F\n"
+"help.text"
+msgid "Edit"
+msgstr ""
+
+#. GEk85
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id481642788747900\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbtableedit.svg\" id=\"img_id421642788747900\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id911642788747900\">Icon Edit table</alt></image>"
+msgstr ""
+
+#. SpLTj
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_idN10573\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected table so you can change the structure.</ahelp>"
+msgstr ""
+
+#. Aoqi2
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_idN1058A\n"
+"help.text"
+msgid "Delete"
+msgstr ""
+
+#. qsDuC
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id261642788871011\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbtabledelete.svg\" id=\"img_id521642788871011\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id971642788871011\">Icon Delete Table</alt></image>"
+msgstr ""
+
+#. 7S8xE
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_idN1058E\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected table.</ahelp>"
+msgstr ""
+
+#. nxeFo
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_idN105A5\n"
+"help.text"
+msgid "Rename"
+msgstr ""
+
+#. bkFMf
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id501642788935574\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbtablerename.svg\" id=\"img_id461642788935574\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id571642788935574\">Icon Rename Table</alt></image>"
+msgstr ""
+
+#. Bqa33
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_idN105A9\n"
+"help.text"
+msgid "<ahelp hid=\".\">Renames the selected table.</ahelp>"
+msgstr ""
+
+#. PAxTq
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"tit\n"
+"help.text"
+msgid "Toolbars"
+msgstr ""
+
+#. vYRDC
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10541\n"
+"help.text"
+msgid "<variable id=\"toolbars\"><link href=\"text/sdatabase/toolbars.xhp\">Database Toolbars</link> </variable>"
+msgstr ""
+
+#. B3mEW
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10545\n"
+"help.text"
+msgid "In a database file window, you can see the following toolbars."
+msgstr ""
diff --git a/source/km/helpcontent2/source/text/shared.po b/source/km/helpcontent2/source/text/shared.po
index 8b2020f55cc..5bdd779544c 100644
--- a/source/km/helpcontent2/source/text/shared.po
+++ b/source/km/helpcontent2/source/text/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -17,6 +17,231 @@ msgstr ""
"X-Language: km-KH\n"
"X-POOTLE-MTIME: 1542197009.000000\n"
+#. fcmzq
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"tit\n"
+"help.text"
+msgid "Find Bar"
+msgstr ""
+
+#. ZBBdy
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"bm_id871641583188415\n"
+"help.text"
+msgid "<bookmark_value>Find toolbar</bookmark_value>"
+msgstr ""
+
+#. WXRY5
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"hd_id701641581066778\n"
+"help.text"
+msgid "<link href=\"/text/shared/find_toolbar.xhp\" name=\"Find Bar\">Find Bar</link>"
+msgstr ""
+
+#. X55wK
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id3147762\n"
+"help.text"
+msgid "The <menuitem>Find</menuitem> toolbar can be used to quickly search the contents of %PRODUCTNAME documents."
+msgstr ""
+
+#. wMCEY
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id211641581251728\n"
+"help.text"
+msgid "Use the shortcut <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + F</keycode> to quickly open the <menuitem>Find</menuitem> toolbar."
+msgstr ""
+
+#. DCYmX
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"hd_id991641581514302\n"
+"help.text"
+msgid "Find Text"
+msgstr ""
+
+#. 979Nt
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id921641581538352\n"
+"help.text"
+msgid "Enter the text to be searched in the document. Press <keycode>Enter</keycode> to perform the search."
+msgstr ""
+
+#. vYcEW
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"hd_id831641581895099\n"
+"help.text"
+msgid "Find Previous"
+msgstr ""
+
+#. e8qFg
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id11641581906556\n"
+"help.text"
+msgid "Moves the cursor and selects the previous match of the search text."
+msgstr ""
+
+#. t33RZ
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id851642423451259\n"
+"help.text"
+msgid "<image src=\"cmd/lc_upsearch.svg\" id=\"img_id171642423451259\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id261642423451259\">Find Previous Icon</alt></image>"
+msgstr ""
+
+#. Tu26F
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id351642423451259\n"
+"help.text"
+msgid "Find Previous Icon"
+msgstr ""
+
+#. CCfcg
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"hd_id941641581943416\n"
+"help.text"
+msgid "Find Next"
+msgstr ""
+
+#. gwMV9
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id261641581953287\n"
+"help.text"
+msgid "Moves the cursor and selects the next match of the search text."
+msgstr ""
+
+#. PUsAY
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id111642423456841\n"
+"help.text"
+msgid "<image src=\"cmd/lc_downsearch.svg\" id=\"img_id111642423456841\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id111642423456841\">Find Next Icon</alt></image>"
+msgstr ""
+
+#. kuiD9
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id111642423456842\n"
+"help.text"
+msgid "Find Next Icon"
+msgstr ""
+
+#. 5nZqX
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"hd_id81641582044927\n"
+"help.text"
+msgid "Find All"
+msgstr ""
+
+#. DFtSe
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id181641582056429\n"
+"help.text"
+msgid "Highlights all matches in the document."
+msgstr ""
+
+#. xFTTt
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"hd_id631641582107024\n"
+"help.text"
+msgid "Match Case"
+msgstr ""
+
+#. 42qsF
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id461641582121199\n"
+"help.text"
+msgid "Choose this option to perform case-sensitive search."
+msgstr ""
+
+#. nhwRU
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"hd_id271641582528169\n"
+"help.text"
+msgid "Formatted Display"
+msgstr ""
+
+#. Cd89c
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id571641582522939\n"
+"help.text"
+msgid "Performs the search considering the formatted value in a cell."
+msgstr ""
+
+#. L8K8f
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"hd_id171641582176913\n"
+"help.text"
+msgid "Find and Replace"
+msgstr ""
+
+#. 8GXhw
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id761641582194558\n"
+"help.text"
+msgid "Opens the <link href=\"text/swriter/guide/finding.xhp\" name=\"Find_Replace\">Find and Replace</link> dialog, which provides more options for searching the document."
+msgstr ""
+
+#. rx3mH
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id171641582176913\n"
+"help.text"
+msgid "<image src=\"cmd/lc_searchdialog.svg\" id=\"img_id171641582176913\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171641582176913\">Find and Replace Icon</alt></image>"
+msgstr ""
+
+#. BUQcH
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id171641582176943\n"
+"help.text"
+msgid "Find and Replace Icon"
+msgstr ""
+
#. DBz3U
#: fontwork_toolbar.xhp
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/shared/01.po b/source/km/helpcontent2/source/text/shared/01.po
index bad02500145..646a282edd4 100644
--- a/source/km/helpcontent2/source/text/shared/01.po
+++ b/source/km/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-10 12:21+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2019-08-09 08:19+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -9062,15 +9062,6 @@ msgctxt ""
msgid "For a full list of supported metacharacters and syntax, see <link href=\"https://unicode-org.github.io/icu/userguide/strings/regexp.html\" name=\"ICU Regular Expressions documentation\">ICU Regular Expressions documentation</link>"
msgstr ""
-#. HBqoH
-#: 02100001.xhp
-msgctxt ""
-"02100001.xhp\n"
-"par_id141559577104334\n"
-"help.text"
-msgid "Note that currently all named character class terms, [:alpha:] through [:upper:], must be enclosed in parentheses when used in a regular expression, see the examples that follow."
-msgstr ""
-
#. HvC9Q
#: 02100001.xhp
msgctxt ""
@@ -10736,13 +10727,13 @@ msgctxt ""
msgid "<variable id=\"links_text\"><ahelp hid=\".\">You can change or remove each link to external files in the current document. You can also update the content of the current file to the most recently saved version of linked external file. This command does not apply to hyperlinks, and is not available if the current document does not contain links to other files.</ahelp></variable>"
msgstr ""
-#. nGE7F
+#. 5H9Hm
#: 02180000.xhp
msgctxt ""
"02180000.xhp\n"
"par_id271603459179173\n"
"help.text"
-msgid "This command can be used with external file links to <switchinline select=\"appl\"><caseinline select=\"WRITER\">sections (place cursor outside of the section), master documents,</caseinline><caseinline select=\"CALC\">sheets linked with <menuitem>Sheet - Insert Sheet from File</menuitem> or <menuitem>Sheet - Link to External Data</menuitem>, Function WEBSERVICE,</caseinline></switchinline> images and OLE objects (when inserted with a link to an external file)."
+msgid "This command can be used with external file links to <switchinline select=\"appl\"><caseinline select=\"WRITER\">sections (place cursor outside of the section), master documents,</caseinline><caseinline select=\"CALC\">sheets linked with <menuitem>Sheet - Insert Sheet from File</menuitem> or <menuitem>Sheet - External Links</menuitem>, Function WEBSERVICE,</caseinline></switchinline> images and OLE objects (when inserted with a link to an external file)."
msgstr ""
#. g3wLZ
@@ -27710,13 +27701,13 @@ msgctxt ""
msgid "Colors"
msgstr ""
-#. RSPZA
+#. AKar8
#: 05210200.xhp
msgctxt ""
"05210200.xhp\n"
"bm_id37440771\n"
"help.text"
-msgid "<bookmark_value>colors;palette</bookmark_value><bookmark_value>colors;adding</bookmark_value><bookmark_value>colors;delete</bookmark_value>"
+msgid "<bookmark_value>colors;palette</bookmark_value><bookmark_value>palette;document colors</bookmark_value><bookmark_value>colors;adding</bookmark_value><bookmark_value>colors;delete</bookmark_value><bookmark_value>document colors;palette</bookmark_value>"
msgstr ""
#. vay4k
@@ -27773,6 +27764,24 @@ msgctxt ""
msgid "Select the color palette in the list box to pick the color for the selected object. The palette color set displays below."
msgstr ""
+#. EyGbC
+#: 05210200.xhp
+msgctxt ""
+"05210200.xhp\n"
+"par_id441641431603505\n"
+"help.text"
+msgid "The <emph>Theme colors</emph> palette shows the theme colors from the current theme, if the document has any."
+msgstr ""
+
+#. CSCQY
+#: 05210200.xhp
+msgctxt ""
+"05210200.xhp\n"
+"par_id441641431603506\n"
+"help.text"
+msgid "The <emph>Document colors</emph> palette shows the colors used in the current document."
+msgstr ""
+
#. DQAGQ
#: 05210200.xhp
msgctxt ""
@@ -28448,13 +28457,13 @@ msgctxt ""
msgid "Add/Import"
msgstr ""
-#. KS3aG
+#. pkzgJ
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
"par_id3148473\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/imagetabpage/BTN_IMPORT\">Locate the image that you want to import, and then click <emph>Open</emph>. the image is added to the end of the list of available images.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/imagetabpage/BTN_IMPORT\">Locate the image that you want to import, and then click <emph>Open</emph>. The image is added to the end of the list of available images.</ahelp>"
msgstr ""
#. FXqsL
@@ -32399,6 +32408,366 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/textanimtabpage/MTR_FLD_DELAY\">Enter the amount of time to wait before repeating the effect.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/textanimtabpage/MTR_FLD_DELAY\">​បញ្ជាក់​​ពេល​វេលា​សរុប​ដែល​ត្រូវ​រង់ចាំ​​ មុន​ពេល​ធ្វើ​បែប​ផែន​ម្តង​ទៀត​ ។</ahelp>"
+#. RRZf4
+#: 05320001.xhp
+msgctxt ""
+"05320001.xhp\n"
+"tit\n"
+"help.text"
+msgid "Text Columns"
+msgstr ""
+
+#. SCszB
+#: 05320001.xhp
+msgctxt ""
+"05320001.xhp\n"
+"hd_id3150014\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05320001.xhp\" name=\"Text Columns\">Text Columns</link>"
+msgstr ""
+
+#. u37pw
+#: 05320001.xhp
+msgctxt ""
+"05320001.xhp\n"
+"par_id3154788\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/textcolumnstabpage/TextColumnsPage\">Adds columns to the text in the selected drawing object.</ahelp>"
+msgstr ""
+
+#. XCeS9
+#: 05320001.xhp
+msgctxt ""
+"05320001.xhp\n"
+"hd_id3152821\n"
+"help.text"
+msgid "Number of columns"
+msgstr ""
+
+#. kEjrF
+#: 05320001.xhp
+msgctxt ""
+"05320001.xhp\n"
+"par_id3144436\n"
+"help.text"
+msgid "Specifies how many columns to use to lay out the drawing object's text."
+msgstr ""
+
+#. yhb4G
+#: 05320001.xhp
+msgctxt ""
+"05320001.xhp\n"
+"hd_id3152822\n"
+"help.text"
+msgid "Spacing"
+msgstr ""
+
+#. EU3yR
+#: 05320001.xhp
+msgctxt ""
+"05320001.xhp\n"
+"par_id3144437\n"
+"help.text"
+msgid "Specifies the amount of space between the columns."
+msgstr ""
+
+#. 8kqou
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"tit\n"
+"help.text"
+msgid "Theme"
+msgstr ""
+
+#. a8DFA
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3150014\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05320002.xhp\" name=\"Theme\">Theme</link>"
+msgstr ""
+
+#. CeYvv
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3154788\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/themetabpage/ThemePage\">Adds colors to the selected master page.</ahelp>"
+msgstr ""
+
+#. YiUBW
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152821\n"
+"help.text"
+msgid "General"
+msgstr ""
+
+#. oLtfm
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152822\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. Vn5NP
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144436\n"
+"help.text"
+msgid "Specifies a name for this master page theme."
+msgstr ""
+
+#. Dh64z
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152823\n"
+"help.text"
+msgid "Color Set"
+msgstr ""
+
+#. yvPdS
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152824\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. etPAe
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144437\n"
+"help.text"
+msgid "Specifies a name for this set of colors."
+msgstr ""
+
+#. bQc5u
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152825\n"
+"help.text"
+msgid "Background - Dark 1"
+msgstr ""
+
+#. pnURC
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144438\n"
+"help.text"
+msgid "Specifies the first dark color to be used as dark background, typically black."
+msgstr ""
+
+#. Bfas8
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152826\n"
+"help.text"
+msgid "Text - Light 1"
+msgstr ""
+
+#. 6BJ7P
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144439\n"
+"help.text"
+msgid "Specifies the first light color to be used as light text, typically white."
+msgstr ""
+
+#. v949u
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152827\n"
+"help.text"
+msgid "Background - Dark 2"
+msgstr ""
+
+#. Yn3oE
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144440\n"
+"help.text"
+msgid "Specifies the second dark color to be used as dark background. This is typically dark, but not exactly black."
+msgstr ""
+
+#. wBe5B
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152828\n"
+"help.text"
+msgid "Text - Light 2"
+msgstr ""
+
+#. GEpE7
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144441\n"
+"help.text"
+msgid "Specifies the second light color to be used as light text. This is typically light, but not exactly white."
+msgstr ""
+
+#. 6sCnr
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152829\n"
+"help.text"
+msgid "Accent 1"
+msgstr ""
+
+#. jarvZ
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144442\n"
+"help.text"
+msgid "First custom color. This is typically dark enough that light text is readable when the custom color is used as a background color."
+msgstr ""
+
+#. TBAAu
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152830\n"
+"help.text"
+msgid "Accent 2"
+msgstr ""
+
+#. PhmYV
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144443\n"
+"help.text"
+msgid "Second custom color."
+msgstr ""
+
+#. CoqnB
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152831\n"
+"help.text"
+msgid "Accent 3"
+msgstr ""
+
+#. AApC3
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144444\n"
+"help.text"
+msgid "Third custom color."
+msgstr ""
+
+#. yAJRk
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152832\n"
+"help.text"
+msgid "Accent 4"
+msgstr ""
+
+#. B3ekD
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144445\n"
+"help.text"
+msgid "Fourth custom color."
+msgstr ""
+
+#. DnYuJ
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152833\n"
+"help.text"
+msgid "Accent 5"
+msgstr ""
+
+#. AVEe4
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144446\n"
+"help.text"
+msgid "Fifth custom color."
+msgstr ""
+
+#. gC46v
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152834\n"
+"help.text"
+msgid "Accent 6"
+msgstr ""
+
+#. Fc7BK
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144447\n"
+"help.text"
+msgid "Sixth custom color."
+msgstr ""
+
+#. PhQWg
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152835\n"
+"help.text"
+msgid "Hyperlink"
+msgstr ""
+
+#. sawNC
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144448\n"
+"help.text"
+msgid "Color used for non-followed hyperlinks."
+msgstr ""
+
+#. jyKLz
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152836\n"
+"help.text"
+msgid "Followed Hyperlink"
+msgstr ""
+
+#. sRoPn
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144449\n"
+"help.text"
+msgid "Color used for followed hyperlinks."
+msgstr ""
+
#. A2WXN
#: 05340100.xhp
msgctxt ""
@@ -40769,13 +41138,13 @@ msgctxt ""
msgid "Macros"
msgstr ""
-#. x5Ary
+#. JeUG6
#: 06130030.xhp
msgctxt ""
"06130030.xhp\n"
"par_idN109C2\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/scriptorganizer/ScriptOrganizerDialog\">Select a macro or script from <emph>My Macros</emph>, <emph>%PRODUCTNAME Macros</emph>, or an open document. To view the available macros or scripts, double-click an entry.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/scriptorganizer/ScriptOrganizerDialog\">Select a macro or script from <emph>My Macros</emph>, <emph>Application Macros</emph>, or an open document. To view the available macros or scripts, double-click an entry.</ahelp>"
msgstr ""
#. wxJE3
@@ -45836,6 +46205,42 @@ msgctxt ""
msgid "<ahelp hid=\".\">Removes the selected signature from the list. Removes all subsequent signatures as well, in case of PDF.</ahelp>"
msgstr ""
+#. Yda7b
+#: digitalsignatures.xhp
+msgctxt ""
+"digitalsignatures.xhp\n"
+"hd_id61638092292670\n"
+"help.text"
+msgid "Start Certificate Manager"
+msgstr ""
+
+#. bEk3e
+#: digitalsignatures.xhp
+msgctxt ""
+"digitalsignatures.xhp\n"
+"par_id441638095576834\n"
+"help.text"
+msgid "Opens the installed certificate manager of your system."
+msgstr ""
+
+#. zGF8H
+#: digitalsignatures.xhp
+msgctxt ""
+"digitalsignatures.xhp\n"
+"par_id481638101674763\n"
+"help.text"
+msgid "On macOS, the default certificate manager is <emph>Keychain Access</emph>."
+msgstr ""
+
+#. oENdS
+#: digitalsignatures.xhp
+msgctxt ""
+"digitalsignatures.xhp\n"
+"par_id701638101681340\n"
+"help.text"
+msgid "On Windows systems, the default certificate manager is <emph>Certmgr.msc</emph>, a Microsoft Management Console snap-in using Certmgr.exe, and does not manage OpenPGP certificates. To manage both X509 and OpenPGP certificates install the <emph>gpg4win</emph> tool."
+msgstr ""
+
#. Bsfs2
#: digitalsignaturespdf.xhp
msgctxt ""
@@ -47609,6 +48014,78 @@ msgctxt ""
msgid "<link href=\"https://ask.libreoffice.org/en/question/854/what-video-formats-does-libreoffice-impress-support/\" name=\"askbot\">%PRODUCTNAME Askbot question and answer</link>"
msgstr ""
+#. BfayS
+#: nav_rename.xhp
+msgctxt ""
+"nav_rename.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rename object"
+msgstr ""
+
+#. xBT3n
+#: nav_rename.xhp
+msgctxt ""
+"nav_rename.xhp\n"
+"bm_id3147366\n"
+"help.text"
+msgid "<bookmark_value>navigator; rename</bookmark_value> <bookmark_value>rename;objects</bookmark_value>"
+msgstr ""
+
+#. W5LjG
+#: nav_rename.xhp
+msgctxt ""
+"nav_rename.xhp\n"
+"hd_id3147366\n"
+"help.text"
+msgid "Rename object"
+msgstr ""
+
+#. DFRqj
+#: nav_rename.xhp
+msgctxt ""
+"nav_rename.xhp\n"
+"par_id3147588\n"
+"help.text"
+msgid "<variable id=\"desc\">Renames the object selected in the Navigator.</variable>"
+msgstr ""
+
+#. BJGCb
+#: nav_rename.xhp
+msgctxt ""
+"nav_rename.xhp\n"
+"par_id3148833\n"
+"help.text"
+msgid "Open the context menu for the object - Choose <menuitem>Rename</menuitem>."
+msgstr ""
+
+#. KbRdP
+#: nav_rename.xhp
+msgctxt ""
+"nav_rename.xhp\n"
+"hd_id3156027\n"
+"help.text"
+msgid "New name"
+msgstr ""
+
+#. CG62C
+#: nav_rename.xhp
+msgctxt ""
+"nav_rename.xhp\n"
+"par_id3152924\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the new name of the selected object.</ahelp>"
+msgstr ""
+
+#. wJHoB
+#: nav_rename.xhp
+msgctxt ""
+"nav_rename.xhp\n"
+"par_id661630417737429\n"
+"help.text"
+msgid "Names of objects must be unique in the same document."
+msgstr ""
+
#. FzLmt
#: notebook_bar.xhp
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/shared/autopi.po b/source/km/helpcontent2/source/text/shared/autopi.po
index 4755b233b39..949cc806873 100644
--- a/source/km/helpcontent2/source/text/shared/autopi.po
+++ b/source/km/helpcontent2/source/text/shared/autopi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-14 18:09+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2019-08-09 08:19+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -7739,14 +7739,14 @@ msgctxt ""
msgid "<link href=\"text/shared/autopi/01170200.xhp\" name=\"Additional Settings\">Additional Settings</link>"
msgstr "<link href=\"text/shared/autopi/01170200.xhp\" name=\"Additional Settings\">ការ​កំណត់​បន្ថែម​​</link>"
-#. FYioz
+#. DFBck
#: 01170200.xhp
msgctxt ""
"01170200.xhp\n"
"par_id3143281\n"
"help.text"
-msgid "<ahelp hid=\".\">Allows you to enter additional settings for LDAP address data and other external data sources.</ahelp>"
-msgstr "<ahelp hid=\".\">អនុញ្ញាត​ឲ្យអ្នក​បញ្ចូល​ការកំណត់​បន្ថែម​សម្រាប់ទិន្នន័យអាសយដ្ឋាន LDAP និង ប្រភពទិន្នន័យ​ខាងក្រៅ ។</ahelp>"
+msgid "<ahelp hid=\".\">Allows you to enter additional settings for other external data sources.</ahelp>"
+msgstr ""
#. zrAAW
#: 01170200.xhp
@@ -7766,15 +7766,6 @@ msgctxt ""
msgid "<ahelp hid=\"modules/sabpilot/ui/invokeadminpage/settings\">Calls a dialog in which you can enter additional settings.</ahelp>"
msgstr "<ahelp hid=\"modules/sabpilot/ui/invokeadminpage/settings\">ហៅ​ប្រអប់​មួយ​ ដែល​​អ្នក​អាច​បញ្ចូល​ការ​កំណត់​បន្ថែម​ ។</ahelp>"
-#. fsQ4B
-#: 01170200.xhp
-msgctxt ""
-"01170200.xhp\n"
-"par_id3159233\n"
-"help.text"
-msgid "If you selected <emph>LDAP</emph> on the first page, you will see the <link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\" name=\"LDAP\">LDAP</link> page."
-msgstr "ប្រសិន​អ្នក​​បាន​ជ្រើស​ <emph>LDAP</emph> នៅ​លើ​ទំព័រ​ទី​មួយ​ អ្នក​នឹង​ឃើញ​ទំព័រ​ <link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\" name=\"LDAP\">LDAP​</link> ។"
-
#. 5e2zp
#: 01170300.xhp
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/shared/explorer/database.po b/source/km/helpcontent2/source/text/shared/explorer/database.po
deleted file mode 100644
index ea394481c15..00000000000
--- a/source/km/helpcontent2/source/text/shared/explorer/database.po
+++ /dev/null
@@ -1,2862 +0,0 @@
-#. extracted from helpcontent2/source/text/shared/explorer/database
-msgid ""
-msgstr ""
-"Project-Id-Version: database\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-19 15:44+0100\n"
-"PO-Revision-Date: 2019-08-09 08:19+0000\n"
-"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
-"Language-Team: Khmer <support@khmeros.info>\n"
-"Language: km\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-Language: km-KH\n"
-"X-POOTLE-MTIME: 1565338774.000000\n"
-
-#. kyYMn
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"tit\n"
-"help.text"
-msgid "Migrate Macros"
-msgstr "ប្ដូរ​ម៉ាក្រូ"
-
-#. KDtEB
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"bm_id6009095\n"
-"help.text"
-msgid "<bookmark_value>wizards;macros (Base)</bookmark_value> <bookmark_value>Macro Wizard (Base)</bookmark_value> <bookmark_value>macros;attaching new (Base)</bookmark_value> <bookmark_value>migrating macros (Base)</bookmark_value>"
-msgstr "<bookmark_value>អ្នក​ជំនួយការ;ម៉ាក្រូ (Base)</bookmark_value> <bookmark_value>អ្នក​ជំនួយការ​ម៉ាក្រូ (Base)</bookmark_value> <bookmark_value>ម៉ាក្រូ;ភ្ជាប់​ថ្មី (Base)</bookmark_value> <bookmark_value>ប្ដូរ​ម៉ាក្រូ (Base)</bookmark_value>"
-
-#. habQL
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"hd_id0112200902353472\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/migrate_macros.xhp\">Migrate Macros</link>"
-msgstr "<link href=\"text/shared/explorer/database/migrate_macros.xhp\">ប្ដូរ​ម៉ាក្រូ</link>"
-
-#. xMVrd
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"par_id0112200902353466\n"
-"help.text"
-msgid "<ahelp hid=\".\">The Database Document Macro Migration Wizard moves existing macros from sub-documents of an old Base file into the new Base file's macro storage area.</ahelp>"
-msgstr "<ahelp hid=\".\">អ្នក​ជំនួយការ​ប្ដូរ​ម៉ាក្រូ​ឯកសារ​របស់​មូលដ្ឋានទិ​ន្នន័យ​ផ្លាស់ទី​ម៉ាក្រូ​ដែល​មាន​ស្រាប់​ពី​ឯកសារ​រង​របស់ឯកសារ Base មូលដ្ឋាន​ទៅ​ក្នុង​ផ្ទៃ​ផ្ទុក​ម៉ាក្រូ​របស់​ឯកសារ Base ថ្មី ។</ahelp>"
-
-#. ajASD
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"par_id0224200911454780\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Choose a location and file name to save the new database file. By default, the new file gets the same name as the old file, while the old file gets renamed with the string \"backup\" in the name.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ជ្រើស​ទីតាំង និងឈ្មោះ​ឯកសារ​ ដើម្បីរក្សាទុក​ឯកសារ​មូលដ្ឋាន​ទិន្នន័យ​ថ្មី ។ តាម​លំនាំដើម ឯកសារ​ថ្មីមាន​ឈ្មោះ​ដូចគ្នា​នឹង​ឯកសារ​ចាស់ ខណៈពេលដែល​ឯកសារ​ចាស់ត្រូវ​បាន​ប្ដូរ​ឈ្មោះ​ដោយ​មាន​ខ្សែអក្សរ \"backup\" នៅ​ក្នុង​ឈ្មោះ ។</ahelp>"
-
-#. M7aSL
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"par_id022420091145472\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">The list shows all changes that were applied to the database file.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">បញ្ជី​បង្ហាញ​ការ​ផ្លាស់ប្ដូរ​ទាំងអស់​ដែល​ត្រូវ​បាន​អនុវត្ត​ទៅ​ឯកសារ​មូលដ្ឋាន​ទិន្នន័យ ។</ahelp>"
-
-#. hee9q
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"par_id0112200902353542\n"
-"help.text"
-msgid "Previously, macros have been allowed to reside only in the text sub-documents of forms and reports. Now macros can also be stored in the Base file itself. This means that macros in Base files can be called now from any of its sub-components: forms, reports, table design, query design, relation design, table data view."
-msgstr "ពីមុន ម៉ាក្រូ​ត្រូវ​បាន​អនុញ្ញាត​ឲ្យ​ស្ថិត​នៅ​តែ​ក្នុង​ឯកសាររង​អត្ថបទ​របស់​សំណុំ​បែប​បទ និង​របាយ​ការណ៍​ប៉ុណ្ណោះ ។ ឥឡូវ​នេះ​អាច​ទុក​ម៉ាក្រូ​នៅ​ក្នុង​ឯកសារ​របស់ Base ​ផ្ទាល់​បានផង​ដែរ​ ។ វា​មាន​ន័យ​ថា​ម៉ាក្រូ​នៅ​ក្នុង​ឯកសាររបស់​ Base អាច​ត្រូវ​​ហៅ​ឥឡូវ​នេះ​បាន​ចាប់​ពី​សមាសភាគ​​រង​ណាមួយ​របស់​វា ៖ សំណុំ​បែប​បទ របាយការណ៍ ការរចនា​តារាង ការរចនា​សំណួរ ការរចនា​ទំនាក់​ទំនង ទិដ្ឋភាព​ទិន្នន័យ​តារាង ។"
-
-#. DhC2o
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"par_id0112200903075865\n"
-"help.text"
-msgid "However, it is technically not possible to store macros both in a Base file and in its sub-documents at the same time. So, if you want to attach some new macros to the Base file, while retaining any existing old macros that were stored in the sub-documents, you must move the existing old macros up to the Base file's macro storage area."
-msgstr "ទោះ​ជា​យ៉ាង​​ណា​ក៏​ដោយ នេះ​ជា​បញ្ហា​បច្ចេកទេស ដែល​មិនអាច​ត្រូវ​ផ្ទុក​ម៉ាក្រូ​​បានទេ​ទាំង​នៅ​ក្នុង​ឯកសារ Base និង​ឯកសារ​រង​របស់​វា​នៅពេល​តែ​មួយ ។ ដូច្នេះ ប្រសិនបើ​អ្នក​ចង់​ភ្ជាប់​ម៉ាក្រូ​ថ្មី​មួយ​ចំនួន​ទៅ​ក្នុង​ឯកសារ Base ខណៈពេល​ទុក​ម៉ាក្រូ​ដែល​មាន​ស្រាប់​មួយ​ចំនួនដែល​ត្រូវ​បានផ្ទុក​នៅ​ក្នុង​ឯកសារ​រង អ្នក​ត្រូវ​តែ​ផ្លាស់​ម៉ាក្រូ​ចាស់​ដែល​មាន​ស្រាប់​​ឡើង​លើ​ទៅ​ផ្ទៃ​ផ្ទុក​ម៉ាក្រូ​របស់​ឯកសារ Base ។"
-
-#. mtCb7
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"par_id0112200903075830\n"
-"help.text"
-msgid "The Database Document Macro Migration Wizard can move the macros up into the Base file's storage area. You can then examine the macros and edit them as needed."
-msgstr "អ្នក​ជំនួយការ​ប្ដូរ​ម៉ាក្រូ​ឯកសារ​មូលដ្ឋាន​ទិន្នន័យ​អាច​​ផ្លាស់ទី​ម៉ាក្រូឡើង​លើ​នៅ​ក្នុង​ផ្ទៃ​ផ្ទុក​របស់​ឯកសារ Base ។ បន្ទាប់​មក​អាចអាច​ពិនិត្យ​មើល​ម៉ាក្រូ ហើយ​កែសម្រួល​ពួកវា​តាម​ត្រូវការ ។"
-
-#. RJUfX
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"par_id0112200903075951\n"
-"help.text"
-msgid "For example, it is possible that macros from the sub-documents had the same module names and macro names. After you moved the macros into one common macro storage area, you must edit the macros to make the names unique. The wizard cannot do this."
-msgstr "ឧទាហរណ៍ វា​អាច​​យក​ម៉ាសក្រូ​ពី​ឯកសារ​រង​ដែល​ឈ្មោះ​ម៉ូឌុល និង​ឈ្មោះ​ម៉ាសក្រូ​ដូច​គ្នា ។ បន្ទាប់​ពី​អ្នក​​បានផ្លាស់ទី​ម៉ាក្រូ​ទៅ​ក្នុង​ផ្ទៃ​ផ្ទុក​ម៉ាក្រូ​ធម្មតា អ្នក​ត្រូវទេ​កែសម្រួល​ម៉ាសក្រូ​ ដើម្បី​បង្កើត​ឈ្មោះ​តែ​មួយ ។ អ្នក​ជំនួយការ​មិនអាច​ធ្វើដូច​នេះ​បានទេ ។"
-
-#. pSFRn
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"par_id0112200903075915\n"
-"help.text"
-msgid "The wizard can backup the Base file to another folder of your choice. The wizard changes the original Base file. The backup remains unchanged."
-msgstr "អ្នក​អាច​ជំនួយការ​អាច​បម្រុង​ទុក​ឯកសារ Base ទៅថត​ផ្សេង​តាមជម្រើស​របស់​អ្នក ។ អ្នក​ជំនួយកា​រផ្លាស់ប្ដូរ​ឯកសារ Base ដើម ។ ការ​បម្រុង​ទុក​នៅ​តែ​មិន​ផ្លាស់ប្ដូរ ។"
-
-#. WCGZK
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"par_id0112200902353554\n"
-"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/Macros_in_Database_Documents\" name=\"wiki.documentfoundation.org Macros in Database Documents\">An in depth explanation by the developers (Wiki).</link>"
-msgstr ""
-
-#. WG9NH
-#: password.xhp
-msgctxt ""
-"password.xhp\n"
-"tit\n"
-"help.text"
-msgid "User Name and Password Required"
-msgstr "ត្រូវ​ការ​ឈ្មោះ​អ្នក​ប្រើ និង​ពាក្យ​សម្ងាត់"
-
-#. WekVB
-#: password.xhp
-msgctxt ""
-"password.xhp\n"
-"par_idN10541\n"
-"help.text"
-msgid "User Name and Password Required"
-msgstr "ត្រូវ​ការ​ឈ្មោះ​អ្នក​ប្រើ និង​ពាក្យ​សម្ងាត់"
-
-#. LCLTp
-#: password.xhp
-msgctxt ""
-"password.xhp\n"
-"par_idN1054D\n"
-"help.text"
-msgid "User name"
-msgstr "ឈ្មោះ​អ្នក​ប្រើ"
-
-#. Rx3tD
-#: password.xhp
-msgctxt ""
-"password.xhp\n"
-"par_idN10551\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the user name to connect to the data source.</ahelp>"
-msgstr "<ahelp hid=\".\">បញ្ចូល​ឈ្មោះ​អ្នក​ប្រើ​ដើម្បី​តភ្ជាប់​ទៅ​ប្រភព​ទិន្នន័យ ។</ahelp>"
-
-#. dQH7s
-#: password.xhp
-msgctxt ""
-"password.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "Password"
-msgstr "ពាក្យ​​​សម្ងាត់"
-
-#. dqjRr
-#: password.xhp
-msgctxt ""
-"password.xhp\n"
-"par_idN1056C\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the password to connect to the data source.</ahelp>"
-msgstr "<ahelp hid=\".\">បញ្ចូល​ពាក្យ​សម្ងាត់​ដើម្បី​តភ្ជាប់​ទៅ​ប្រភព​ទិន្នន័យ ។</ahelp>"
-
-#. TudyG
-#: password.xhp
-msgctxt ""
-"password.xhp\n"
-"par_idN10583\n"
-"help.text"
-msgid "Remember password till end of session"
-msgstr "ចងចាំ​ពាក្យ​សម្ងាត់​រហូត​ដល់​ចុង​សម័យ"
-
-#. KYrgJ
-#: password.xhp
-msgctxt ""
-"password.xhp\n"
-"par_idN10587\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to use the same user name and password without further dialog, when you connect again to the same data source in the current %PRODUCTNAME session.</ahelp>"
-msgstr "<ahelp hid=\".\">ជ្រើស​ដើម្បី​ប្រើ​ឈ្មោះ​អ្នក​ប្រើ​ និង​ពាក្យ​សម្ងាត់​ដូច​គ្នាដោយ​គ្មាន​ប្រអប់​បន្ថែម ពេល​អ្នក​តភ្ជាប់​ម្តង​ទៀត ទៅ​ប្រភព​ទិន្នន័យ​ដដែល​ក្នុង​សម័យ​ %PRODUCTNAME បច្ចុប្បន្ន ។</ahelp>"
-
-#. EWAYC
-#: querywizard00.xhp
-msgctxt ""
-"querywizard00.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Wizard"
-msgstr "អ្នក​ជំនួយការ​សំណួរ"
-
-#. G8nCc
-#: querywizard00.xhp
-msgctxt ""
-"querywizard00.xhp\n"
-"par_idN1054C\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard00.xhp\">Query Wizard</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard00.xhp\">អ្នក​ជំនួយ​ការ​សំណួរ</link>"
-
-#. 7eeqf
-#: querywizard00.xhp
-msgctxt ""
-"querywizard00.xhp\n"
-"par_idN1055C\n"
-"help.text"
-msgid "<ahelp hid=\".\">The Query Wizard helps you to design a database query.</ahelp> The saved query can be called later, either from the graphical user interface, or using the automatically created SQL language command."
-msgstr "<ahelp hid=\".\">អ្នក​ជំនួយការ​សំណួរ​ជួយ​អ្នក​រចនា​សំណួរមូលដ្ឋាន​ទិន្នន័យ ។</ahelp> សំណួរ​ដែល​បាន​រក្សា​ទុក​អាច​ត្រូវ​បាន​ហៅ​ពេល​ក្រោយ អាច​ពី​ចំណុច​ប្រទាក់​អ្នក​ប្រើ​ក្រាហ្វិក ឬ​ដោយ​ប្រើ​ពាក្យ​បញ្ជា​ភាសា​ SQL ដែល​បាន​បង្កើត​ដោយ​ស្វ័យ​ប្រវត្តិ ។"
-
-#. Baapm
-#: querywizard00.xhp
-msgctxt ""
-"querywizard00.xhp\n"
-"par_idN105D2\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard01.xhp\" name=\"Query Wizard - Field Selection\">Query Wizard - Field selection</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard01.xhp\" name=\"Query Wizard - Field Selection\">អ្នក​ជំនួយការ​សំណួរ - ជម្រើស​វាល</link>"
-
-#. qKgrF
-#: querywizard01.xhp
-msgctxt ""
-"querywizard01.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Wizard - Field Selection"
-msgstr "អ្នក​ជំនួយការ​សំណួរ - ជម្រើស​វាល"
-
-#. duo5c
-#: querywizard01.xhp
-msgctxt ""
-"querywizard01.xhp\n"
-"par_idN10546\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard01.xhp\">Query Wizard - Field Selection</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard01.xhp\">អ្នក​ជំនួយការ​សំណួរ - ជម្រើស​វាល</link>"
-
-#. zvnWy
-#: querywizard01.xhp
-msgctxt ""
-"querywizard01.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "Specifies the table to create the query, and specifies which fields you wish to include in the query."
-msgstr "បញ្ជាក់​​តារាង​ដើម្បី​បង្កើត​សំណួរ និង​បញ្ជាក់​​វាល​មួយ​ណា​ដែល​អ្នក​ចង់​រួម​បញ្ចូល​ក្នុង​សំណួរ ។"
-
-#. bjRCe
-#: querywizard01.xhp
-msgctxt ""
-"querywizard01.xhp\n"
-"par_idN10559\n"
-"help.text"
-msgid "Tables"
-msgstr "តារាង"
-
-#. RBgge
-#: querywizard01.xhp
-msgctxt ""
-"querywizard01.xhp\n"
-"par_idN1055D\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the table for which the query is to be created.</ahelp>"
-msgstr "<ahelp hid=\".\">បញ្ជាក់​​តារាង​ដែល​ត្រូវ​យក​មក​បង្កើត​សំណួរ ។</ahelp>"
-
-#. BFXtZ
-#: querywizard01.xhp
-msgctxt ""
-"querywizard01.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "Fields in the Query"
-msgstr "វាល​​ក្នុង​សំណួរ"
-
-#. n6cwc
-#: querywizard01.xhp
-msgctxt ""
-"querywizard01.xhp\n"
-"par_idN10594\n"
-"help.text"
-msgid "<ahelp hid=\".\">Displays all fields that will be included in the new query.</ahelp>"
-msgstr "<ahelp hid=\".\">បង្ហាញ​វាល​ទាំងអស់​ដែល​នឹង​ត្រូវ​រួម​បញ្ចូល​ក្នុង​សំណួរ​ថ្មី​មួយ ។</ahelp>"
-
-#. ekG7n
-#: querywizard01.xhp
-msgctxt ""
-"querywizard01.xhp\n"
-"par_idN10597\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard02.xhp\" name=\"Query Wizard - Sorting order\">Query Wizard - Sorting order</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard02.xhp\" name=\"Query Wizard - Sorting order\">អ្នក​ជំនួយការ​សំណួរ - លំដាប់​តម្រៀប</link>"
-
-#. T7jwS
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Wizard - Sorting Order"
-msgstr "អ្នក​ជំនួយការ​សំណួរ - លំដាប់​តម្រៀប"
-
-#. 5mgru
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN10543\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard02.xhp\">Query Wizard - Sorting Order</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard02.xhp\">អ្នក​ជំនួយការ​សំណួរ - លំដាប់​តម្រៀប</link>"
-
-#. hv6wL
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN10553\n"
-"help.text"
-msgid "Specifies the sorting order for the data records in your query."
-msgstr "បញ្ជាក់​​​​លំដាប់​តម្រៀប​សម្រាប់​កំណត់ត្រា​ទិន្នន័យ​ក្នុង​សំណួរ​របស់​អ្នក"
-
-#. eVr57
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "Sort by"
-msgstr "តម្រៀប​​តាម"
-
-#. CRtP3
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN105B2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the field by which the created query is sorted.</ahelp>"
-msgstr "<ahelp hid=\".\">បញ្ជាក់​​វាល​ដែល​សំណួរ​ដែល​បាន​បង្កើត​ត្រូវ​បាន​តម្រៀប ។</ahelp>"
-
-#. xUjcF
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN1055C\n"
-"help.text"
-msgid "Ascending"
-msgstr "លំដាប់​ឡើង"
-
-#. aSXt6
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN105BF\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to sort in alphabetically or numerically ascending order.</ahelp>"
-msgstr "<ahelp hid=\".\">ចុច​ដើម្បី​តម្រៀប​តាម​លំដាប់​អក្សរ​ក្រម​ ឬ​លេខ​តាម​លំដាប់​កើន ។</ahelp>"
-
-#. pR3aG
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN10562\n"
-"help.text"
-msgid "Descending"
-msgstr "លំដាប់​ចុះ"
-
-#. 9BtoZ
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN105CC\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to sort in alphabetically or numerically descending order.</ahelp>"
-msgstr "<ahelp hid=\".\">ចុច​ដើម្បី​តម្រៀប​តាម​លំដាប់​អក្សរ​ក្រម​ ឬ​លេខ​តាម​លំដាប់​ចុះ ។</ahelp>"
-
-#. 6U4wS
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "And then by"
-msgstr "និង​បន្ទាប់មក​ដោយ​"
-
-#. CqmF3
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN105D9\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies additional fields by which the created query is sorted, if previous sort fields are equal.</ahelp>"
-msgstr "<ahelp hid=\".\">បញ្ជាក់​​វាល​បន្ថែម​ដែល​សំណួរ​បាន​បង្កើត​ត្រូវ​បាន​តម្រៀប ប្រសិន​បើ​វាល​តម្រៀប​មុន​ស្មើ​គ្នា ។</ahelp>"
-
-#. CD7Db
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN1056E\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard03.xhp\" name=\"Query Wizard - Search conditions\">Query Wizard - Search conditions</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard03.xhp\" name=\"Query Wizard - Search conditions\">អ្នក​ជំនួយការ​សំណួរ - លក្ខខណ្ឌ​ស្វែង​រក​</link>"
-
-#. Ezdjv
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Wizard - Search Conditions"
-msgstr "អ្នក​ជំនួយការ​សំណួរ - លក្ខខណ្ឌ​ស្វែង​រក​"
-
-#. b9Fcz
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN10543\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard03.xhp\">Query Wizard - Search Conditions</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard03.xhp\">អ្នក​ជំនួយការ​សំណួរ - លក្ខខណ្ឌ​ស្វែង​រក​</link>"
-
-#. Axn74
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN10553\n"
-"help.text"
-msgid "Specifies the search conditions to filter the query."
-msgstr "បញ្ជាក់​លក្ខខណ្ឌ​ស្វែង​រក​ដើម្បី​ត្រង​សំណួរ ។"
-
-#. MBS9h
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "Match all of the following"
-msgstr "ផ្គូផ្គង​នឹង​​ធាតុ​ខាង​ក្រោម​នេះ​ទាំង​អស់"
-
-#. eGvAt
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN105B2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to filter the query by all the conditions using a logical AND.</ahelp>"
-msgstr "<ahelp hid=\".\">ជ្រើស​ដើម្បី​ត្រង​សំណួរ​ដោយ​មាន​គ្រប់​លក្ខខណ្ឌ​​ដែល​​ប្រើ​តក្ក AND ។</ahelp>"
-
-#. mowq3
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN1055C\n"
-"help.text"
-msgid "Match any of the following"
-msgstr "ផ្គូផ្គង​នឹង​​ធាតុ​ខ្លះ​ក្នុង​ចំណោម​ធាតុ​ខាង​ក្រោម​នេះ​​"
-
-#. m9DAv
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN105BF\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to filter the query by any of the conditions using a logical OR.</ahelp>"
-msgstr "<ahelp hid=\".\">ជ្រើស​ដើម្បី​ត្រង​សំណួរ​តាម​លក្ខខណ្ឌ​ណាមួយ​ដោយ​ប្រើ​តក្ក OR ។</ahelp>"
-
-#. YzKAZ
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN10562\n"
-"help.text"
-msgid "Field"
-msgstr "វាល"
-
-#. zJBqq
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN105CC\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the field name for the filter condition.</ahelp>"
-msgstr "<ahelp hid=\".\">ជ្រើស​ឈ្មោះ​វាល​សម្រាប់​លក្ខខណ្ឌ​តម្រង ។</ahelp>"
-
-#. cpBwd
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "Condition"
-msgstr "លក្ខខណ្ឌ"
-
-#. FRFQM
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN105D9\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the condition for the filter.</ahelp>"
-msgstr "<ahelp hid=\".\">ជ្រើស​លក្ខខណ្ឌ​សម្រាប់​តម្រង ។</ahelp>"
-
-#. dF2FF
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN1056E\n"
-"help.text"
-msgid "Value"
-msgstr "តម្លៃ"
-
-#. ZKEEw
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN105E6\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the value for the filter condition.</ahelp>"
-msgstr "<ahelp hid=\".\">បញ្ចូល​តម្លៃ​សម្រាប់​លក្ខខណ្ឌ​តម្រង ។</ahelp>"
-
-#. hZQwL
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN10574\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard04.xhp\" name=\"Query Wizard - Detail or Summary\">Query Wizard - Detail or summary</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard04.xhp\" name=\"Query Wizard - Detail or Summary\">អ្នក​ជំនួយការ​សំណួរ - លម្អិត ឬ​សង្ខេប</link>"
-
-#. AFtfc
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Wizard - Detail or Summary"
-msgstr "អ្នក​ជំនួយការ​សំណួរ - លម្អិត ឬ​សង្ខេប"
-
-#. CRU4t
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN10543\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard04.xhp\">Query Wizard - Detail or Summary</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard04.xhp\">អ្នក​ជំនួយការ​សំណួរ - លម្អិត ឬ​សង្ខេប</link>"
-
-#. pvdAU
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN10553\n"
-"help.text"
-msgid "Specifies whether to display all records of the query, or only the results of aggregate functions."
-msgstr "បញ្ជាក់​​ថាតើ ត្រូវ​បង្ហាញ​កំណត់​ត្រា​នៃ​សំណួរ​ទាំងអស់ ឬ​គ្រាន់​តែ​លទ្ធផល​នៃ​អនុគមន៍ផ្តុំ ។"
-
-#. GNBdc
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "This page is only displayed when there are numerical fields in the query that allow the use of aggregate functions."
-msgstr "ទំព័រ​នេះ​ត្រូវ​បាន​បង្ហាញ​តែ​ក្នុង​ពេល​ដែល​មាន​វាល​លេខ​ក្នុង​សំណួរ​ដែល​អនុញ្ញាត​ឲ្យ​ប្រើ​អនុគមន៍ផ្គុំ ។"
-
-#. LAhTk
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN10559\n"
-"help.text"
-msgid "Detailed query"
-msgstr "សំណួរ​ជា​លម្អិត"
-
-#. aXtmP
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN105BD\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to show all records of the query.</ahelp>"
-msgstr "<ahelp hid=\".\">ជ្រើស​ដើម្បី​បង្ហាញ​កំណត់​ត្រា​នៃ​សំណួរ​ទាំង​អស់</ahelp>"
-
-#. h7yp9
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN105C2\n"
-"help.text"
-msgid "Summary query"
-msgstr "សំណួរ​សង្ខេប"
-
-#. 4VMFu
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN105C8\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to show only results of aggregate functions.</ahelp>"
-msgstr "<ahelp hid=\".\">ជ្រើស​ដើម្បី​បង្ហាញ​តែ​លទ្ធផល​នៃ​អនុគមន៍​ផ្តុំ ។</ahelp>"
-
-#. CEC9y
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN105D7\n"
-"help.text"
-msgid "Select the aggregate function and the field name of the numeric field in the list box. You can enter as many aggregate functions as you want, one in each row of controls."
-msgstr "​ជ្រើស​អនុគមន៍​ផ្តុំ និង​ឈ្មោះ​វាល​លេខ​ក្នុង​ប្រអប់​បញ្ជី ។ អ្នក​អាច​បញ្ចូលអនុគមន៍​ផ្តុំ​បាន​ច្រើន​តាម​ចិត្ត​ អនុគមន៍​ផ្តុំ​មួយ​ក្នុង​ជួរ​ដេក​មួយ​នៃ​វត្ថុ​បញ្ជា ។"
-
-#. QCySK
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN1055D\n"
-"help.text"
-msgid "Aggregate function"
-msgstr "អនុគមន៍​ផ្តុំ"
-
-#. H3vuB
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN105E4\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the aggregate function.</ahelp>"
-msgstr "<ahelp hid=\".\">ជ្រើស​អនុគមន៍​ផ្តុំ ។</ahelp>"
-
-#. 7VBHB
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN105DD\n"
-"help.text"
-msgid "Field name"
-msgstr "ឈ្មោះ​វាល​"
-
-#. DhcSj
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN10656\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the numeric field name.</ahelp>"
-msgstr "<ahelp hid=\".\">ជ្រើស​ឈ្មោះ​វាល​តម្លៃ​លេខ ។</ahelp>"
-
-#. 2fBzx
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN105E7\n"
-"help.text"
-msgid "+"
-msgstr "+"
-
-#. hM5kP
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN105FE\n"
-"help.text"
-msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
-msgstr "<ahelp hid=\".\">បន្ថែម​ពី​ក្រោយ​នូវ​ជួរដេក​ថ្មី​មួយ​នៃ​វត្ថុ​បញ្ជា ។</ahelp>"
-
-#. MYCN9
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN1060B\n"
-"help.text"
-msgid "<ahelp hid=\".\">Removes the last row of controls.</ahelp>"
-msgstr "<ahelp hid=\".\">យក​ជួរដេក​ចុង​ក្រោយ​​នៃ​វត្ថុ​បញ្ជាចេញ ។</ahelp>"
-
-#. PGYED
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN1060E\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard05.xhp\" name=\"Query Wizard - Grouping\">Query Wizard - Grouping</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard05.xhp\" name=\"Query Wizard - Grouping\">អ្នក​ជំនួយការ​សំណួរ - ក្រុម</link>"
-
-#. d4Arr
-#: querywizard05.xhp
-msgctxt ""
-"querywizard05.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Wizard - Grouping"
-msgstr "អ្នក​ជំនួយការ​សំណួរ - ក្រុម"
-
-#. yK7uG
-#: querywizard05.xhp
-msgctxt ""
-"querywizard05.xhp\n"
-"par_idN10546\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard05.xhp\">Query Wizard - Grouping</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard05.xhp\">អ្នក​ជំនួយការ​សំណួរ - ក្រុម</link>"
-
-#. yimYQ
-#: querywizard05.xhp
-msgctxt ""
-"querywizard05.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "Specifies whether to group the query. The data source must support the SQL statement \"Group by clauses\" to enable this page of the Wizard."
-msgstr ""
-
-#. BEcEC
-#: querywizard05.xhp
-msgctxt ""
-"querywizard05.xhp\n"
-"par_idN10589\n"
-"help.text"
-msgid "Group by"
-msgstr "ដាក់​ជា​ក្រុម​តាម"
-
-#. XSPcc
-#: querywizard05.xhp
-msgctxt ""
-"querywizard05.xhp\n"
-"par_idN1058D\n"
-"help.text"
-msgid "<ahelp hid=\".\">Displays all fields that are to be used to group the query.</ahelp>"
-msgstr "<ahelp hid=\".\">បង្ហាញ​វាល​ទាំង​អស់​ដែល​ត្រូវ​ប្រើ​ដើម្បី​ដាក់​សំណួរ​ជា​ក្រុម ។</ahelp>"
-
-#. C7sCn
-#: querywizard05.xhp
-msgctxt ""
-"querywizard05.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard06.xhp\" name=\"Query Wizard - Grouping conditions\">Query Wizard - Grouping conditions</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard06.xhp\" name=\"Query Wizard - Grouping conditions\">អ្នក​ជំនួយការ​សំណួរ - លក្ខខណ​ក្រុម</link>"
-
-#. FJyRe
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Wizard - Grouping Conditions"
-msgstr "អ្នក​ជំនួយការ​សំណួរ - លក្ខខណ​ក្រុម"
-
-#. rawpT
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN10546\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard06.xhp\">Query Wizard - Grouping Conditions</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard06.xhp\">អ្នក​ជំនួយការ​សំណួរ - លក្ខខណ​ក្រុម</link>"
-
-#. isYHF
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "Specifies the conditions to group the query. The data source must support the SQL statement \"Group by clauses\" to enable this page of the Wizard."
-msgstr ""
-
-#. E2hjZ
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN10559\n"
-"help.text"
-msgid "Match all of the following"
-msgstr "ផ្គូផ្គង​នឹង​​ធាតុ​ខាង​ក្រោម​នេះ​ទាំង​អស់"
-
-#. tsdNz
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN1055D\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to group the query by all the conditions using a logical AND.</ahelp>"
-msgstr "<ahelp hid=\".\">ជ្រើស​ដើម្បី​ដាក់​សំណួរ​ជា​ក្រុម​តាម​លក្ខខណ្ឌ​ណា​មួយ​ដោយ​ប្រើ​តក្ក​ AND ។</ahelp>"
-
-#. vG7ub
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN10560\n"
-"help.text"
-msgid "Match any of the following"
-msgstr "ផ្គូផ្គង​នឹង​​ធាតុ​ខ្លះ​ក្នុង​ចំណោម​ធាតុ​ខាង​ក្រោម​នេះ​​"
-
-#. H4kNz
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN10564\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to group the query by any of the conditions using a logical OR.</ahelp>"
-msgstr "<ahelp hid=\".\">ជ្រើស​ដើម្បី​ដាក់​សំណួរ​ជា​ក្រុម​តាម​លក្ខខណ្ឌ​ណា​មួយ​ដោយ​ប្រើ​តក្ក​ OR ។</ahelp>"
-
-#. CRQPr
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN10567\n"
-"help.text"
-msgid "Field name"
-msgstr "ឈ្មោះ​វាល​"
-
-#. AUDUW
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN1056B\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the field name for the grouping condition.</ahelp>"
-msgstr "<ahelp hid=\".\">ជ្រើស​ឈ្មោះ​វាល​មួយ​សម្រាប់​លក្ខខណ្ឌ​ក្រុម ។</ahelp>"
-
-#. vYSzM
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN1056E\n"
-"help.text"
-msgid "Condition"
-msgstr "លក្ខខណ្ឌ"
-
-#. VHAhf
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN10572\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the condition for the grouping.</ahelp>"
-msgstr "<ahelp hid=\".\">ជ្រើស​លក្ខខណ្ឌ​សម្រាប់​ក្រុម ។</ahelp>"
-
-#. LYZYG
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN10575\n"
-"help.text"
-msgid "Value"
-msgstr "តម្លៃ"
-
-#. GBywN
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN10579\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the value for the grouping condition.</ahelp>"
-msgstr "<ahelp hid=\".\">បញ្ចូល​តម្លៃ​សម្រាប់​លក្ខខណ្ឌ​ក្រុម ។</ahelp>"
-
-#. LM5AB
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN1057C\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard07.xhp\" name=\"Query Wizard - Aliases\">Query Wizard - Aliases</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard07.xhp\" name=\"Query Wizard - Aliases\">អ្នក​ជំនួយការ​សំណួរ - ឈ្មោះ​ក្លែងក្លាយ</link>"
-
-#. LGziG
-#: querywizard07.xhp
-msgctxt ""
-"querywizard07.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Wizard - Aliases"
-msgstr "អ្នក​ជំនួយការ​សំណួរ - ឈ្មោះ​ក្លែងក្លាយ"
-
-#. cEc4Q
-#: querywizard07.xhp
-msgctxt ""
-"querywizard07.xhp\n"
-"par_idN10543\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard07.xhp\">Query Wizard - Aliases</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard07.xhp\">អ្នក​ជំនួយការ​សំណួរ - ឈ្មោះ​ក្លែងក្លាយ</link>"
-
-#. 8qMru
-#: querywizard07.xhp
-msgctxt ""
-"querywizard07.xhp\n"
-"par_idN10553\n"
-"help.text"
-msgid "Assigns aliases to field names. Aliases are optional, and can provide more user-friendly names, which are displayed in place of field names. For example, an alias can be used when fields from different tables have the same name."
-msgstr "ផ្តល់​ឈ្មោះ​ក្លែងក្លាយ​ទៅ​ឲ្យ​ឈ្មោះ​វាល ។ ឈ្មោះ​ក្លែងក្លាយ​គឺ​ស្រេច​ចិត្ត និង​អាច​ផ្តល់​ឈ្មោះ​ពិរោះ​ជាច្រើន ដែល​នឹង​ត្រូវ​បង្ហាញ​ជា​ឈ្មោះ​វាល ។ ឧទាហរណ៍ ឈ្មោះក្លែងក្លាយ​អាច​ត្រូវ​បាន​ប្រើ​ ពេល​ដែល​វាល​ពី​តារាង​ផ្សេង​មាន​ឈ្មោះ​ដូច​គ្នា ។"
-
-#. GKQBZ
-#: querywizard07.xhp
-msgctxt ""
-"querywizard07.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "Alias"
-msgstr "ឈ្មោះ​ក្លែងក្លាយ"
-
-#. TiaDt
-#: querywizard07.xhp
-msgctxt ""
-"querywizard07.xhp\n"
-"par_idN1055A\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the alias for the field name.</ahelp>"
-msgstr "<ahelp hid=\".\">បញ្ចូល​ឈ្មោះ​ក្លែង​ក្លាយ​សម្រាប់​ឈ្មោះ​វាល ។</ahelp>"
-
-#. jZ6HM
-#: querywizard07.xhp
-msgctxt ""
-"querywizard07.xhp\n"
-"par_idN1055D\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard08.xhp\" name=\"Query Wizard - Overview\">Query Wizard - Overview</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard08.xhp\" name=\"Query Wizard - Overview\">អ្នក​ជំនួយការ​សំណួរ - ទិដ្ឋភាព​ទូទៅ</link>"
-
-#. ZD37L
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Wizard - Overview"
-msgstr "អ្នក​ជំនួយការ​សំណួរ - ទិដ្ឋភាព​ទូទៅ"
-
-#. DagT5
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN10543\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard08.xhp\">Query Wizard - Overview</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard08.xhp\">អ្នក​ជំនួយការ​សំណួរ - ទិដ្ឋភាព​ទូទៅ</link>"
-
-#. Eugc7
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN10553\n"
-"help.text"
-msgid "Enter a name of the query, and specify whether you want to display or to modify the query after the Wizard is finished."
-msgstr "បញ្ចូល​ឈ្មោះ​សំណួរ និង​បញ្ជាក់​​ថា​តើ អ្នក​ចង់​បង្ហាញ ឬ​ចង់​កែប្រែ​សំណួរ​ក្រោយ​ពី​បញ្ចប់​អ្នក​ជំនួយការ ។"
-
-#. zjCxf
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "Name of the query"
-msgstr "ឈ្មោះ​សំណួរ"
-
-#. ZLJYh
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN1055A\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the name of the query.</ahelp>"
-msgstr "<ahelp hid=\".\">បញ្ចូល​ឈ្មោះ​សំណួរ ។</ahelp>"
-
-#. uC9Qc
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN1055D\n"
-"help.text"
-msgid "Display query"
-msgstr "បង្ហាញ​សំណួរ"
-
-#. BJa3G
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN10561\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to save and display the query.</ahelp>"
-msgstr "<ahelp hid=\".\">ជ្រើស​ដើម្បី​រក្សា​ទុក និង​បង្ហាញ​​សំណួរ ។</ahelp>"
-
-#. yN4FB
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN10564\n"
-"help.text"
-msgid "Modify query"
-msgstr "កែប្រែ​សំណួរ"
-
-#. VKpNF
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to save the query and open it for editing.</ahelp>"
-msgstr "<ahelp hid=\".\">ជ្រើស​ដើម្បី​រក្សា​ទុក​សំណួរ​ និង​បើក​វា​សម្រាប់​កែសម្រួល ។</ahelp>"
-
-#. 3ww32
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN1056B\n"
-"help.text"
-msgid "Overview"
-msgstr "ទិដ្ឋភាព​ទូទៅ"
-
-#. SfUBA
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN1056F\n"
-"help.text"
-msgid "<ahelp hid=\".\">Displays a summary of the query.</ahelp>"
-msgstr "<ahelp hid=\".\">បង្ហាញ​សេចក្តី​សង្ខេប​នៃ​សំណួរ​</ahelp>"
-
-#. 84Y4U
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN10572\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard00.xhp\" name=\"Query Wizard\">Query Wizard</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard00.xhp\" name=\"Query Wizard\">អ្នក​ជំនួយការ​សំណួរ​</link>"
-
-#. Us2de
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"tit\n"
-"help.text"
-msgid "Date and Time"
-msgstr "កាលបរិច្ឆេទ និង​ពេលវេលា"
-
-#. KYD3y
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"hd_id2320932\n"
-"help.text"
-msgid "<variable id=\"rep_datetime\"><link href=\"text/shared/explorer/database/rep_datetime.xhp\">Date and Time</link></variable>"
-msgstr "<variable id=\"rep_datetime\"><link href=\"text/shared/explorer/database/rep_datetime.xhp\">កាលបរិច្ឆេទ និង​ពេលវេលា</link></variable>"
-
-#. p8Mrd
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"par_id8638874\n"
-"help.text"
-msgid "<ahelp hid=\".\">You can open the Date and Time dialog of the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> by choosing <item type=\"menuitem\">Insert - Date and Time</item>.</ahelp>"
-msgstr "<ahelp hid=\".\">អ្នក​អាច​បើក​ប្រអប់កាលបរិច្ឆេទ និង​ពេលវេលារបស់<link href=\"text/shared/explorer/database/rep_main.xhp\">កម្មវិធី​បង្កើត​របាយការណ៍</link> ដោយ​ជ្រើស <item type=\"menuitem\">បញ្ចូល - កាលបរិច្ឆេទ និង​វេលា</item> ។</ahelp>"
-
-#. tSLyd
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"par_id6278878\n"
-"help.text"
-msgid "Press <item type=\"keycode\">Shift-F1</item> and point with the mouse at an input box to see a help text for this input box."
-msgstr "សង្កត់ <item type=\"keycode\">ប្ដូរ​(Shift)-F1</item> ហើយ​ចង្អុរ​កណ្ដុរ​ទៅ​ប្រអប់​បញ្ចូល​ដើម្បី​មើល​អត្ថបទ​ជំនួយ​របស់​ប្រអប់​បញ្ចូល​នេះ ។"
-
-#. ppg4k
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"par_id393078\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enable Include Date to insert a date field into the active area of the report. The date field displays the current date when the report is executed.</ahelp>"
-msgstr "<ahelp hid=\".\">បើក រួមបញ្ចូល​កាលបរិច្ឆេទ​ដើម្បី​បញ្ចូល​វាល​កាលបរិច្ឆេទ​ទៅក្នុង​ផ្ទៃ​សកម្ម​នៃ​របាយការណ៍ ។ វាល​កាលបរិច្ឆេទ​បង្ហាញ​កាលបរិច្ឆេទ​បច្ចុប្បន្ន​នៅពេលដែល​របាយការណ៍​ត្រូវបាន​ប្រតិបត្តិ ។</ahelp>"
-
-#. 6ued5
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"par_id1271401\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a format to display the date.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ជ្រើស​ទ្រង់ទ្រាយ​ដើម្បី​បង្ហាញ​កាលបរិច្ឆេទ ។</ahelp>"
-
-#. VvPJF
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"par_id8718832\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enable Include Time to insert a time field into the active area of the report. The time field displays the current time when the report is executed.</ahelp>"
-msgstr "<ahelp hid=\".\">បើក រួម​បញ្ចូល​ពេលវេលា ដើម្បី​បញ្ចូល​វាល​ពេលវេលា​ទៅក្នុង​ផ្ទៃ​សកម្ម​នៃ​របាយការណ៍ ។ វាល​ពេលវេលា​បង្ហាញ​ពេលវេលា​បច្ចុប្បន្ន​នៅពេល​ដែល​របាយការណ៍​ត្រូវបាន​ប្រតិបត្តិ ។</ahelp>"
-
-#. DfCAA
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"par_id8561052\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a format to display the time.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ជ្រើស​ទ្រង់ទ្រាយ​ដើម្បី​បង្ហាញ​ពេលវេលា ។</ahelp>"
-
-#. cVAzu
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"par_id5992919\n"
-"help.text"
-msgid "Click OK to insert the field."
-msgstr "ចុច យល់ព្រម ដើម្បី​បញ្ចូល​វាល ។"
-
-#. WFpF6
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"par_id4320810\n"
-"help.text"
-msgid "You can click the date or time field and drag to another position within the same area, or edit the properties in the Properties window."
-msgstr "អ្នក​អាច​ចុច​វាល​កាលបរិច្ឆេទ ឬ​ពេលវេលា ហើយ​អូស​ទៅកាន់​ទីតាំង​ផ្សេង​ក្នុង​ផ្ទៃ​ដូចគ្នា ឬ​កែសម្រួល​លក្ខណសម្បត្តិ​នៅ​ក្នុង​បង្អួច​លក្ខណសម្បត្តិ ។"
-
-#. DCjDN
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"tit\n"
-"help.text"
-msgid "Insert Fields"
-msgstr ""
-
-#. DiU2a
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"bm_id61540566967968\n"
-"help.text"
-msgid "<bookmark_value>insert fields;in report design</bookmark_value> <bookmark_value>add fields;in report design</bookmark_value> <bookmark_value>report design;add fields to report</bookmark_value>"
-msgstr ""
-
-#. 7sGPE
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"hd_id361540562942432\n"
-"help.text"
-msgid "<variable id=\"addfields\"><link href=\"text/shared/explorer/database/rep_insertfield.xhp\" name=\"Add Fields\">Add fields to report</link></variable>"
-msgstr ""
-
-#. zFCzB
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id3587145\n"
-"help.text"
-msgid "<ahelp hid=\".\">The Add Field window helps you to insert the table entries in the report.</ahelp>"
-msgstr ""
-
-#. dzGbq
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id4503921\n"
-"help.text"
-msgid "The Add Field window is shown automatically when you have selected a table in the Contents box and leave that box."
-msgstr ""
-
-#. hQDBC
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id171540674707522\n"
-"help.text"
-msgid "Choose <item type=\"menuitem\">View - Add Field</item>."
-msgstr ""
-
-#. hxBBt
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id991540674901837\n"
-"help.text"
-msgid "<image src=\"media/icon-themes/cmd/lc_addfield.svg\" id=\"img_id621540674901837\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id491540674901837\">Add field icon</alt></image>"
-msgstr ""
-
-#. oEoAE
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id121540674874655\n"
-"help.text"
-msgid "Click the Add Field icon on the toolbar."
-msgstr ""
-
-#. BqWBD
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id141540563922693\n"
-"help.text"
-msgid "Select the field in the Add Field dialog and click <emph>Insert</emph>. You can select multiple fields pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while clicking on the fields name or using the Shift key while pressing the mouse button. Click <emph>Insert</emph> in the toolbar to add the fields to the report."
-msgstr ""
-
-#. BGjjH
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id4051026\n"
-"help.text"
-msgid "Drag and drop the field names one by one from the Add Field window into the Detail area of the report. Position the fields as you like. Use the icons in the toolbars to align the fields."
-msgstr ""
-
-#. Hk568
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id3397320\n"
-"help.text"
-msgid "It is not possible to overlap the fields. If you drop a table field on the Detail area, then a label and a text box are inserted."
-msgstr ""
-
-#. RGprC
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id3059785\n"
-"help.text"
-msgid "You can also insert text that should be the same on every page of the report. Click the Label Field icon <image id=\"img_id5605334\" src=\"media/icon-themes/cmd/lc_addfield.svg\" width=\"0.566cm\" height=\"0.566cm\" localize=\"true\"><alt id=\"alt_id5605334\">Icon</alt></image>, then drag a rectangle in the Page Header or Page Footer area. Edit the Label property to show the text you want."
-msgstr ""
-
-#. VjpkA
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"hd_id251540563929787\n"
-"help.text"
-msgid "Sorting fields names"
-msgstr ""
-
-#. pNfxS
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id651540564204840\n"
-"help.text"
-msgid "<image src=\"media/icon-themes/cmd/sc_sortascending.svg\" id=\"img_id631540564204841\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id141540564204841\">Sort Ascending icon</alt></image>"
-msgstr ""
-
-#. EfMFi
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id401540563992665\n"
-"help.text"
-msgid "Sort names ascending."
-msgstr ""
-
-#. 9jVwk
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id811540564184191\n"
-"help.text"
-msgid "<image src=\"media/icon-themes/cmd/sc_sortdescending.svg\" id=\"img_id391540564184192\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id571540564184192\">Sort descending icon</alt></image>"
-msgstr ""
-
-#. BEcwL
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id401540563942665\n"
-"help.text"
-msgid "Sort names descending,"
-msgstr ""
-
-#. GRKuP
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id851540564212907\n"
-"help.text"
-msgid "<image src=\"media/icon-themes/cmd/lc_removefiltersort.svg\" id=\"img_id41540564212907\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id421540564212908\">Undo sorting icon</alt></image>"
-msgstr ""
-
-#. DVAm8
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id401540533942665\n"
-"help.text"
-msgid "Restore original sorting"
-msgstr ""
-
-#. gCECo
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"tit\n"
-"help.text"
-msgid "Report Builder"
-msgstr "កម្មវិធី​បង្កើត​របាយការណ៍"
-
-#. Yyb28
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"bm_id1614429\n"
-"help.text"
-msgid "<bookmark_value>Report Builder</bookmark_value> <bookmark_value>Oracle Report Builder</bookmark_value>"
-msgstr ""
-
-#. 8XCCL
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"hd_id8773155\n"
-"help.text"
-msgid "<variable id=\"rep_main\"><link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link></variable>"
-msgstr "<variable id=\"rep_main\"><link href=\"text/shared/explorer/database/rep_main.xhp\">កម្មវិធី​បង្កើត​របាយការណ៍</link></variable>"
-
-#. tcUx2
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id5248573\n"
-"help.text"
-msgid "The Report Builder is a tool to create your own database reports. Unlike with the <link href=\"text/shared/autopi/01100000.xhp\">Report Wizard</link>, using the Report Builder you can take control to design the report the way you want. The generated report is a Writer document that you can edit, too."
-msgstr "កម្មវិធី​បង្កើត​​របាយការណ៍​គឺ​ជា​ឧបករណ៍​មួយ​សម្រាប់​បង្កើត​របាយការណ៍​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក​ផ្ទាល់ ។ មិន​ដូចគ្នា​នឹង <link href=\"text/shared/autopi/01100000.xhp\">អ្នក​ជំនួយការ​របាយការណ៍​ទេ</link> ដោយ​ប្រើ​កម្មវិធី​រចនា​របាយការណ៍ អ្នក​អាច​បញ្ជា​ការ​រចនា​របាយការណ៍​តាម​វិធី​ដែល​អ្នក​ចង់ ។ របាយការណ៍​ដែល​បាន​បង្កើត គឺ​ជា​ឯកសារ Writer ហើយ​អ្នក​អាច​កែសម្រួល​បាន ។"
-
-#. A7xcb
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7128818\n"
-"help.text"
-msgid "To use the Report Builder, the Report Builder component must be installed. In addition, the Java Runtime Environment (JRE) software must be installed, and this software must be selected in %PRODUCTNAME."
-msgstr "ដើម្បី​ប្រើ​កម្មវិធី​បង្កើត​របាយការណ៍ សមាសភាគ​កម្មវិធី​បង្កើត​របាយការណ៍​ត្រូវតែ​បាន​ដំឡើង។ បន្ថែម​លើ​នេះ កម្មវិធី Java Runtime Environment (JRE) ក៏​ត្រូវតែ​បាន​ដំឡើង​ដែរ ហើយ​កម្មវិធី​ត្រូវតែ​បាន​ជ្រើស​នៅ​ក្នុង %PRODUCTNAME ។"
-
-#. MUFG8
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"hd_id556047\n"
-"help.text"
-msgid "To install the JRE software"
-msgstr "ដំឡើង​កម្មវិធី JRE"
-
-#. CTy58
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id4515823\n"
-"help.text"
-msgid "The Report Builder requires an installed Java Runtime Environment (JRE)."
-msgstr "កម្មវិធី​បង្កើត​របាយការណ៍ តម្រូវ​ឲ្យ​ដំឡើង Java Runtime Environment (JRE) ។"
-
-#. t42Ud
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id4044312\n"
-"help.text"
-msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/java.xhp\">Advanced</link>."
-msgstr "ជ្រើស <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ចំណូលចិត្ត</caseinline><defaultinline>ឧបករណ៍ - ជម្រើស</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/java.xhp\">កម្រិត​ខ្ពស់</link>។"
-
-#. bGABC
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id1369060\n"
-"help.text"
-msgid "Wait up to one minute, while %PRODUCTNAME collects information on installed Java software on your system."
-msgstr "រង់ចាំ​មួយ​នាទី ខណៈ​ដែល %PRODUCTNAME ប្រមូល​ព័ត៌មាន​អំពី​កម្មវិធី Java ដែលបាន​ដំឡើង​លើ​ប្រព័ន្ធ​របស់​អ្នក ។"
-
-#. oxLT3
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id860927\n"
-"help.text"
-msgid "If a recent JRE version is found on your system, you see an entry in the list."
-msgstr "ប្រសិន​បើ​ឃើញ​មាន​កំណែ JRE ថ្មីៗ​នៅលើ​ប្រព័ន្ធ​របស់​អ្នក នោះ​អ្នក​នឹង​ឃើញ​ធាតុ​នៅ​ក្នុង​បញ្ជី ។"
-
-#. 87xW7
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id8581804\n"
-"help.text"
-msgid "Click the option button in front of the entry to enable this JRE version for use in %PRODUCTNAME."
-msgstr "ចុច​ប៊ូតុង​ជម្រើស​នៅ​ពីមុខ​ធាតុ ដើម្បី​អនុញ្ញាត​កំណែ JRE នេះ​ដើម្បី​ប្រើ​នៅក្នុង %PRODUCTNAME ។"
-
-#. KmqC6
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7730033\n"
-"help.text"
-msgid "Ensure that <emph>Use a Java runtime environment</emph> is enabled."
-msgstr "ត្រូវប្រាកដ​ថា​បាន​បើក <emph>ប្រើ Java runtime environment</emph> ។"
-
-#. oeX8D
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id6317636\n"
-"help.text"
-msgid "If no JRE version is found on your system, open your web browser and download the JRE software from <link href=\"http://www.java.com\">http://www.java.com</link>. Install the JRE software. Then restart %PRODUCTNAME and open <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Advanced again."
-msgstr "បើ​រក​មិន​ឃើញ​កំណែ​ JRE ​នៅ​លើ​កុំព្យូទ័រ​របស់​អ្នក​ទេ សូម​បើក​កម្មវិធី​រុក​រក​បណ្តាញ​ និង​ទាញ​យក​កម្មវិធី​ JRE ​ពី​ <link href=\"http://www.java.com\">http://www.java.com</link> ។ ដំឡើង​កម្មវិធី​ JRE ​។ បន្ទាប់​មក​ចាប់​ផ្តើម​ %PRODUCTNAME ឡើង​វិញ រួច​បើក​ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ចំណូល​ចិត្ត​</caseinline><defaultinline>ឧបករណ៍​ - ជម្រើស​</defaultinline></switchinline> - %PRODUCTNAME - កម្រិត​ខ្ពស់​ម្តងទៀត។"
-
-#. 87hJD
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"hd_id9759514\n"
-"help.text"
-msgid "To open the Report Builder"
-msgstr "ដើម្បី​បើក​កម្មវិធី​បង្កើត​របាយការណ៍"
-
-#. TxLZj
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id9076509\n"
-"help.text"
-msgid "Open a Base file or create a new database. The database must contain at least one table with at least one data field and a primary key field."
-msgstr "បើក​ឯកសារ Base ឬ​បង្កើត​មូលដ្ឋាន​ទិន្នន័យ​ថ្មី ។ មូលដ្ឋាន​ទិន្នន័យ​ត្រូវ​តែ​មាន​តារាង​យ៉ាងហោចណាស់​មួយ​ដែល​មាន​វាល​ទិន្នន័យ និង​វាល​កូនសោ​ចម្បង ។"
-
-#. NiuEf
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7050691\n"
-"help.text"
-msgid "Click the Reports icon in the Base window, then choose Create Report in Design View."
-msgstr "ចុច​រូបតំណាង​របាយការណ៍​នៅ​ក្នុង​បង្អួច Base បន្ទាប់​មក​ជ្រើស បង្កើត​របាយការណ៍ នៅ​ក្នុង​ទិដ្ឋភាព​រចនា ។"
-
-#. u7db8
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7118747\n"
-"help.text"
-msgid "The Report Builder window opens."
-msgstr "បើក​បង្អួច​កម្មវិធី​បង្កើត​របាយការណ៍ ។"
-
-#. eC7Ku
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id8283639\n"
-"help.text"
-msgid "The Report Builder is divided into three parts. On the top you see the menu, with the toolbars below."
-msgstr "កម្មវិធី​​បង្កើត​​របាយការណ៍​គឺ​ត្រូវបាន​ចែកចេញ​ជា​បី​ផ្នែក ។ នៅ​កំពូល អ្នក​នឹង​ឃើញ​ម៉ឺនុយ​ដែល​មាន​របារ​ឧបករណ៍​នៅ​ខាង​ក្រោម ។"
-
-#. FZucS
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id2291024\n"
-"help.text"
-msgid "On the right you see the Properties window with the property values of the currently selected object."
-msgstr "នៅ​ខាងស្ដាំ​អ្នក​នឹង​ឃើញ​បង្អួច លក្ខណសម្បត្តិ​ដែល​មាន​តម្លៃ​នៃ​វត្ថុ​ដែល​បាន​ជ្រើស​បច្ចុប្បន្ន ។"
-
-#. 9iUTs
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id2100589\n"
-"help.text"
-msgid "The left part of the Report Builder window shows the Report Builder view. The Report Builder view is initially divided into three sections, from top to bottom:"
-msgstr "នៅ​ផ្នែក​ខាងឆ្វេង​នៃ​បង្អួច​កម្មវិធី​បង្កើត​របាយការណ៍ បង្ហាញ​ទិដ្ឋភាព​កម្មវិធី​បង្កើត​​របាយការណ៍ ។ ទិដ្ឋភាពបង្កើត​របាយការណ៍ ​គឺ​ដំបូង​ត្រូវ​បាន​ចែកចេញ​ជា​បី​ផ្នែក ពី​កំពូល​ទៅ​បាត ៖"
-
-#. bpA2e
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id5022125\n"
-"help.text"
-msgid "<emph>Page Header</emph> - drag control fields with fixed text into the Page Header area"
-msgstr "<emph>បឋមកថា​ទំព័រ</emph> - អូស​វាល​វត្ថុ​បញ្ជា​ដែល​មាន​អត្ថបទ​ថេរ​ក្នុង​ផ្ទៃ​បឋមកថា​ទំព័រ"
-
-#. TcX6C
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id6844386\n"
-"help.text"
-msgid "<emph>Detail</emph> - drag and drop database fields into the Detail area"
-msgstr "<emph>សេចក្ដីលម្អិត</emph> - អូស និង​ទម្លាក់​វាល​មូលដ្ឋាន​ទិន្នន័យ​ក្នុង​ផ្ទៃ​សេចក្ដី​លម្អិត"
-
-#. k3qgL
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7018646\n"
-"help.text"
-msgid "<emph>Page Footer</emph> - drag control fields with fixed text into the Page Footer area"
-msgstr "<emph>បាតកថា​ទំព័រ</emph> - អូស​វាល​វត្ថុ​បញ្ជា​ជា​មួយ​នឹង​អត្ថបទ​ថេរ​ក្នុង​ផ្ទៃ​បាតកថា​ទំព័រ"
-
-#. GbMdT
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id5857112\n"
-"help.text"
-msgid "To insert an additional <emph>Report Header</emph> and <emph>Report Footer</emph> area choose <item type=\"menuitem\">Edit - Insert Report Header/Footer</item>. These areas contain text that appears at the start and end of the whole report."
-msgstr "ដើម្បី​បញ្ចូល​ផ្ទៃ <emph>បឋមកថា​របាយការណ៍</emph> និង​<emph>បាតកថា​របាយការណ៍</emph> បន្ថែម គឺ​ត្រូវ​ជ្រើស <item type=\"menuitem\">កែសម្រួល - បញ្ចូល​បឋមកថា/​បាតកថា​របាយការណ៍</item> ។ ផ្ទៃ​ទាំង​នេះ​មាន​អត្ថបទ​ដែល​លេចឡើង​នៅ​ពេល​ចាប់ផ្ដើម និង​បញ្ចប់​នៃ​របាយការណ៍​ទាំងមូល ។"
-
-#. cvEuz
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id6042664\n"
-"help.text"
-msgid "Click the \"-\" icon in front of an area name to collapse that area to one line in the Report Builder view. The \"-\" icon changes to a \"+\" icon, and you can click this to expand the area again."
-msgstr "ចុច​រូបតំណាង \"-\" នៅ​ពីមុខ​ឈ្មោះ​ផ្ទៃ​ដើម្បី​វេញ​ផ្ទៃ​នោះ​ទៅ​ជាបន្ទាត់​មួយ​នៅ​ក្នុង​ទិដ្ឋភាព​កម្មវិធី​បង្កើត​​របាយការណ៍ ។ រូបតំណាង \"-\" ផ្លាស់ប្ដូរ​ទៅ​ជា​រូបតំណាង \"+\" ហើយ​អ្នក​អាច​ចុច​វា​ដើម្បី​ពន្លា​ផ្ទៃ​ម្ដងទៀត​បាន ។"
-
-#. NCMdn
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id1589098\n"
-"help.text"
-msgid "You insert database fields by drag-and-drop into the Detail area. See the section \"To insert fields into the report\" below."
-msgstr "អ្នក​បញ្ចូល​វាល​មូលដ្ឋាន​ទិន្នន័យ​ដោយ​​អូស ហើយ​ទម្លាក់​ទៅ​ក្នុង​ផ្ទៃ​សេចក្ដី​លម្អិត ។ សូម​មើល​ផ្នែក \"បញ្ចូល​វាល​ទៅក្នុង​របាយការណ៍\" ខាងក្រោម ។"
-
-#. 3dx6B
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id1278420\n"
-"help.text"
-msgid "In addition, you can click the Label Field or Text Box icon in the toolbar, then drag a rectangle in the Page Header or Page Footer area, to define a text that is the same on all pages. You enter the text in the Label box of the corresponding Properties window. You can also add graphics by using the Graphics icon."
-msgstr "បន្ថែម​ពីលើ​នេះ អ្នក​អាច​ចុច​លើ​រូបតំណាង​វាល​ស្លាក ឬ​ប្រអប់​អត្ថបទ​នៅ​ក្នុង​របារ​ឧបករណ៍ បន្ទាប់​មក​អូស​ចតុកោណកែង​នៅ​ក្នុង​ផ្ទៃ​បឋមកថា​ទំព័រ ឬ​បាតកថា​ទំព័រ ដើម្បី​កំណត់​អត្ថបទ​ដែល​ដូចគ្នា​នៅលើ​ទំព័រ​ទាំងអស់ ។ អ្នក​បញ្ចូល​អត្ថបទ​នៅ​ក្នុង​ប្រអប់​ស្លាក​នៃ​បង្អួច​លក្ខណសម្បត្តិ​ដែល​ត្រូវ​គ្នា ។ អ្នក​ក៏អាច​បន្ថែម​ក្រាហ្វិក​ដោយ​ប្រើ​រូបតំណាង​ក្រាហ្វិក​បាន​ផងដែរ ។"
-
-#. 25GDr
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7479476\n"
-"help.text"
-msgid "To connect the report to a database table"
-msgstr "តភ្ជាប់​របាយការណ៍​ទៅ​តារាង​មូលដ្ឋាន​ទិន្នន័យ"
-
-#. TuFVF
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id2218390\n"
-"help.text"
-msgid "Move the mouse to the Properties view. You see two tab pages General and Data."
-msgstr "ផ្លាស់ទី​កណ្ដុរ​ទៅ​ទិដ្ឋភាព​លក្ខណសម្បត្តិ ។ អ្នក​នឹង​ឃើញ​ទំព័រ​ផ្ទាំង​ពីរ គឺ​ផ្ទាំង​ទូទៅ និង​ទិន្នន័យ ។"
-
-#. WdBn9
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7771538\n"
-"help.text"
-msgid "On the Data tab page, click Content to open the combo box."
-msgstr "នៅលើ​ទំព័រ​ផ្ទាំង​ទិន្នន័យ ចុច​លើ​មាតិកា​ដើម្បី​បើក​ប្រអប់​បន្សំ ។"
-
-#. UKbEt
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id366527\n"
-"help.text"
-msgid "Select the table for that you want to create the report."
-msgstr "ជ្រើស​តារាង​ដែល​អ្នក​ចង់​បង្កើត​របាយការណ៍ ។"
-
-#. NzJzg
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7996459\n"
-"help.text"
-msgid "After selecting the table, press the Tab key to leave the Content box."
-msgstr "បន្ទាប់​ពី​ជ្រើស​តារាង ចុច​គ្រាប់ចុច​ថេប (Tab) ដើម្បីចេញ​ពី​ប្រអប់​មាតិកា ។"
-
-#. TFFLy
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id2531815\n"
-"help.text"
-msgid "The <link href=\"text/shared/explorer/database/rep_insertfield.xhp\" name=\"add_fields_link\">Add fields to report</link> window opens automatically and shows all fields of the selected table."
-msgstr ""
-
-#. vsFKB
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7657399\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to align the objects at the left margin of the area.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ជ្រើស​វត្ថុ​ពីរ ឬ​ច្រើន ហើយ​ចុច​លើ​រូបតំណាង​ដើម្បី​តម្រឹម​វត្ថុ​នៅ​រឹម​ខាង​ឆ្វេង​នៃ​ផ្ទៃ ។</ahelp>"
-
-#. BqG3G
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id8925138\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to align the objects at the right margin of the area.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ជ្រើស​វត្ថុ​ពីរ ឬ​ច្រើន ហើយ​ចុច​លើ​រូបតំណាង​នេះ​ដើម្បី​តម្រឹម​វត្ថុ​នៅ​រឹម​ខាង​ស្ដាំ​នៃ​ផ្ទៃ ។</ahelp>"
-
-#. UcCYH
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id5461897\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to align the objects at the top margin of the area.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ជ្រើស​វត្ថុ​ពីរ ឬ​ច្រើន ហើយ​ចុច​លើ​រូបតំណាង​នេះ​ដើម្បី​តម្រឹម​វត្ថុ​នៅ​រឹម​កំពូល​នៃ​ផ្ទៃ ។</ahelp>"
-
-#. gDxeY
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id8919339\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to align the objects at the bottom margin of the area.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ជ្រើស​វត្ថុ​ពីរ ឬ​ច្រើន ហើយ​ចុច​លើ​រូបតំណាង​នេះ​ដើម្បី​តម្រឹម​វត្ថុ​នៅ​រឹម​បាត​នៃ​ផ្ទៃ ។</ahelp>"
-
-#. nNfGG
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id4634235\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to resize the objects to the smallest width.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ជ្រើស​វត្ថុ​ពីរ ឬ​ច្រើន ហើយ​ចុច​លើ​រូបតំណាង​នេះ​ដើម្បី​ប្ដូរ​ទំហំ​វត្ថុ​ទៅ​ទទឹង​តូច​បំផុត ។</ahelp>"
-
-#. GuD9F
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id1393475\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to resize the objects to the smallest height.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ជ្រើស​វត្ថុ​ពីរ ឬ​ច្រើន ហើយ​ចុច​លើ​រូបតំណាង​នេះ​ដើម្បី​ប្ដូរ​ទំហំ​វត្ថុ​ទៅ​កម្ពស់​តូចបំផុត ។</ahelp>"
-
-#. NAFEu
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id6571550\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to resize the objects to the greatest width.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ជ្រើស​វត្ថុ​ពីរ ឬ​ច្រើន ហើយ​ចុច​លើ​រូបតំណាង​នេះ​ដើម្បី​ប្ដូរ​ទំហំ​វត្ថុ​ទៅ​ទទឹង​ធំ​បំផុត ។</ahelp>"
-
-#. ssdFE
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id5376140\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to resize the objects to the greatest height.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ជ្រើស​វត្ថុ​ពីរ ឬ​ច្រើន ហើយ​ចុច​លើ​រូបតំណាង​នេះ​ដើម្បី​ប្ដូរ​ទំហំ​វត្ថុ​ទៅ​កម្ពស់​ធំ​បំផុត ។</ahelp>"
-
-#. yLQm4
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id9611499\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a horizontal line to the current area.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">បញ្ចូល​បន្ទាត់​ផ្ដេក​ទៅ​ផ្ទៃ​បច្ចុប្បន្ន ។</ahelp>"
-
-#. XVFTm
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id6765953\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a vertical line to the current area.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">បញ្ចូល​បន្ទាត់​បញ្ឈរ​ទៅ​ផ្ទៃ​បច្ចុប្បន្ន ។</ahelp>"
-
-#. 5gYXB
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id0409200922242612\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shrinks the selected section to remove top and bottom empty space.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">បង្រួម​ភាគ​ដែល​បាន​ជ្រើស​ ដើម្ប​យក​​ចន្លោះ​ទទេ​នៅ​ខាង​លើ និង​ខាងក្រោម​ចេញ ។</ahelp>"
-
-#. K9bij
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id0409200922242617\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shrinks the selected section to remove top empty space.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">បង្រួម​ភាគ​ដែលបាន​ជ្រើស​ ដើម្បីយក​ចន្លោះ​ទទេ​ខាងលើ​ចេញ ។</ahelp>"
-
-#. S4vSt
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id0409200922242661\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shrinks the selected section to remove bottom empty space.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">បង្រួម​ភាគ​ដែល​បានជ្រើស​ដើម្បី​យក​ចន្លោះ​ទទេ​ខាងក្រោម​ចេញ ។</ahelp>"
-
-#. bFTYS
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id1511581\n"
-"help.text"
-msgid "After inserting fields in the Detail view, the report is ready for execution."
-msgstr "បន្ទាត់​ពី​បញ្ចូល​វាល​ទៅក្នុង​ទិដ្ឋភាព​សេចក្ដី​លម្អិត របាយការណ៍​គឺ​ត្រៀម​រួចរាល់​ក្នុងការ​ប្រតិបត្តិ ។"
-
-#. j9t2k
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id4881740\n"
-"help.text"
-msgid "To execute a report"
-msgstr "ប្រតិបត្តិ​របាយការណ៍"
-
-#. QhtuG
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id8286385\n"
-"help.text"
-msgid "Click the Execute Report icon<image id=\"img_id3380230\" src=\"cmd/sc_executereport.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3380230\">Icon</alt></image> on the toolbar."
-msgstr "Click the Execute Report icon<image id=\"img_id3380230\" src=\"cmd/sc_executereport.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3380230\">Icon</alt></image> on the toolbar."
-
-#. EbwoS
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id2354197\n"
-"help.text"
-msgid "A Writer document opens and shows the report you have created, which contains all values of the database table which you have insert."
-msgstr "ឯកសារ Writer បើក និង​បង្ហាញ​របាយការណ៍​ដែលអ្នក​បាន​បង្កើត ដែល​មាន​តម្លៃ​ទាំងអស់​នៃ​​តារាង​មូលដ្ឋាន​ទិន្នន័យ​ដែល​អ្នក​បាន​បញ្ចូល ។"
-
-#. CCUrN
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id2485122\n"
-"help.text"
-msgid "If the database contents did change, execute the report again to update the result report."
-msgstr "ប្រសិន​បើ​មាតិកា​មូលដ្ឋាន​ទិន្នន័យ​ធ្វើ​ការ​ផ្លាស់ប្ដូរ គឺ​ត្រូវ​ប្រតិបត្តិ​របាយការណ៍​ម្ដងទៀត​ដើម្បី​ធ្វើ​ឲ្យ​របាយការណ៍​លទ្ធផល​​ទាន់សម័យ ។"
-
-#. XrBwB
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"hd_id8746910\n"
-"help.text"
-msgid "To edit a report"
-msgstr "កែសម្រួល​របាយការណ៍"
-
-#. GinFd
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id9636524\n"
-"help.text"
-msgid "First decide if you want to edit the generated report, which is a static Writer document, or if you want to edit the Report Builder view and then generate a new report based on the new design."
-msgstr "ដំបូង គឺ​ត្រូវ​សម្រេច​ចិត្ត​ថាតើ​អ្នក​ចង់​កែសម្រួល​របាយការណ៍​ដែល​បាន​បង្កើត ដែល​ជា​ឯកសារ Writer ឋិតិវន្ត ឬ​ប្រសិន​បើ​អ្នក​ចង់​កែសម្រួល​ទិដ្ឋភាព​កម្មវិធី​បង្កើត​​របាយការណ៍ ហើយ​បន្ទាប់មក​បង្កើត​របាយការណ៍​​ថ្មី​ដែល​មាន​មូលដ្ឋាន​លើ​ការ​រចនា​ថ្មី ។"
-
-#. awMUn
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id5941648\n"
-"help.text"
-msgid "The Writer document is opened read-only. To edit the Writer document, click <emph>Edit Document</emph> on the information bar, or choose <emph>Edit - Edit Mode</emph>."
-msgstr ""
-
-#. G2dAA
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id8307138\n"
-"help.text"
-msgid "If you want to edit the Report Builder view, you can change some of its properties."
-msgstr "ប្រសិន​បើ​អ្នក​ចង់​កែសម្រួល​កម្មវិធី​បង្កើត​របាយការណ៍ អ្នក​អាច​ផ្លាស់ប្ដូរ​លក្ខណសម្បត្តិ​មួយ​ចំនួន​របស់​វា​បាន ។"
-
-#. XYvED
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7138889\n"
-"help.text"
-msgid "Click in the Details area. Then in the Properties window, change some properties, for example the background color."
-msgstr "ចុច​ក្នុង​ផ្ទៃ​សេចក្ដី​លម្អិត ។ បន្ទាប់​មក​ក្នុង​បង្អួច លក្ខណសម្បត្តិ ត្រូវ​ផ្លាស់ប្ដូរ​លក្ខណសម្បត្តិ​មួយ​ចំនួន ឧទាហរណ៍ ពណ៌​ផ្ទៃ​ខាងក្រោយ ។"
-
-#. LYDVA
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id9869380\n"
-"help.text"
-msgid "After finishing, click the Execute Report icon<image id=\"Graphic2\" src=\"cmd/sc_executereport.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_\">Icon</alt></image> to create a new report."
-msgstr "បន្ទាប់​ពី​បាន​បញ្ចប់ ចុច​រូប​តំណាង​ ប្រតិបត្តិ​របាយ​ការណ៍<image id=\"Graphic2\" src=\"cmd/sc_executereport.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_\">រូប​តំណាង​</alt></image> ដើម្បី​បង្កើត​របាយ​ការណ៍​ថ្មី ។"
-
-#. h2c39
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id12512\n"
-"help.text"
-msgid "If you close the Report Builder, you will be asked if the report should be saved. Click Yes, give the report a name, and click OK."
-msgstr "ប្រសិន​បើ​អ្នក​បិទ​​កម្មវិធី​បង្កើត​​របាយការណ៍ អ្នក​នឹង​ត្រូវ​បាន​សួរ​ថាតើ​គួរ​តែ​រក្សាទុក​របាយការណ៍​ឬ​អត់ ។ ចុច បាទ/ចាស ដាក់​ឈ្មោះ​ឲ្យ​ឯកសារ ហើយ​ចុច យល់​ព្រម ។"
-
-#. T8vuS
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id2676168\n"
-"help.text"
-msgid "Sorting the report"
-msgstr "ការ​តម្រៀប​របាយការណ៍"
-
-#. Cg7RE
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id2626422\n"
-"help.text"
-msgid "Without sorting or grouping, the records will be inserted into the report in the order in which they are retrieved from the database."
-msgstr "ដោយ​មិនបាន​តម្រៀប ឬ​ដាក់​ជាក្រុម កំណត់ត្រា​នឹង​ត្រូវ​បាន​បញ្ចូល​ទៅ​ក្នុង​របាយការណ៍​តាម​លំដាក់​ដែល​ពួក​វា​ត្រូវបាន​ទៅ​យក​ពី​មូលដ្ឋាន​ទិន្នន័យ ។"
-
-#. 5hPjG
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id1743827\n"
-"help.text"
-msgid "Open the Report Builder view and click the Sorting and Grouping icon<image id=\"img_id9557786\" src=\"cmd/sc_dbsortingandgrouping.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id9557786\">Icon</alt></image> on the toolbar. You see the <link href=\"text/shared/explorer/database/rep_sort.xhp\">Sorting and Grouping</link> dialog."
-msgstr "បើក​ទិដ្ឋភាព​កម្មវិធី​បង្កើត​របាយការណ៍ និង​ចុច​រូប​តំណាង តម្រៀង និងដាក់​ជាក្រុម​<image id=\"img_id9557786\" src=\"cmd/sc_dbsortingandgrouping.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id9557786\">រូប​តំណាង​</alt></image> នៅ​លើ​របារ​ឧបករណ៍ ។ អ្នក​នឹង​ឃើញ​ប្រអប់​ <link href=\"text/shared/explorer/database/rep_sort.xhp\">តម្រៀប និង​ដាក់​ជាក្រុម</link> ។"
-
-#. 35NvQ
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id4331797\n"
-"help.text"
-msgid "In the Groups box, click the field which you want as the first sort field, and set the Sorting property."
-msgstr "នៅ​ក្នុង​ប្រអប់​ក្រុម ចុច​លើ​វាល ដែល​អ្នក​ចង់បាន​ជា​វាល​តម្រៀប​ទីមួយ ហើយ​កំណត់​លក្ខណសម្បត្តិ​ការ​តម្រៀប ។"
-
-#. heWc5
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id4191717\n"
-"help.text"
-msgid "Execute the report."
-msgstr "ប្រតិបត្តិ​របាយការណ៍ ។"
-
-#. FoAAB
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id2318796\n"
-"help.text"
-msgid "Grouping"
-msgstr "ដាក់​ជា​ក្រុម"
-
-#. Ckxyp
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id399182\n"
-"help.text"
-msgid "Open the Report Builder view and click the Sorting and Grouping icon<image id=\"Graphic21\" src=\"cmd/sc_dbsortingandgrouping.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_\">Icon</alt></image> on the toolbar. You see the <link href=\"text/shared/explorer/database/rep_sort.xhp\">Sorting and Grouping</link> dialog."
-msgstr "បើក​ទិដ្ឋភាព​កម្មវិធី​បង្កើត​របាយ​ការណ៍ និង​ចុច​រូបតំណាង តម្រៀប និង​ដាក់​ជាក្រុម<image id=\"Graphic21\" src=\"cmd/sc_dbsortingandgrouping.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_\">រូប​តំណាង​</alt></image> នៅ​លើ​របារ​ឧបករណ៍ ។ អ្នក​នឹង​ឃើញ​ប្រអប់​ <link href=\"text/shared/explorer/database/rep_sort.xhp\">តម្រៀប​ និង​ដាក់​ជាក្រុម</link> ។"
-
-#. zfuDw
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7588732\n"
-"help.text"
-msgid "In the Groups box, open the Group Header list box and select to show a group header."
-msgstr "នៅ​ក្នុង​ប្រអប់​ក្រុម បើក​ប្រអប់​បញ្ជី​បឋមកថា​ក្រុម ហើយ​ជ្រើស​ដើម្បី​បង្ហាញ​បឋមកថា​ក្រុម ។"
-
-#. AAvAB
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id95828\n"
-"help.text"
-msgid "Click the Add Field icon<image id=\"Graphic3\" src=\"cmd/sc_addfield.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_\">Icon</alt></image> to open the Add Field window."
-msgstr "ចុច​រូប​តំណាង បន្ថែម​វាល​<image id=\"Graphic3\" src=\"cmd/sc_addfield.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_\">រូប​តំណាង​</alt></image> ដើម្បី​បើក​បង្អួច បន្ថែម​វាល ។"
-
-#. WyQ6C
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id5675527\n"
-"help.text"
-msgid "Drag-and-drop the field entry that you want to group into the group header section. Then drag-and-drop the remaining fields into the Detail section."
-msgstr "អូស ហើយ​ទម្លាក់​ធាតុ​វាល​ដែល​អ្នក​ចង់​ដាក់​ជាក្រុម​ទៅ​ក្នុង​ផ្នែក​បឋមកថា​ក្រុម ។ បន្ទាប់​មក​អូស ហើយ​ទម្លាក់​វាល​ដែល​នៅ​សល់​ទៅ​ក្នុង​ផ្នែក​សេចក្ដី​លម្អិត ។"
-
-#. GscG2
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id3496200\n"
-"help.text"
-msgid "Execute the report. The report shows the grouped records."
-msgstr "ប្រតិបត្តិ​របាយការណ៍ ។ របាយការណ៍​បង្ហាញ​កំណត់ត្រា​ដែល​បាន​ដាក់​ជាក្រុម ។"
-
-#. dLiAY
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7599108\n"
-"help.text"
-msgid "If you like to sort and group, open the Report Builder view, then open the Sorting and Grouping dialog. Select to show a Group Header for the fields that you want to group, and select to hide the Group Header for the fields that you want to be sorted. Close the Sorting and Grouping window and execute the report."
-msgstr "ប្រសិន​បើ​អ្នក​ចង់តម្រៀប និង​ដាក់​ជាក្រុម គឺ​ត្រូវ​បើក​ទិដ្ឋភាព​កម្មវិធី​បង្កើត​​របាយការណ៍ បន្ទាប់​មក​បើក​ប្រអប់​​​តម្រៀប និង​ដាក់​ជាក្រុម ។ ជ្រើស​ដើម្បី​បង្ហាញ​បឋមកថា​ក្រុម​សម្រាប់​វាល​ដែល​អ្នក​ចង់​ដាក់​ជាក្រុម និង​ជ្រើស​ដើម្បី​លាក់​បឋមកថា​ក្រុម​សម្រាប់​វាល​ដែល​អ្នក​ចង់​ឲ្យ​តម្រៀប ។ បិទ​បង្អួច​ការ​តម្រៀប និង​ដាក់​ជាក្រុម ហើយ​ប្រតិបត្តិ​របាយការណ៍ ។"
-
-#. WGFAC
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id888698\n"
-"help.text"
-msgid "Updating and printing your data"
-msgstr "ការធ្វើ​បច្ចុប្បន្នភាពភាព​ និង​បោះពុម្ព​ទិន្នន័យ​របស់​អ្នក"
-
-#. 9CfYU
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id3394573\n"
-"help.text"
-msgid "When you insert some new data or edit data in the table, a new report will show the updated data."
-msgstr "នៅពេល​ដែល​អ្នក​បញ្ចូល​ទិន្នន័យ​ថ្មី​ណាមួយ ឬ​កែសម្រួល​ទិន្នន័យ​នៅ​ក្នុង​តារាង នោះ​របាយការណ៍​ថ្មី​នឹង​បង្ហាញ​ទិន្នន័យ​ភាព​ទាន់សម័យ ។"
-
-#. xeBzX
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7594225\n"
-"help.text"
-msgid "Click the Reports icon<image id=\"img_id4678487\" src=\"dbaccess/res/reports_32.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4678487\">Icon</alt></image> and double-click your last saved report. A new Writer document will be created which shows the new data."
-msgstr "ចុច​រូប​តំណាង​ របាយការណ៍​<image id=\"img_id4678487\" src=\"dbaccess/res/reports_32.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4678487\">រូប​តំណាង​</alt></image> និង​ចុច​ទ្វេ​ដង​លើ​របាយ​ការណ៍​ដែល​បាន​រក្សា​ទុក​លើក​ចុង​ក្រោយ​របស់​អ្នក​ ។ ឯកសារ​ Writer ថ្មី​នឹង​ត្រូវ​បង្កើត​ឡើង​ ដោយ​បង្ហាញ​នូវ​ទិន្នន័យ​ថ្មី​ផង​ដែរ ។"
-
-#. Kp54P
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id8147221\n"
-"help.text"
-msgid "To print a report, choose <item type=\"menuitem\">File - Print</item> from the Writer document."
-msgstr "ដើម្បី​បោះពុម្ព​របាយការណ៍ ត្រូវ​ជ្រើស <item type=\"menuitem\">ឯកសារ - បោះពុម្ព</item> ពី​ឯកសារ Writer ។"
-
-#. AnAta
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"tit\n"
-"help.text"
-msgid "Report Navigator"
-msgstr "កម្មវិធី​រុករក​របាយការណ៍"
-
-#. 6utJF
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"bm_id5823847\n"
-"help.text"
-msgid "<bookmark_value>formulas in reports;editing</bookmark_value><bookmark_value>functions in reports;editing</bookmark_value>"
-msgstr "<bookmark_value>រូបមន្ត​នៅ​ក្នុង​របាយការណ៍;ការ​កែសម្រួល</bookmark_value><bookmark_value>អនុគមន៍​នៅ​ក្នុង​របាយ​ការណ៍;ការ​កែសម្រួល</bookmark_value>"
-
-#. Y2kdn
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"hd_id1821955\n"
-"help.text"
-msgid "<variable id=\"rep_navigator\"><link href=\"text/shared/explorer/database/rep_navigator.xhp\">Report Navigator</link></variable>"
-msgstr "<variable id=\"rep_navigator\"><link href=\"text/shared/explorer/database/rep_navigator.xhp\">កម្មវិធី​រុករក​របាយការណ៍</link></variable>"
-
-#. SHcxA
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id1150852\n"
-"help.text"
-msgid "You can open the Report Navigator window of the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> by choosing <item type=\"menuitem\">View - Report Navigator</item>."
-msgstr "អ្នក​អាច​បើក​បង្អួច​កម្មវិធី​រុករក​របាយការណ៍​របស់ <link href=\"text/shared/explorer/database/rep_main.xhp\">កម្មវិធី​បង្កើត​របាយការណ៍​</link> ដោយ​ជ្រើស<item type=\"menuitem\">មើល - កម្មវិធី​រុករក​របាយការណ៍</item> ។"
-
-#. hBVny
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id1111484\n"
-"help.text"
-msgid "<ahelp hid=\".\">The Report Navigator reveals the structure of the report. You can use the Report Navigator to insert functions into the report.</ahelp>"
-msgstr "<ahelp hid=\".\">កម្មវិធី​រុករក​របាយការណ៍ បង្ហាញ​ពី​រចនា​សម្ព័ន្ធ​របស់​របាយការណ៍ ។ អ្នក​អាច​ប្រើ​កម្មវិធី​រុករក​របាយការណ៍​ដើម្បី​បញ្ចូល​អនុគមន៍​ទៅ​ក្នុង​របាយការណ៍ ។</ahelp>"
-
-#. LJxNC
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id8314157\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click an entry in the Report Navigator. The corresponding object or area is selected in the Report Builder view. Right-click an entry to open the context menu.</ahelp>"
-msgstr "<ahelp hid=\".\">ចុច​លើ​ធាតុ​មួយ​នៅ​ក្នុង​កម្មវិធី​រុករក​របាយការណ៍ ។ វត្ថុ​ ឬ​ផ្ទៃ​ដែល​ទាក់ទង​ត្រូវ​បាន​ជ្រើស​នៅ​ក្នុង​ទិដ្ឋភាព​បង្កើត​របាយការណ៍ ។ ចុច​ខាង​ស្ដាំលើ​ធាតុ​ដើម្បី​បើក​ម៉ឺនុយ​បរិបទ ។</ahelp>"
-
-#. prLAV
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"hd_id2932828\n"
-"help.text"
-msgid "To enter functions to the report"
-msgstr "បញ្ចូល​អនុគមន៍​ទៅ​របាយការណ៍"
-
-#. CSJFz
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id5091708\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the context menu of the Report Navigator, you see the same commands as in the Report Builder view, plus additional commands to create new functions or to delete them.</ahelp>"
-msgstr "<ahelp hid=\".\">នៅ​ក្នុង​ម៉ឺនុយ​បរិបទ​នៃ​កម្មវិធី​រុករក​របាយការណ៍ អ្នក​នឹង​ឃើញ​ពាក្យ​បញ្ជា​ដូច​គ្នា​ ដូច​នៅ​ក្នុង​ទិដ្ឋភាព​បង្កើត​របាយការណ៍ បូក​បន្ថែម​នឹង​ពាក្យ​បញ្ជា​បន្ថែម​ ដើម្បី​បង្កើត​មុខងារ​ថ្មី ​ឬ​ដើម្បី​លុប​ពួកវា ។</ahelp>"
-
-#. TVyh8
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id9449446\n"
-"help.text"
-msgid "Functions can be entered using a syntax as specified by the <link href=\"https://en.wikipedia.org/wiki/OpenFormula\" name=\"English Wikipedia: OpenFormula\">OpenFormula</link> proposal."
-msgstr ""
-
-#. 3GfjV
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id4095583\n"
-"help.text"
-msgid "See <link href=\"https://wiki.documentfoundation.org/Database\" name=\"wiki.documentfoundation.org Database\">Wiki page about Base</link> for some more help regarding the functions in a report."
-msgstr ""
-
-#. 2spAx
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"hd_id311593\n"
-"help.text"
-msgid "To calculate a sum for each client"
-msgstr "គណនា​ផលបូក​សម្រាប់​កម្មវិធី​នីមួយៗ"
-
-#. zGU9C
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id3948789\n"
-"help.text"
-msgid "Open the Report Navigator."
-msgstr "បើក​កម្មវិធី រុករក​របាយការណ៍ ។"
-
-#. FSYuv
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id5391399\n"
-"help.text"
-msgid "Open the Groups entry and the group where you want to calculate the cost."
-msgstr "បើក​ធាតុ​ការ​ដាក់ក្រុម និង​ក្រុម ដែល​អ្នក​ចង់​គណនា​តម្លៃ ។"
-
-#. bP94U
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id6989654\n"
-"help.text"
-msgid "The group has a sub entry called functions."
-msgstr "ក្រុម មាន​ធាតុ​រង ដែលហៅថា​អនុគមន៍ ។"
-
-#. FbfyS
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id1803643\n"
-"help.text"
-msgid "Open the context menu (right click) on the functions entry, choose to create a new function, and select it."
-msgstr "បើក​ម៉ឺនុយ​បរិបទ (ចុច​កណ្ដុរ​ស្ដាំ) លើ​ធាតុ​អនុគមន៍ ជ្រើស​បង្កើត​អនុគមន៍​ថ្មី ហើយ​ជ្រើស​វា ។"
-
-#. hTbw9
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id868251\n"
-"help.text"
-msgid "In the property browser you see the function."
-msgstr "នៅក្នុង​កម្មវិធី រុករក​លក្ខណសម្បត្តិ អ្នក​ឃើញ​អនុគមន៍ ។"
-
-#. KBn87
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id6247749\n"
-"help.text"
-msgid "Change the name to e.g. CostCalc and the formula to [CostCalc] + [enter your cost column name]."
-msgstr "ផ្លាស់ប្ដូរ​ឈ្មោះ ឧ. CostCalc និង​រូបមន្តជា [CostCalc] + [បញ្ចូល​ឈ្មោះ​ជួរឈរ​តម្លៃ​របស់​អ្នក] ។"
-
-#. y2cwk
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id1565904\n"
-"help.text"
-msgid "In the initial value enter 0."
-msgstr "ក្នុង​តម្លៃ​ចាប់ផ្ដើម បញ្ចូល ០ ។"
-
-#. RkdrZ
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id1569261\n"
-"help.text"
-msgid "Now you can insert a text field and bind it to your [CostCalc] (appears in the data field list box)."
-msgstr "ឥឡូវ អ្នក​អាច​បញ្ចូល​វាល​អត្ថបទ ហើយ​ចង​វា​ទៅ [CostCalc] របស់​អ្នក (លេចឡើង​ក្នុង​ប្រអប់​បញ្ជី​វាល​ទិន្នន័យ) ។"
-
-#. utdSG
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id9256874\n"
-"help.text"
-msgid "Maybe you have to set the initial value to the value of the field like [field]."
-msgstr "ប្រហែលជា​អ្នក​អាច​កំណត់​តម្លៃ​ដំបូង​ដ​ទៅតម្លៃ​របស់​វាល​ដូចជា [វាល] ។"
-
-#. Hp4tF
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id4601886\n"
-"help.text"
-msgid "If there are blank fields in the cost column, use the following formula to replace the blank fields' content with zero:"
-msgstr "ប្រសិន​បើ​មាន​វាល​ទទេ​ក្នុង​ជួរឈរ​តម្លៃ ប្រើ​រូបមន្ត​ដូចខាងក្រោម​ដើម្បី​ជំនួស​មាតិកា​របស់​វាល​ទទេ​ដោយ​សូន្យ ៖"
-
-#. Dzpam
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id1754509\n"
-"help.text"
-msgid "[SumCost] + IF(ISBLANK([field]);0;[field])"
-msgstr "[SumCost] + IF(ISBLANK([field]);0;[field])"
-
-#. tGCiz
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id8122196\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the formula that defines the function. Use OpenFormula syntax.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">បញ្ចូល​រូបមន្ត​ដែល​កំណត់​អនុគមន៍ ។ ប្រើ​វាក្យ​សម្ព័ន្ធ OpenFormula ។</ahelp>"
-
-#. mTZGY
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id9909665\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the initial value for the evaluation of the formula. Often this is set to 0 or to 1.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">បញ្ចូល​តម្លៃ​ចាប់ផ្ដើម​សម្រាប់​ការ​វាយ​តម្លៃ​រូបមន្ត ។ ជា​រឿយៗ​ត្រូវ​បាន​កំណត់ទៅ ០ ឬ ១ ។</ahelp>"
-
-#. qEtTN
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id9141819\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">If Deep traversing is enabled, functions are evaluated considering all lower levels of hierarchy. This would be used for instance for line numbering. If Deep traversing is not enabled, only the first level of hierarchy is evaluated.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ប្រសិន​បើ​ការឆ្លុះ​ជ្រៅ​ត្រូវ​បាន​បើក អនុគមន៍​ត្រូវ​បាន​វាយ​តម្លៃ​ដោយ​ពិចារណា​កម្រិត​ទាប​ជាង​ទាំង​អស់​នៃ​ឋានានុក្រម ។ វា​នឹង​ត្រូវ​បាន​ប្រើ​សម្រាប់​ដាក់​លេខរៀង​បន្ទាត់ ។ ប្រសិន​បើ​ការ​ឆ្លុះ​ជ្រៅ​មិន​ត្រូវ​បាន​បើក មាន​តែ​កម្រិត​ដំបូង​របស់​ឋានានុក្រម​ប៉ុណ្ណោះ​ត្រូវ​បាន​វាយតម្លៃ ។</ahelp>"
-
-#. XGkHa
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id6354869\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">If Pre evaluation is enabled, functions are evaluated only when the report is finished.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ប្រសិន​បើ​បាន​អនុញ្ញាត​ការ​វាយតម្លៃ​មុន អនុគមន៍​​ត្រូវ​​បាន​វាយ​តម្លៃ តែ​នៅ​ពេល​ដែល​បញ្ចប់​របាយការណ៍​ប៉ុណ្ណោះ ។​</ahelp>"
-
-#. nNgrq
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"tit\n"
-"help.text"
-msgid "Page Numbers"
-msgstr "លេខ​ទំព័រ"
-
-#. YECLh
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"hd_id3674123\n"
-"help.text"
-msgid "<variable id=\"rep_pagenumbers\"><link href=\"text/shared/explorer/database/rep_pagenumbers.xhp\">Page Numbers</link></variable>"
-msgstr "<variable id=\"rep_pagenumbers\"><link href=\"text/shared/explorer/database/rep_pagenumbers.xhp\">លេខ​ទំព័រ</link></variable>"
-
-#. AoXLc
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id3424481\n"
-"help.text"
-msgid "<ahelp hid=\".\">You can open the Page Numbers dialog of the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> by choosing <item type=\"menuitem\">Insert - Page Numbers</item>.</ahelp>"
-msgstr "<ahelp hid=\".\">អ្នក​អាច​បើក​ប្រអប់លេខ​ទំព័រ​របស់ <link href=\"text/shared/explorer/database/rep_main.xhp\">កម្មវិធី​បង្កើត​របាយការណ៍</link> ដោយ​ជ្រើស <item type=\"menuitem\">បញ្ចូល - លេខ​ទំព័រ</item> ។</ahelp>"
-
-#. ygaGw
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id1068758\n"
-"help.text"
-msgid "Press <item type=\"keycode\">Shift-F1</item> and point with the mouse at an input box to see a help text for this input box."
-msgstr "សង្កត់ <item type=\"keycode\">ប្ដូរ​(Shift)-F1</item> ហើយ​ចង្អុរ​កណ្ដុរ​ទៅ​ប្រអប់​បញ្ចូល​ដើម្បី​មើល​អត្ថបទ​ជំនួយ​របស់​ប្រអប់​បញ្ចូល​នេះ ។"
-
-#. Cz9Sk
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id1559190\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Page N</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ទំព័រ N</ahelp>"
-
-#. rcaDS
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id9879146\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Page N of M</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ទំព័រ N នៃ M</ahelp>"
-
-#. tDDwG
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id9404278\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Top of Page (Header)</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">កំពូល​ទំព័រ (បឋមកថា)</ahelp>"
-
-#. dvqcL
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id7626880\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Bottom of Page (Footer)</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">បាត​ទំព័រ (បាតកថា)</ahelp>"
-
-#. XRZPh
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id6124149\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Alignment</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ការតម្រឹម</ahelp>"
-
-#. horox
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id8257087\n"
-"help.text"
-msgid "Select the format for the page numbers, either \"Page N\" or \"Page N of M\", where N stands for the current page number, and M for the total number of pages in the report."
-msgstr "ជ្រើស​ទ្រង់ទ្រាយ​សម្រាប់​លេខ​ទំព័រ ជ្រើស \"ទំព័រ N\" ឬ​\"ទំព័រ N នៃ M\" ក៏​បាន ដែល N តំណាង​ឲ្យ​លេខ​ទំព័រ​បច្ចុប្បន្ន និង M តំណាង​ឲ្យ​លេខ​ទំព័រ​សរុប​នៅ​ក្នុង​របាយការណ៍ ។"
-
-#. 84Dct
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id3479415\n"
-"help.text"
-msgid "Select to show the page numbers in the Page Header area or in the Page Footer area."
-msgstr "ជ្រើស​ដើម្បី​បង្ហាញ​លេខ​ទំព័រ​នៅ​ក្នុង​ផ្ទៃ​បឋមកថា​ទំព័រ ឬ​នៅ​ក្នុង​ផ្ទៃ​បាតកថា​ទំ​ព័រ ។"
-
-#. GxdrQ
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id4441663\n"
-"help.text"
-msgid "Select an alignment. By default the page numbers are centered between the left and right margins. You can align the field to the left or right. You can also select Inside to print page number on odd pages on the left side and even page numbers on the right side. Select Outside for the opposite alignment."
-msgstr "ជ្រើស​ការ​តម្រឹម ។ តាម​លំនាំដើម​លេខ​ទំព័រ​គឺ​ត្រូវបាន​ដាក់​នូវ​កណ្ដាល​​រវាង​រឹម​ខាងឆ្វេង និង​រឹមខាងស្ដាំ ។ អ្នក​អាច​តម្រឹម​វាល​ទៅ​ឆ្វេង ឬ​ទៅ​ស្ដាំ​បាន ។ អ្នក​ក៏​អាច​ជ្រើស​ខាងក្នុង​ដើម្បី​បោះពុម្ព​លេខទំព័រ​នៅលើ​ទំព័រ​សេស​នៅ​ចំហៀង​ខាងឆ្វេង និង​លេខ​ទំព័រ​គូ​នៅ​ចំហៀង​ខាងស្ដាំ ។ ជ្រើស​ខាងក្រៅ​សម្រាប់​ការ​តម្រឹម​ផ្ទុយ​មក​វិញ ។"
-
-#. MJV32
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id3012176\n"
-"help.text"
-msgid "When you click OK, a data field for the page numbers is inserted. If no header or footer area exist, the area will be created as needed."
-msgstr "នៅពេល​ដែល​ចុច យល់ព្រម វាល​ទិន្នន័យ​សម្រាប់​លេខ​ទំព័រ​គឺ​ត្រូវ​បាន​បញ្ចូល ។ ប្រសិន​បើ​មិនមាន​ផ្ទៃ​បឋមកថា ឬ​បាតកថា ផ្ទៃ​នឹង​ត្រូវបាន​​បង្កើត​តាម​ដែលត្រូវការ ។"
-
-#. 6QnRv
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id8532670\n"
-"help.text"
-msgid "You can click the data field and drag to another position within the same area, or edit the properties in the Properties window."
-msgstr "អ្នក​អាច​ចុច​លើ​វាល​ទិន្នន័យ ហើយ​អូស​ទៅកាន់​ទីតាំង​ផ្សេងទៀត​ក្នុង​ផ្ទៃ​ដូចគ្នា ឬ​កែសម្រួល​លក្ខណសម្បត្តិ​នៅ​ក្នុង​បង្អួច​លក្ខណសម្បត្តិ ។"
-
-#. 7uNv6
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"tit\n"
-"help.text"
-msgid "Properties"
-msgstr "លក្ខណសម្បត្តិ"
-
-#. wAcV9
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"hd_id8836939\n"
-"help.text"
-msgid "<variable id=\"rep_prop\"><link href=\"text/shared/explorer/database/rep_prop.xhp\">Properties</link></variable>"
-msgstr ""
-
-#. ro5Tm
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id2711264\n"
-"help.text"
-msgid "The Properties window of the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> always shows the properties of the currently selected object in the Report Builder view."
-msgstr "លក្ខណសម្បត្តិ​របស់ <link href=\"text/shared/explorer/database/rep_main.xhp\">កម្មវិធី​បង្កើត​របាយការណ៍</link> តែងតែ​បង្ហាញ​លក្ខណសម្បត្តិ​របស់​វត្ថុ​ដែល​បានជ្រើស​បច្ចុប្បន្ន​នៅ​ក្នុង​ទិដ្ឋភាព​កម្មវិធី​បង្កើត​របាយការណ៍ ។"
-
-#. hiDZo
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id1080660\n"
-"help.text"
-msgid "Press Shift-F1 and point with the mouse at an input box to see a help text for this input box."
-msgstr ""
-
-#. WFv9q
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id7175817\n"
-"help.text"
-msgid "On first start of the Report Builder, the Properties window shows the <emph>Data</emph> tab page for the whole report."
-msgstr "នៅពេល​ចាប់ផ្ដើម​​កម្មវិធី​បង្កើត​របាយការណ៍​​ដំបូង បង្អួច​លក្ខណសម្បត្តិ​នឹង​បង្ហាញ​ទំព័រ​ផ្ទាំង <emph>ទិន្នន័យ</emph> សម្រាប់​របាយការណ៍​ទាំងមូល ។"
-
-#. khEAx
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id9895931\n"
-"help.text"
-msgid "Select a table from the Contents list, then press Tab or click outside the input box to leave the input box."
-msgstr "ជ្រើស​តារាង​ពី​បញ្ជី​មាតិកា បន្ទាប់មក​សង្កត់​ថេប ឬ​ចុច​ខាងក្រៅ​ប្រអប់​បញ្ចូល​ដើម្បី​ចេញពី​ប្រអប់​បញ្ចូល ។"
-
-#. DZ342
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id3587145\n"
-"help.text"
-msgid "<ahelp hid=\".\">The <link href=\"text/shared/explorer/database/rep_insertfield.xhp\" name=\"add_fields_link\">Add fields to report</link> window is shown automatically when you have selected a table in the Contents box and leave that box. You can also click the Add Field icon on the toolbar, or choose <item type=\"menuitem\">View - Add Field</item>.</ahelp>"
-msgstr ""
-
-#. 5BJS6
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id6993926\n"
-"help.text"
-msgid "The <emph>General</emph> tab page can be used to change the name of the report, and to disable the Page Header or Page Footer areas, among others."
-msgstr "ទំព័រ​ផ្ទាំង <emph>ទូទៅ</emph> អាច​ត្រូវ​បាន​ប្រើ​ដើម្បី​ផ្លាស់ប្ដូរ​ឈ្មោះ​របស់​របាយការណ៍ និង​ដើម្បី​បិទ​ផ្ទៃ​បឋមកថា​ទំព័រ ឬ​បាតកថា​ទំព័រ ក្នុង​ចំណោម​របាយ​ការ​ផ្សេងទៀត ។"
-
-#. eGuih
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id3729361\n"
-"help.text"
-msgid "<ahelp hid=\".\">To display the <emph>Data</emph> or <emph>General</emph> tab page for the whole report, choose <item type=\"menuitem\">Edit - Select All - Select Report</item>.</ahelp>"
-msgstr ""
-
-#. r4tre
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id1768852\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Groups are kept together by page or by column (default). You must enable Keep Together also.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ក្រុម គឺ​ត្រូវ​បាន​ទុក​នៅ​ជាមួយគ្នា​តាម​ទំព័រ ឬ​តាម​ជួរឈរ (លំនាំដើម) ។ អ្នក​ត្រូវ​តែ​បើក​ការ​ទុក​ជា​មួយ​គ្នា​ផងដែរ ។</ahelp>"
-
-#. PFQYf
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id6304818\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies in which context the page header will be printed: on all pages, or not on pages with a report header or footer.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">បញ្ជាក់​បរិបទ​ណាមួយ​ដែល​បឋមកថា​ទំព័រ​នឹង​ត្រូវ​បាន​បោះពុម្ព ៖ នៅលើ​ទំព័រ​ទាំងអស់ ឬ​មិន​នៅលើ​ទំព័រ​ដែល​មាន​បឋមកថា ឬ​បាតកថា​របាយការណ៍ ។</ahelp>"
-
-#. 9rAVD
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id401623\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies in which context the page footer will be printed: on all pages, or not on pages with a report header or footer</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">បញ្ជាក់​នៅក្នុង​បរិបទ​ណាមួយ​ដែល​បរិបទ​នៃ​បាតកថា​ទំព័រ​នឹង​ត្រូវ​បាន​បោះពុម្ព ៖ នៅលើ​ទំព័រ​ទាំងអស់ ឬ​មិន​នៅលើទំព័រ​ដែល​មាន​បឋមកថា ឬ​បាតកថា​របាយការណ៍</ahelp>"
-
-#. rMRex
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id2162236\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print repeated values.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">បញ្ជាក់​ដើម្បី​បោះពុម្ព​តម្លៃ​ដែល​បាន​ធ្វើ​ឡើងវិញ ។</ahelp>"
-
-#. nCDvW
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id7022003\n"
-"help.text"
-msgid "If you click the Page Header or Page Footer area without selecting any object, you see the <emph>General</emph> tab page for that area."
-msgstr "ប្រសិន​បើ​អ្នក​ចុច​លើ​ផ្ទៃ​បឋមកថា​ទំព័រ ឬ​បាតកថា​ទំព័រ​ដោយ​មិន​ជ្រើស​វត្ថុ​ណាមួយ​ទៀត អ្នក​នឹង​ឃើញ​ទំព័រ​ផ្ទាំង <emph>ទូទៅ</emph> សម្រាប់​ផ្ទៃ​នោះ ។"
-
-#. xACk2
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id7004303\n"
-"help.text"
-msgid "You can edit some visual properties for the area."
-msgstr "អ្នក​អាច​កែសម្រួល​លក្ខណសម្បត្តិ​ដែល​មើល​ឃើញ​សម្រាប់​ផ្ទៃ ។"
-
-#. hPUHN
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id2561723\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the background color for the selected object, both on screen and for printing.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">កំណត់​ពណ៌​ផ្ទៃ​ខាងក្រោយ​សម្រាប់​វត្ថុ​ដែល​បាន​ជ្រើស ទាំង​លើ​អេក្រង់ និង​ការ​បោះពុម្ព ។</ahelp>"
-
-#. BXnJc
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id1064485\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">An invisible object is not shown in the executed report. It is still visible in the Report Builder view.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">វត្ថុ​មើល​មិនឃើញ​គឺ​មិនត្រូវ​បាន​បង្ហាញ​នៅ​ក្នុង​របាយការណ៍​ដែល​បាន​ប្រតិបត្តិ​នោះ​ទេ ។ វា​នៅ​តែ​មើល​ឃើញ​នៅក្នុង​ទិដ្ឋភាព​កម្មវិធី​​​បង្កើត​​របាយការណ៍ ។</ahelp>"
-
-#. Xd2SG
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id2356028\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Defines the height of the selected object.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">កំណត់​កម្ពស់​របស់​វត្ថុ​ដែល​បាន​ជ្រើស ។</ahelp>"
-
-#. GXpuh
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id1404461\n"
-"help.text"
-msgid "<ahelp hid=\".\">If the Conditional Print Expression evaluates to TRUE, the selected object will be printed.</ahelp>"
-msgstr "<ahelp hid=\".\">ប្រសិន​បើ​កន្សោម​បោះពុម្ព​លក្ខខណ្ឌ​វាយ​តម្លៃ​ទៅ TRUE នោះ​វត្ថុ​ដែល​បាន​ជ្រើស​នឹង​ត្រូវ​បាន​បោះពុម្ព ។</ahelp>"
-
-#. jvkXA
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id7404705\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the background of the selected object is transparent or opaque.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">បញ្ជាក់​ថាតើ​ផ្ទៃខាងក្រោយ​របស់​វត្ថុ​ដែល​បាន​ជ្រើស​គឺ​ថ្លា ឬ​ស្រអាប់ ។</ahelp>"
-
-#. qgLML
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id7466963\n"
-"help.text"
-msgid "If you click the <emph>Detail</emph> area without selecting any object, you see the <emph>General</emph> tab page for that area."
-msgstr "ប្រសិន​បើ​អ្នក​ចុច​លើ​ផ្ទៃ <emph>សេចក្ដី​លម្អិត</emph> ដោយ​មិន​ជ្រើស​ធាតុ​ណាមួយ​ទេ នោះ​អ្នក​នឹង​ឃើញ​ទំព័រ​ផ្ទាំង <emph>ទូទៅ</emph> សម្រាប់​ផ្ទៃ​នោះ ។"
-
-#. kmEmG
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id3644215\n"
-"help.text"
-msgid "You can specify some properties to fine-tune the way the records are printed."
-msgstr "អ្នក​អាច​បញ្ជាក់​លក្ខណសម្បត្តិ​មួយ​ចំនួន​ដើម្បី​លៃតម្រូវ​​វិធី​ដែល​កំណត់ត្រា​ត្រូវ​បាន​បោះពុម្ព ។"
-
-#. cjDLx
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id3148899\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Force New Page specifies whether the current section and/or the next section is printed on a new page.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">បង្ខំ​ទំព័រ​ថ្មី បញ្ជាក់​ថាតើ​ផ្នែក​បច្ចុប្បន្ន និង​/ឬ​ផ្នែក​បន្ទាប់​ត្រូវ​បាន​បោះពុម្ព​លើ​ទំព័រ​ថ្មី​ឬ​អត់ ។</ahelp>"
-
-#. CuyG2
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id6164433\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">New Row Or Column specifies, for a multi-column design, whether the current section and/or the next section will be printed on a new row or column.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ជួរ​ដេក ឬ​ជួរឈរ​ថ្មី​បញ្ជាក់​សម្រាប់​ការ​រចនា​ជួរឈរ​ច្រើន ថាតើ​ផ្នែក​បច្ចុប្បន្ន និង/​ឬ​ផ្នែក​បន្ទាប់​នឹង​ត្រូវ​បាន​បោះពុម្ព​នៅលើ​ជួរដេក ឬ​ជួរឈរ​ថ្មី​ឬ​អត់ ។</ahelp>"
-
-#. nHVy2
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id7405011\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Keep Together specifies to print the current object starting on top of a new page if it doesn't fit on the current page.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ទុក​ទាំងអស់​គ្នា បញ្ជាក់​ដើម្បី​បោះពុម្ព​វត្ថុ​បច្ចុប្បន្ន​​ដែល​ចាប់ផ្ដើម​នៅលើ​កំពូល​នៃ​ទំព័រ​ថ្មី ប្រសិន​បើ​វា​មិនសម​នៅលើ​ទំព័រ​បច្ចុប្បន្ន​ ។</ahelp>"
-
-#. FjNyy
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id1536606\n"
-"help.text"
-msgid "Insert some data fields into the Detail area, or insert other control fields into any area. When you select an inserted field, you can set the properties in the Properties window."
-msgstr "បញ្ចូល​វាល​ទិន្នន័យ​មួយចំនួន​ទៅ​ក្នុង​ផ្ទៃ​សេចក្ដី​លម្អិត ឬ​បញ្ចូល​វា​​ល​ត្រួតពិនិត្យ​ទៅ​ក្នុង​ផ្ទៃ​ណាមួយ ។ នៅពេល​ដែល​អ្នក​ជ្រើស​វាល​ដែល​បាន​បញ្ចូល​មួយ អ្នក​អាច​កំណត់​លក្ខណសម្បត្តិ​នៅ​ក្នុង​បង្អួច​លក្ខណសម្បត្តិ ។"
-
-#. 2LAyX
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id9631641\n"
-"help.text"
-msgid "For a Label field, you can change the displayed text in the Label input box."
-msgstr "ចំពោះ​វាល​ស្លាក អ្នក​អាច​ផ្លាស់ប្ដូរ​អត្ថបទ​ដែល​បាន​បង្ហាញ​នៅ​ក្នុង​ប្រអប់​បញ្ចូល​ស្លាក ។"
-
-#. iy4M5
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id7749565\n"
-"help.text"
-msgid "<ahelp hid=\".\">For a picture, you can specify to either insert the picture as a link to a file or only as an embedded object in the Base file. The embedded option increases the size of the Base file, while the link option is not as portable to other computers.</ahelp>"
-msgstr "<ahelp hid=\".\">ចំពោះ​រូបភាព អ្នក​អាច​បញ្ជាក់​ដើម្បី​បញ្ចូល​​រូបភាព​ជា​តំណ​ទៅ​ឯកសារ ឬ​ជា​វត្ថុ​ដែល​បាន​បង្កប់​នៅក្នុង​ឯកសារ Base ។ ជម្រើស​ដែល​បាន​បង្កប់ បង្កើន​ទំហំ​នៃ​ឯកសារ Base នៅ​ខណៈ​ដែល​ជម្រើស​តំណ​គឺ​មិន​​អាច​ប្រើ​បាន​ជាមួយ​នឹង​កុំព្យូទ័រ​ផ្សេងទៀត ។</ahelp>"
-
-#. XKxxX
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id4041871\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the X Position for the selected object</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">កំណត់​ទីតាំង X សម្រាប់​វត្ថុ​ដែល​បាន​ជ្រើស</ahelp>"
-
-#. bvgTD
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id9930722\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the Y Position for the selected object</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">កំណត់​ទីតាំង Y សម្រាប់​វត្ថុ​ដែល​បាន​ជ្រើស</ahelp>"
-
-#. YGfo2
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id5749687\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the width of the selected object.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">កំណត់​ទទឹង​នៃ​វត្ថុ​ដែល​បាន​ជ្រើស ។</ahelp>"
-
-#. pwu7Q
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id79348\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the font for the selected text object.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ជ្រើស​ពុម្ពអក្សរ​សម្រាប់​វត្ថុ​អត្ថបទ​ដែល​បាន​ជ្រើស ។</ahelp>"
-
-#. r9No9
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id2414014\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Print when group change</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">បោះពុម្ព​នៅពេល​ផ្លាស់ប្ដូរ​ក្រុម</ahelp>"
-
-#. 25y9K
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id7617114\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Vert. Alignment</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">តម្រឹម​បញ្ឈរ</ahelp>"
-
-#. GXFDE
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id1593676\n"
-"help.text"
-msgid "On the <emph>General</emph> tab page of a data field, you can set the Formatting properties, among others."
-msgstr "នៅលើ​ទំព័រ​ផ្ទាំង <emph>ទូទៅ</emph> នៃ​វាល​ទិន្នន័យ អ្នក​អាច​កំណត់​លក្ខណសម្បត្តិ​ទ្រង់ទ្រាយ ក្នុង​ចំណោម​លក្ខណសម្បត្តិ​ផ្សេងទៀត ។"
-
-#. LyTPo
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id1243629\n"
-"help.text"
-msgid "<ahelp hid=\".\">On the Data tab page, you can change the data contents to be shown.</ahelp>"
-msgstr "<ahelp hid=\".\">នៅលើ​ទំព័រ​ផ្ទាំង​ទិន្នន័យ អ្នក​អាច​ផ្លាស់ប្ដូរ​មាតិកា​ទិន្នន័យ​ដើម្បី​បង្ហាញ ។</ahelp>"
-
-#. g3CBB
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sorting and Grouping"
-msgstr "ការ​តម្រៀប និង​ដាក់​ជាក្រុម"
-
-#. Xdr3M
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"hd_id3486434\n"
-"help.text"
-msgid "<variable id=\"rep_sort\"><link href=\"text/shared/explorer/database/rep_sort.xhp\">Sorting and Grouping</link></variable>"
-msgstr "<variable id=\"rep_sort\"><link href=\"text/shared/explorer/database/rep_sort.xhp\">ការ​តម្រៀប និង​ដាក់​ជាក្រុម</link></variable>"
-
-#. oV7wd
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id3068636\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the Sorting and Grouping dialog of <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link>, you can define the fields that should be sorted in your report, and the fields that should be kept together to form a group.</ahelp> If you group your report by a certain field, all records with the same value of that field will be kept together in one group."
-msgstr "<ahelp hid=\".\">នៅ​ក្នុង​ប្រអប់​ការ​តម្រៀប និង​ដាក់​ជាក្រុម​នៃ <link href=\"text/shared/explorer/database/rep_main.xhp\">កម្មវិធីបង្កើត​របាយការណ៍</link> អ្នក​អាច​កំណត់​វាល​ដែល​គួរតែ​ត្រូវ​បាន​តម្រៀប​នៅ​ក្នុង​របាយការណ៍​របស់​អ្នក និង​វាល​ដែល​គួរតែ​ត្រូវ​ទុក​ជាមួយ​គ្នា​ដើម្បី​ធ្វើ​សំណុំបែបបទ​ក្រុម ។</ahelp> ប្រសិន​បើ​អ្នក​ដាក់​ក្រុម​របាយការណ៍​របស់​អ្នក​ដោយ​វាល​ជាក់លាក់ នោះ​កំណត់ត្រា​ទាំងអស់​ដែល​មានតម្លៃ​តូចគ្នា​នៃ​វាល​នោះ​នឹងត្រូវ​បាន​ទុក​ជាមួយ​គ្នា​នៅក្នុង​ក្រុម​មួយ ។"
-
-#. KudoP
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id876186\n"
-"help.text"
-msgid "The Groups box shows the fields in an order from top to bottom. You can select any field, then click the Move Up or Move Down button to move this field up or down in the list."
-msgstr "ប្រអប់​ក្រុម បង្ហាញ​វាល​នៅក្នុង​លំដាប់​ពី​កំពូល​ទៅ​បាត ។ អ្នក​អាច​ជ្រើស​វាល​ណាមួយ បន្ទាប់មក​ចុច​លើ​ប៊ូតុង​ឡើងលើ ឬ​ចុះក្រោម​ដើម្បី​ផ្លាស់ទី​វាល​ឡើងលើ ឬ​ចុះក្រោម​នៅ​ក្នុង​បញ្ជី ។"
-
-#. nG4vM
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id3939634\n"
-"help.text"
-msgid "The sorting and grouping will be applied in the order of the list from top to bottom."
-msgstr "ការ​តម្រៀប និង​ដាក់​ជា​ក្រុម​នឹង​ត្រូវបាន​អនុវត្ត​​នៅក្នុង​លំដាប់​នៃ​បញ្ជី​ពី​កំពូល​ទៅ​បាត ។"
-
-#. ZAFvB
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id599688\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the fields that will be used for sorting or grouping. The field at the top has the highest priority, the second field has the second priority, and so on.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">រាយ​វាល​ដែល​នឹងត្រូវ​បាន​ប្រើ​សម្រាប់​ការ​តម្រៀប និង​ដាក់​ជាក្រុម ។ វាល​នៅ​កំពូល​មាន​អាទិភាព​ខ្ពស់​បំផុត វាល​នៅ​ទីពីរ​មាន​អាទិភាព​ទីពីរ ហើយ​បន្ត​បន្ទាប់​ ។</ahelp>"
-
-#. ETyGL
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id1371501\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to open a list from which you can select a field.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ចុច​ដើម្បី​បើក​បញ្ជី​ពី​​​កន្លែង​ដែល​អ្នក​អាច​ជ្រើស​វាល ។</ahelp>"
-
-#. kEwPE
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id4661702\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves the selected field up in the list.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ផ្លាស់ទី​វាល​ដែល​បាន​ជ្រើស​ទៅលើ​ក្នុង​បញ្ជី ។</ahelp>"
-
-#. YmDk5
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id7868892\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves the selected field down in the list.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ផ្លាស់ទី​វាល​ដែល​បាន​ជ្រើស​ចុះក្រោម​នៅ​ក្នុង​បញ្ជី ។</ahelp>"
-
-#. amjzG
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id2188787\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the sorting order.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ជ្រើស​លំដាប់​តម្រៀប ។</ahelp>"
-
-#. bYX8p
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id5833307\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select to show or hide the Group Header.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ជ្រើស​ដើម្បី​បង្ហាញ ឬ​លាក់​បឋមកថា​ក្រុម ។</ahelp>"
-
-#. tN76n
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id7726676\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select to show or hide the Group Footer.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ជ្រើស​ដើម្បី​បង្ហាញ ឬ​លាក់​បាតកថា​ក្រុម ។</ahelp>"
-
-#. Ez4dt
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id3729361\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select to create a new group on each changed value, or on other properties.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ជ្រើស​ដើម្បី​បង្កើត​ក្រុម​ថ្មី​នៅលើ​តម្លៃ​ដែល​បាន​ផ្លាស់ប្ដូរ​នីមួយៗ ឬ​នៅលើ​លក្ខណសម្បត្តិ​ផ្សេងទៀត ។</ahelp>"
-
-#. bd2EW
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id0409200922142041\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Removes the selected field from the list.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">យក​វាល​ដែល​ជ្រើស​ចេញ​ពី​បញ្ជី ។</ahelp>"
-
-#. CjspM
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id3405560\n"
-"help.text"
-msgid "By default a new group is created on every changed value of a record from the selected field. You can change this property depending on the type of field:"
-msgstr "តាម​លំនាំដើម ក្រុម​ថ្មី​គឺ​ត្រូវ​បាន​បង្កើត​នៅលើ​រាល់​តម្លៃ​ដែល​បាន​ផ្លាស់ប្ដូរ​របស់​កំណត់ត្រា​ពី​វាល​ដែល​បាន​ជ្រើស ។ អ្នក​អាច​ផ្លាស់ប្ដូរ​លក្ខណសម្បត្តិ​នេះ​ដោយ​ផ្អែកលើ​ប្រភេទ​​វាល ៖"
-
-#. DD8mt
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id3409527\n"
-"help.text"
-msgid "For fields of type Text, you can select Prefix Characters and enter a number n of characters in the text box below. The records which are identical in the first n characters will be grouped together."
-msgstr "ចំពោះ​វាល​នៃ​ប្រភេទ​អត្ថបទ អ្នក​អាច​ជ្រើស​តួអក្សរ​បុព្វបទ និង​បញ្ចូល​លេខ n នៅ​ក្នុង​តួអក្សរ​ក្នុង​ប្រអប់​អត្ថបទ​ខាងក្រោម ។ កំណត់ត្រា​ដែល​ដូចគ្នា​បេះបិទ​ក្នុង​តួអក្សរ n ទីមួយ​នឹង​ត្រូវបាន​ដាក់​ជាក្រុម​ជាមួយ​គ្នា ។"
-
-#. DFvf2
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id7112338\n"
-"help.text"
-msgid "For fields of type Date/Time, you can group the records by the same year, quarter, month, week, day, hour, or minute. You can additionally specify an interval for weeks and hours: 2 weeks groups data in biweekly groups, 12 hours groups data in half-day groups."
-msgstr "សម្រាប់​វាល​នៃ​ប្រភេទ​កាលបរិច្ឆេទ​/​ពេលវេលា អ្នក​អាច​ដាក់​ក្រុម​កំណត់ត្រា​ដោយ​ឆ្នាំ​តែ​មួយ មួយ​ភាគបួន ខែ សប្ដាហ៍ ថ្ងៃ ម៉ោង ឬ​នាទី ។ អ្នក​អាច​បញ្ជាក់​បន្ថែម​នូវ​ចន្លោះ​ពេល​សម្រាប់​សប្ដាហ៍ និង​ម៉ោង ៖ ទិន្នន័យ​ក្រុម ២ សប្ដាហ៍​ក្នុង​ក្រុម​រាល់​ទ្វេ​សប្ដាហ៍ ទិន្នន័យ​ក្រុម ១២ ម៉ោង​ក្នុង​ក្រុម​ពាក់កណ្ដាល​ថ្ងៃ ។"
-
-#. BBwXv
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id2855616\n"
-"help.text"
-msgid "For fields of type AutoNumber, Currency, or Number, you specify an interval."
-msgstr "ចំពោះ​វាល​នៃ​ប្រភេទ​លេខ​ស្វ័យ​ប្រវត្តិ រូបិយប័ណ្ណ ឬ​លេខ អ្នក​ត្រូវ​បញ្ជាក់​ចន្លោះ ។"
-
-#. mjbMU
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id7700430\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the group interval value that records are grouped by.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">បញ្ចូល​តម្លោះ​ចន្លោះ​ក្រុម ដែល​កំណត់ត្រា​ត្រូវ​បាន​ដាក់​ជាក្រុម ។</ahelp>"
-
-#. XmWsa
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id1180455\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the level of detail by which a group is kept together on the same page.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ជ្រើស​កម្រិត​នៃ​សេចក្ដី​លម្អិត​ដោយ​ក្រុម​ណាមួយ​​ដែល​ត្រូវ​បាន​ទុក​ទាំងអស់​គ្នា​នៅលើ​ទំព័រ​តែ​មួយ ។</ahelp>"
-
-#. KbCbd
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id2091433\n"
-"help.text"
-msgid "When you specify to keep together some records on the same page, you have three choices:"
-msgstr "នៅពេល​ដែល​អ្នក​បញ្ជាក់​ឲ្យ​ទុក​​កំណត់ត្រា​មួយ​ចំនួន​ជាមួយ​គ្នា​នៅលើ​ទំព័រ​តែមួយ អ្នក​មាន​ជម្រើស​បី ៖"
-
-#. NnDGM
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id5092318\n"
-"help.text"
-msgid "No - page boundaries are not taken into account."
-msgstr "ទេ - ព្រំដែន​ទំព័រ​គឺ​មិនត្រូវ​បាន​យក​ទៅ​ក្នុង​គណនី​ទេ ។"
-
-#. Zmwag
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id9312417\n"
-"help.text"
-msgid "Whole Group - prints the group header, detail section, and group footer on the same page."
-msgstr "ក្រុម​ទាំងមូល - បោះពុម្ព​បឋមកថា​ក្រុម ផ្នែក​សេចក្ដី​លម្អិត និង​បាតកថា​ក្រុម​នៅលើ​ទំព័រ​តែ​មួយ ។"
-
-#. Bzv5z
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id9089022\n"
-"help.text"
-msgid "With First Detail - prints the group header on a page only if the first detail record also can be printed on the same page."
-msgstr "ជាមួយ​សេចក្ដី​លម្អិត​ទីមួយ - បោះពុម្ព​បឋមកថា​ក្រុម​នៅលើ​តែ​ទំព័រ​មួយ​ប៉ុណ្ណោះ ប្រសិន​បើ​កំណត់ត្រា​សេចក្ដី​លម្អិត​ទីមួយ ក៏​អាច​ត្រូវ​បាន​បោះពុម្ព​នៅលើ​ទំព័រ​តែ​មួយ ។"
diff --git a/source/km/helpcontent2/source/text/shared/guide.po b/source/km/helpcontent2/source/text/shared/guide.po
index aa2990c488d..5c644ed8d87 100644
--- a/source/km/helpcontent2/source/text/shared/guide.po
+++ b/source/km/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: guide\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-20 13:21+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2019-08-09 08:19+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -7559,14 +7559,14 @@ msgctxt ""
msgid "Creating a New Query With the Query Wizard"
msgstr "ការ​បង្កើត​សំណួរ​ថ្មី​ដោយ​អ្នក​ជំនួយ​ការ​សំណួរ"
-#. YzmZb
+#. axVzs
#: data_queries.xhp
msgctxt ""
"data_queries.xhp\n"
"par_idN1061E\n"
"help.text"
-msgid "In %PRODUCTNAME you can create a new query using the <link href=\"text/shared/explorer/database/querywizard00.xhp\">Query Wizard</link>:"
-msgstr "ក្នុង​ %PRODUCTNAME អ្នក​អាច​បង្កើត​សំណួរ​ថ្មី​មួយ​ដោយ​ប្រើ​ <link href=\"text/shared/explorer/database/querywizard00.xhp\">អ្នក​ជំនួយ​ការ​សំណួរ</link> ៖"
+msgid "In %PRODUCTNAME you can create a new query using the <link href=\"text/sdatabase/querywizard00.xhp\">Query Wizard</link>:"
+msgstr ""
#. DaGBc
#: data_queries.xhp
@@ -7838,14 +7838,14 @@ msgctxt ""
msgid "The Report Builder window opens with the report's information loaded."
msgstr "បង្អួច​កម្មវិធី​​បង្កើត​​របាយការណ៍​បើក​ជាមួយ​ព័ត៌មាន​របស់​របាយការណ៍​ដេល​បាន​ផ្ទុក ។"
-#. ppQLn
+#. fQPtB
#: data_report.xhp
msgctxt ""
"data_report.xhp\n"
"par_id5086825\n"
"help.text"
-msgid "Use the toolbars and menu commands and drag-and-drop to edit the report as stated in the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> guide."
-msgstr "ប្រើ​ឧបករណ៍ និង​ពាក្យ​បញ្ជា​ម៉ឺនុយ និង​ការ​អូស ហើយ​ទម្លាក់ ​ដើម្បី​កែសម្រួល​របាយការណ៍​ដូចដែល​បាន​ដាក់​នៅ​ក្នុង​មគ្គុទ្ទេសក៍ <link href=\"text/shared/explorer/database/rep_main.xhp\">កម្មវិធី​ស្ថាបនា​របាយការណ៍\\</link> ។"
+msgid "Use the toolbars and menu commands and drag-and-drop to edit the report as stated in the <link href=\"text/sdatabase/rep_main.xhp\">Report Builder</link> guide."
+msgstr ""
#. QSknJ
#: data_report.xhp
@@ -8117,14 +8117,14 @@ msgctxt ""
msgid "Click <emph>Create Report in Design View</emph>."
msgstr "ចុច <emph>បង្កើត​របាយការណ៍​ក្នុង​ទិដ្ឋភាព​រចនា</emph> ។"
-#. ef3RF
+#. GEE9s
#: data_reports.xhp
msgctxt ""
"data_reports.xhp\n"
"par_id4870754\n"
"help.text"
-msgid "Follow the instructions in the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> guide."
-msgstr "ធ្វើតាម​សេចក្ដី​ណែនាំនៅ​ក្នុង​មគ្គុទ្ទេសក៍ <link href=\"text/shared/explorer/database/rep_main.xhp\">កម្មវិធីបង្កើត​​របាយការណ៍</link> ។"
+msgid "Follow the instructions in the <link href=\"text/sdatabase/rep_main.xhp\">Report Builder</link> guide."
+msgstr ""
#. xrbEC
#: data_reports.xhp
@@ -8891,14 +8891,14 @@ msgctxt ""
msgid "<link href=\"text/sdatabase/02000000.xhp\" name=\"Create new query or table view, edit query structure\">Create new query or table view, edit query structure</link>"
msgstr ""
-#. A3f6p
+#. WuBVH
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"par_idN1072A\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard00.xhp\">Query Wizard</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard00.xhp\">អ្នក​ជំនួយ​ការ​សំណួរ</link>"
+msgid "<link href=\"text/sdatabase/querywizard00.xhp\">Query Wizard</link>"
+msgstr ""
#. TjEU4
#: database_main.xhp
@@ -9026,13 +9026,13 @@ msgctxt ""
msgid "When <emph>Development Tools</emph> is enabled, a dockable window is shown at the bottom of the screen. This window has two sections:"
msgstr ""
-#. BbGGE
+#. e28an
#: dev_tools.xhp
msgctxt ""
"dev_tools.xhp\n"
"par_id31627862228021\n"
"help.text"
-msgid "<emph>Document Object Model tree view:</emph> Displays document portions according to the Document Object Model (DOM). Use this section to chose the object to inspect."
+msgid "<emph>Document Object Model tree view:</emph> Displays document portions according to the Document Object Model (DOM). Use this section to choose the object to inspect."
msgstr ""
#. fJXDt
@@ -9710,15 +9710,6 @@ msgctxt ""
msgid "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\" name=\"wiki.documentfoundation.org: How to use digital Signatures\">English Wiki page on digital signatures</link>"
msgstr ""
-#. 5nrks
-#: digital_signatures.xhp
-msgctxt ""
-"digital_signatures.xhp\n"
-"par_id486465\n"
-"help.text"
-msgid "<link href=\"text/shared/guide/digitalsign_send.xhp\">Applying digital signatures</link>"
-msgstr "<link href=\"text/shared/guide/digitalsign_send.xhp\">អនុវត្ត​ហត្ថលេខា​ឌីជីថល</link>"
-
#. p8TL7
#: digital_signatures.xhp
msgctxt ""
@@ -18755,14 +18746,14 @@ msgctxt ""
msgid "<link href=\"text/sdatabase/tablewizard00.xhp\">Table Wizard</link>"
msgstr ""
-#. fLi53
+#. rimqF
#: main.xhp
msgctxt ""
"main.xhp\n"
"par_idN1085B\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard00.xhp\">Query Wizard</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard00.xhp\">អ្នក​ជំនួយ​ការ​សំណួរ</link>"
+msgid "<link href=\"text/sdatabase/querywizard00.xhp\">Query Wizard</link>"
+msgstr ""
#. nEnao
#: main.xhp
@@ -23633,23 +23624,23 @@ msgctxt ""
msgid "Click <emph>Add</emph>."
msgstr "ចុច <emph>បន្ថែម</emph> ។"
-#. aU6ZX
+#. ZnGpz
#: scripting.xhp
msgctxt ""
"scripting.xhp\n"
"par_idN10760\n"
"help.text"
-msgid "In the <emph>Category</emph> list box, scroll down and open the \"%PRODUCTNAME Macros\" entry."
-msgstr "ក្នុង​ប្រអប់​បញ្ជី​ <emph>ប្រភេទ</emph> រមូរ​ចុះ​​ក្រោម​ និង បើក​ធាតុ​ \"%PRODUCTNAME Macros\" ។"
+msgid "In the <emph>Category</emph> list box, scroll down and open the \"Application Macros\" entry."
+msgstr ""
-#. 8FvFT
+#. eJ2zS
#: scripting.xhp
msgctxt ""
"scripting.xhp\n"
"par_idN10768\n"
"help.text"
-msgid "You see entries for \"%PRODUCTNAME Macros\" (scripts in the share directory of your %PRODUCTNAME installation), \"My Macros\" (scripts in the user directory), and the current document. Open any one of them to see the supported scripting languages."
-msgstr "អ្នក​ឃើញ​ធាតុ​សម្រាប់ \"%PRODUCTNAME Macros\" (ស្គ្រីប​ក្នុង​ថត​ចែក​រំលែក​នៃ​ការ​ដំឡើង​ %PRODUCTNAME របស់​អ្នក) \"ម៉ាក្រូ​របស់ខ្ញុំ\" (ស្គ្រីប​ក្នុង​ថត​របស់​អ្នក​ប្រើ) និង ឯកសារ​បច្ចុប្បន្ន​ ។ បើក​​ឯកសារ​មួយ​ក្នុង​ចំណោម​ពួក​វា​ដើម្បី​មើល​ភាសាស្គ្រីប​ដែល​បាន​គាំទ្រ​ ។"
+msgid "You see entries for \"Application Macros\" (scripts in the share directory of your %PRODUCTNAME installation), \"My Macros\" (scripts in the user directory), and the current document. Open any one of them to see the supported scripting languages."
+msgstr ""
#. ydmmt
#: scripting.xhp
@@ -23696,23 +23687,23 @@ msgctxt ""
msgid "Choose <emph>Tools - Customize - Keyboard</emph>."
msgstr "ជ្រើស​ <emph>ឧបករណ៍ - ប្តូរ​តាម​បំណង - ក្តារចុច</emph> ។"
-#. uwMCv
+#. MYRtg
#: scripting.xhp
msgctxt ""
"scripting.xhp\n"
"par_idN10A59\n"
"help.text"
-msgid "In the <emph>Category</emph> list box, scroll down and open the \"%PRODUCTNAME Macros\" entry."
-msgstr "ក្នុង​ប្រអប់​បញ្ជី​ <emph>ប្រភេទ</emph> រមូរ​ចុះ​​ក្រោម​ និង បើក​ធាតុ​ \"%PRODUCTNAME Macros\" ។"
+msgid "In the <emph>Category</emph> list box, scroll down and open the \"Application Macros\" entry."
+msgstr ""
-#. jjCqP
+#. 3vSLi
#: scripting.xhp
msgctxt ""
"scripting.xhp\n"
"par_idN10A61\n"
"help.text"
-msgid "You see entries for \"%PRODUCTNAME Macros\" (scripts in the share directory of your %PRODUCTNAME installation), \"My Macros\" (scripts in the user directory), and the current document. Open any one of them to see the supported scripting languages."
-msgstr "អ្នក​ឃើញ​ធាតុ​សម្រាប់ \"%PRODUCTNAME Macros\" (ស្គ្រីប​ក្នុង​ថត​ចែក​រំលែក​នៃ​ការ​ដំឡើង​ %PRODUCTNAME របស់​អ្នក) \"ម៉ាក្រូ​របស់ខ្ញុំ\" (ស្គ្រីប​ក្នុង​ថត​របស់​អ្នក​ប្រើ) និង ឯកសារ​បច្ចុប្បន្ន​ ។ បើក​​ឯកសារ​មួយ​ក្នុង​ចំណោម​ពួក​វា​ដើម្បី​មើល​ភាសាស្គ្រីប​ដែល​បាន​គាំទ្រ​ ។"
+msgid "You see entries for \"Application Macros\" (scripts in the share directory of your %PRODUCTNAME installation), \"My Macros\" (scripts in the user directory), and the current document. Open any one of them to see the supported scripting languages."
+msgstr ""
#. FhQDE
#: scripting.xhp
@@ -23786,23 +23777,23 @@ msgctxt ""
msgid "Click <emph>Macro</emph> button."
msgstr "ចុច​ប៊ូតុង <emph>ម៉ាក្រូ</emph> ។"
-#. KSGJB
+#. g38nu
#: scripting.xhp
msgctxt ""
"scripting.xhp\n"
"par_idN10A9E\n"
"help.text"
-msgid "In the <emph>Library</emph> list box, scroll down and open the \"%PRODUCTNAME Macros\" entry."
-msgstr "ក្នុង​​ប្រអប់​បញ្ជី <emph>បណ្ណាល័យ</emph> រមូរ​ចុះ​ក្រោម​ និង បើក​ធាតុ​ \"%PRODUCTNAME Macros\" ។"
+msgid "In the <emph>Library</emph> list box, scroll down and open the \"Application Macros\" entry."
+msgstr ""
-#. WvmAz
+#. EFNsf
#: scripting.xhp
msgctxt ""
"scripting.xhp\n"
"par_idN10AA6\n"
"help.text"
-msgid "You see entries for \"%PRODUCTNAME Macros\" (scripts in the share directory of your %PRODUCTNAME installation), \"My Macros\" (scripts in the user directory), and the current document. Open any one of them to see the supported scripting languages."
-msgstr "អ្នក​ឃើញ​ធាតុ​សម្រាប់ \"%PRODUCTNAME Macros\" (ស្គ្រីប​ក្នុង​ថត​ចែក​រំលែក​នៃ​ការ​ដំឡើង​ %PRODUCTNAME របស់​អ្នក) \"ម៉ាក្រូ​របស់ខ្ញុំ\" (ស្គ្រីប​ក្នុង​ថត​របស់​អ្នក​ប្រើ) និង ឯកសារ​បច្ចុប្បន្ន​ ។ បើក​​ឯកសារ​មួយ​ក្នុង​ចំណោម​ពួក​វា​ដើម្បី​មើល​ភាសាស្គ្រីប​ដែល​បាន​គាំទ្រ​ ។"
+msgid "You see entries for \"Application Macros\" (scripts in the share directory of your %PRODUCTNAME installation), \"My Macros\" (scripts in the user directory), and the current document. Open any one of them to see the supported scripting languages."
+msgstr ""
#. XQd7D
#: scripting.xhp
@@ -26189,6 +26180,15 @@ msgctxt ""
msgid "%PRODUCTNAME comes with a set of built-in templates that can be used to create documents, presentations, spreadsheets or drawings. You may use templates available in the template manager, create your own templates or browse online for additional templates."
msgstr ""
+#. Aa49E
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id041620170723521916\n"
+"help.text"
+msgid "Make use of categories to organize your templates. Create new templates or download templates and organize in the Template Manager. Use templates to save time for repetitive documents."
+msgstr ""
+
#. oD5Ec
#: template_manager.xhp
msgctxt ""
@@ -26207,13 +26207,13 @@ msgctxt ""
msgid "Previews of available templates show up in the main window based on your search and filtering choices. Double-click on any template icon to open a new document with the contents and formatting of the template."
msgstr ""
-#. FBoHs
+#. CwuoA
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id921608024342429\n"
"help.text"
-msgid "Choose <emph>Thumbnail View</emph> or <emph>List View</emph>, at the top right, to change how the templates are displayed."
+msgid "Choose <emph>Thumbnail View</emph> or <emph>List View</emph>, at the bottom left, to change how the templates are displayed."
msgstr ""
#. ED7GM
@@ -26234,13 +26234,13 @@ msgctxt ""
msgid "Thumbnail View"
msgstr ""
-#. ekcpz
+#. NDx6y
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id61608024086461\n"
"help.text"
-msgid "<image src=\"svx/res/gallist.png\" id=\"img_id461608024086461\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id361608024086461\">List View Icon</alt></image>"
+msgid "<image src=\"svx/res/listview.png\" id=\"img_id461608024086461\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id361608024086461\">List View Icon</alt></image>"
msgstr ""
#. 7Rg4W
@@ -26306,13 +26306,13 @@ msgctxt ""
msgid "Categories"
msgstr ""
-#. ykGZb
+#. 8yDGz
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723507710\n"
"help.text"
-msgid "<ahelp hid=\".\">Categories are folders where you place your templates.</ahelp> You may choose from the default categories: All Categories, My Templates, Business Correspondence, MediaWiki, Other Business Documents, Personal Correspondence and Documents, Presentations or Styles. You may also create new categories for your personal use. Use the <emph>Tools</emph> icon of the Template Manager to create a new category."
+msgid "<ahelp hid=\".\">Categories are folders where you place your templates.</ahelp> You may choose from the default categories: All Categories, My Templates, Business Correspondence, MediaWiki, Other Business Documents, Personal Correspondence and Documents, Presentations or Styles. You may also create new categories for your personal use. Press <widget>Manage</widget> at the top right corner of the Template Manager, then select New Category to create a new category."
msgstr ""
#. kGCqh
@@ -26324,249 +26324,240 @@ msgctxt ""
msgid "Categories inside a category are not allowed."
msgstr ""
-#. TqPzP
+#. ScKJd
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"hd_id041620170723509814\n"
"help.text"
-msgid "Tools"
+msgid "Manage"
msgstr ""
-#. aZqBY
+#. Y7DkF
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723504497\n"
"help.text"
-msgid "<ahelp hid=\".\">Click on the <emph>Tools</emph> icon at the bottom left to open the Tools menu.</ahelp> The options are: New Category, Rename Category, Delete Category, and Refresh. If the default template for an application is changed from the initial default setting, then an additional option, Reset Default Template, is available, which allows you to reset the default template for an application back to its initial default."
+msgid "<ahelp hid=\".\">Press <widget>Manage</widget> at the top right corner to open the Manage menu.</ahelp> The options are: New Category, Refresh, Reset Default, Import, and Extensions."
msgstr ""
-#. bN3Un
+#. gYGYe
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id816947600309745\n"
+"hd_id371642944398730\n"
"help.text"
-msgid "<image src=\"sfx2/res/actionaction013.png\" id=\"img_id381604426509745\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id13162474009745\">Tools Icon</alt></image>"
+msgid "Reset Default"
msgstr ""
-#. xBq4j
+#. rTUeD
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id421604400309745\n"
+"par_id711642944419925\n"
"help.text"
-msgid "Tools icon"
+msgid "This option appears only if you have set a template as default. Use this command to remove that setting. Use Filter to specify which default will be reset."
msgstr ""
-#. gWz9H
+#. aNTjV
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"hd_id041620170723508845\n"
+"hd_id041620170723516279\n"
"help.text"
-msgid "Move"
+msgid "Import"
msgstr ""
-#. mECQv
+#. QVmpk
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id041620170723518776\n"
+"par_id04162017072351776\n"
"help.text"
-msgid "<ahelp hid=\".\">If you want to move templates to a different category, then choose a template, or use <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+click to select additional templates, then press the <widget>Move</widget> button at the bottom right to open a dialog box, where you can choose to move your selection to a different category or to a new category. Default templates cannot be moved, but copies can be created in other categories.</ahelp>"
+msgid "<ahelp hid=\".\">If you want to import one or more templates into the Template Manager, then select Import, choose the Category where the imported templates should be placed, then select the files to be imported.</ahelp>"
msgstr ""
-#. bunpC
+#. 9zDEB
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"hd_id041620170723516791\n"
+"par_id171607689516049\n"
"help.text"
-msgid "Export"
+msgid "<image src=\"sfx2/res/actionview010.png\" id=\"img_id201607689516049\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id71607689516049\">Import Icon</alt></image>"
msgstr ""
-#. XZEZE
+#. f63Fp
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id041620170723513192\n"
+"par_id651607689516049\n"
"help.text"
-msgid "<ahelp hid=\".\">Choose a template in the main window, or use <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+click to select additional templates, and then press the <widget>Export</widget> button at the bottom right to export your selection to a folder on your computer.</ahelp>"
+msgid "Import"
msgstr ""
-#. CgT8y
+#. cP5Sj
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id181607689509896\n"
+"hd_id041620170723501627\n"
"help.text"
-msgid "<image src=\"sfx2/res/actiontemplates020.png\" id=\"img_id171607689509896\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id541607689509896\">Export Icon</alt></image>"
+msgid "Extensions"
msgstr ""
-#. Dwspi
+#. CFMpT
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id431607689509896\n"
+"par_id041620170723503494\n"
"help.text"
-msgid "Export button"
+msgid "<ahelp hid=\".\">To browse for more templates online, choose Extensions to open a search window. You can also search for templates at <link href=\"https://extensions.libreoffice.org/?Tags%5B%5D=118\">https://extensions.libreoffice.org</link>.</ahelp>"
msgstr ""
-#. tEEdj
+#. PrQ6K
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id581607995218423\n"
+"par_id431607690468509\n"
"help.text"
-msgid "To move or export all templates in a <emph>Category</emph>, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+A</keycode>, then choose <emph>Move</emph> or <emph>Export</emph>."
+msgid "<image src=\"cmd/lc_additionsdialog.png\" id=\"img_id461607690468509\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id891607690468509\">Extensions Icon</alt></image>"
msgstr ""
-#. aNTjV
+#. mwqRi
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"hd_id041620170723516279\n"
+"par_id41607690468510\n"
"help.text"
-msgid "Import"
+msgid "Extensions"
msgstr ""
-#. xMRku
+#. ddVcH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id04162017072351776\n"
+"hd_id501607689762479\n"
"help.text"
-msgid "<ahelp hid=\".\">If you want to import one or more templates into the Template Manager, then press the <widget>Import</widget> button at the bottom right, choose the Category where the imported templates should be placed, then select the files to be imported.</ahelp>"
+msgid "Actions with Individual Templates"
msgstr ""
-#. 9zDEB
+#. anVjc
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id171607689516049\n"
+"hd_id041620170723503949\n"
"help.text"
-msgid "<image src=\"sfx2/res/actionview010.png\" id=\"img_id201607689516049\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id71607689516049\">Import Icon</alt></image>"
+msgid "Open"
msgstr ""
-#. VBNy8
+#. kBsGv
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id651607689516049\n"
+"par_id041620170723503583\n"
"help.text"
-msgid "Import button"
+msgid "Select a template in the main window and right-click and then choose Open, press Enter or double click to open a new document using that template."
msgstr ""
-#. cP5Sj
+#. rbHmi
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"hd_id041620170723501627\n"
+"par_id721608222737939\n"
"help.text"
-msgid "Extensions"
+msgid "You can also use the <widget>Open</widget> button on the bottom right to open a new document using the selected template."
msgstr ""
-#. CU9Ag
+#. gvTq3
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id041620170723503494\n"
+"par_id411642157620977\n"
"help.text"
-msgid "<ahelp hid=\".\">To browse for more templates online, click on the Extensions icon at the bottom right to open a search window. You can also search for templates at <link href=\"https://extensions.libreoffice.org/?Tags%5B%5D=118\">https://extensions.libreoffice.org</link>.</ahelp>"
+msgid "<image src=\"cmd/sc_opentemplate.png\" id=\"img_id481642157620977\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id151642157620977\">Open Icon </alt></image>"
msgstr ""
-#. PrQ6K
+#. KJxbk
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id431607690468509\n"
+"par_id21642157620977\n"
"help.text"
-msgid "<image src=\"cmd/lc_additionsdialog.png\" id=\"img_id461607690468509\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id891607690468509\">Extensions Icon</alt></image>"
+msgid "Open"
msgstr ""
-#. pmxCc
+#. V9DEC
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id41607690468510\n"
+"hd_id041620170723504268\n"
"help.text"
-msgid "Extensions icon"
+msgid "Edit"
msgstr ""
-#. ddVcH
+#. DFYCC
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"hd_id501607689762479\n"
+"par_id041620170723502297\n"
"help.text"
-msgid "Actions with Individual Templates"
+msgid "Select a template in the main window and right-click and then choose Edit to edit the template. For built-in templates, it is possible to edit a copy."
msgstr ""
-#. anVjc
+#. 2yEaB
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"hd_id041620170723503949\n"
+"par_id21642157799589\n"
"help.text"
-msgid "Open"
+msgid "<image src=\"cmd/sc_opentemplate.png\" id=\"img_id411642157799589\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61642157799589\">Edit Icon</alt></image>"
msgstr ""
-#. kBsGv
+#. MwDEk
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id041620170723503583\n"
+"par_id581642157799589\n"
"help.text"
-msgid "Select a template in the main window and right-click and then choose Open, press Enter or double click to open a new document using that template."
+msgid "Edit"
msgstr ""
-#. fsr8t
+#. NuFNj
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id721608222737939\n"
+"hd_id041620170723509251\n"
"help.text"
-msgid "You can also use the <widget>Open</widget> button on the bottom left to open a new document using the selected template."
+msgid "Set as Default"
msgstr ""
-#. V9DEC
+#. hZoKd
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"hd_id041620170723504268\n"
+"par_id041620170723501975\n"
"help.text"
-msgid "Edit"
+msgid "Select a template in the main window and right-click and then choose Set as Default to set the template as the default template. This will cause a green tick to appear next to the selected template and the template will automatically load when a new document is created using the matching application."
msgstr ""
-#. DtYah
+#. x6Wr2
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id041620170723502297\n"
+"par_id461642158211948\n"
"help.text"
-msgid "Select a template in the main window and right-click and then choose Edit to edit the template. This function is only available for templates that are not built-in."
+msgid "<image src=\"res/odt_16_8.png\" id=\"img_id991642158211948\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id921642158211948\">Set as Default Icon</alt></image>"
msgstr ""
-#. NuFNj
+#. Tt9Aw
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"hd_id041620170723509251\n"
+"par_id751642158211948\n"
"help.text"
msgid "Set as Default"
msgstr ""
-#. mctxE
-#: template_manager.xhp
-msgctxt ""
-"template_manager.xhp\n"
-"par_id041620170723501975\n"
-"help.text"
-msgid "Select a template in the main window and right-click and then choose Set as Default to set the template as the default template. This will cause a green tick to appear over the template and the template will automatically load when a new document is created using the matching application."
-msgstr ""
-
#. mPSZV
#: template_manager.xhp
msgctxt ""
@@ -26585,6 +26576,24 @@ msgctxt ""
msgid "Select a template in the main window and right-click and then choose Rename to rename the template. This will cause a dialog box to appear where a new name may be chosen for the template. Type in the name and then choose OK or choose Cancel to revert to the name that is already set."
msgstr ""
+#. LRmGo
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id501642158394220\n"
+"help.text"
+msgid "<image src=\"cmd/lc_editdoc.png\" id=\"img_id211642158394220\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id581642158394220\">Rename Icon</alt></image>"
+msgstr ""
+
+#. CXWXD
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id61642158394220\n"
+"help.text"
+msgid "Rename"
+msgstr ""
+
#. mSSwu
#: template_manager.xhp
msgctxt ""
@@ -26603,6 +26612,24 @@ msgctxt ""
msgid "Select one or more templates to delete in the main window and press the <keycode>Delete</keycode> key, or right-click then choose <menuitem>Delete</menuitem> to delete the selected template(s). A dialog box will appear requesting confirmation. Choose <widget>Yes</widget> to delete or <widget>No</widget> to cancel."
msgstr ""
+#. VqweF
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id591642158461235\n"
+"help.text"
+msgid "<image src=\"cmd/lc_delete.png\" id=\"img_id261642158461235\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id291642158461235\">Delete Icon</alt></image>"
+msgstr ""
+
+#. KQKqG
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id831642158461235\n"
+"help.text"
+msgid "Delete"
+msgstr ""
+
#. QQQyx
#: template_manager.xhp
msgctxt ""
@@ -26612,6 +26639,87 @@ msgctxt ""
msgid "Built-in templates cannot be edited, renamed or deleted."
msgstr ""
+#. gWz9H
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"hd_id041620170723508845\n"
+"help.text"
+msgid "Move"
+msgstr ""
+
+#. ZSxLZ
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id041620170723518776\n"
+"help.text"
+msgid "<ahelp hid=\".\">If you want to move templates to a different category, then choose a template, or use <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+click to select additional templates, then right-click and choose Move to open a dialog box, where you can choose to move your selection to a different category or to a new category. Built-in templates cannot be moved, but copies can be created in other categories.</ahelp>"
+msgstr ""
+
+#. BYJt3
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id21642159780019\n"
+"help.text"
+msgid "<image src=\"cmd/lc_move.png\" id=\"img_id301642159780019\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id231642159780019\">Move Icon</alt></image>"
+msgstr ""
+
+#. sLKnY
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id721642159780019\n"
+"help.text"
+msgid "Move"
+msgstr ""
+
+#. bunpC
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"hd_id041620170723516791\n"
+"help.text"
+msgid "Export"
+msgstr ""
+
+#. aweFD
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id041620170723513192\n"
+"help.text"
+msgid "<ahelp hid=\".\">Choose a template in the main window, or use <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+click to select additional templates, and then right-click and select Export to export your selection to a folder on your computer.</ahelp>"
+msgstr ""
+
+#. CgT8y
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id181607689509896\n"
+"help.text"
+msgid "<image src=\"sfx2/res/actiontemplates020.png\" id=\"img_id171607689509896\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id541607689509896\">Export Icon</alt></image>"
+msgstr ""
+
+#. Ckewj
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id431607689509896\n"
+"help.text"
+msgid "Export"
+msgstr ""
+
+#. tEEdj
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id581607995218423\n"
+"help.text"
+msgid "To move or export all templates in a <emph>Category</emph>, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+A</keycode>, then choose <emph>Move</emph> or <emph>Export</emph>."
+msgstr ""
+
#. bF5Yb
#: template_manager.xhp
msgctxt ""
@@ -26711,13 +26819,13 @@ msgctxt ""
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+N or choose <emph>File - New - Templates</emph> to open the Template Manager"
msgstr ""
-#. hrcEG
+#. Nd2Pn
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723512689\n"
"help.text"
-msgid "Click on the Extensions icon to browse for online templates."
+msgid "Click on <widget>Manage</widget> and choose Extensions to browse for online templates."
msgstr ""
#. v6rBQ
@@ -26819,15 +26927,6 @@ msgctxt ""
msgid "A few features in the Template Manager are not available when first opened automatically. After starting %PRODUCTNAME Impress you may run the Template Manager again to access all features."
msgstr ""
-#. Aa49E
-#: template_manager.xhp
-msgctxt ""
-"template_manager.xhp\n"
-"par_id041620170723521916\n"
-"help.text"
-msgid "Make use of categories to organize your templates. Create new templates or download templates and organize in the Template Manager. Use templates to save time for repetitive documents."
-msgstr ""
-
#. YFEXe
#: template_manager.xhp
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/shared/optionen.po b/source/km/helpcontent2/source/text/shared/optionen.po
index 44cf3748936..2e70b1a71b6 100644
--- a/source/km/helpcontent2/source/text/shared/optionen.po
+++ b/source/km/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: optionen\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-25 12:49+0200\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2019-08-09 08:20+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -3509,13 +3509,13 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. M4iFj
+#. w38HE
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id310720161555238963\n"
"help.text"
-msgid "Icon style"
+msgid "Icon Theme"
msgstr ""
#. omu6i
@@ -11168,6 +11168,33 @@ msgctxt ""
msgid "Pages"
msgstr "ទំព័រ"
+#. K79Gg
+#: 01060700.xhp
+msgctxt ""
+"01060700.xhp\n"
+"bm_id981642185152891\n"
+"help.text"
+msgid "<bookmark_value>printing;manual breaks</bookmark_value>"
+msgstr ""
+
+#. Zjqt6
+#: 01060700.xhp
+msgctxt ""
+"01060700.xhp\n"
+"hd_id191642185354689\n"
+"help.text"
+msgid "Always apply manual breaks"
+msgstr ""
+
+#. 5emsm
+#: 01060700.xhp
+msgctxt ""
+"01060700.xhp\n"
+"par_id921642185374234\n"
+"help.text"
+msgid "Setting this option gives manual row breaks precedence over automatic page breaks done using the <link href=\"text/scalc/01/05070500.xhp#par_idN1096D\" name=\"Scaling_link\">Reduce/enlarge printout</link> scaling mode."
+msgstr ""
+
#. G5AXA
#: 01060700.xhp
msgctxt ""
@@ -13733,13 +13760,13 @@ msgctxt ""
msgid "Shading exports all RGB colors to the other Office character attribute. This preserves color fidelity between $[officename] and Microsoft Office documents, but Office users must edit this character attribute with a tool that is not commonly used or easy to find in Office applications. This is the default setting since $[officename] 7.0."
msgstr ""
-#. mnCpY
+#. M4Xyh
#: 01130200.xhp
msgctxt ""
"01130200.xhp\n"
"par_id11611137020276\n"
"help.text"
-msgid "The compatibility filter in the <emph>Character Highlighting Color</emph> dialog provides the Microsoft Office highlighting colors. Use those colors and choose <emph>Export as: Highlighting</emph> if you want both color fidelity and ease of editing for Office users."
+msgid "The \"compatibility\" filter in the <emph>Character Highlighting Color</emph> dialog provides the Microsoft Office highlighting colors. Use those colors and choose <emph>Export as: Highlighting</emph> if you want both color fidelity and ease of editing for Office users."
msgstr ""
#. hpDE5
diff --git a/source/km/helpcontent2/source/text/smath/guide.po b/source/km/helpcontent2/source/text/smath/guide.po
index f3260bf32a0..00ad0137450 100644
--- a/source/km/helpcontent2/source/text/smath/guide.po
+++ b/source/km/helpcontent2/source/text/smath/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2017-05-10 03:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -215,6 +215,492 @@ msgctxt ""
msgid "or"
msgstr "ឬ"
+#. x9te9
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"tit\n"
+"help.text"
+msgid "Applying Color to Formula Parts"
+msgstr ""
+
+#. F9aE8
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"bm_id3156384\n"
+"help.text"
+msgid "<bookmark_value>Color in formulas</bookmark_value>"
+msgstr ""
+
+#. UXL5W
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"hd_id601641846107898\n"
+"help.text"
+msgid "<variable id=\"color\"><link href=\"text/smath/guide/color.xhp\" name=\"Color_link\">Applying Color to Formula Parts</link></variable>"
+msgstr ""
+
+#. ckGgG
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id481641846189425\n"
+"help.text"
+msgid "Use the command <literal>color</literal> to apply color to the subsequent formula part."
+msgstr ""
+
+#. BnqGh
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id141641846432331\n"
+"help.text"
+msgid "The example below creates a formula where <emph>a</emph> is shown using the default color (black) and <emph>b</emph> is shown in red."
+msgstr ""
+
+#. jV7H8
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id211641848286949\n"
+"help.text"
+msgid "Beware that the <literal>color</literal> command only changes the color of the formula part that comes immediately after it. For example, in the formula below only <emph>b</emph> will be shown in red, whereas <emph>c</emph> will be shown in black."
+msgstr ""
+
+#. hLeFX
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641848475043\n"
+"help.text"
+msgid "Use braces to apply color to more parts of the formula. In the following example, <emph>b</emph> and <emph>c</emph> are shown in red."
+msgstr ""
+
+#. JAK8L
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id651641851485699\n"
+"help.text"
+msgid "A list with predefined color names is available <link href=\"text/smath/guide/color.xhp#PredefinedColors\" name=\"Colors_list\">here</link>."
+msgstr ""
+
+#. gQn7y
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"bm_id521641858375937\n"
+"help.text"
+msgid "<bookmark_value>RGB colors</bookmark_value>"
+msgstr ""
+
+#. beAyt
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"hd_id831641851472401\n"
+"help.text"
+msgid "Using RGB colors"
+msgstr ""
+
+#. tj2xF
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id701641851641673\n"
+"help.text"
+msgid "Use the command <literal>color rgb</literal> to apply colors using RGB (Red, Green, Blue) values."
+msgstr ""
+
+#. eYWCg
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id941641851779414\n"
+"help.text"
+msgid "RGB values range between 0 and 255."
+msgstr ""
+
+#. EFXpV
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"bm_id521641858372217\n"
+"help.text"
+msgid "<bookmark_value>Hex colors</bookmark_value>"
+msgstr ""
+
+#. mdvQM
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"hd_id901641851813499\n"
+"help.text"
+msgid "Using hex notation"
+msgstr ""
+
+#. zLQWy
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id271641851832464\n"
+"help.text"
+msgid "Use the command <literal>color hex</literal> to apply colors using the hexadecimal notation."
+msgstr ""
+
+#. rPHnc
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"hd_id121641851982125\n"
+"help.text"
+msgid "Combining color with other commands"
+msgstr ""
+
+#. WiZz8
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id321641852002469\n"
+"help.text"
+msgid "It is possible to combine the color command with other commands as <literal>bold</literal>, <literal>italic</literal> or <literal>size</literal>."
+msgstr ""
+
+#. qDEtC
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id521641852051767\n"
+"help.text"
+msgid "The example below writes <emph>var</emph> in bold blue:"
+msgstr ""
+
+#. vSVUb
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id21641852173099\n"
+"help.text"
+msgid "To change color and font size, use <literal>color</literal> in combination with <literal>size</literal> and the desired font size."
+msgstr ""
+
+#. wEhmU
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"bm_id52164185802587\n"
+"help.text"
+msgid "<bookmark_value>List of predefined colors</bookmark_value>"
+msgstr ""
+
+#. wbRDh
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"hd_id621641846264365\n"
+"help.text"
+msgid "Predefined color names"
+msgstr ""
+
+#. FGJS8
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id911641846282038\n"
+"help.text"
+msgid "%PRODUCTNAME provides a set of predefined color names that can be used along with the <literal>color</literal> command."
+msgstr ""
+
+#. auAPG
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id871641846833413\n"
+"help.text"
+msgid "Markup language"
+msgstr ""
+
+#. Qf5tX
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id661641846833413\n"
+"help.text"
+msgid "Color"
+msgstr ""
+
+#. Y4DMa
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id741641846833413\n"
+"help.text"
+msgid "Hex value"
+msgstr ""
+
+#. 3kWLW
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id741641846833014\n"
+"help.text"
+msgid "RGB values"
+msgstr ""
+
+#. 4Vu7A
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id951641846833413\n"
+"help.text"
+msgid "<literal>aqua</literal> or <literal>cyan</literal>"
+msgstr ""
+
+#. xcaVa
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846833413\n"
+"help.text"
+msgid "Aqua"
+msgstr ""
+
+#. D73X6
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846830036\n"
+"help.text"
+msgid "Black"
+msgstr ""
+
+#. iGEDP
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846320113\n"
+"help.text"
+msgid "Blue"
+msgstr ""
+
+#. Umsp6
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846833363\n"
+"help.text"
+msgid "Coral"
+msgstr ""
+
+#. YcrNE
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846833014\n"
+"help.text"
+msgid "Crimson"
+msgstr ""
+
+#. G6mfq
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id951641846830853\n"
+"help.text"
+msgid "<literal>fuchsia</literal> or <literal>magenta</literal>"
+msgstr ""
+
+#. DD2RU
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846800325\n"
+"help.text"
+msgid "Fuchsia"
+msgstr ""
+
+#. WSeur
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id951641846830213\n"
+"help.text"
+msgid "<literal>gray</literal> or <literal>grey</literal>"
+msgstr ""
+
+#. gdQ5j
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846896513\n"
+"help.text"
+msgid "Gray"
+msgstr ""
+
+#. YCrBe
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846830214\n"
+"help.text"
+msgid "Green"
+msgstr ""
+
+#. Zqix6
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846836253\n"
+"help.text"
+msgid "Hot pink"
+msgstr ""
+
+#. 9oHjZ
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846812385\n"
+"help.text"
+msgid "Indigo"
+msgstr ""
+
+#. X4Y45
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846835521\n"
+"help.text"
+msgid "Lavender"
+msgstr ""
+
+#. g5GKD
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846036523\n"
+"help.text"
+msgid "Lime"
+msgstr ""
+
+#. kAo5q
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846833649\n"
+"help.text"
+msgid "Maroon"
+msgstr ""
+
+#. n7uXk
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846837653\n"
+"help.text"
+msgid "Midnight"
+msgstr ""
+
+#. Ymn82
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846867458\n"
+"help.text"
+msgid "Navy"
+msgstr ""
+
+#. aedBY
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846837663\n"
+"help.text"
+msgid "Olive"
+msgstr ""
+
+#. pNCBH
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846838053\n"
+"help.text"
+msgid "Orange"
+msgstr ""
+
+#. BGG7c
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846836041\n"
+"help.text"
+msgid "Orange red"
+msgstr ""
+
+#. opiDJ
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846833063\n"
+"help.text"
+msgid "Purple"
+msgstr ""
+
+#. 42wFB
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846833902\n"
+"help.text"
+msgid "Red"
+msgstr ""
+
+#. p5ox4
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846836613\n"
+"help.text"
+msgid "Sea green"
+msgstr ""
+
+#. AF8R7
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641840569413\n"
+"help.text"
+msgid "Silver"
+msgstr ""
+
+#. 8XVN7
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846896587\n"
+"help.text"
+msgid "Teal"
+msgstr ""
+
+#. KejUr
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846006745\n"
+"help.text"
+msgid "Violet"
+msgstr ""
+
+#. pXf2z
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846837556\n"
+"help.text"
+msgid "Yellow"
+msgstr ""
+
#. 3UYoM
#: comment.xhp
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/swriter.po b/source/km/helpcontent2/source/text/swriter.po
index b0f398e12d1..70f5a297b89 100644
--- a/source/km/helpcontent2/source/text/swriter.po
+++ b/source/km/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-25 12:49+0200\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2018-10-21 20:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -1061,13 +1061,13 @@ msgctxt ""
msgid "Columns Before"
msgstr ""
-#. bkDEH
+#. 7CVcf
#: main0110.xhp
msgctxt ""
"main0110.xhp\n"
"par_id531605976347665\n"
"help.text"
-msgid "Insert a column before the column where the cursor is currently placed."
+msgid "Inserts a column before the column where the cursor is currently placed."
msgstr ""
#. UE3RA
@@ -1079,13 +1079,13 @@ msgctxt ""
msgid "Columns After"
msgstr ""
-#. A6B3G
+#. fooJR
#: main0110.xhp
msgctxt ""
"main0110.xhp\n"
"par_id731605976350615\n"
"help.text"
-msgid "Insert a column before the column where the cursor is currently placed."
+msgid "Inserts a column after the column where the cursor is currently placed."
msgstr ""
#. KepEk
@@ -1862,14 +1862,14 @@ msgctxt ""
msgid "The Formatting bar contains several text formatting functions."
msgstr ""
-#. FUzck
+#. Yc6Kk
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3149593\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
-msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">ពណ៌​ពុម្ពអក្សរ</link>"
+msgid "<link href=\"text/shared/01/05020200.xhp#FontColor\" name=\"Font Color\">Font Color</link>"
+msgstr ""
#. 9sJ5w
#: main0202.xhp
diff --git a/source/km/helpcontent2/source/text/swriter/00.po b/source/km/helpcontent2/source/text/swriter/00.po
index 2616c10436b..912b25dd44b 100644
--- a/source/km/helpcontent2/source/text/swriter/00.po
+++ b/source/km/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 00\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -2455,13 +2455,13 @@ msgctxt ""
msgid "Open <emph>Optimize Size</emph> toolbar from <emph>Table</emph> bar, click"
msgstr ""
-#. EPNPB
+#. 68Em3
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3145179\n"
"help.text"
-msgid "<image id=\"img_id3145186\" src=\"cmd/sc_distributecolumns.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145186\">Icon Space Column Equally</alt></image>"
+msgid "<image id=\"img_id3145186\" src=\"cmd/sc_distributecolumns.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145186\">Icon Distribute Columns Evenly</alt></image>"
msgstr ""
#. njBSt
diff --git a/source/km/helpcontent2/source/text/swriter/01.po b/source/km/helpcontent2/source/text/swriter/01.po
index 34520cc8810..0b2f3815468 100644
--- a/source/km/helpcontent2/source/text/swriter/01.po
+++ b/source/km/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-24 12:03+0100\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2018-10-21 20:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -7028,14 +7028,14 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts the field as static content, that is, the field cannot be updated.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">បញ្ចូល​វាល​ជា​មាតិកា​ស្ថិតិ ដែល​វាល​នោះ​មិន​អាច​ធ្វើ​បច្ចុប្បន្នភាព​បាន​ទេ ។</ahelp>"
-#. yUfD9
+#. YYGCF
#: 04090001.xhp
msgctxt ""
"04090001.xhp\n"
"par_id3154470\n"
"help.text"
-msgid "For the HTML export and import of date and time fields, <link href=\"text/swriter/01/04090007.xhp#datumuhrzeit\" name=\"special $[officename] formats\">special $[officename] formats</link> are used."
-msgstr "សម្រាប់​ការ​នាំចូល និង នាំចេញ​ជា HTML នៃ​វាល​កាល​បរិច្ឆេទ និង ពេល​វេលា <link href=\"text/swriter/01/04090007.xhp#datumuhrzeit\" name=\"special $[officename] formats\">ទ្រង់ទ្រាយ $[officename] ពិសេស</link> ត្រូវ​បាន​ប្រើ ។"
+msgid "For the HTML export and import of date and time fields, <link href=\"text/swriter/01/04090007.xhp#date_and_time\" name=\"special $[officename] formats\">special $[officename] formats</link> are used."
+msgstr ""
#. nB93u
#: 04090001.xhp
@@ -7964,14 +7964,14 @@ msgctxt ""
msgid "The following fields can only be inserted if the corresponding field type is selected in the <emph>Type </emph>list."
msgstr ""
-#. LWBFT
+#. 3KLNk
#: 04090003.xhp
msgctxt ""
"04090003.xhp\n"
-"par_id0902200804352213\n"
+"hd_id3145595\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ចុច​លើ​ទ្រង់ទ្រាយ​ដែល​អ្នក​ចង់​អនុវត្ត​ទៅ​លើ​វាល​ដែល​ជ្រើស ឬ​ចុច \"ទ្រង់ទ្រាយ​បន្ថែម\" ដើម្បី​កំណត់​ទ្រង់ទ្រាយ​ផ្ទាល់ខ្លួន ។</ahelp>"
+msgid "Format"
+msgstr ""
#. 2iDAk
#: 04090003.xhp
@@ -8414,14 +8414,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">DocInformation fields contain information about the properties of a document, such as the date a document was created. To view the properties of a document, choose <menuitem>File - Properties</menuitem>.</ahelp>"
msgstr ""
-#. uXwon
+#. UAjpE
#: 04090004.xhp
msgctxt ""
"04090004.xhp\n"
"par_id3148982\n"
"help.text"
-msgid "When you export and import an HTML document containing DocInformation fields, <link href=\"text/swriter/01/04090007.xhp#dokumentinfo\" name=\"special $[officename] formats\">special $[officename] formats</link> are used."
-msgstr "នៅ​ពេល​អ្នក​នាំ​ចេញ និង នាំ​ចូល​ឯកសារ HTML ដែល​មាន​វាល​ព័ត៌មាន​ឯកសារ <link href=\"text/swriter/01/04090007.xhp#dokumentinfo\" name=\"special $[officename] formats\">ទ្រង់ទ្រាយ $[officename] ពិសេស</link> ត្រូវ​បាន​ប្រើ ។"
+msgid "When you export and import an HTML document containing DocInformation fields, <link href=\"text/swriter/01/04090007.xhp#DocInformation\" name=\"special $[officename] formats\">special $[officename] formats</link> are used."
+msgstr ""
#. Y9tFf
#: 04090004.xhp
@@ -31004,6 +31004,276 @@ msgctxt ""
msgid "Displays the document with the top and bottom margins, header and footer and a gap between pages. Uncheck to collapse all the elements cited and display the document in a contiguous page stream. Hiding whitespace is only possible in Single-page view."
msgstr ""
+#. CB3yA
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"tit\n"
+"help.text"
+msgid "Style Inspector"
+msgstr ""
+
+#. FKeEC
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"bm_id441641339111122\n"
+"help.text"
+msgid "<bookmark_value>styles;inspector</bookmark_value><bookmark_value>style inspector</bookmark_value>"
+msgstr ""
+
+#. rZsCG
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"hd_id741641334466741\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/style_inspector.xhp\" name=\"Style Inspector\">Style Inspector</link>"
+msgstr ""
+
+#. NixhW
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id971641334466743\n"
+"help.text"
+msgid "<variable id=\"StyleInspector\">The Style Inspector is located on the Sidebar. It displays all the attributes of the styles (paragraph and character) and any direct formatting present in the paragraph and character where the cursor is located. These details can be useful when you are trying to figure out why some formatting in a document appears to be incorrect or inconsistent.</variable>"
+msgstr ""
+
+#. oTPUX
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id521641338705733\n"
+"help.text"
+msgid "Open the sidebar, click on the Style Inspector icon"
+msgstr ""
+
+#. Cf9BR
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id431641335152917\n"
+"help.text"
+msgid "<image src=\"cmd/lc_inspectordeck.svg\" id=\"img_id661641335152918\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61641335152918\">Icon Style Inspector</alt></image>"
+msgstr ""
+
+#. DxkCg
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id721641335152918\n"
+"help.text"
+msgid "Icon Style Inspector on the Sidebar"
+msgstr ""
+
+#. uhQin
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id781641335609033\n"
+"help.text"
+msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Alt+5</keycode><keycode/>"
+msgstr ""
+
+#. C3HyK
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"hd_id941641336331359\n"
+"help.text"
+msgid "The Style Inspector Panel"
+msgstr ""
+
+#. 3YCBX
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"hd_id771641336335666\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. jJ8Rw
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id1001641336347665\n"
+"help.text"
+msgid "<emph>Paragraph Styles</emph>: shows the list of the paragraph styles applied to the text at the cursor position, following the style hierarchy, where the parent style comes above any child style."
+msgstr ""
+
+#. 92ZBL
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id981641336364074\n"
+"help.text"
+msgid "<emph>Paragraph direct formatting</emph>: shows the list of paragraph properties which are set directly to the text at the cursor location."
+msgstr ""
+
+#. CEPG7
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id961641336357072\n"
+"help.text"
+msgid "<emph>Character Styles</emph>: shows the list of the character styles applied to the text at the cursor, following hierarchy, where the parent style comes above any child style."
+msgstr ""
+
+#. AmUGJ
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id981641336364073\n"
+"help.text"
+msgid "<emph>Character direct formatting</emph>: shows the list of character properties which are set directly to the text at the cursor location."
+msgstr ""
+
+#. sZJFE
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"hd_id301641336416253\n"
+"help.text"
+msgid "Values"
+msgstr ""
+
+#. Co87K
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id251641336411569\n"
+"help.text"
+msgid "Display the values of the properties."
+msgstr ""
+
+#. PugNC
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"hd_id491641337715424\n"
+"help.text"
+msgid "Usage"
+msgstr ""
+
+#. MU9Ct
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id821641421059397\n"
+"help.text"
+msgid "Use the Style Inspector to uncover formatting issues in your text document."
+msgstr ""
+
+#. VSvTx
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id991641421123640\n"
+"help.text"
+msgid "Style properties overwritten by direct formatting are greyed out in the Paragraph and Character style tree, indicating that the style property is not effective anymore."
+msgstr ""
+
+#. Bx5uA
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id841641421139731\n"
+"help.text"
+msgid "Paragraph style properties that are re-defined by a child paragraph style are greyed out."
+msgstr ""
+
+#. GZSBC
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id31641421150849\n"
+"help.text"
+msgid "Character style properties that are re-defined by a child character style are greyed out."
+msgstr ""
+
+#. 9bw2E
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id911641421185601\n"
+"help.text"
+msgid "Paragraph style and direct properties that are re-defined by character styles or character direct properties are greyed."
+msgstr ""
+
+#. FJVK6
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id621641337772747\n"
+"help.text"
+msgid "For example, if the margins of the paragraph are changed by direct formatting using the rulers, the margins property of the paragraph style are greyed out and the margins properties are displayed in the Paragraph Direct Formatting entry of the Style Inspector."
+msgstr ""
+
+#. gYRCv
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id771641378992460\n"
+"help.text"
+msgid "Another example, if the <emph>Emphasis</emph> character style highlights a word with a yellow background, and the user mistakenly overwrote it by using a white background, the <literal>yellow</literal> attribute would be greyed-out and <literal>white</literal> is listed under Direct Formatting in the Style Inspector. The Style Inspector shows only those attributes that diverge from the parent (which is usually the Default Paragraph Style)."
+msgstr ""
+
+#. aD4oE
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id101641338214488\n"
+"help.text"
+msgid "Some features of the Style Inspector are of interest mainly to advanced users:"
+msgstr ""
+
+#. 3MbWb
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id281641338268000\n"
+"help.text"
+msgid "The Style Inspector can show any hidden RDF (Resource Description Framework, a W3C standard) metadata at the cursor position associated with text spans, paragraphs, and bookmarks. For annotated text spans, “Nested Text Content” item can show the boundary of the nested annotated text ranges and metadata fields."
+msgstr ""
+
+#. MS6Q5
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id531641338286704\n"
+"help.text"
+msgid "Custom color metadata field shadings can be set for an annotated text range or a metadata field, for visualization of metadata categories in the document editor. Use <menuitem>View - Field Shadings</menuitem> or press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F8</keycode> to disable or enable these field shadings."
+msgstr ""
+
+#. PXGpD
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id261641340112608\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/ReleaseNotes/7.1#Style_inspector\" name=\"rel71\">Release notes for Style Inspector</link>"
+msgstr ""
+
+#. DfEhN
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id601641340196019\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/ReleaseNotes/7.2#RDF_metadata_in_Style_Inspector\" name=\"rdfmetadata\">RDF Metadata in Style Inspector</link>"
+msgstr ""
+
+#. FttEa
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id731641340265093\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/ReleaseNotes/7.2#Custom_color_metadata_field_shadings\" name=\"customcolormetadata\">Custom color metadata</link>"
+msgstr ""
+
#. wDniB
#: title_page.xhp
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/swriter/guide.po b/source/km/helpcontent2/source/text/swriter/guide.po
index e0ea91cc596..10a5c4c7fde 100644
--- a/source/km/helpcontent2/source/text/swriter/guide.po
+++ b/source/km/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: guide\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-20 13:21+0100\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2018-11-12 13:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -1070,14 +1070,14 @@ msgctxt ""
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>."
msgstr "ជ្រើស <emph>ឧបករណ៍ - ម៉ាក្រូ - រៀបចំ​ម៉ាក្រូ - %PRODUCTNAME Basic</emph> ។"
-#. rmF3D
+#. AeTx9
#: autotext.xhp
msgctxt ""
"autotext.xhp\n"
"par_id3155160\n"
"help.text"
-msgid "In the <emph>Macro from</emph> tree control, select %PRODUCTNAME Macros - Gimmicks - AutoText."
-msgstr "នៅ​ក្នុង <emph>ម៉ាក្រូ</emph> ពី​វត្ថុ​បញ្ជា​មែកធាង ជ្រើស %PRODUCTNAME ម៉ាក្រូ - ឧបករណ៍​បន្លំ - អត្ថបទ​ស្វ័យប្រវត្តិ។"
+msgid "In the <emph>Macro from</emph> tree control, select Application Macros - Gimmicks - AutoText."
+msgstr ""
#. QYtCx
#: autotext.xhp
@@ -14588,6 +14588,15 @@ msgctxt ""
msgid "To make a section read-only, select the <emph>Protected</emph> check box in the <emph>Write Protection</emph> area."
msgstr "ដើម្បី​ធ្វើ​ឲ្យ​ភាគ​ទៅជា​បាន​តែ​អាន គូស​ធីក​ប្រអប់ <emph>ការពារ</emph> នៅ​ក្នុង​ផ្ទៃ <emph>ការពារ​មិន​ឲ្យ​សរសេរ​ចូល</emph> ។"
+#. tJmPF
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"par_id731641553483773\n"
+"help.text"
+msgid "Add an optional protection password. The password can be empty and no password will be required to remove protection. If the password is not empty, it will be required to unprotect the section."
+msgstr ""
+
#. QWTQ9
#: section_edit.xhp
msgctxt ""
@@ -14597,6 +14606,87 @@ msgctxt ""
msgid "To hide a section, select the <emph>Hide</emph> check box in the <emph>Hide</emph> area."
msgstr "ដើម្បី​លាក់​ភាគ គូស​ធីក​ប្រអប់ <emph>លាក់</emph> នៅ​ក្នុង​ផ្ទៃ <emph>លាក់</emph> ។"
+#. EhAMG
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"bm_id421641501464020\n"
+"help.text"
+msgid "<bookmark_value>Read-only contents;editing</bookmark_value> <bookmark_value>Protect section;removing</bookmark_value>"
+msgstr ""
+
+#. wq7EM
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"hd_id641641501024846\n"
+"help.text"
+msgid "Editing Read-Only Contents"
+msgstr ""
+
+#. An8Bs
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"par_id841641501075965\n"
+"help.text"
+msgid "A warning message is displayed if you try to edit protected sections."
+msgstr ""
+
+#. kWUgB
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"par_id531641501248838\n"
+"help.text"
+msgid "To remove protection of a section, do the following:"
+msgstr ""
+
+#. DNpWC
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"par_id681641501272982\n"
+"help.text"
+msgid "Choose <link href=\"text/swriter/01/02170000.xhp\" name=\"Format - Sections\"><menuitem>Format - Sections</menuitem></link>."
+msgstr ""
+
+#. R2vBj
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"par_id861641501273184\n"
+"help.text"
+msgid "Select the section to unprotect in the <menuitem>Section</menuitem> area of the dialog."
+msgstr ""
+
+#. Zy4Tm
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"par_id221641501273326\n"
+"help.text"
+msgid "Uncheck the <menuitem>Protect</menuitem> option in the <menuitem>Write Protection</menuitem> area of the dialog."
+msgstr ""
+
+#. XcjAs
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"par_id791641501273494\n"
+"help.text"
+msgid "If the section was protected with a non-empty password, type the password into the dialog that opens."
+msgstr ""
+
+#. kvpGE
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"par_id561641501273767\n"
+"help.text"
+msgid "Click <menuitem>OK</menuitem> ."
+msgstr ""
+
#. sYLAE
#: section_edit.xhp
msgctxt ""
diff --git a/source/km/officecfg/registry/data/org/openoffice/Office/UI.po b/source/km/officecfg/registry/data/org/openoffice/Office/UI.po
index ee6667c16c1..30cf8e7faf9 100644
--- a/source/km/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/km/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: UI\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -767,15 +767,15 @@ msgctxt ""
msgid "Euro Converter"
msgstr "កម្មវិធី​បម្លែង​​អឺរ៉ូ"
-#. D3zQx
+#. X39jj
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:InsertExternalDataSource\n"
"Label\n"
"value.text"
-msgid "Link to E~xternal Data..."
-msgstr "ភ្ជាប់​ទៅ​ទិន្នន័យ​ខាង​ក្រៅ..."
+msgid "E~xternal Links..."
+msgstr ""
#. FTLfZ
#: CalcCommands.xcu
@@ -9022,14 +9022,14 @@ msgctxt ""
msgid "Duplicat~e..."
msgstr "ស្ទួន..."
-#. 9TAPb
+#. VJJa2
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ManageLinks\n"
"Label\n"
"value.text"
-msgid "Lin~ks to External Files..."
+msgid "E~xternal Links..."
msgstr ""
#. pQhVJ
@@ -20365,15 +20365,25 @@ msgctxt ""
msgid "Symmetric Transition"
msgstr "ដំណើរ​ផ្លាស់ប្តូរ​ស៊ីមេទ្រី"
-#. FvNAo
+#. nPvhF
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineUp\n"
"Label\n"
"value.text"
+msgid "Move Chapter Up"
+msgstr ""
+
+#. CHC2r
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:OutlineUp\n"
+"ContextLabel\n"
+"value.text"
msgid "Move Up"
-msgstr "​ឡើង​​លើ​"
+msgstr ""
#. GvBYt
#: GenericCommands.xcu
@@ -20385,15 +20395,25 @@ msgctxt ""
msgid "~New"
msgstr "ថ្មី​ "
-#. E8Ykn
+#. t4qfE
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineDown\n"
"Label\n"
"value.text"
+msgid "Move Chapter Down"
+msgstr ""
+
+#. hYLDF
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:OutlineDown\n"
+"ContextLabel\n"
+"value.text"
msgid "Move Down"
-msgstr "​​ចុះ​ក្រោម​"
+msgstr ""
#. KQLPA
#: GenericCommands.xcu
@@ -20406,15 +20426,25 @@ msgctxt ""
msgid "Save as Template..."
msgstr "រក្សាពុម្ព​ទុក​ជា..."
-#. 8gaKv
+#. efUAk
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineLeft\n"
"Label\n"
"value.text"
+msgid "Promote Outline Level"
+msgstr ""
+
+#. n96ay
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:OutlineLeft\n"
+"ContextLabel\n"
+"value.text"
msgid "Promote"
-msgstr "បង្កើន"
+msgstr ""
#. 3WakF
#: GenericCommands.xcu
@@ -20457,15 +20487,25 @@ msgctxt ""
msgid "Styles"
msgstr ""
-#. ptyRB
+#. GHcUh
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineRight\n"
"Label\n"
"value.text"
+msgid "Demote Outline Level"
+msgstr ""
+
+#. kQBif
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:OutlineRight\n"
+"ContextLabel\n"
+"value.text"
msgid "Demote"
-msgstr "បន្ថយ"
+msgstr ""
#. BoAR5
#: GenericCommands.xcu
@@ -26107,6 +26147,16 @@ msgctxt ""
msgid "Character Font Effects..."
msgstr "បែបផែន​ពុម្ព​តួអក្សរ..."
+#. pLRpL
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:FontPositionDialog\n"
+"Label\n"
+"value.text"
+msgid "Character Font Position..."
+msgstr ""
+
#. fZufx
#: GenericCommands.xcu
msgctxt ""
@@ -27229,6 +27279,16 @@ msgctxt ""
msgid "Inspect Object"
msgstr ""
+#. WxZYJ
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:GraphicSizeCheck\n"
+"Label\n"
+"value.text"
+msgid "Graphic Size Check..."
+msgstr ""
+
#. ACwaJ
#: GenericCommands.xcu
msgctxt ""
@@ -32436,14 +32496,14 @@ msgctxt ""
msgid "Edit F~ields..."
msgstr ""
-#. rtChw
+#. U9LvE
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:LinkDialog\n"
"Label\n"
"value.text"
-msgid "Lin~ks to External Files..."
+msgid "E~xternal Links..."
msgstr ""
#. PCFhM
@@ -33103,15 +33163,15 @@ msgctxt ""
msgid "To Document End"
msgstr "ទៅ​​ចុង​​ឯកសារ"
-#. EAxKC
+#. hMGS8
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:DecrementLevel\n"
"Label\n"
"value.text"
-msgid "Demote One Level"
-msgstr "បន្ថយ​មួយ​កម្រិត"
+msgid "Demote Outline Level"
+msgstr ""
#. jzcmc
#: WriterCommands.xcu
@@ -33123,15 +33183,15 @@ msgctxt ""
msgid "To Begin of Next Page"
msgstr "ទៅ​ដើម​​ទំព័រ​បន្ទាប់"
-#. jiaba
+#. eZphP
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:IncrementLevel\n"
"Label\n"
"value.text"
-msgid "Promote One Level"
-msgstr "បង្កើន​មួយ​កម្រិត"
+msgid "Promote Outline Level"
+msgstr ""
#. MdLME
#: WriterCommands.xcu
@@ -33183,15 +33243,15 @@ msgctxt ""
msgid "To Next Paragraph in Level"
msgstr "ទៅ​កថាខណ្ឌ​បន្ទាប់​ក្នុង​កម្រិត"
-#. BpwAo
+#. TvA2G
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:MoveUp\n"
"Label\n"
"value.text"
-msgid "Move Up"
-msgstr "​ឡើង​​លើ​"
+msgid "Move Chapter Up"
+msgstr ""
#. F6Rc7
#: WriterCommands.xcu
@@ -33203,15 +33263,15 @@ msgctxt ""
msgid "To End of Previous Page"
msgstr "ទៅ​ចុង​ទំព័រ​មុន"
-#. 5YLwj
+#. HejPY
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:MoveDown\n"
"Label\n"
"value.text"
-msgid "Move Down"
-msgstr "​​ចុះ​ក្រោម​"
+msgid "Move Chapter Down"
+msgstr ""
#. 2GyQ4
#: WriterCommands.xcu
@@ -33273,15 +33333,15 @@ msgctxt ""
msgid "To Column Begin"
msgstr "ទៅ​ដើម​ជួរឈរ"
-#. FQFxr
+#. GBEu9
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:DecrementSubLevels\n"
"Label\n"
"value.text"
-msgid "Demote One Level With Subpoints"
-msgstr "ផ្លាស់ទី​ចុះ​ក្រោម​ជាមួយ​ចំណុច​រង"
+msgid "Demote Outline Level With Subpoints"
+msgstr ""
#. 8u4SF
#: WriterCommands.xcu
@@ -33293,25 +33353,25 @@ msgctxt ""
msgid "To Column End"
msgstr "ទៅ​ចុង​ជួរឈរ"
-#. AA2SC
+#. 2QM7T
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:IncrementSubLevels\n"
"Label\n"
"value.text"
-msgid "Promote One Level With Subpoints"
-msgstr "ផ្លាស់ទី​ឡើង​លើ​ជាមួយ​ចំណុច​រង"
+msgid "Promote Outline Level With Subpoints"
+msgstr ""
-#. ATXQw
+#. CdP3b
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:MoveUpSubItems\n"
"Label\n"
"value.text"
-msgid "Move Up with Subpoints"
-msgstr "ផ្លាស់ទី​ឡើង​លើ​ជាមួយ​ចំណុច​រង"
+msgid "Move Chapter Up with Subpoints"
+msgstr ""
#. GCegb
#: WriterCommands.xcu
@@ -33323,15 +33383,15 @@ msgctxt ""
msgid "To Paragraph Begin"
msgstr "ទៅ​ដើម​កថាខណ្ឌ"
-#. TtCUR
+#. oDmqR
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:MoveDownSubItems\n"
"Label\n"
"value.text"
-msgid "Move Down with Subpoints"
-msgstr "ផ្លាស់ទី​ចុះ​ក្រោម​ជាមួយ​ចំណុច​រង"
+msgid "Move Chapter Down with Subpoints"
+msgstr ""
#. JF2Ui
#: WriterCommands.xcu
diff --git a/source/km/reportdesign/messages.po b/source/km/reportdesign/messages.po
index 3a85c8d2243..67b0565f73e 100644
--- a/source/km/reportdesign/messages.po
+++ b/source/km/reportdesign/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-16 12:09+0100\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2018-01-15 20:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,173 +17,173 @@ msgstr ""
"X-POOTLE-MTIME: 1516047933.000000\n"
#. FBVr9
-#: reportdesign/inc/stringarray.hrc:17
+#: reportdesign/inc/stringarray.hrc:19
msgctxt "RID_STR_FORCENEWPAGE_CONST"
msgid "None"
msgstr "គ្មាន"
#. 2VDzY
-#: reportdesign/inc/stringarray.hrc:18
+#: reportdesign/inc/stringarray.hrc:20
#, fuzzy
msgctxt "RID_STR_FORCENEWPAGE_CONST"
msgid "Before Section"
msgstr "មុន​ផ្នែក"
#. BBUjQ
-#: reportdesign/inc/stringarray.hrc:19
+#: reportdesign/inc/stringarray.hrc:21
#, fuzzy
msgctxt "RID_STR_FORCENEWPAGE_CONST"
msgid "After Section"
msgstr "បន្ទាប់​ពី​ផ្នែក"
#. FjE6T
-#: reportdesign/inc/stringarray.hrc:20
+#: reportdesign/inc/stringarray.hrc:22
#, fuzzy
msgctxt "RID_STR_FORCENEWPAGE_CONST"
msgid "Before & After Section"
msgstr "មុន និង​បន្ទាប់​ពី​ផ្នែក"
#. FiMq7
-#: reportdesign/inc/stringarray.hrc:26
+#: reportdesign/inc/stringarray.hrc:28
#, fuzzy
msgctxt "RID_STR_GROUPKEEPTOGETHER_CONST"
msgid "Per Page"
msgstr "ក្នុង​មួយ​ទំព័រ"
#. zemtQ
-#: reportdesign/inc/stringarray.hrc:27
+#: reportdesign/inc/stringarray.hrc:29
#, fuzzy
msgctxt "RID_STR_GROUPKEEPTOGETHER_CONST"
msgid "Per Column"
msgstr "ក្នុង​មួយ​ជួរ​ឈរ"
#. PCk4E
-#: reportdesign/inc/stringarray.hrc:33
+#: reportdesign/inc/stringarray.hrc:35
#, fuzzy
msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
msgid "All Pages"
msgstr "ទំព័រ​ទាំងអស់"
#. GvoGV
-#: reportdesign/inc/stringarray.hrc:34
+#: reportdesign/inc/stringarray.hrc:36
#, fuzzy
msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
msgid "Not With Report Header"
msgstr "បញ្ចូល​បឋមកថា/បាតកថា​របាយការណ៍"
#. wchYh
-#: reportdesign/inc/stringarray.hrc:35
+#: reportdesign/inc/stringarray.hrc:37
#, fuzzy
msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
msgid "Not With Report Footer"
msgstr "បញ្ចូល​បឋមកថា/បាតកថា​របាយការណ៍"
#. uvfAP
-#: reportdesign/inc/stringarray.hrc:36
+#: reportdesign/inc/stringarray.hrc:38
#, fuzzy
msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
msgid "Not With Report Header/Footer"
msgstr "បញ្ចូល​បឋមកថា/បាតកថា​របាយការណ៍"
#. ZC2oS
-#: reportdesign/inc/stringarray.hrc:42
+#: reportdesign/inc/stringarray.hrc:44
#, fuzzy
msgctxt "RID_STR_TYPE_CONST"
msgid "Field or Formula"
msgstr "វាល ឬ​រូបមន្ត"
#. gU579
-#: reportdesign/inc/stringarray.hrc:43
+#: reportdesign/inc/stringarray.hrc:45
#, fuzzy
msgctxt "RID_STR_TYPE_CONST"
msgid "Function"
msgstr "មុខងារ"
#. BG2gK
-#: reportdesign/inc/stringarray.hrc:44
+#: reportdesign/inc/stringarray.hrc:46
msgctxt "RID_STR_TYPE_CONST"
msgid "Counter"
msgstr "ច្រាស"
#. kGCKF
-#: reportdesign/inc/stringarray.hrc:45
+#: reportdesign/inc/stringarray.hrc:47
#, fuzzy
msgctxt "RID_STR_TYPE_CONST"
msgid "User defined Function"
msgstr "អនុគមន៍​ដែល​បាន​កំណត់​ដោយ​អ្នកប្រើ"
#. BBiHn
-#: reportdesign/inc/stringarray.hrc:51
+#: reportdesign/inc/stringarray.hrc:53
msgctxt "RID_STR_BOOL"
msgid "No"
msgstr "ទេ"
#. rdPYV
-#: reportdesign/inc/stringarray.hrc:52
+#: reportdesign/inc/stringarray.hrc:54
#, fuzzy
msgctxt "RID_STR_BOOL"
msgid "Yes"
msgstr "បាទ/ចាស"
#. xUuqy
-#: reportdesign/inc/stringarray.hrc:58
+#: reportdesign/inc/stringarray.hrc:60
msgctxt "RID_STR_KEEPTOGETHER_CONST"
msgid "No"
msgstr "ទេ"
#. TDvKY
-#: reportdesign/inc/stringarray.hrc:59
+#: reportdesign/inc/stringarray.hrc:61
#, fuzzy
msgctxt "RID_STR_KEEPTOGETHER_CONST"
msgid "Whole Group"
msgstr "ក្រុម​ទាំងមូល"
#. Hc5De
-#: reportdesign/inc/stringarray.hrc:60
+#: reportdesign/inc/stringarray.hrc:62
#, fuzzy
msgctxt "RID_STR_KEEPTOGETHER_CONST"
msgid "With First Detail"
msgstr "ដោយមាន​សេចក្ដី​លម្អិត​ដំបូង"
#. k2yjS
-#: reportdesign/inc/stringarray.hrc:66
+#: reportdesign/inc/stringarray.hrc:68
msgctxt "RID_STR_VERTICAL_ALIGN_CONST"
msgid "Top"
msgstr "កំពូល"
#. VuRdH
-#: reportdesign/inc/stringarray.hrc:67
+#: reportdesign/inc/stringarray.hrc:69
msgctxt "RID_STR_VERTICAL_ALIGN_CONST"
msgid "Middle"
msgstr "កណ្ដាល"
#. 9LAvS
-#: reportdesign/inc/stringarray.hrc:68
+#: reportdesign/inc/stringarray.hrc:70
msgctxt "RID_STR_VERTICAL_ALIGN_CONST"
msgid "Bottom"
msgstr "បាត"
#. fTFRa
-#: reportdesign/inc/stringarray.hrc:74
+#: reportdesign/inc/stringarray.hrc:76
msgctxt "RID_STR_PARAADJUST_CONST"
msgid "Left"
msgstr "ឆ្វេង"
#. 5nFGk
-#: reportdesign/inc/stringarray.hrc:75
+#: reportdesign/inc/stringarray.hrc:77
msgctxt "RID_STR_PARAADJUST_CONST"
msgid "Right"
msgstr "ស្ដាំ"
#. Cvi3X
-#: reportdesign/inc/stringarray.hrc:76
+#: reportdesign/inc/stringarray.hrc:78
#, fuzzy
msgctxt "RID_STR_PARAADJUST_CONST"
msgid "Block"
msgstr "ទប់ស្កាត់"
#. zsB3C
-#: reportdesign/inc/stringarray.hrc:77
+#: reportdesign/inc/stringarray.hrc:79
msgctxt "RID_STR_PARAADJUST_CONST"
msgid "Center"
msgstr "កណ្ដាល"
diff --git a/source/km/sc/messages.po b/source/km/sc/messages.po
index 3767da666bd..28f28027e85 100644
--- a/source/km/sc/messages.po
+++ b/source/km/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1239,12 +1239,12 @@ msgctxt "STR_LONG_ERR_DIV_ZERO"
msgid "Error: Division by zero"
msgstr "កំហុស ៖ ចែក​ដោយ​សូន្យ"
-#. 9y5GD
+#. zznA7
#. ERROR.TYPE( #VALUE! ) == 3
#: sc/inc/globstr.hrc:219
msgctxt "STR_LONG_ERR_NO_VALUE"
-msgid "Error: Wrong data type"
-msgstr "កំហុស ៖ ប្រភេទ​ទិន្នន័យមិនត្រឹមត្រូវ"
+msgid "Error: No value"
+msgstr ""
#. kHwc6
#. ERROR.TYPE( #REF! ) == 4
@@ -16919,668 +16919,674 @@ msgctxt "SCSTR_TOP10FILTER"
msgid "Top 10"
msgstr "១០ កំពូល"
-#. FNDLK
+#. FGEna
#: sc/inc/strings.hrc:36
+msgctxt "SCSTR_BOTTOM10FILTER"
+msgid "Bottom 10"
+msgstr ""
+
+#. FNDLK
+#: sc/inc/strings.hrc:37
msgctxt "SCSTR_FILTER_EMPTY"
msgid "Empty"
msgstr "ទទេ"
#. EsQtb
-#: sc/inc/strings.hrc:37
+#: sc/inc/strings.hrc:38
msgctxt "SCSTR_FILTER_NOTEMPTY"
msgid "Not Empty"
msgstr "មិន​ទទេ"
+#. iWBcu
+#: sc/inc/strings.hrc:39
+msgctxt "SCSTR_FILTER_COLOR"
+msgid "Filter by Color"
+msgstr ""
+
+#. EYFT8
+#: sc/inc/strings.hrc:40
+msgctxt "SCSTR_FILTER_CONDITION"
+msgid "Filter by Condition"
+msgstr ""
+
#. 5LENV
-#: sc/inc/strings.hrc:38
+#: sc/inc/strings.hrc:41
msgctxt "SCSTR_FILTER_TEXT_COLOR"
msgid "Text Color"
msgstr ""
#. BtGE4
-#: sc/inc/strings.hrc:39
+#: sc/inc/strings.hrc:42
msgctxt "SCSTR_FILTER_BACKGROUND_COLOR"
msgid "Background Color"
msgstr ""
#. td5Gr
#. This must match the translation of the same strings of standardfilterdialog|cond
-#: sc/inc/strings.hrc:41
+#: sc/inc/strings.hrc:44
msgctxt "STANDARDFILTERDIALOG_COND"
msgid "Text color"
msgstr ""
#. sGJCz
-#: sc/inc/strings.hrc:42
+#: sc/inc/strings.hrc:45
msgctxt "STANDARDFILTERDIALOG_COND"
msgid "Background color"
msgstr ""
#. teYGB
-#: sc/inc/strings.hrc:43
+#: sc/inc/strings.hrc:46
msgctxt "SCSTR_FILTER_NO_FILL"
msgid "No Fill"
msgstr ""
#. 8DPvA
-#: sc/inc/strings.hrc:44
+#: sc/inc/strings.hrc:47
msgctxt "SCSTR_FILTER_AUTOMATIC_COLOR"
msgid "Automatic"
msgstr ""
#. Wgy7r
-#: sc/inc/strings.hrc:45
+#: sc/inc/strings.hrc:48
msgctxt "SCSTR_NONAME"
msgid "unnamed"
msgstr "គ្មាន​ឈ្មោះ"
#. JAf3n
-#: sc/inc/strings.hrc:46
+#: sc/inc/strings.hrc:49
msgctxt "SCSTR_INSERT_RTL"
msgid "Shift cells left"
msgstr ""
#. cZNeR
#. "%1 is replaced to column letter, such as 'Column A'"
-#: sc/inc/strings.hrc:48
+#: sc/inc/strings.hrc:51
msgctxt "SCSTR_COLUMN"
msgid "Column %1"
msgstr "ជួរ​ឈរ"
#. NXxyc
#. "%1 is replaced to row number, such as 'Row 1'"
-#: sc/inc/strings.hrc:50
+#: sc/inc/strings.hrc:53
msgctxt "SCSTR_ROW"
msgid "Row %1"
msgstr "ជួរដេក %1"
#. 7p8BN
-#: sc/inc/strings.hrc:51
+#: sc/inc/strings.hrc:54
msgctxt "SCSTR_TABLE"
msgid "Sheet"
msgstr "សន្លឹក"
#. ArnTD
-#: sc/inc/strings.hrc:52
+#: sc/inc/strings.hrc:55
msgctxt "SCSTR_NAME"
msgid "Name"
msgstr "ឈ្មោះ"
#. BxrBH
-#: sc/inc/strings.hrc:53
+#: sc/inc/strings.hrc:56
msgctxt "SCSTR_APDTABLE"
msgid "Append Sheet"
msgstr "បន្ថែម​ខាង​ចុង​សន្លឹក"
#. sba4F
-#: sc/inc/strings.hrc:54
+#: sc/inc/strings.hrc:57
msgctxt "SCSTR_RENAMETAB"
msgid "Rename Sheet"
msgstr "ប្តូរ​ឈ្មោះ​សន្លឹក"
#. EEcgV
-#: sc/inc/strings.hrc:55
+#: sc/inc/strings.hrc:58
msgctxt "SCSTR_SET_TAB_BG_COLOR"
msgid "Tab Color"
msgstr "ពណ៌​ផ្ទាំង"
#. sTank
-#: sc/inc/strings.hrc:56
+#: sc/inc/strings.hrc:59
msgctxt "SCSTR_NO_TAB_BG_COLOR"
msgid "Default"
msgstr "លំនាំដើម"
#. yEEuF
-#: sc/inc/strings.hrc:57
+#: sc/inc/strings.hrc:60
msgctxt "SCSTR_RENAMEOBJECT"
msgid "Name Object"
msgstr "ដាក់​ឈ្មោះ​វត្ថុ"
#. 3FHKw
-#: sc/inc/strings.hrc:58
+#: sc/inc/strings.hrc:61
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "បញ្ចូល​រូបភាព"
#. bKv77
-#: sc/inc/strings.hrc:59
+#: sc/inc/strings.hrc:62
msgctxt "SCSTR_TOTAL"
msgid "One result found"
msgid_plural "%1 results found"
msgstr[0] ""
#. 7GkKi
-#: sc/inc/strings.hrc:60
+#: sc/inc/strings.hrc:63
msgctxt "SCSTR_SKIPPED"
msgid "(only %1 are listed)"
msgstr ""
#. YxFpr
#. Attribute
-#: sc/inc/strings.hrc:62
+#: sc/inc/strings.hrc:65
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Spreadsheet Structure"
msgstr ""
#. SQCpD
-#: sc/inc/strings.hrc:63
+#: sc/inc/strings.hrc:66
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect Spreadsheet Structure"
msgstr ""
#. rAV3G
-#: sc/inc/strings.hrc:64
+#: sc/inc/strings.hrc:67
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect Sheet"
msgstr ""
#. K7w3B
-#: sc/inc/strings.hrc:65
+#: sc/inc/strings.hrc:68
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr "ការ​ពារ​កំណត់​ត្រា"
#. DLDBg
-#: sc/inc/strings.hrc:66
+#: sc/inc/strings.hrc:69
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr "មិនការពារ​កំណត់ត្រា"
#. rFdAS
-#: sc/inc/strings.hrc:67
+#: sc/inc/strings.hrc:70
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "ពាក្យ​សម្ងាត់ ៖"
#. dd2wC
-#: sc/inc/strings.hrc:68
+#: sc/inc/strings.hrc:71
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr "ពាក្យ​សម្ងាត់ (ជម្រើស) ៖"
#. dTBug
-#: sc/inc/strings.hrc:69
+#: sc/inc/strings.hrc:72
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "ពាក្យ​សម្ងាត់​មិន​ត្រឹមត្រូវ"
#. bkGuJ
-#: sc/inc/strings.hrc:70
+#: sc/inc/strings.hrc:73
msgctxt "SCSTR_END"
msgid "~End"
msgstr "បញ្ចប់ "
#. XNnTf
-#: sc/inc/strings.hrc:71
+#: sc/inc/strings.hrc:74
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "មិន​ស្គាល់"
#. NoEfk
-#: sc/inc/strings.hrc:72
+#: sc/inc/strings.hrc:75
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr "អប្បបរមា "
#. gKahz
-#: sc/inc/strings.hrc:73
+#: sc/inc/strings.hrc:76
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr "អតិបរមា "
#. nmeHF
-#: sc/inc/strings.hrc:74
+#: sc/inc/strings.hrc:77
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "តម្លៃ "
#. g8Cow
-#: sc/inc/strings.hrc:75
+#: sc/inc/strings.hrc:78
msgctxt "SCSTR_VALID_FORMULA"
msgid "~Formula"
msgstr ""
#. 6YEEk
-#: sc/inc/strings.hrc:76
+#: sc/inc/strings.hrc:79
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr "ប្រភព "
#. FA84s
-#: sc/inc/strings.hrc:77
+#: sc/inc/strings.hrc:80
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr "ធាតុ "
#. vhcaA
#. for dialogues:
-#: sc/inc/strings.hrc:79
+#: sc/inc/strings.hrc:82
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr "ប្រព័ន្ធ"
#. 2tobg
-#: sc/inc/strings.hrc:80
+#: sc/inc/strings.hrc:83
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr "ស្តង់ដារ;អត្ថបទ;កាលបរិច្ឆេទ (DMY);កាលបរិច្ឆេទ (MDY);កាលបរិច្ឆេទ (YMD);អង់គ្លេស-អាមេរិក;លាក់"
#. px75F
-#: sc/inc/strings.hrc:81
+#: sc/inc/strings.hrc:84
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr "ថេប"
#. ZGpGp
-#: sc/inc/strings.hrc:82
+#: sc/inc/strings.hrc:85
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr "ចន្លោះ"
-#. xiSEb
-#: sc/inc/strings.hrc:83
-msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
-msgid ""
-"%PRODUCTNAME Calc found an error in the formula entered.\n"
-"Do you want to accept the correction proposed below?\n"
-"\n"
-msgstr ""
-"%PRODUCTNAME Calc រកឃើញ​កំហុស​នៅ​ក្នុង​រូបមន្ត​ដែល​បាន​បញ្ចូល ។\n"
-"តើ​អ្នក​ចង់​ទទួល​យក​ការ​កែរ​ដែល​បានស្នើ​ខាង​ក្រោម​ឬទេ ។\n"
-"\n"
-
#. C8dAj
-#: sc/inc/strings.hrc:84
+#: sc/inc/strings.hrc:86
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr "តម្រង​រូបភាព"
#. CfBRk
-#: sc/inc/strings.hrc:85
+#: sc/inc/strings.hrc:87
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr "អត្ថបទ"
#. X6bVC
#. Select tables dialog title
-#: sc/inc/strings.hrc:87
+#: sc/inc/strings.hrc:89
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr "ជ្រើស​សន្លឹក​"
#. SEDS2
#. Select tables dialog listbox
-#: sc/inc/strings.hrc:89
+#: sc/inc/strings.hrc:91
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr " សន្លឹក​ដែល​បាន​ជ្រើស"
#. SfEhE
-#: sc/inc/strings.hrc:90
+#: sc/inc/strings.hrc:92
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr "បន្ទាត់"
#. 3VwsT
-#: sc/inc/strings.hrc:91
+#: sc/inc/strings.hrc:93
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr "បន្ទាត់​នេះ​គ្រប់គ្រង​វត្ថុ​នៅ​ទីតាំង​ដែល​ថេរ ។"
#. 7Ream
-#: sc/inc/strings.hrc:92
+#: sc/inc/strings.hrc:94
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "មើលជា​មុន"
#. uSKyF
-#: sc/inc/strings.hrc:93
+#: sc/inc/strings.hrc:95
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr "សន្លឹក​នេះ​បង្ហាញ​វិធី​ដែល​ទិន្នន័យ​នឹង​ត្រូវ​បាន​រៀបចំ​នៅ​ក្នុង​ឯកសារ ។"
#. MwTAm
-#: sc/inc/strings.hrc:94
+#: sc/inc/strings.hrc:96
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr "ទិដ្ឋភាព​ឯកសារ"
#. NFaas
-#: sc/inc/strings.hrc:95
+#: sc/inc/strings.hrc:97
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr "សន្លឹក %1"
#. 2qRJG
-#: sc/inc/strings.hrc:96
+#: sc/inc/strings.hrc:98
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr "ក្រឡា %1"
#. KD4PA
-#: sc/inc/strings.hrc:97
+#: sc/inc/strings.hrc:99
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr "ផ្ទៃ​ឆ្វេង"
#. 56AkM
-#: sc/inc/strings.hrc:98
+#: sc/inc/strings.hrc:100
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr "មើល​ទំព័រ​ជា​មុន"
#. RA4AS
-#: sc/inc/strings.hrc:99
+#: sc/inc/strings.hrc:101
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr "ផ្ទៃ​កណ្ដាល"
#. 2hpwq
-#: sc/inc/strings.hrc:100
+#: sc/inc/strings.hrc:102
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr "ផ្ទៃ​ត្រឹមត្រូវ"
#. FrXgq
-#: sc/inc/strings.hrc:101
+#: sc/inc/strings.hrc:103
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr "បឋមកថា​របស់​ទំព័រ %1"
#. BwF8D
-#: sc/inc/strings.hrc:102
+#: sc/inc/strings.hrc:104
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr "បាតកថា​របស់ទំព័រ %1"
#. 9T4c8
-#: sc/inc/strings.hrc:103
+#: sc/inc/strings.hrc:105
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr "បញ្ចូល​បន្ទាត់"
#. ejFak
-#: sc/inc/strings.hrc:104
+#: sc/inc/strings.hrc:106
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "នេះ​ជា​កន្លែង​ដែលអ្នក​បញ្ចូល ឬ​កែសម្រួល​អត្ថបទ លេខ​ និង​រូបមន្ត ។"
#. XX585
-#: sc/inc/strings.hrc:105
+#: sc/inc/strings.hrc:107
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr "ចាក់មេឌៀ​ឡើង​វិញ"
#. SuAaA
-#: sc/inc/strings.hrc:106
+#: sc/inc/strings.hrc:108
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr "បាន​ចុច​ប៊ូតុង​កណ្ដុរ"
#. 4prfv
-#: sc/inc/strings.hrc:107
+#: sc/inc/strings.hrc:109
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "របារ​ឧបករណ៍​រូបមន្ត"
#. nAcNZ
-#: sc/inc/strings.hrc:108
+#: sc/inc/strings.hrc:110
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr "សៀវភៅ​បញ្ជី %PRODUCTNAME"
#. 8UMap
-#: sc/inc/strings.hrc:109
+#: sc/inc/strings.hrc:111
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr "(បាន​តែ​អាន)"
#. fDxgL
-#: sc/inc/strings.hrc:110
+#: sc/inc/strings.hrc:112
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr "(របៀប​មើល​ជាមុន)"
#. ZwiH6
-#: sc/inc/strings.hrc:111
+#: sc/inc/strings.hrc:113
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages:"
msgstr ""
#. FYjDY
-#: sc/inc/strings.hrc:112
+#: sc/inc/strings.hrc:114
#, fuzzy
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr "លាក់​ការ​បង្ហាញ​ទំព័រ​ទទេ"
#. GQNVf
-#: sc/inc/strings.hrc:113
+#: sc/inc/strings.hrc:115
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "Print All Sheets"
msgstr ""
#. xcKcm
-#: sc/inc/strings.hrc:114
+#: sc/inc/strings.hrc:116
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "Print Selected Sheets"
msgstr ""
#. e7kTj
-#: sc/inc/strings.hrc:115
+#: sc/inc/strings.hrc:117
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Print Selected Cells"
msgstr ""
#. z4DB6
-#: sc/inc/strings.hrc:116
+#: sc/inc/strings.hrc:118
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
msgstr ""
#. v5EK2
-#: sc/inc/strings.hrc:117
+#: sc/inc/strings.hrc:119
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
msgid "All ~Pages"
msgstr ""
#. cvNuW
-#: sc/inc/strings.hrc:118
+#: sc/inc/strings.hrc:120
msgctxt "SCSTR_PRINTOPT_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. Pw9Pu
-#: sc/inc/strings.hrc:119
+#: sc/inc/strings.hrc:121
#, fuzzy
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME Calc"
#. 4BEKq
-#: sc/inc/strings.hrc:120
+#: sc/inc/strings.hrc:122
msgctxt "SCSTR_DDEDOC_NOT_LOADED"
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
msgstr "មិន​អាច​ធ្វើ​បច្ចុប្បន្នភាព​ប្រភព DDE ដូច​ខាងក្រោម​បាន​ទេ អាច​ដោយសារតែ​ឯកសារ​ប្រភព​មិន​ត្រូវ​បាន​បើក ។ សូម​បើក​ដំណើរការ​ឯកសារ​ប្រភព ហើយ​ព្យាយាម​ម្ដងទៀត ។"
#. kGmko
-#: sc/inc/strings.hrc:121
+#: sc/inc/strings.hrc:123
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr "មិន​អាច​ផ្ទុក​ឯកសារ​ក្រៅ​ដូច​ខាងក្រោម​បាន​ទេ ។ ទិន្នន័យ​ដែល​ភ្ជាប់​ពី​ឯកសារ​នេះ មិន​ត្រូវ​បាន​ធ្វើ​បច្ចុប្បន្នភាព​ទេ ។"
#. BvtFc
-#: sc/inc/strings.hrc:122
+#: sc/inc/strings.hrc:124
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr "ធ្វើ​បច្ចុប្បន្នភាព​តំណ​ខាងក្រៅ។"
#. MACSv
-#: sc/inc/strings.hrc:123
+#: sc/inc/strings.hrc:125
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr "Calc A1"
#. xEQCB
-#: sc/inc/strings.hrc:124
+#: sc/inc/strings.hrc:126
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr "Excel A1"
#. KLkBH
-#: sc/inc/strings.hrc:125
+#: sc/inc/strings.hrc:127
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr "Excel R1C1"
#. pr4wW
-#: sc/inc/strings.hrc:126
+#: sc/inc/strings.hrc:128
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr "ជួរ​មាន​ស្លាកជួរឈរ"
#. mJyFP
-#: sc/inc/strings.hrc:127
+#: sc/inc/strings.hrc:129
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr "ជួរ​មាន​ស្លាក​ជួរ​ដេក"
#. ujjcx
-#: sc/inc/strings.hrc:128
+#: sc/inc/strings.hrc:130
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "តម្លៃ​មិន​ត្រឹមត្រូវ"
#. SoLXN
-#: sc/inc/strings.hrc:129
+#: sc/inc/strings.hrc:131
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr "គ្មាន​រូបមន្ត​បាន​បញ្ជាក់។"
#. YFnCS
-#: sc/inc/strings.hrc:130
+#: sc/inc/strings.hrc:132
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr "បញ្ជាក់​ជួរដេក ឬ​ជួរឈរ។"
#. 6YQh2
-#: sc/inc/strings.hrc:131
+#: sc/inc/strings.hrc:133
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr "មិន​បាន​បញ្ជាក់​ឈ្មោះ ឬ​ជួរ។"
#. 4aHCG
-#: sc/inc/strings.hrc:132
+#: sc/inc/strings.hrc:134
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr ""
#. G8KPr
-#: sc/inc/strings.hrc:133
+#: sc/inc/strings.hrc:135
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr ""
#. uSxCb
-#: sc/inc/strings.hrc:134
+#: sc/inc/strings.hrc:136
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr ""
#. PknB5
-#: sc/inc/strings.hrc:135
+#: sc/inc/strings.hrc:137
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "បន្ថែម​ការ​ធ្វើ​​ទ្រង់ទ្រាយ​ស្វ័យប្រវត្តិ"
#. 7KuSQ
-#: sc/inc/strings.hrc:136
+#: sc/inc/strings.hrc:138
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "ប្ដូរ​ឈ្មោះ​ទ្រង់ទ្រាយ​ស្វ័យប្រវត្តិ"
#. hqtgD
-#: sc/inc/strings.hrc:137
+#: sc/inc/strings.hrc:139
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "ឈ្មោះ"
#. L9jQU
-#: sc/inc/strings.hrc:138
+#: sc/inc/strings.hrc:140
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "លុប​ការ​ធ្វើ​ទ្រង់ទ្រាយ​ដោយ​ស្វ័យ​ប្រវត្តិ"
#. KCDoJ
-#: sc/inc/strings.hrc:139
+#: sc/inc/strings.hrc:141
#, fuzzy
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr "តើ​អ្នក​ប្រាកដ​ជា​ចង់​លុប​ការ​ធ្វើ​ទ្រង់ទ្រាយ​ # ដោយ​ស្វ័យប្រវត្តិ​ឬ?"
#. GDdL3
-#: sc/inc/strings.hrc:140
+#: sc/inc/strings.hrc:142
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "បិទ "
#. DAuNm
-#: sc/inc/strings.hrc:141
+#: sc/inc/strings.hrc:143
msgctxt "STR_JAN"
msgid "Jan"
msgstr "មករា​"
#. WWzNg
-#: sc/inc/strings.hrc:142
+#: sc/inc/strings.hrc:144
msgctxt "STR_FEB"
msgid "Feb"
msgstr "កុម្ភៈ​"
#. CCC3U
-#: sc/inc/strings.hrc:143
+#: sc/inc/strings.hrc:145
msgctxt "STR_MAR"
msgid "Mar"
msgstr "មីនា​"
#. cr7Jq
-#: sc/inc/strings.hrc:144
+#: sc/inc/strings.hrc:146
msgctxt "STR_NORTH"
msgid "North"
msgstr "ខាង​ជើង"
#. wHYPw
-#: sc/inc/strings.hrc:145
+#: sc/inc/strings.hrc:147
msgctxt "STR_MID"
msgid "Mid"
msgstr "កណ្ដាល"
#. sxDHC
-#: sc/inc/strings.hrc:146
+#: sc/inc/strings.hrc:148
msgctxt "STR_SOUTH"
msgid "South"
msgstr "ខាង​ត្បូង"
#. CWcdp
-#: sc/inc/strings.hrc:147
+#: sc/inc/strings.hrc:149
msgctxt "STR_SUM"
msgid "Total"
msgstr "សរុប"
#. MMCxb
-#: sc/inc/strings.hrc:148
+#: sc/inc/strings.hrc:150
#, fuzzy
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr "ផ្លាស់​ប្តូរ​យុថ្កា"
#. fFFQ8
-#: sc/inc/strings.hrc:149
+#: sc/inc/strings.hrc:151
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr ""
#. rTGKc
-#: sc/inc/strings.hrc:150
+#: sc/inc/strings.hrc:152
#, fuzzy
msgctxt "SCSTR_CONDITION"
msgid "Condition "
@@ -17588,435 +17594,435 @@ msgstr "លក្ខខណ្ឌ"
#. 56Wmj
#. content description strings are also use d in ScLinkTargetsObj
-#: sc/inc/strings.hrc:153
+#: sc/inc/strings.hrc:155
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
msgstr "មាតិកា"
#. wLN3J
-#: sc/inc/strings.hrc:154
+#: sc/inc/strings.hrc:156
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
msgstr "សន្លឹក"
#. 3ZhJn
-#: sc/inc/strings.hrc:155
+#: sc/inc/strings.hrc:157
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr "ឈ្មោះ​ជួរ"
#. jjQeD
-#: sc/inc/strings.hrc:156
+#: sc/inc/strings.hrc:158
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr "ជួរ​មូលដ្ឋាន​ទិន្នន័យ"
#. kbHfD
-#: sc/inc/strings.hrc:157
+#: sc/inc/strings.hrc:159
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr "រូបភាព"
#. 3imVs
-#: sc/inc/strings.hrc:158
+#: sc/inc/strings.hrc:160
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr "វត្ថុ OLE"
#. T28Cj
-#: sc/inc/strings.hrc:159
+#: sc/inc/strings.hrc:161
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr "មតិយោបល់"
#. 5UcFo
-#: sc/inc/strings.hrc:160
+#: sc/inc/strings.hrc:162
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr "តំបន់​ដែល​​ត​ភ្ជាប់"
#. HzVgF
-#: sc/inc/strings.hrc:161
+#: sc/inc/strings.hrc:163
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr "វត្ថុ​​គំនូរ"
#. sCafb
-#: sc/inc/strings.hrc:162
+#: sc/inc/strings.hrc:164
#, fuzzy
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr "សកម្ម"
#. q6EmB
-#: sc/inc/strings.hrc:163
+#: sc/inc/strings.hrc:165
#, fuzzy
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr "អសកម្ម"
#. Gr6xn
-#: sc/inc/strings.hrc:164
+#: sc/inc/strings.hrc:166
#, fuzzy
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr "លាក់"
#. vnwQr
-#: sc/inc/strings.hrc:165
+#: sc/inc/strings.hrc:167
#, fuzzy
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr "បង្អួច​សកម្ម"
#. yo3cD
-#: sc/inc/strings.hrc:166
+#: sc/inc/strings.hrc:168
#, fuzzy
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr "ឈ្មោះ​​ឆាក​"
#. oWz3B
-#: sc/inc/strings.hrc:167
+#: sc/inc/strings.hrc:169
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr "មតិយោបល់"
#. tNLKD
-#: sc/inc/strings.hrc:169
+#: sc/inc/strings.hrc:171
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr "តម្រៀប​តាម​លំដាប់​​ឡើង"
#. S6kbN
-#: sc/inc/strings.hrc:170
+#: sc/inc/strings.hrc:172
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr "តម្រៀប​តាម​លំដាប់​ចុះ"
#. BDYHo
-#: sc/inc/strings.hrc:171
+#: sc/inc/strings.hrc:173
#, fuzzy
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr "តម្រៀប​ផ្ទាល់ខ្លួន"
#. bpBbA
-#: sc/inc/strings.hrc:173
+#: sc/inc/strings.hrc:175
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr "ប្រអប់​ឈ្មោះ"
#. GeNTF
-#: sc/inc/strings.hrc:174
+#: sc/inc/strings.hrc:176
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr "បញ្ចូល​បន្ទាត់"
#. E6mnF
-#: sc/inc/strings.hrc:175
+#: sc/inc/strings.hrc:177
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr "អ្នក​ជំនួ​យ​ការ​អនុគមន៍"
#. rU6xA
-#: sc/inc/strings.hrc:176
+#: sc/inc/strings.hrc:178
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr "ព្រម​ទទួល"
#. NC6DB
-#: sc/inc/strings.hrc:177
+#: sc/inc/strings.hrc:179
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "បោះបង់"
#. 9JUCF
-#: sc/inc/strings.hrc:178
+#: sc/inc/strings.hrc:180
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Select Function"
msgstr ""
#. kFqE4
-#: sc/inc/strings.hrc:179
+#: sc/inc/strings.hrc:181
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr "រូបមន្ត​ "
#. dPqKq
-#: sc/inc/strings.hrc:180
+#: sc/inc/strings.hrc:182
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr "ពង្រីក​របារ​រូបមន្ត"
#. ENx2Q
-#: sc/inc/strings.hrc:181
+#: sc/inc/strings.hrc:183
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr "វេញ​របារ​ឧបករណ៍"
#. nSD8r
-#: sc/inc/strings.hrc:183
+#: sc/inc/strings.hrc:185
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr "មិនស្គាល់​អ្នកប្រើ"
#. HDiei
-#: sc/inc/strings.hrc:185
+#: sc/inc/strings.hrc:187
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr "ជួរឈរ​ដែល​​បាន​បញ្ចូល"
#. brecA
-#: sc/inc/strings.hrc:186
+#: sc/inc/strings.hrc:188
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr "ជួរដេក​​ដែល​បាន​បញ្ចូល"
#. nBf8B
-#: sc/inc/strings.hrc:187
+#: sc/inc/strings.hrc:189
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr "សន្លឹក​​ដែល​​​បាន​​បញ្ចូល"
#. Td8iF
-#: sc/inc/strings.hrc:188
+#: sc/inc/strings.hrc:190
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr "ជួរ​ឈរ​​ដែល​បាន​លុប"
#. 8Kopo
-#: sc/inc/strings.hrc:189
+#: sc/inc/strings.hrc:191
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr "ជួរ​ដេក​ដែល​បាន​លុប"
#. DynWz
-#: sc/inc/strings.hrc:190
+#: sc/inc/strings.hrc:192
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr "សន្លឹក​ដែល​បាន​លុប"
#. 6f9S9
-#: sc/inc/strings.hrc:191
+#: sc/inc/strings.hrc:193
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr "ជួរ​ដែលផ្លាស់​ទី"
#. UpHkf
-#: sc/inc/strings.hrc:192
+#: sc/inc/strings.hrc:194
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr "មាតិកា​ដែល​បាន​ផ្លាស់​ប្តូរ"
#. cefNw
-#: sc/inc/strings.hrc:193
+#: sc/inc/strings.hrc:195
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr "មាតិកា​ដែល​បាន​ផ្លាស់​ប្តូរ"
#. DcsSq
-#: sc/inc/strings.hrc:194
+#: sc/inc/strings.hrc:196
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr "បាន​ផ្លាស់​ប្តូរ​ជា"
#. naPuN
-#: sc/inc/strings.hrc:195
+#: sc/inc/strings.hrc:197
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "ដើម​"
#. cbtSw
-#: sc/inc/strings.hrc:196
+#: sc/inc/strings.hrc:198
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr "ភាព​​ផ្លាស់ប្តូរ​បាន​​​ច្រានចោល"
#. rGkvk
-#: sc/inc/strings.hrc:197
+#: sc/inc/strings.hrc:199
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr "បាន​ទទួល​យក"
#. FRREF
-#: sc/inc/strings.hrc:198
+#: sc/inc/strings.hrc:200
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr "បាន​ច្រានចោល"
#. bG7Pb
-#: sc/inc/strings.hrc:199
+#: sc/inc/strings.hrc:201
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr "គ្មាន​ធាតុ"
#. i2doZ
-#: sc/inc/strings.hrc:200
+#: sc/inc/strings.hrc:202
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr "<ទទេ​>"
#. dAt5Q
-#: sc/inc/strings.hrc:202
+#: sc/inc/strings.hrc:204
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr "មិនបានការពារ​ទេ"
#. 3TDDs
-#: sc/inc/strings.hrc:203
+#: sc/inc/strings.hrc:205
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr "មិនបានការពារ​ដោយ​ពាក្យ​សម្ងាត់"
#. qBe6G
-#: sc/inc/strings.hrc:204
+#: sc/inc/strings.hrc:206
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr "Hash មិន​ឆបគ្នា"
#. XoAEE
-#: sc/inc/strings.hrc:205
+#: sc/inc/strings.hrc:207
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr "Hash ឆបគ្នា"
#. MHDYB
-#: sc/inc/strings.hrc:206
+#: sc/inc/strings.hrc:208
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr "វាយ​ឡើងវិញ"
#. bFjd9
#. MovingAverageDialog
-#: sc/inc/strings.hrc:209
+#: sc/inc/strings.hrc:211
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr "បន្លាស់ទី​ជា​មធ្យម"
#. ZUkPQ
#. ExponentialSmoothingDialog
-#: sc/inc/strings.hrc:211
+#: sc/inc/strings.hrc:213
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr "អិចស្ប៉ុណង់ស្យែល​រាបស្មើ"
#. LAfqT
#. AnalysisOfVarianceDialog
-#: sc/inc/strings.hrc:213
+#: sc/inc/strings.hrc:215
#, fuzzy
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr "វិភាគ​វ៉ារ្យង់"
#. 8v4W5
-#: sc/inc/strings.hrc:214
+#: sc/inc/strings.hrc:216
msgctxt "STR_LABEL_ANOVA"
msgid "Analysis of Variance (ANOVA)"
msgstr ""
#. NY8WD
-#: sc/inc/strings.hrc:215
+#: sc/inc/strings.hrc:217
#, fuzzy
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr "ANOVA - មួយ​កត្តា"
#. AFnEZ
-#: sc/inc/strings.hrc:216
+#: sc/inc/strings.hrc:218
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr ""
#. hBPGD
-#: sc/inc/strings.hrc:217
+#: sc/inc/strings.hrc:219
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr "ក្រុម"
#. DiUWy
-#: sc/inc/strings.hrc:218
+#: sc/inc/strings.hrc:220
#, fuzzy
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr "រវាង​ក្រុម"
#. fBh3S
-#: sc/inc/strings.hrc:219
+#: sc/inc/strings.hrc:221
#, fuzzy
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr "ជាមួយ​ក្រុម"
#. DFcw4
-#: sc/inc/strings.hrc:220
+#: sc/inc/strings.hrc:222
#, fuzzy
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr "ប្រភព​បម្រែបម្រួល"
#. KYbb8
-#: sc/inc/strings.hrc:221
+#: sc/inc/strings.hrc:223
#, fuzzy
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr "SS"
#. j7j6E
-#: sc/inc/strings.hrc:222
+#: sc/inc/strings.hrc:224
#, fuzzy
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr "df"
#. 6QJED
-#: sc/inc/strings.hrc:223
+#: sc/inc/strings.hrc:225
#, fuzzy
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr "MS"
#. JcWo9
-#: sc/inc/strings.hrc:224
+#: sc/inc/strings.hrc:226
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr ""
#. a43mP
-#: sc/inc/strings.hrc:225
+#: sc/inc/strings.hrc:227
msgctxt "STR_ANOVA_LABEL_SIGNIFICANCE_F"
msgid "Significance F"
msgstr ""
#. MMmsS
-#: sc/inc/strings.hrc:226
+#: sc/inc/strings.hrc:228
#, fuzzy
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr "P-value"
#. UoaCS
-#: sc/inc/strings.hrc:227
+#: sc/inc/strings.hrc:229
#, fuzzy
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr "F critical"
#. oJD9H
-#: sc/inc/strings.hrc:228
+#: sc/inc/strings.hrc:230
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr "សរុប"
#. kvSFC
#. CorrelationDialog
-#: sc/inc/strings.hrc:230
+#: sc/inc/strings.hrc:232
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr "សហសម្ពន្ធ"
#. WC4SJ
-#: sc/inc/strings.hrc:231
+#: sc/inc/strings.hrc:233
#, fuzzy
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
@@ -18024,13 +18030,13 @@ msgstr "សហសម្ពន្ធ"
#. AAb7T
#. CovarianceDialog
-#: sc/inc/strings.hrc:233
+#: sc/inc/strings.hrc:235
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr "សហ​វ៉ារ្យង់"
#. VyxUL
-#: sc/inc/strings.hrc:234
+#: sc/inc/strings.hrc:236
#, fuzzy
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
@@ -18038,225 +18044,225 @@ msgstr "សហ​វ៉ារ្យង់"
#. 8gmqu
#. DescriptiveStatisticsDialog
-#: sc/inc/strings.hrc:236
+#: sc/inc/strings.hrc:238
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr "ស្ថិតិ​ពណ៌នា"
#. FGXC5
-#: sc/inc/strings.hrc:237
+#: sc/inc/strings.hrc:239
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr "មធ្យម"
#. 2sHVR
-#: sc/inc/strings.hrc:238
+#: sc/inc/strings.hrc:240
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr "កំហុស​ស្តង់ដារ"
#. KrDBB
-#: sc/inc/strings.hrc:239
+#: sc/inc/strings.hrc:241
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr "របៀប​"
#. AAbEo
-#: sc/inc/strings.hrc:240
+#: sc/inc/strings.hrc:242
#, fuzzy
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr "មេដ្យាន"
#. h2HaP
-#: sc/inc/strings.hrc:241
+#: sc/inc/strings.hrc:243
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr "រ៉ាដ្យង់"
#. 3uYMC
-#: sc/inc/strings.hrc:242
+#: sc/inc/strings.hrc:244
#, fuzzy
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr "គម្លាត​ស្តង់ដារ"
#. JTx7f
-#: sc/inc/strings.hrc:243
+#: sc/inc/strings.hrc:245
#, fuzzy
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr "Kurtosis"
#. EXJJt
-#: sc/inc/strings.hrc:244
+#: sc/inc/strings.hrc:246
#, fuzzy
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr "Skewness"
#. HkRYo
-#: sc/inc/strings.hrc:245
+#: sc/inc/strings.hrc:247
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr "ជួរ"
#. LHk8p
-#: sc/inc/strings.hrc:246
+#: sc/inc/strings.hrc:248
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr "អប្បបរមា"
#. LtMJs
-#: sc/inc/strings.hrc:247
+#: sc/inc/strings.hrc:249
#, fuzzy
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr "អតិបរមា "
#. Q5r5c
-#: sc/inc/strings.hrc:248
+#: sc/inc/strings.hrc:250
#, fuzzy
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr "ផលបូក"
#. s8K23
-#: sc/inc/strings.hrc:249
+#: sc/inc/strings.hrc:251
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr "រាប់"
#. pU8QG
-#: sc/inc/strings.hrc:250
+#: sc/inc/strings.hrc:252
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile"
msgstr ""
#. PGXzY
-#: sc/inc/strings.hrc:251
+#: sc/inc/strings.hrc:253
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr ""
#. gABRP
#. RandomNumberGeneratorDialog
-#: sc/inc/strings.hrc:253
+#: sc/inc/strings.hrc:255
#, fuzzy
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr "ចៃដន្យ ($(DISTRIBUTION))"
#. A8Rc9
-#: sc/inc/strings.hrc:254
+#: sc/inc/strings.hrc:256
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr "មិន​ដូចគ្នា"
#. 9ke8L
-#: sc/inc/strings.hrc:255
+#: sc/inc/strings.hrc:257
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr "ចំនួន​គត់​មិន​ដូចគ្នា"
#. GC2LH
-#: sc/inc/strings.hrc:256
+#: sc/inc/strings.hrc:258
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr "ធម្មតា"
#. XjQ2x
-#: sc/inc/strings.hrc:257
+#: sc/inc/strings.hrc:259
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr "Cauchy"
#. G5CqB
-#: sc/inc/strings.hrc:258
+#: sc/inc/strings.hrc:260
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr "Bernoulli"
#. GpJUB
-#: sc/inc/strings.hrc:259
+#: sc/inc/strings.hrc:261
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr "Binomial"
#. 6yJKm
-#: sc/inc/strings.hrc:260
+#: sc/inc/strings.hrc:262
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr "Binomial វិជ្ជមាន"
#. zzpmN
-#: sc/inc/strings.hrc:261
+#: sc/inc/strings.hrc:263
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr "Chi Squared"
#. NGBzX
-#: sc/inc/strings.hrc:262
+#: sc/inc/strings.hrc:264
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr "រេខា​គណិត"
#. BNZPE
-#: sc/inc/strings.hrc:263
+#: sc/inc/strings.hrc:265
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr "អប្បបរមា"
#. EThhi
-#: sc/inc/strings.hrc:264
+#: sc/inc/strings.hrc:266
#, fuzzy
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr "អតិបរមា "
#. RPYEG
-#: sc/inc/strings.hrc:265
+#: sc/inc/strings.hrc:267
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr "មធ្យម"
#. VeqrX
-#: sc/inc/strings.hrc:266
+#: sc/inc/strings.hrc:268
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr "គម្លាត​ស្តង់ដារ"
#. ChwWE
-#: sc/inc/strings.hrc:267
+#: sc/inc/strings.hrc:269
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr "មេដ្យាន"
#. SzgEb
-#: sc/inc/strings.hrc:268
+#: sc/inc/strings.hrc:270
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr "សិម៉ា"
#. 94TBK
-#: sc/inc/strings.hrc:269
+#: sc/inc/strings.hrc:271
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr "p Value"
#. AfUsB
-#: sc/inc/strings.hrc:270
+#: sc/inc/strings.hrc:272
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr "ចំនួន​សាកល្បង"
#. DdfR6
-#: sc/inc/strings.hrc:271
+#: sc/inc/strings.hrc:273
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
@@ -18264,359 +18270,359 @@ msgstr "nu Value"
#. gygpC
#. SamplingDialog
-#: sc/inc/strings.hrc:273
+#: sc/inc/strings.hrc:275
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr "គំរូ"
#. zLuBp
#. Names of dialogs
-#: sc/inc/strings.hrc:275
+#: sc/inc/strings.hrc:277
#, fuzzy
msgctxt "STR_FTEST"
msgid "F-test"
msgstr "F-test"
#. bQEfv
-#: sc/inc/strings.hrc:276
+#: sc/inc/strings.hrc:278
#, fuzzy
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr "F-test"
#. UdsVZ
-#: sc/inc/strings.hrc:277
+#: sc/inc/strings.hrc:279
msgctxt "STR_TTEST"
msgid "Paired t-test"
msgstr ""
#. A7xTa
-#: sc/inc/strings.hrc:278
+#: sc/inc/strings.hrc:280
msgctxt "STR_TTEST_UNDO_NAME"
msgid "Paired t-test"
msgstr ""
#. dWPSe
-#: sc/inc/strings.hrc:279
+#: sc/inc/strings.hrc:281
#, fuzzy
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr "F-test"
#. QvZ7V
-#: sc/inc/strings.hrc:280
+#: sc/inc/strings.hrc:282
#, fuzzy
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr "F-test"
#. D6AqL
-#: sc/inc/strings.hrc:281
+#: sc/inc/strings.hrc:283
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr ""
#. PvFSb
-#: sc/inc/strings.hrc:282
+#: sc/inc/strings.hrc:284
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr ""
#. NXrYh
-#: sc/inc/strings.hrc:283
+#: sc/inc/strings.hrc:285
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr ""
#. AM5WV
-#: sc/inc/strings.hrc:284
+#: sc/inc/strings.hrc:286
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
msgstr ""
#. hd6yJ
-#: sc/inc/strings.hrc:285
+#: sc/inc/strings.hrc:287
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
msgstr ""
#. KNJ5s
#. Common
-#: sc/inc/strings.hrc:287
+#: sc/inc/strings.hrc:289
#, fuzzy
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr "ជួរឈរ %NUMBER%"
#. aTAGd
-#: sc/inc/strings.hrc:288
+#: sc/inc/strings.hrc:290
#, fuzzy
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr "ជួរដេក %NUMBER%"
#. nAbaC
-#: sc/inc/strings.hrc:289
+#: sc/inc/strings.hrc:291
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr "អាល់ហ្វា"
#. FZZCu
-#: sc/inc/strings.hrc:290
+#: sc/inc/strings.hrc:292
#, fuzzy
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr "អថេរ 1"
#. pnyaa
-#: sc/inc/strings.hrc:291
+#: sc/inc/strings.hrc:293
#, fuzzy
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr "អថេរ 2"
#. LU4CC
-#: sc/inc/strings.hrc:292
+#: sc/inc/strings.hrc:294
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr ""
#. sCNt9
-#: sc/inc/strings.hrc:293
+#: sc/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr "ប្រមាណវិធី៖"
#. arX5v
-#: sc/inc/strings.hrc:294
+#: sc/inc/strings.hrc:296
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr ""
#. dr3Gt
-#: sc/inc/strings.hrc:295
+#: sc/inc/strings.hrc:297
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr ""
#. pnhCA
-#: sc/inc/strings.hrc:296
+#: sc/inc/strings.hrc:298
msgctxt "STR_LABEL_ADJUSTED_RSQUARED"
msgid "Adjusted R^2"
msgstr ""
#. ACsNA
-#: sc/inc/strings.hrc:297
+#: sc/inc/strings.hrc:299
msgctxt "STR_LABEL_XVARIABLES_COUNT"
msgid "Count of X variables"
msgstr ""
#. kEPsb
-#: sc/inc/strings.hrc:298
+#: sc/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr "df"
#. FYUYT
-#: sc/inc/strings.hrc:299
+#: sc/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr "P-value"
#. S3BHc
-#: sc/inc/strings.hrc:300
+#: sc/inc/strings.hrc:302
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr ""
#. wgpT3
-#: sc/inc/strings.hrc:301
+#: sc/inc/strings.hrc:303
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr ""
#. kTwBX
-#: sc/inc/strings.hrc:302
+#: sc/inc/strings.hrc:304
msgctxt "STR_LABEL_LOWER"
msgid "Lower"
msgstr ""
#. GgFPs
-#: sc/inc/strings.hrc:303
+#: sc/inc/strings.hrc:305
msgctxt "STR_LABEL_Upper"
msgid "Upper"
msgstr ""
#. hkXzo
-#: sc/inc/strings.hrc:304
+#: sc/inc/strings.hrc:306
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
msgstr ""
#. rTFFF
-#: sc/inc/strings.hrc:305
+#: sc/inc/strings.hrc:307
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
msgstr ""
#. rtSox
#. RegressionDialog
-#: sc/inc/strings.hrc:307
+#: sc/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr "លីនេអ៊ែ"
#. kVG6g
-#: sc/inc/strings.hrc:308
+#: sc/inc/strings.hrc:310
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr "ឡូការីត"
#. wmyFW
-#: sc/inc/strings.hrc:309
+#: sc/inc/strings.hrc:311
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr "ស្វ័យ​គុណ"
#. GabFM
-#: sc/inc/strings.hrc:310
+#: sc/inc/strings.hrc:312
msgctxt "STR_MESSAGE_XINVALID_RANGE"
msgid "Independent variable(s) range is not valid."
msgstr ""
#. 8x8DM
-#: sc/inc/strings.hrc:311
+#: sc/inc/strings.hrc:313
msgctxt "STR_MESSAGE_YINVALID_RANGE"
msgid "Dependent variable(s) range is not valid."
msgstr ""
#. E7BD2
-#: sc/inc/strings.hrc:312
+#: sc/inc/strings.hrc:314
msgctxt "STR_MESSAGE_INVALID_CONFIDENCE_LEVEL"
msgid "Confidence level must be in the interval (0, 1)."
msgstr ""
#. ZdyQs
-#: sc/inc/strings.hrc:313
+#: sc/inc/strings.hrc:315
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
msgid "Y variable range cannot have more than 1 column."
msgstr ""
#. UpZqC
-#: sc/inc/strings.hrc:314
+#: sc/inc/strings.hrc:316
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_ROW"
msgid "Y variable range cannot have more than 1 row."
msgstr ""
#. DrsBe
-#: sc/inc/strings.hrc:315
+#: sc/inc/strings.hrc:317
msgctxt "STR_MESSAGE_UNIVARIATE_NUMOBS_MISMATCH"
msgid "Univariate regression : The observation count in X and Y must match."
msgstr ""
#. KuttF
-#: sc/inc/strings.hrc:316
+#: sc/inc/strings.hrc:318
msgctxt "STR_MESSAGE_MULTIVARIATE_NUMOBS_MISMATCH"
msgid "Multivariate regression : The observation count in X and Y must match."
msgstr ""
#. 6Cghz
-#: sc/inc/strings.hrc:317
+#: sc/inc/strings.hrc:319
#, fuzzy
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr "ប្រភេទ​តំរែតំរ៉ង់"
#. bmR5w
-#: sc/inc/strings.hrc:318
+#: sc/inc/strings.hrc:320
msgctxt "STR_LABEL_REGRESSION_STATISTICS"
msgid "Regression Statistics"
msgstr ""
#. RNHCx
-#: sc/inc/strings.hrc:319
+#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
msgstr ""
#. 4DANj
-#: sc/inc/strings.hrc:320
+#: sc/inc/strings.hrc:322
msgctxt "STR_LABEL_CONFIDENCE_LEVEL"
msgid "Confidence level"
msgstr ""
#. 9LhbX
-#: sc/inc/strings.hrc:321
+#: sc/inc/strings.hrc:323
msgctxt "STR_LABEL_COEFFICIENTS"
msgid "Coefficients"
msgstr ""
#. nyH7s
-#: sc/inc/strings.hrc:322
+#: sc/inc/strings.hrc:324
msgctxt "STR_LABEL_TSTATISTIC"
msgid "t-Statistic"
msgstr ""
#. PGno2
-#: sc/inc/strings.hrc:323
+#: sc/inc/strings.hrc:325
#, fuzzy
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr "អ៊ីនធឺណិត"
#. oa4Cm
-#: sc/inc/strings.hrc:324
+#: sc/inc/strings.hrc:326
msgctxt "STR_LABEL_PREDICTEDY"
msgid "Predicted Y"
msgstr ""
#. QFEjs
-#: sc/inc/strings.hrc:325
+#: sc/inc/strings.hrc:327
msgctxt "STR_LINEST_RAW_OUTPUT_TITLE"
msgid "LINEST raw output"
msgstr ""
#. bk7FH
#. F Test
-#: sc/inc/strings.hrc:327
+#: sc/inc/strings.hrc:329
#, fuzzy
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr "P (F<=f) right-tail"
#. CkHJw
-#: sc/inc/strings.hrc:328
+#: sc/inc/strings.hrc:330
#, fuzzy
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr "F Critical right-tail"
#. J7yMZ
-#: sc/inc/strings.hrc:329
+#: sc/inc/strings.hrc:331
#, fuzzy
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr "P (F<=f) left-tail"
#. R3BNC
-#: sc/inc/strings.hrc:330
+#: sc/inc/strings.hrc:332
#, fuzzy
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr "F Critical right-tail"
#. Bve5D
-#: sc/inc/strings.hrc:331
+#: sc/inc/strings.hrc:333
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr ""
#. 4YZrT
-#: sc/inc/strings.hrc:332
+#: sc/inc/strings.hrc:334
#, fuzzy
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
@@ -18624,47 +18630,47 @@ msgstr "t Critical one-tail"
#. qaf4N
#. t Test
-#: sc/inc/strings.hrc:334
+#: sc/inc/strings.hrc:336
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr ""
#. C6BU8
-#: sc/inc/strings.hrc:335
+#: sc/inc/strings.hrc:337
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr ""
#. j8NuP
-#: sc/inc/strings.hrc:336
+#: sc/inc/strings.hrc:338
#, fuzzy
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr "t Stat"
#. bKoeX
-#: sc/inc/strings.hrc:337
+#: sc/inc/strings.hrc:339
#, fuzzy
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr "P (T<=t) one-tail"
#. dub8R
-#: sc/inc/strings.hrc:338
+#: sc/inc/strings.hrc:340
#, fuzzy
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr "t Critical one-tail"
#. FrDDz
-#: sc/inc/strings.hrc:339
+#: sc/inc/strings.hrc:341
#, fuzzy
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr "P (T<=t) two-tail"
#. RQqAd
-#: sc/inc/strings.hrc:340
+#: sc/inc/strings.hrc:342
#, fuzzy
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
@@ -18672,40 +18678,40 @@ msgstr "t Critical one-tail"
#. kDCsZ
#. Z Test
-#: sc/inc/strings.hrc:342
+#: sc/inc/strings.hrc:344
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr ""
#. CF8D5
-#: sc/inc/strings.hrc:343
+#: sc/inc/strings.hrc:345
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr ""
#. cYWDr
-#: sc/inc/strings.hrc:344
+#: sc/inc/strings.hrc:346
#, fuzzy
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr "P (T<=t) one-tail"
#. DmEVf
-#: sc/inc/strings.hrc:345
+#: sc/inc/strings.hrc:347
#, fuzzy
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr "t Critical one-tail"
#. G8PeP
-#: sc/inc/strings.hrc:346
+#: sc/inc/strings.hrc:348
#, fuzzy
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr "P (T<=t) two-tail"
#. rGBfK
-#: sc/inc/strings.hrc:347
+#: sc/inc/strings.hrc:349
#, fuzzy
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
@@ -18713,171 +18719,171 @@ msgstr "t Critical one-tail"
#. mCsCB
#. Fourier Analysis
-#: sc/inc/strings.hrc:349
+#: sc/inc/strings.hrc:351
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
msgstr ""
#. sc3hp
-#: sc/inc/strings.hrc:350
+#: sc/inc/strings.hrc:352
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
msgstr ""
#. AtC94
-#: sc/inc/strings.hrc:351
+#: sc/inc/strings.hrc:353
msgctxt "STR_REAL_PART"
msgid "Real"
msgstr ""
#. SoyPr
-#: sc/inc/strings.hrc:352
+#: sc/inc/strings.hrc:354
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
msgstr ""
#. ymnyT
-#: sc/inc/strings.hrc:353
+#: sc/inc/strings.hrc:355
msgctxt "STR_MAGNITUDE_PART"
msgid "Magnitude"
msgstr ""
#. NGmmD
-#: sc/inc/strings.hrc:354
+#: sc/inc/strings.hrc:356
msgctxt "STR_PHASE_PART"
msgid "Phase"
msgstr ""
#. E7Eez
-#: sc/inc/strings.hrc:355
+#: sc/inc/strings.hrc:357
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
msgstr ""
#. wF2RV
-#: sc/inc/strings.hrc:356
+#: sc/inc/strings.hrc:358
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
msgstr ""
#. DRbrH
-#: sc/inc/strings.hrc:357
+#: sc/inc/strings.hrc:359
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
msgstr ""
#. gjC2w
-#: sc/inc/strings.hrc:358
+#: sc/inc/strings.hrc:360
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
msgstr ""
#. SnGyL
-#: sc/inc/strings.hrc:359
+#: sc/inc/strings.hrc:361
msgctxt "STR_INPUT_DATA_RANGE"
msgid "Input data range"
msgstr ""
#. EaQGL
#. infobar for allowing links to update or not
-#: sc/inc/strings.hrc:361
+#: sc/inc/strings.hrc:363
msgctxt "STR_ENABLE_CONTENT"
msgid "Allow updating"
msgstr ""
#. w5Gd7
#. Insert image dialog
-#: sc/inc/strings.hrc:363
+#: sc/inc/strings.hrc:365
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
msgstr ""
#. itvXY
-#: sc/inc/strings.hrc:364
+#: sc/inc/strings.hrc:366
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
msgstr ""
#. P8vG7
-#: sc/inc/strings.hrc:365
+#: sc/inc/strings.hrc:367
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
msgstr ""
#. SSc6B
-#: sc/inc/strings.hrc:367
+#: sc/inc/strings.hrc:369
msgctxt "sharedocumentdlg|nouserdata"
msgid "No user data available."
msgstr "មិនមាន​ទិន្នន័យ​អ្នកប្រើ​ទេ ។"
#. FFnfu
-#: sc/inc/strings.hrc:368
+#: sc/inc/strings.hrc:370
msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(សិទ្ធិ​មិនរួម​បញ្ចូល)"
#. hitQA
-#: sc/inc/strings.hrc:369
+#: sc/inc/strings.hrc:371
msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
msgid "No named ranges available in the selected document"
msgstr ""
#. hnAZx
-#: sc/inc/strings.hrc:370
+#: sc/inc/strings.hrc:372
msgctxt "STR_BORDER_HAIRLINE"
msgid "Hairline (%s pt)"
msgstr ""
#. E9Dhi
-#: sc/inc/strings.hrc:371
+#: sc/inc/strings.hrc:373
msgctxt "STR_BORDER_VERY_THIN"
msgid "Very thin (%s pt)"
msgstr ""
#. KGVAw
-#: sc/inc/strings.hrc:372
+#: sc/inc/strings.hrc:374
msgctxt "STR_BORDER_THIN"
msgid "Thin (%s pt)"
msgstr ""
#. V6PRY
-#: sc/inc/strings.hrc:373
+#: sc/inc/strings.hrc:375
msgctxt "STR_BORDER_MEDIUM"
msgid "Medium (%s pt)"
msgstr ""
#. GyeKi
-#: sc/inc/strings.hrc:374
+#: sc/inc/strings.hrc:376
msgctxt "STR_BORDER_THICK"
msgid "Thick (%s pt)"
msgstr ""
#. QvEAB
-#: sc/inc/strings.hrc:375
+#: sc/inc/strings.hrc:377
msgctxt "STR_BORDER_EXTRA_THICK"
msgid "Extra thick (%s pt)"
msgstr ""
#. v9kkb
-#: sc/inc/strings.hrc:376
+#: sc/inc/strings.hrc:378
msgctxt "STR_BORDER_DOUBLE_1"
msgid "Double Hairline (%s pt)"
msgstr ""
#. KzKEy
-#: sc/inc/strings.hrc:377
+#: sc/inc/strings.hrc:379
msgctxt "STR_BORDER_DOUBLE_2"
msgid "Thin/Medium (%s pt)"
msgstr ""
#. HD8tG
-#: sc/inc/strings.hrc:378
+#: sc/inc/strings.hrc:380
msgctxt "STR_BORDER_DOUBLE_3"
msgid "Medium/Hairline (%s pt)"
msgstr ""
#. ygGcU
-#: sc/inc/strings.hrc:379
+#: sc/inc/strings.hrc:381
msgctxt "STR_BORDER_DOUBLE_4"
msgid "Medium/Medium (%s pt)"
msgstr ""
@@ -19522,6 +19528,42 @@ msgctxt "autosum|count"
msgid "Count"
msgstr ""
+#. gFpFA
+#: sc/uiconfig/scalc/ui/autosum.ui:52
+msgctxt "autosum|counta"
+msgid "CountA"
+msgstr ""
+
+#. TGUCo
+#: sc/uiconfig/scalc/ui/autosum.ui:60
+msgctxt "autosum|product"
+msgid "Product"
+msgstr ""
+
+#. GNEDE
+#: sc/uiconfig/scalc/ui/autosum.ui:68
+msgctxt "autosum|stdev"
+msgid "Stdev"
+msgstr ""
+
+#. cAEpr
+#: sc/uiconfig/scalc/ui/autosum.ui:76
+msgctxt "autosum|stdevp"
+msgid "StdevP"
+msgstr ""
+
+#. DAdFH
+#: sc/uiconfig/scalc/ui/autosum.ui:84
+msgctxt "autosum|var"
+msgid "Var"
+msgstr ""
+
+#. 7GuBA
+#: sc/uiconfig/scalc/ui/autosum.ui:92
+msgctxt "autosum|varp"
+msgid "VarP"
+msgstr ""
+
#. j9TVx
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:32
msgctxt "cellprotectionpage|checkProtected"
@@ -21004,62 +21046,62 @@ msgid "Create Names"
msgstr "បង្កើត​ឈ្មោះ"
#. bWFYd
-#: sc/uiconfig/scalc/ui/createnamesdialog.ui:95
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:93
msgctxt "createnamesdialog|top"
msgid "_Top row"
msgstr "ជួរ​ដេកកំពូល "
#. 8QHEC
-#: sc/uiconfig/scalc/ui/createnamesdialog.ui:103
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:101
msgctxt "createnamesdialog|extended_tip|top"
msgid "Creates the range names from the header row of the selected range."
msgstr "បង្កើត​ឈ្មោះ​ជួរ​ពី​ជួរ​ដេក​ក្បាល នៃ​ជួរ​​ដែល​បាន​ជ្រើស ។"
#. hJ9LB
-#: sc/uiconfig/scalc/ui/createnamesdialog.ui:115
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:113
msgctxt "createnamesdialog|left"
msgid "_Left column"
msgstr "ជួរ​ឈរ​ឆ្វេង "
#. C6Cjs
-#: sc/uiconfig/scalc/ui/createnamesdialog.ui:123
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:121
msgctxt "createnamesdialog|extended_tip|left"
msgid "Creates the range names from the entries in the first column of the selected sheet range."
msgstr "បង្កើត​ឈ្មោះ​ជួរ​ពី​ធាតុ​នៅ​ក្នុង​ជួរ​ឈរ​ដំបូង នៃ​ជួរ​សន្លឹក​ដែល​បាន​ជ្រើស ។"
#. T2unv
-#: sc/uiconfig/scalc/ui/createnamesdialog.ui:135
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:133
msgctxt "createnamesdialog|bottom"
msgid "_Bottom row"
msgstr "ជួរដេក​បាត "
#. t6Zop
-#: sc/uiconfig/scalc/ui/createnamesdialog.ui:143
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:141
msgctxt "createnamesdialog|extended_tip|bottom"
msgid "Creates the range names from the entries in the last row of the selected sheet range."
msgstr "បង្កើត​ឈ្មោះ​ជួរ​ពី​ធាតុ​នៅ​ក្នុង​ជួរ​ដេក​ចុង​ក្រោយ នៃ​ជួរ​សន្លឹក​​ដែល​បាន​ជ្រើស ។"
#. AVsK3
-#: sc/uiconfig/scalc/ui/createnamesdialog.ui:155
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:153
msgctxt "createnamesdialog|right"
msgid "_Right column"
msgstr "ជួរ​ឈរ​ស្តាំ "
#. VAW7M
-#: sc/uiconfig/scalc/ui/createnamesdialog.ui:163
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:161
msgctxt "createnamesdialog|extended_tip|right"
msgid "Creates the range names from the entries in the last column of the selected sheet range."
msgstr "បង្កើត​ឈ្មោះ​ជួរ​ពី​ធាតុ​នៅ​ក្នុង​ជួរ​ឈរ​​ចុង​ក្រោយ នៃ​ជួរ​សន្លឹក​​ដែល​បាន​ជ្រើស ។"
#. EDUAr
-#: sc/uiconfig/scalc/ui/createnamesdialog.ui:179
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:177
#, fuzzy
msgctxt "createnamesdialog|label1"
msgid "Create Names From"
msgstr "បង្កើត​ឈ្មោះ​ពី"
#. zZfTJ
-#: sc/uiconfig/scalc/ui/createnamesdialog.ui:205
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:203
msgctxt "createnamesdialog|extended_tip|CreateNamesDialog"
msgid "Allows you to automatically name multiple cell ranges."
msgstr "អនុញ្ញាត​ឲ្យ​អ្នក​ដាក់​ឈ្មោះ​ជួរ​ក្រឡា​ច្រើន​ដោយ​ស្វ័យ​ប្រវត្តិ ។"
@@ -23233,30 +23275,54 @@ msgctxt "filldlg|extended_tip|FillSeriesDialog"
msgid "Automatically generate series with the options in this dialog. Determine direction, increment, time unit and series type."
msgstr ""
+#. xsP4F
+#: sc/uiconfig/scalc/ui/filterdropdown.ui:12
+msgctxt "filterdropdown|more"
+msgid "Add row"
+msgstr ""
+
+#. WCqFM
+#: sc/uiconfig/scalc/ui/filterdropdown.ui:20
+msgctxt "filterdropdown|less"
+msgid "Remove row"
+msgstr ""
+
#. cd5X5
-#: sc/uiconfig/scalc/ui/filterdropdown.ui:130
+#: sc/uiconfig/scalc/ui/filterdropdown.ui:150
msgctxt "filterdropdown|STR_EDIT_SEARCH_ITEMS"
msgid "Search items..."
msgstr ""
#. zKwWE
-#: sc/uiconfig/scalc/ui/filterdropdown.ui:164
+#: sc/uiconfig/scalc/ui/filterdropdown.ui:184
msgctxt "filterdropdown|STR_BTN_TOGGLE_ALL"
msgid "All"
msgstr ""
#. JsSz6
-#: sc/uiconfig/scalc/ui/filterdropdown.ui:183
+#: sc/uiconfig/scalc/ui/filterdropdown.ui:203
msgctxt "filterdropdown|STR_BTN_SELECT_CURRENT"
msgid "Show only the current item."
msgstr ""
#. vBQYB
-#: sc/uiconfig/scalc/ui/filterdropdown.ui:198
+#: sc/uiconfig/scalc/ui/filterdropdown.ui:218
msgctxt "filterdropdown|STR_BTN_UNSELECT_CURRENT"
msgid "Hide only the current item."
msgstr ""
+#. bXw6N
+#: sc/uiconfig/scalc/ui/filtersubdropdown.ui:148
+msgctxt "filtersubdropdown|background"
+msgid "Background Color"
+msgstr ""
+
+#. EZpYM
+#: sc/uiconfig/scalc/ui/filtersubdropdown.ui:205
+msgctxt "filtersubdropdown|textcolor"
+msgid "Text Color"
+msgstr ""
+
#. XYJHx
#: sc/uiconfig/scalc/ui/findreplaceentry.ui:28
msgctxt "findreplace|label_action"
@@ -25429,231 +25495,231 @@ msgid "No solution was found."
msgstr "រក​មិន​ឃើញ​ដំណោះស្រាយ។"
#. iQSEv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2990
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2997
msgctxt "CalcNotebookbar|FileMenuButton"
msgid "_File"
msgstr ""
#. wh523
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3009
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3016
msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
#. 3iDW7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3064
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3071
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3524
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3531
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3801
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3808
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3814
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3821
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4720
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4727
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4826
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4833
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5373
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5380
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5875
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5882
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5980
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5987
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6381
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6406
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6834
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6388
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6413
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6841
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7055
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7062
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7139
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7146
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8416
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8423
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8467
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8474
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8573
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8580
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9376
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9383
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9461
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9468
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10347
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10354
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10432
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10439
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11548
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11662
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12843
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12850
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12950
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12957
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13408
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13415
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13698
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13705
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13805
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13812
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14364
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14371
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14469
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14476
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14851
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14858
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14934
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14941
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15742
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15749
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15826
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15833
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15883
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15890
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15957
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15964
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17146
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17153
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17230
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17237
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -25762,97 +25828,97 @@ msgid "~View"
msgstr ""
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr ""
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -26235,153 +26301,153 @@ msgid "Im_age"
msgstr ""
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "រៀបចំ"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "ពណ៌"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "ក្រឡា​ចត្រង្គ "
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "ភាសា "
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
#, fuzzy
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "Review"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "មតិយោបល់"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
#, fuzzy
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "ប្រៀបធៀប"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "ទិដ្ឋភាព"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr ""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "កែ​សម្រួល​ "
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "រៀបចំ"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "ទិដ្ឋភាព"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "ដាក់​ជា​ក្រុម"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "ពុម្ពអក្សរ"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
#, fuzzy
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "តម្រឹម"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "ទិដ្ឋភាព"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "បញ្ចូល​"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "មេឌៀ"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "ស៊ុម"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "រៀបចំ"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "ក្រឡា​ចត្រង្គ "
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
@@ -26893,11 +26959,11 @@ msgctxt "optcalculatepage|match|tooltip_text"
msgid "Keep this enabled for interoperability with Microsoft Excel or for better performance"
msgstr ""
-#. APEQn
+#. s8v3A
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:139
msgctxt "extended_tip|match"
-msgid "Specifies that the search criteria you set for the Calc database functions must match the whole cell exactly. When both, the Search criteria = and <> must apply to whole cells box and the Enable wildcards in formulas box are marked, %PRODUCTNAME Calc behaves exactly as Microsoft Excel when searching cells in the database functions."
-msgstr "បញ្ជាក់​ថា​លក្ខណៈ​វិនិច្ឆ័យ​ស្វែងរក​ដែល​អ្នក​កំណត់​សម្រាប់​មុខងារ​មូលដ្ឋាន​ទិន្នន័យ Calc ត្រូវ​តែ​ផ្គូផ្គង​និង​ក្រឡា​ទាំងមូល​យ៉ាង​ពិត​ប្រាកដ ។ ពេល លក្ខណៈ​វិនិច្ឆ័យ​ស្វែងរក = និង <> ត្រូវ​តែ​អនុវត្ត​ទៅ​ប្រអប់​ក្រឡា​ទាំងមូល ត្រូវ​បាន​សម្គាល់ %PRODUCTNAME Calc ធ្វើ​ឥរិយាបថ​ដូច MS Excel ពេល​ស្វែងរក​ក្រឡា​ក្នុង​មុខងារ​មូលដ្ឋាន​ទិន្នន័យ ។"
+msgid "Specifies that the search criteria you set for the Calc database functions must match the whole cell exactly. When both, the Search criteria = and <> must apply to whole cells box and the Enable wildcards in formulas box are marked, Calc behaves exactly as Microsoft Excel when searching cells in the database functions."
+msgstr ""
#. 5Wn8V
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:150
@@ -27188,11 +27254,11 @@ msgctxt "optcompatibilitypage|label1"
msgid "Key Bindings"
msgstr "ការ​ចង​គ្រាប់ចុច"
-#. Z7mEE
+#. XXuHE
#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:86
msgctxt "extended_tip|OptCompatibilityPage"
-msgid "Defines compatibility options for %PRODUCTNAME Calc."
-msgstr "កំណត់​ជម្រើស​ឆបគ្នា​សម្រាប់ %PRODUCTNAME Calc ។"
+msgid "Defines compatibility options for Calc."
+msgstr ""
#. Jcvih
#: sc/uiconfig/scalc/ui/optdefaultpage.ui:36
@@ -27406,11 +27472,11 @@ msgctxt "optformula|label3"
msgid "Separators"
msgstr "សញ្ញា​បំបែក"
-#. Pk6nr
+#. J6mTS
#: sc/uiconfig/scalc/ui/optformula.ui:421
msgctxt "extended_tip|OptFormula"
-msgid "Defines formula syntax options and loading options for %PRODUCTNAME Calc."
-msgstr "កំណត់​ជម្រើស​វាក្យសម្ពន្ធ​រូបមន្ត​សម្រាប់ %PRODUCTNAME Calc ។"
+msgid "Defines formula syntax options and loading options for Calc."
+msgstr ""
#. cCfAk
#: sc/uiconfig/scalc/ui/optimalcolwidthdialog.ui:8
@@ -28752,10 +28818,10 @@ msgctxt "printeroptions|suppressemptypages"
msgid "Suppress output of empty pages"
msgstr "លាក់​ការ​បង្ហាញ​ទំព័រ​ទទេ"
-#. R9hFA
+#. cKDbR
#: sc/uiconfig/scalc/ui/printeroptions.ui:29
msgctxt "printeroptions|extended_tip|suppressemptypages"
-msgid "If checked empty pages that have no cell contents or draw objects are not printed."
+msgid "If checked, empty pages that have no cell contents or drawing objects are not printed."
msgstr ""
#. tkryr
@@ -29931,17 +29997,17 @@ msgctxt "selectsource|extended_tip|selection"
msgid "Uses the selected cells as the data source for the pivot table."
msgstr "ប្រើ​ក្រឡា​ដែល​បាន​ជ្រើស​ជា​ប្រភព​ដើម ​សម្រាប់​តារាង​អ្នក​ជំនួយ​ការ​ទិន្នន័យ ។"
-#. gsMej
+#. xtLUV
#: sc/uiconfig/scalc/ui/selectsource.ui:162
msgctxt "selectsource|database"
-msgid "_Data source registered in %PRODUCTNAME"
-msgstr "ប្រភព​ទិន្នន័យ​​ដែល​បាន​ចុះ​ឈ្មោះ​ក្នុង %PRODUCTNAME "
+msgid "_Data source registered in Calc"
+msgstr ""
-#. whAZ5
+#. ZDHcm
#: sc/uiconfig/scalc/ui/selectsource.ui:171
msgctxt "selectsource|extended_tip|database"
-msgid "Uses a table or query in a database that is registered in %PRODUCTNAME as the data source for the pivot table."
-msgstr "ប្រើ​តារាង ឬ​សំណួរ​មួយ​ក្នុង​មូលដ្ឋាន​ទិន្នន័យ​មួយ ដែល​ត្រូវ​បាន​ចុះ​ឈ្មោះ​ក្នុង %PRODUCTNAME ជា​ប្រភព​ទិន្នន័យ​សម្រាប់​តារាង​ជំនួយការ​ទិន្នន័យ ។"
+msgid "Uses a table or query in a database that is registered in Calc as the data source for the pivot table."
+msgstr ""
#. ZDghg
#: sc/uiconfig/scalc/ui/selectsource.ui:183
@@ -30480,100 +30546,86 @@ msgid "Displays a list of all hidden sheets in your spreadsheet document."
msgstr ""
#. ktHTz
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:53
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:52
msgctxt "sidebaralignment|horizontalalignment|tooltip_text"
msgid "Horizontal Alignment"
msgstr "ការ​តម្រឹម​ផ្ដេក"
#. U8BWH
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:110
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:109
msgctxt "sidebaralignment|verticalalignment|tooltip_text"
msgid "Vertical Alignment"
msgstr "​ការ​តម្រឹម​បញ្ឈរ"
-#. Ume2A
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:199
-msgctxt "sidebaralignment|orientationdegrees|tooltip_text"
-msgid "Select the angle for rotation."
-msgstr "ជ្រើស​មុំ​សម្រាប់​បង្វិល។"
-
-#. bfLkF
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:206
-#, fuzzy
-msgctxt "sidebaralignment|orientationdegrees-atkobject"
-msgid "Text Orientation"
-msgstr "ទិស​អត្ថបទ៖"
-
#. etrVi
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:219
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:237
msgctxt "sidebaralignment|leftindent|tooltip_text"
msgid "Indents from the left edge."
msgstr "ចូល​បន្ទាត់​ពី​គែម​ខាងឆ្វេង។"
-#. rqx4D
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:226
-#, fuzzy
-msgctxt "sidebaralignment|leftindent-atkobject"
-msgid "Left Indent"
-msgstr "ការ​ចូល​បន្ទាត់​បញ្ជី"
-
#. qtoY5
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:285
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:266
msgctxt "sidebaralignment|orientationlabel"
msgid "Text _orientation:"
msgstr "ទិស​អត្ថបទ៖"
+#. Ume2A
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:281
+msgctxt "sidebaralignment|orientationdegrees|tooltip_text"
+msgid "Select the angle for rotation."
+msgstr "ជ្រើស​មុំ​សម្រាប់​បង្វិល។"
+
#. KEG9k
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:302
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:308
#, fuzzy
msgctxt "sidebaralignment|stacked"
msgid "Vertically stacked"
msgstr "ជង់​បញ្ឈរ"
#. ZE4wU
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:327
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:336
msgctxt "sidebaralignment|bottom|tooltip_text"
msgid "Text Extension From Lower Cell Border"
msgstr "ផ្នែក​បន្ថែម​អត្ថបទ​ពី​ស៊ុម​ក្រឡា​ក្រោម"
#. CgVBh
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:344
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:353
msgctxt "sidebaralignment|top|tooltip_text"
msgid "Text Extension From Upper Cell Border"
msgstr "ផ្នែក​បន្ថែម​អត្ថបទ​​ពី​ស៊ុម​ក្រឡា​លើ"
#. TSALx
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:361
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:370
msgctxt "sidebaralignment|standard|tooltip_text"
msgid "Text Extension Inside Cell"
msgstr "ផ្នែក​បន្ថែម​អត្ថបទ​​ក្នុង​ក្រឡា"
#. xruhe
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:390
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:398
msgctxt "sidebaralignment|wraptext"
msgid "Wrap text"
msgstr "រុំ​អត្ថបទ"
#. uTKvq
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:394
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:402
msgctxt "sidebaralignment|wraptext|tooltip_text"
msgid "Wrap texts automatically."
msgstr "រុំ​អត្ថបទ​ស្វ័យប្រវត្តិ។"
#. Ae65n
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:406
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:415
msgctxt "sidebaralignment|mergecells"
msgid "Merge cells"
msgstr "បញ្ចូល​ក្រឡា​ចូលគ្នា"
#. NK2BS
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:410
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:419
msgctxt "sidebaralignment|mergecells|tooltip_text"
msgid "Joins the selected cells into one."
msgstr "បញ្ចូល​ក្រឡា​ដែល​បាន​ជ្រើស​ចូលគ្នា​តែមួយ។"
#. FdKBk
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:422
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:433
msgctxt "sidebaralignment|leftindentlabel"
msgid "_Indent:"
msgstr "ចូល​បន្ទាត់៖"
@@ -31450,12 +31502,11 @@ msgctxt "sortoptionspage|sortuserlb-atkobject"
msgid "Custom sort order"
msgstr "លំដាប់​តម្រៀប​ផ្ទាល់ខ្លួន"
-#. QagY7
+#. fVvsb
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:228
-#, fuzzy
msgctxt "sortoptionspage|extended_tip|sortuserlb"
-msgid "Select the custom sort order that you want to apply. To define a custom sort order, choose Tools - Options - %PRODUCTNAME Calc - Sort Lists ."
-msgstr " ជ្រើស​លំដាប់​តម្រៀប​ផ្ទាល់​ខ្លួន​ដែល​អ្នក​ចង់​អនុវត្ត​ ។ ដើម្បី​កំណត់​លំដាប់​តម្រៀប​ផ្ទាល់​ខ្លូន​​ ជ្រើស​​ ឧបករណ៍​​ - ជម្រើស​ - %PRODUCTNAME Calc - បញ្ជី​តម្រៀប​​ ។ "
+msgid "Select the custom sort order that you want to apply. To define a custom sort order, choose Tools - Options - Calc - Sort Lists ."
+msgstr ""
#. KJrPL
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:243
@@ -32329,16 +32380,16 @@ msgctxt "subtotaloptionspage|btnuserdef"
msgid "C_ustom sort order"
msgstr "លំដាប់​តម្រៀប​ផ្ទាល់ខ្លួន"
-#. EP8RH
+#. GKTUd
#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:201
msgctxt "subtotaloptionspage|extended_tip|btnuserdef"
-msgid "Uses a custom sorting order that you defined in the Options dialog box at %PRODUCTNAME Calc - Sort Lists."
+msgid "Uses a custom sorting order that you defined in the Options dialog box at Calc - Sort Lists."
msgstr ""
-#. T5A7R
+#. UciWN
#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:220
msgctxt "subtotaloptionspage|extended_tip|lbuserdef"
-msgid "Uses a custom sorting order that you defined in the Options dialog box at %PRODUCTNAME Calc - Sort Lists."
+msgid "Uses a custom sorting order that you defined in the Options dialog box at Calc - Sort Lists."
msgstr ""
#. fEyTF
@@ -32789,11 +32840,11 @@ msgctxt "tpviewpage|annot"
msgid "_Comment indicator"
msgstr "ទ្រនិច​បង្ហាញ​មតិ​យោបល់"
-#. gbz6Y
+#. 5fRDu
#: sc/uiconfig/scalc/ui/tpviewpage.ui:77
msgctxt "extended_tip|annot"
-msgid "Specifies that a small rectangle in the top right corner of the cell indicates that a comment exists. The comment will be shown only when you enable tips under %PRODUCTNAME - General in the Options dialog box."
-msgstr "បញ្ជាក់​ថា​ចតុកោណ​តូច​នៅ​ជ្រុង​ស្ដាំ​ខាងលើ​នៃ​ក្រឡា​បង្ហាញ​ពី​មតិយោបល់​ដែល​មាន។ មតិយោបល់​នឹង​បង្ហាញ​តែ​នៅ​ពេល​ណា​ដែល​អ្នក​បើក​ព័ត៌មាន​ជំនួយ​ប៉ុណ្ណោះ តាមរយៈ %PRODUCTNAME - ទូទៅ នៅ​ក្នុង​ប្រអប់​ជម្រើស។"
+msgid "Specifies that a small rectangle in the top right corner of the cell indicates that a comment exists. The comment will be shown only when you enable tips under General in the Options dialog box."
+msgstr ""
#. G6GjE
#: sc/uiconfig/scalc/ui/tpviewpage.ui:88
@@ -33000,132 +33051,132 @@ msgid "Specifies when grid lines will be displayed. Default is to display grid l
msgstr "បញ្ជាក់​ថា​តើ​បន្ទាត់​ក្រឡាចត្រង្គ​នឹង​ត្រូវ​បង្ហាញ​នៅ​ពេល​ណា។ តាម​លំនាំដើម បន្ទាត់​ក្រឡាចត្រង្គ​បង្ហាញ​តែ​នៅ​លើ​ក្រឡា​ដែល​មិន​មាន​ពណ៌​ផ្ទៃ​ខាងក្រោយ​ប៉ុណ្ណោះ។ អ្នក​ក៏​អាច​ជ្រើស​ដើម្បី​បង្ហាញ ឬ​លាក់​បន្ទាត់​ក្រឡាចត្រង្គ​នៅ​លើ​ក្រឡា​ដែល​មាន​ពណ៌​ផ្ទៃ​ខាងក្រោយ​បាន​ផង​ដែរ។"
#. yajBD
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:474
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:473
msgctxt "extended_tip|color"
msgid "Specifies a color for the grid lines in the current document."
msgstr "បញ្ជាក់​ពណ៌​សម្រាប់​បន្ទាត់​ក្រឡាចត្រង្គ​នៅ​ក្នុង​ឯកសារ​បច្ចុប្បន្ន។"
#. BpEmt
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:488
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:487
msgctxt "tpviewpage|labelCursor"
msgid "Pointe_r:"
msgstr ""
#. AmbjZ
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:499
msgctxt "tpviewpage|radiobuttonThemed"
msgid "T_hemed"
msgstr ""
-#. oNDyW
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:504
+#. xQTDE
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:503
msgctxt "tpviewpage|radiobuttonThemedTip"
-msgid "Show the cursor as defined in the icon theme, typically as fat cross."
+msgid "Show the pointer as defined in the icon theme, typically as fat cross."
msgstr ""
#. 3HxpG
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:515
msgctxt "tpviewpage|radiobuttonSystem"
msgid "S_ystem"
msgstr ""
-#. WxBQE
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:520
+#. weVdC
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:519
msgctxt "tpviewpage|radiobuttonSystemTip"
-msgid "Show the cursor as system default, typically an arrow pointer."
+msgid "Show the pointer as system default, typically an arrow pointer."
msgstr ""
#. Cb4AM
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:536
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:535
#, fuzzy
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "ជំនួយ​រូបភាព"
#. Qd5Rp
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
#, fuzzy
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "វត្ថុ/រូបភាព៖"
#. vLBFR
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
msgctxt "tpviewpage|diagram_label"
msgid "Char_ts:"
msgstr ""
#. q544D
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:595
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:594
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "វត្ថុ​​គំនូរ៖"
#. mpELg
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:610
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:609
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "បង្ហាញ"
#. Kx6yJ
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:611
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:610
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "លាក់"
#. oKpbX
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:615
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:614
msgctxt "extended_tip|objgrf"
msgid "Defines if objects and graphics are shown or hidden."
msgstr "កំណត់​ថា​តើ​ត្រូវ​បង្ហាញ ឬ​លាក់​វត្ថុ និង​ក្រាហ្វិក។"
#. wFBeZ
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:628
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "បង្ហាញ"
#. H7MAB
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:630
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "លាក់"
#. oVE9C
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:634
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:633
msgctxt "extended_tip|diagram"
msgid "Defines if charts in your document are shown or hidden."
msgstr "កំណត់​ថា​តើ​ត្រូវ​បង្ហាញ ឬ​លាក់​គំនូសតាង​នៅ​ក្នុង​ឯកសារ​របស់​អ្នក។"
#. YaiTQ
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:648
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "បង្ហាញ"
#. DST5a
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:649
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:648
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "លាក់"
#. FDGKD
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:653
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:652
msgctxt "extended_tip|draw"
msgid "Defines if drawing objects in your document are shown or hidden."
msgstr "កំណត់​ថា​តើ​ត្រូវ​បង្ហាញ ឬ​លាក់​វត្ថុ​គំនូរ​នៅ​ក្នុង​ឯកសារ​របស់​អ្នក។"
#. E6GxC
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:668
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:667
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "វត្ថុ "
-#. aFAnX
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:692
+#. AnHPF
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:691
msgctxt "extended_tip|TpViewPage"
-msgid "Defines which elements of the %PRODUCTNAME Calc main window are displayed. You can also show or hide highlighting of values in tables."
-msgstr "កំណត់​ថា​តើ​ត្រូវ​បង្ហាញ​ធាតុ​ណាមួយ​នៃ​បង្អួច​មេ​របស់ %PRODUCTNAME Calc ។ អ្នក​អាច​បង្ហាញ ឬ​លាក់​ការ​រំលេច​តម្លៃ​នៅ​ក្នុង​តារាង​បាន។"
+msgid "Defines which elements of the Calc main window are displayed. You can also show or hide highlighting of values in tables."
+msgstr ""
#. AnLEa
#: sc/uiconfig/scalc/ui/ttestdialog.ui:95
@@ -33498,6 +33549,18 @@ msgctxt "validationhelptabpage|extended_tip|ValidationHelpTabPage"
msgid "Enter the message that you want to display when the cell or cell range is selected in the sheet."
msgstr "បញ្ចូល​សារ​ដែល​អ្នក​ចង់​បង្ហាញ​នៅ​ពេល​​ក្រឡា ឬ​ជួរ​ក្រឡា​ត្រូវ​បាន​ជ្រើស​ក្នុង​សន្លឹក ។"
+#. XEHEu
+#: sc/uiconfig/scalc/ui/warnautocorrect.ui:13
+msgctxt "warnautocorrect|WarnAutoCorrect"
+msgid "%PRODUCTNAME Calc found an error in the formula entered."
+msgstr ""
+
+#. 7BDGp
+#: sc/uiconfig/scalc/ui/warnautocorrect.ui:14
+msgctxt "warnautocorrect|WarnAutoCorrect"
+msgid "Do you want to accept the correction proposed below?"
+msgstr ""
+
#. pSFWN
#: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:23
msgctxt "xmlsourcedialog|XMLSourceDialog"
diff --git a/source/km/sd/messages.po b/source/km/sd/messages.po
index f5d4373e10a..3ee6d82976a 100644
--- a/source/km/sd/messages.po
+++ b/source/km/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3091,6 +3091,12 @@ msgctxt "RID_SVXSTR_MENU_LAST"
msgid "~Last Slide"
msgstr ""
+#. Wkvpi
+#: sd/inc/strings.hrc:486
+msgctxt "STR_CLOSE_PANE"
+msgid "Close Pane"
+msgstr ""
+
#. xNozF
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
@@ -3511,6 +3517,12 @@ msgctxt "drawpagedialog|RID_SVXPAGE_TRANSPARENCE"
msgid "Transparency"
msgstr "ភាព​​ថ្លា"
+#. fLYAx
+#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:279
+msgctxt "drawpagedialog|RID_SVXPAGE_THEME"
+msgid "Theme"
+msgstr ""
+
#. cKCg3
#: sd/uiconfig/sdraw/ui/drawparadialog.ui:8
msgctxt "drawparadialog|DrawParagraphPropertiesDialog"
@@ -3896,225 +3908,225 @@ msgid "Name HTML Design"
msgstr "ដាក់ឈ្មោះ​ការ​រចនា HTML"
#. V3FWt
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3155
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3162
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
#. exwEC
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3174
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3181
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
#. qrXDY
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3230
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3237
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
#. EQ6HL
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4599
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4606
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. jtFqm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4698
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4705
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. zoUaS
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5429
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5436
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. S5FkE
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5612
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5619
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. Z3UCg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5716
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5723
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. TVDXM
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6416
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6423
msgctxt "drawnotebookbar|PageMenuButton"
msgid "_Layout"
msgstr ""
#. Rv7x4
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6501
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6508
msgctxt "drawnotebookbar|PageLabel"
msgid "~Layout"
msgstr ""
#. BQcfo
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7039
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:7046
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. prpcY
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7122
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:7129
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. EiuB6
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8151
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8158
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. EF3TH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8236
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8243
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. 94L75
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9581
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9588
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
#. PQtWE
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9683
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
#. tNq7H
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10578
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10585
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. 9pJGh
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10662
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10669
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ECD4J
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11189
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12506
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14300
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11196
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12513
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14307
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. 4Z6aZ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11857
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11864
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. 7FoFi
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11966
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11973
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 6SADm
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13717
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13724
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. 6S8qN
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13823
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13830
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. QAEDd
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14656
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14663
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. SL4NA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14763
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14770
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15264
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15271
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15368
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15375
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16176
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16183
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16260
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16267
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17054
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17154
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17161
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17678
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17685
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17762
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17769
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17819
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17826
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17893
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17900
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18812
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18889
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18896
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4222,109 +4234,109 @@ msgid "~Table"
msgstr ""
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr ""
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr ""
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr ""
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr ""
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4581,11 +4593,11 @@ msgctxt "vectorize|label2"
msgid "Number of colors:"
msgstr "ចំនួន​ពណ៌៖"
-#. fhFE7
+#. KBsVD
#: sd/uiconfig/sdraw/ui/vectorize.ui:145
msgctxt "vectorize|extended_tip|colors"
-msgid "Enter the number of colors to be displayed in the converted image. %PRODUCTNAME generates a polygon for each occurrence of a color in the image."
-msgstr "បញ្ចូល​ចំនួន​ពណ៌​ដែល​ត្រូវ​បង្ហាញ​ ក្នុង​រូប​ភាព​ដែល​បាន​បម្លែង​ ។ %PRODUCTNAME បង្កើត​ពហុកោណ​មួយ​ សម្រាប់​ការ​កើត​ឡើង​នីមួយៗ​នៃ​ពណ៌​ក្នុង​រូប​ភាព​ ។​"
+msgid "Enter the number of colors to be displayed in the converted image. A polygon is generated for each occurrence of a color in the image."
+msgstr ""
#. Fzf9L
#: sd/uiconfig/sdraw/ui/vectorize.ui:158
@@ -6499,11 +6511,11 @@ msgctxt "interactionpage|extended_tip|tree"
msgid "Lists the slides and the objects that you can target."
msgstr "រាយ​​​ស្លាយ​ និង វត្ថុ​​ ដែល​អ្នក​អាច​កំណត់​គោល​ដៅ ។​"
-#. f4AGD
+#. TLECB
#: sd/uiconfig/simpress/ui/interactionpage.ui:203
msgctxt "interactionpage|extended_tip|treedoc"
-msgid "Opens and displays a file during a slide show. If you select a %PRODUCTNAME file as the target document, you can also specify the page that will open."
-msgstr "​បើក​ និង បង្ហាញ​ឯកសារ​មួយ​​ កំឡុង​ពេល​​បញ្ចាំង​ស្លាយ​​មួយ​ ។ បើ​​​អ្នក​​ជ្រើស​ឯកសារ​ ​%PRODUCTNAME មួយ​ ជា​ឯកសារ​គោលដៅ​​ អ្នក​​ក៏​អាច​បញ្ជាក់​​​​ទំព័រ​ដែល​នឹង​បើក​ផង​ដែរ ។"
+msgid "Opens and displays a file during a slide show. If you select an ODF file as the target document, you can also specify the page that will open."
+msgstr ""
#. MZvua
#: sd/uiconfig/simpress/ui/interactionpage.ui:268
@@ -6734,10 +6746,10 @@ msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "បង្អួច​សកម្ម"
-#. zSARy
+#. gcSNb
#: sd/uiconfig/simpress/ui/navigatorpanel.ui:69
msgctxt "navigatorpanel|extended_tip|documents"
-msgid "Lists available %PRODUCTNAME files."
+msgid "Lists currently open documents."
msgstr ""
#. D6ag8
@@ -6848,237 +6860,237 @@ msgid "All shapes"
msgstr ""
#. qGFEo
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3189
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3196
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
#. PyC4c
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3208
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3215
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
#. VoxXb
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3264
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3271
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
#. XRcKU
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4784
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4791
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. XqFQv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4884
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4891
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. DEQhQ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5486
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5493
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. 9GEAC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6024
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6031
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. t3YwN
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6127
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6134
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 58fjG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6902
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6909
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
msgstr ""
#. ArPLp
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6987
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6994
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. vRtjP
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7451
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7458
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
#. nV5FC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7535
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7542
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
#. sDdGm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8071
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8078
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. drk6E
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8154
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8161
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. vjE5w
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9373
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9380
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. KJK9J
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9458
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9465
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. bWC2b
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10352
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10359
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. dmEJG
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10436
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10443
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. Cn8TS
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10961
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12215
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14027
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10968
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12222
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14034
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. do5DT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11631
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11638
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
#. XCSMA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11740
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11747
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. nTy3C
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13442
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13449
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. BfNQD
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13549
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13556
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. p3Faf
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14390
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. wL8mu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14490
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14497
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14991
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14998
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15095
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15102
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15903
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15910
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15987
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15994
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16789
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr ""
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16866
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16873
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr ""
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17676
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17683
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr ""
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17760
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17767
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr ""
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18547
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18554
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr ""
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18654
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18661
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr ""
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18711
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18718
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18785
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18792
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19748
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19755
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19832
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19839
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7186,109 +7198,109 @@ msgid "~Table"
msgstr ""
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr ""
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr ""
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr ""
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr ""
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -8097,11 +8109,11 @@ msgctxt "optimpressgeneralpage|cbCompatibility"
msgid "Add _spacing between paragraphs and tables"
msgstr ""
-#. 285BX
+#. 4dCoV
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:209
msgctxt "extended_tip|cbCompatibility"
-msgid "Specifies that %PRODUCTNAME Impress calculates the paragraph spacing exactly like Microsoft PowerPoint."
-msgstr "បញ្ជាក់​ថា %PRODUCTNAME Impress គណនា​គម្លាត​កថាខណ្ឌ​យ៉ាង​ជាក់លាក់​ដូច Microsoft PowerPoint ។"
+msgid "Specifies that Impress calculates the paragraph spacing exactly like Microsoft PowerPoint."
+msgstr ""
#. PaYjQ
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:224
@@ -8483,11 +8495,11 @@ msgctxt "presentationdialog|window"
msgid "In a _window"
msgstr ""
-#. wDbEX
+#. mGQKG
#: sd/uiconfig/simpress/ui/presentationdialog.ui:437
msgctxt "presentationdialog|extended_tip|window"
-msgid "Slide show runs in the %PRODUCTNAME program window."
-msgstr "ការ​បញ្ចាំង​ស្លាយ​រត់​ក្នុង​បង្អួច​កម្មវិធី​ %PRODUCTNAME ។"
+msgid "Slide show runs in the Impress program window."
+msgstr ""
#. DAKWY
#: sd/uiconfig/simpress/ui/presentationdialog.ui:448
@@ -8507,11 +8519,11 @@ msgctxt "presentationdialog|showlogo"
msgid "Show _logo"
msgstr "បង្ហាញ​រូប​សញ្ញា "
-#. cMi4u
+#. jCenX
#: sd/uiconfig/simpress/ui/presentationdialog.ui:480
msgctxt "presentationdialog|extended_tip|showlogo"
-msgid "Displays the %PRODUCTNAME logo on the pause slide."
-msgstr "បង្ហាញ​រូប​សញ្ញា​ %PRODUCTNAME ​លើ​ស្លាយ​ផ្អាក​ ។"
+msgid "Displays the application logo on the pause slide."
+msgstr ""
#. vJ9Ns
#: sd/uiconfig/simpress/ui/presentationdialog.ui:494
@@ -8604,11 +8616,11 @@ msgctxt "presentationdialog|alwaysontop"
msgid "Presentation always _on top"
msgstr "ការ​បង្ហាញ​តែងតែ​នៅ​លើ​គេ "
-#. Ux58Z
+#. 49nwd
#: sd/uiconfig/simpress/ui/presentationdialog.ui:655
msgctxt "presentationdialog|extended_tip|alwaysontop"
-msgid "The %PRODUCTNAME window remains on top during the presentation. No other program will show its window in front of your presentation."
-msgstr "បង្អួច​ %PRODUCTNAME នៅ​កំពូល កំឡុង​ពេល​ការ​បង្ហាញ​ ។ គ្មាន​កម្មវិធី​ណា​នឹង​បង្ហាញ​បង្អួច​របស់​វា ​នៅ​ពី​មុខ​ការ​បង្ហាញ​របស់​អ្នក​​ទេ​ ។"
+msgid "The Impress window remains on top during the presentation. No other program will show its window in front of your presentation."
+msgstr ""
#. zdH6V
#: sd/uiconfig/simpress/ui/presentationdialog.ui:673
@@ -8933,11 +8945,11 @@ msgctxt "publishingdialog|assignLabel"
msgid "Assign Design"
msgstr ""
-#. 9UbQB
+#. zD3NQ
#: sd/uiconfig/simpress/ui/publishingdialog.ui:298
msgctxt "publishingdialog|extended_tip|page1"
-msgid "Determines the settings for publishing %PRODUCTNAME Draw or %PRODUCTNAME Impress documents in HTML format."
-msgstr "កំណត់​ការកំណត់​សម្រាប់​ការបោះពុម្ពផ្សាយឯកសារ %PRODUCTNAME Draw ឬ %PRODUCTNAME Impress នៅក្នុង​ទ្រង់ទ្រាយ HTML ។"
+msgid "Determines the settings for publishing Draw or Impress documents in HTML format."
+msgstr ""
#. 9Wotv
#: sd/uiconfig/simpress/ui/publishingdialog.ui:335
@@ -9589,11 +9601,11 @@ msgctxt "sdviewpage|moveoutline"
msgid "_Contour of each individual object"
msgstr "វណ្ឌវង្ក​នៃ​វត្ថុ​នីមួយៗ"
-#. fWu42
+#. CqfUG
#: sd/uiconfig/simpress/ui/sdviewpage.ui:90
msgctxt "extended_tip|moveoutline"
-msgid "%PRODUCTNAME displays the contour line of each individual object when moving this object."
-msgstr "%PRODUCTNAME បង្ហាញ​បន្ទាត់​វណ្ឌវង្ក​របស់​វត្ថុ​នីមួយៗ នៅ​ពេល​ផ្លាស់ទី។"
+msgid "The contour line of each individual object is displayed when moving this object."
+msgstr ""
#. kJGzf
#: sd/uiconfig/simpress/ui/sdviewpage.ui:106
diff --git a/source/km/sfx2/messages.po b/source/km/sfx2/messages.po
index ff728128494..4b592e12bca 100644
--- a/source/km/sfx2/messages.po
+++ b/source/km/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: 2022-01-10 12:21+0100\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2018-10-21 19:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1648,341 +1648,335 @@ msgctxt "STR_HYPHENATION_BUTTON"
msgid "Learn more"
msgstr ""
-#. Wkvpi
-#: include/sfx2/strings.hrc:295
-msgctxt "STR_CLOSE_PANE"
-msgid "Close Pane"
-msgstr ""
-
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:330
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "យកចេញ"
#. JReRY
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:331
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:333
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:334
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:338
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:339
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:341
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:344
+#: include/sfx2/strings.hrc:342
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:343
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:344
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:345
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:346
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:348
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:349
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:350
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:351
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:352
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:355
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:356
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:357
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
@@ -2961,19 +2955,19 @@ msgid "Version comment:"
msgstr "មតិយោបល់​​កំណែ"
#. CEnTA
-#: sfx2/uiconfig/ui/cmisline.ui:45
+#: sfx2/uiconfig/ui/cmisline.ui:44
msgctxt "cmisline|type"
msgid "Type"
msgstr "ប្រភេទ"
#. g2yBR
-#: sfx2/uiconfig/ui/cmisline.ui:60
+#: sfx2/uiconfig/ui/cmisline.ui:59
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "បាទ/ចាស"
#. BWGuL
-#: sfx2/uiconfig/ui/cmisline.ui:74
+#: sfx2/uiconfig/ui/cmisline.ui:73
msgctxt "cmisline|no"
msgid "No"
msgstr "ទេ"
@@ -3344,81 +3338,87 @@ msgctxt "documentinfopage|userdatacb"
msgid "_Apply user data"
msgstr "អនុវត្ត​ទិន្នន័យ​អ្នក​ប្រើ "
-#. WzBG6
+#. QR2RQ
#: sfx2/uiconfig/ui/documentinfopage.ui:191
msgctxt "documentinfopage|extended_tip|userdatacb"
-msgid "Saves the user's full name with the file. You can edit the name by choosing Tools - Options - %PRODUCTNAME - User Data."
-msgstr "រក្សា​ទុក​ឈ្មោះ​ពេញ​របស់​អ្នក​ប្រើ​ជា​មួយ​នឹង​ឯកសារ​ ។ អ្នក​អាច​កែ​សម្រួល​ឈ្មោះ​ ដោយ​ជ្រើស​ ឧបករណ៍​ - ជម្រើស​ - %PRODUCTNAME - ទិន្នន័យ​អ្នក​ប្រើ​."
-
-#. LCDUj
-#: sfx2/uiconfig/ui/documentinfopage.ui:202
-msgctxt "documentinfopage|thumbnailsavecb"
-msgid "Save preview image with this document"
+msgid "Saves the user's full name with the file. You can edit the name by choosing Tools - Options - User Data."
msgstr ""
#. JFxmP
-#: sfx2/uiconfig/ui/documentinfopage.ui:217
+#: sfx2/uiconfig/ui/documentinfopage.ui:202
msgctxt "documentinfopage|reset"
msgid "Reset Properties"
msgstr ""
#. HrN2U
-#: sfx2/uiconfig/ui/documentinfopage.ui:224
+#: sfx2/uiconfig/ui/documentinfopage.ui:209
msgctxt "documentinfopage|extended_tip|reset"
msgid "Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted."
msgstr "កំណត់​ពេល​វេលា​កែសម្រួល​​ទៅ​សូន្យ​​វិញ​ ការ​បង្កើត​កាល​បរិច្ឆេទ​ជា​​ពេល​វេលា​ និង កាល​បរិច្ឆេទ​បច្ចុប្បន្ន​ និង​ លេខ​កំណែ​​​ទៅ​ ១ ។ ​កាល​បរិច្ឆេទ​កែប្រែ​ និង ​​​​បោះពុម្ព​ក៏​ត្រូវ​​បាន​លុប​​ផង​ដែរ ។​"
#. qeWvU
-#: sfx2/uiconfig/ui/documentinfopage.ui:236
+#: sfx2/uiconfig/ui/documentinfopage.ui:220
#, fuzzy
msgctxt "documentinfopage|signature"
msgid "Di_gital Signatures..."
msgstr "ហត្ថលេខា​ឌីជីថល..."
#. rEEgJ
-#: sfx2/uiconfig/ui/documentinfopage.ui:255
+#: sfx2/uiconfig/ui/documentinfopage.ui:239
msgctxt "documentinfopage|label11"
msgid "_Size:"
msgstr "ទំហំ៖"
#. WNFYB
-#: sfx2/uiconfig/ui/documentinfopage.ui:268
+#: sfx2/uiconfig/ui/documentinfopage.ui:252
msgctxt "documentinfopage|showsize"
msgid "unknown"
msgstr "មិន​ស្គាល់"
#. EgtLE
-#: sfx2/uiconfig/ui/documentinfopage.ui:283
+#: sfx2/uiconfig/ui/documentinfopage.ui:267
msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "ទីតាំង៖"
#. 9xhwo
-#: sfx2/uiconfig/ui/documentinfopage.ui:296
+#: sfx2/uiconfig/ui/documentinfopage.ui:280
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "ប្រភេទ៖"
#. ZLmAo
-#: sfx2/uiconfig/ui/documentinfopage.ui:319
+#: sfx2/uiconfig/ui/documentinfopage.ui:303
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "ប្ដូរ​ពាក្យសម្ងាត់​"
#. oqAZE
-#: sfx2/uiconfig/ui/documentinfopage.ui:337
+#: sfx2/uiconfig/ui/documentinfopage.ui:321
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "ពុម្ព ៖"
#. 5pXPV
-#: sfx2/uiconfig/ui/documentinfopage.ui:386
+#: sfx2/uiconfig/ui/documentinfopage.ui:370
msgctxt "documentinfopage|extended_tip|nameed"
msgid "Displays the file name."
msgstr "បង្ហាញ​ឈ្មោះ​ឯកសារ​ ។"
+#. LCDUj
+#: sfx2/uiconfig/ui/documentinfopage.ui:401
+msgctxt "documentinfopage|thumbnailsavecb"
+msgid "Save preview image with this document"
+msgstr ""
+
+#. 2GKBr
+#: sfx2/uiconfig/ui/documentinfopage.ui:419
+msgctxt "documentinfopage|image-preferred-dpi-checkbutton"
+msgid "Image preferred DPI"
+msgstr ""
+
#. VWjRu
-#: sfx2/uiconfig/ui/documentinfopage.ui:426
+#: sfx2/uiconfig/ui/documentinfopage.ui:483
msgctxt "documentinfopage|extended_tip|DocumentInfoPage"
msgid "Contains basic information about the current file."
msgstr "មាន​ព័ត៌​មាន​មូល​ដ្ឋាន​អំពី​ឯកសារ​បច្ចុប្បន្ន​ ។"
@@ -3819,10 +3819,10 @@ msgctxt "linkeditdialog|label4"
msgid "_Category:"
msgstr "ប្រភេទ​ "
-#. hNqRS
+#. AzB2M
#: sfx2/uiconfig/ui/linkeditdialog.ui:148
msgctxt "linkeditdialog|extended_tip|app"
-msgid "Lists the application that last saved the source file. %PRODUCTNAME applications have the server name soffice."
+msgid "Lists the application that last saved the source file. The office suite applications have the server name soffice."
msgstr ""
#. cj9do
@@ -5264,11 +5264,11 @@ msgctxt "versionsofdialog|always"
msgid "_Always save a new version on closing"
msgstr "រក្សាទុក​កំណែ​ថ្មី​ជានិច្ច នៅ​ពេល​បិទ"
-#. GCMVZ
+#. JxFDN
#: sfx2/uiconfig/ui/versionsofdialog.ui:210
msgctxt "versionsofdialog|extended_tip|always"
-msgid "If you have made changes to your document, %PRODUCTNAME automatically saves a new version when you close the document."
-msgstr "ប្រសិន​បើ​អ្នក​បាន​ធ្វើ​ការ​ផ្លាស់​ប្តូរ​​​ឯកសារ​របស់​អ្នក​​ %PRODUCTNAME រក្សា​ទុក​កំណែ​ថ្មី​ដោយ​​ស្វ័យ​ប្រវត្តិ​​ ពេល​អ្នក​បិទ​​ឯកសារ​ ។​"
+msgid "If you have made changes to your document then a new version is automatically saved when you close the document."
+msgstr ""
#. vuHjH
#: sfx2/uiconfig/ui/versionsofdialog.ui:225
diff --git a/source/km/svl/messages.po b/source/km/svl/messages.po
index 9c8e4d53652..07559bde217 100644
--- a/source/km/svl/messages.po
+++ b/source/km/svl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:13+0100\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2018-02-27 14:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29,6 +29,31 @@ msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr ""
+#. jPdyf
+#. tdf#145919 localizable strings to be shared in vcl and cui modules
+#: include/svl/svl.hrc:30
+msgctxt "GRTSTR_PASSED"
+msgid "PASSED"
+msgstr ""
+
+#. CreDg
+#: include/svl/svl.hrc:31
+msgctxt "GRTSTR_QUIRKY"
+msgid "QUIRKY"
+msgstr ""
+
+#. DAmDx
+#: include/svl/svl.hrc:32
+msgctxt "GRTSTR_FAILED"
+msgid "FAILED"
+msgstr ""
+
+#. kR2Uu
+#: include/svl/svl.hrc:33
+msgctxt "GRTSTR_SKIPPED"
+msgid "SKIPPED"
+msgstr ""
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
diff --git a/source/km/svtools/messages.po b/source/km/svtools/messages.po
index 11fc7b1bb0b..ffe949b0661 100644
--- a/source/km/svtools/messages.po
+++ b/source/km/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: 2021-12-20 13:21+0100\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5053,6 +5053,12 @@ msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interslavic Cyrillic"
msgstr ""
+#. 4eEDW
+#: svtools/inc/langtab.hrc:440
+msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
+msgid "Pennsylvania Dutch"
+msgstr ""
+
#. fXSja
#: svtools/uiconfig/ui/addresstemplatedialog.ui:8
msgctxt "addresstemplatedialog|AddressTemplateDialog"
@@ -5277,239 +5283,251 @@ msgctxt "graphicexport|label2"
msgid "Color Depth"
msgstr "ជម្រៅ​ពណ៌"
-#. 5v8Jn
-#: svtools/uiconfig/ui/graphicexport.ui:393
-msgctxt "graphicexport|extended_tip|compressionjpgnf"
+#. eUi3Y
+#: svtools/uiconfig/ui/graphicexport.ui:385
+msgctxt "graphicexport|losslesscb"
+msgid "Lossless"
+msgstr ""
+
+#. QKNme
+#: svtools/uiconfig/ui/graphicexport.ui:394
+msgctxt "graphicexport|extended_tip|losslesscb"
+msgid "Lossless images do not lose quality but result in larger files."
+msgstr ""
+
+#. 5Gv5x
+#: svtools/uiconfig/ui/graphicexport.ui:413
+msgctxt "graphicexport|extended_tip|compressionjpgwebpnf"
msgid "Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size."
msgstr ""
#. Tk5y2
-#: svtools/uiconfig/ui/graphicexport.ui:422
+#: svtools/uiconfig/ui/graphicexport.ui:442
msgctxt "graphicexport|label9"
msgid "Quality"
msgstr "គុណភាព"
#. AHkNV
-#: svtools/uiconfig/ui/graphicexport.ui:458
+#: svtools/uiconfig/ui/graphicexport.ui:478
msgctxt "graphicexport|extended_tip|compressionpngnf"
msgid "Sets the compression for the export. A high compression means a smaller, but slower to load image."
msgstr "កំណត់​ការ​បង្ហាប់​សម្រាប់​ការ​នាំចេញ។ A ការ​បង្ហាប់​ខ្ពស់ បាន​តូច ប៉ុន្តែ​យឺត​ក្នុង​ការ​ផ្ទុក​រូបភាព។"
#. f4LYz
-#: svtools/uiconfig/ui/graphicexport.ui:487
+#: svtools/uiconfig/ui/graphicexport.ui:507
msgctxt "graphicexport|label"
msgid "Compression"
msgstr "ការ​បង្ហាប់"
#. hQadL
-#: svtools/uiconfig/ui/graphicexport.ui:507
+#: svtools/uiconfig/ui/graphicexport.ui:527
#, fuzzy
msgctxt "graphicexport|rlecb"
msgid "RLE encoding"
msgstr "ការ​អ៊ិនកូដ RLE"
#. DqpKW
-#: svtools/uiconfig/ui/graphicexport.ui:518
+#: svtools/uiconfig/ui/graphicexport.ui:538
msgctxt "graphicexport|extended_tip|rlecb"
msgid "Applies RLE (Run Length Encoding) to the BMP graphics."
msgstr "អនុវត្ត RLE (ដំណើរការ​ការ​អ៊ិនកូដ​ប្រវែង) ទៅកាន់​ក្រាហ្វិក BMP ។"
#. EA7BF
-#: svtools/uiconfig/ui/graphicexport.ui:527
+#: svtools/uiconfig/ui/graphicexport.ui:547
msgctxt "graphicexport|label3"
msgid "Compression"
msgstr "ការ​បង្ហាប់"
#. qiLZK
-#: svtools/uiconfig/ui/graphicexport.ui:547
+#: svtools/uiconfig/ui/graphicexport.ui:567
msgctxt "graphicexport|interlacedcb"
msgid "Interlaced"
msgstr "ត្របាញ់"
#. cLvu6
-#: svtools/uiconfig/ui/graphicexport.ui:558
+#: svtools/uiconfig/ui/graphicexport.ui:578
msgctxt "graphicexport|extended_tip|interlacedcb"
msgid "Specifies whether the graphic is to be saved in interlaced mode."
msgstr "បញ្ជាក់​ថា​តើ​ក្រាហ្វិក​ត្រូវ​បាន​រក្សាទុក​នៅ​ក្នុង​របៀប​ត្របាញ់ ។"
#. BkbD3
-#: svtools/uiconfig/ui/graphicexport.ui:567
+#: svtools/uiconfig/ui/graphicexport.ui:587
msgctxt "graphicexport|label12"
msgid "Mode"
msgstr "របៀប"
#. Nhj88
-#: svtools/uiconfig/ui/graphicexport.ui:587
+#: svtools/uiconfig/ui/graphicexport.ui:607
msgctxt "graphicexport|savetransparencycb"
msgid "Save transparency"
msgstr "រក្សាទុក​ភាព​ថ្លា"
#. kZ3uW
-#: svtools/uiconfig/ui/graphicexport.ui:598
+#: svtools/uiconfig/ui/graphicexport.ui:618
msgctxt "graphicexport|extended_tip|savetransparencycb"
msgid "Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture."
msgstr "បញ្ជាក់​ថា​តើ ត្រូវ​រក្សាទុក​ផ្ទៃខាងក្រោយ​នៃ​រូបភាព​ជា​ភាព​ថ្លា​​ឬ​អត់​។ តែ​វត្ថុ​ប៉ុណ្ណោះ​ដែល​មើល​ឃើញ​នៅ​ក្នុង​រូបភាព GIF ។ ប្រើ Replacer ដើម្បី​កំណត់​ពណ៌​ថ្លា​ក្នុង​រូបភាព ។ ។"
#. ZPmXf
-#: svtools/uiconfig/ui/graphicexport.ui:607
+#: svtools/uiconfig/ui/graphicexport.ui:627
msgctxt "graphicexport|labe"
msgid "Drawing Objects"
msgstr "វត្ថុគំនូរ"
#. KMCxb
-#: svtools/uiconfig/ui/graphicexport.ui:634
+#: svtools/uiconfig/ui/graphicexport.ui:654
msgctxt "graphicexport|binarycb"
msgid "Binary"
msgstr "គោល​ពីរ"
#. qFTuj
-#: svtools/uiconfig/ui/graphicexport.ui:643
+#: svtools/uiconfig/ui/graphicexport.ui:663
msgctxt "graphicexport|extended_tip|binarycb"
msgid "Exports the file in binary format. The resulting file is smaller than a text file."
msgstr "នាំ​ចេញ​ឯកសារ​ក្នុង​ទ្រង់ទ្រាយ​គោល​ពីរ ។ ឯកសារ​លទ្ធផល​គឺ​តូច​ជាង​ឯកសារ​អត្ថបទ ។"
#. 8cZsH
-#: svtools/uiconfig/ui/graphicexport.ui:654
+#: svtools/uiconfig/ui/graphicexport.ui:674
msgctxt "graphicexport|textcb"
msgid "Text"
msgstr "អត្ថបទ"
#. GFbg2
-#: svtools/uiconfig/ui/graphicexport.ui:663
+#: svtools/uiconfig/ui/graphicexport.ui:683
msgctxt "graphicexport|extended_tip|textcb"
msgid "Exports the file in ASCII text format. The resulting file is larger than a binary file."
msgstr "នាំចេញ​ឯកសារ​ជា​ទ្រង់ទ្រាយ​អត្ថបទ ASCII ។ ប្រភេទ​ឯកសារ​នេះ​គឺ​ធំជាង​ឯកសារ​​គោលពីរ ។​"
#. ECUb9
-#: svtools/uiconfig/ui/graphicexport.ui:678
+#: svtools/uiconfig/ui/graphicexport.ui:698
msgctxt "graphicexport|label16"
msgid "Encoding"
msgstr "ការ​អ៊ិនកូដ"
#. aeV52
-#: svtools/uiconfig/ui/graphicexport.ui:710
+#: svtools/uiconfig/ui/graphicexport.ui:730
#, fuzzy
msgctxt "graphicexport|tiffpreviewcb"
msgid "Image preview (TIFF)"
msgstr "មើល​រូបភាព​ជាមុន (TIFF)"
#. H8vtD
-#: svtools/uiconfig/ui/graphicexport.ui:719
+#: svtools/uiconfig/ui/graphicexport.ui:739
msgctxt "graphicexport|extended_tip|tiffpreviewcb"
msgid "Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file."
msgstr "បញ្ជាក់​​ថា​តើ​រូបភាព​មើល​ជា​មុន​ត្រូវ​បាន​នាំចេញ​ក្នុង​ទ្រង់ទ្រាយ TIFF រួម​ជាមួយ​ឯកសារ PostScript ពិត​ប្រាកដ ។"
#. AeEJu
-#: svtools/uiconfig/ui/graphicexport.ui:730
+#: svtools/uiconfig/ui/graphicexport.ui:750
msgctxt "graphicexport|epsipreviewcb"
msgid "Interchange (EPSI)"
msgstr "ផ្លាស់ប្ដូរ (EPSI)"
#. gLbUQ
-#: svtools/uiconfig/ui/graphicexport.ui:738
+#: svtools/uiconfig/ui/graphicexport.ui:758
msgctxt "graphicexport|extended_tip|epsipreviewcb"
msgid "Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code."
msgstr "បញ្ជាក់​ថា​តើ​ក្រាហ្វិក​ទិដ្ឋភាព​មួយ​ពណ៌​ក្នុង​ទ្រង់ទ្រាយ EPSI ត្រូវ​បាន​នាំ​ចេញ​ព្រម​ជាមួយ​ឯកសារ PostScript ។ ទ្រង់ទ្រាយ​នេះ​មាន​តែ​តួ​អក្សរ​ដែល​អាច​បោះពុម្ព​បាន​ពី​កូដ ASCII 7 ប៊ីត ។"
#. sRbZb
-#: svtools/uiconfig/ui/graphicexport.ui:753
+#: svtools/uiconfig/ui/graphicexport.ui:773
msgctxt "graphicexport|label17"
msgid "Preview"
msgstr "មើល​ជាមុន"
#. Jfbgx
-#: svtools/uiconfig/ui/graphicexport.ui:780
+#: svtools/uiconfig/ui/graphicexport.ui:800
msgctxt "graphicexport|color1rb"
msgid "Color"
msgstr "ពណ៌"
#. LNHEi
-#: svtools/uiconfig/ui/graphicexport.ui:789
+#: svtools/uiconfig/ui/graphicexport.ui:809
msgctxt "graphicexport|extended_tip|color1rb"
msgid "Exports the file in color."
msgstr "នាំចេញ​ឯកសារ​នៅ​ក្នុង​ពណ៌ ។"
#. VeZFK
-#: svtools/uiconfig/ui/graphicexport.ui:800
+#: svtools/uiconfig/ui/graphicexport.ui:820
msgctxt "graphicexport|color2rb"
msgid "Grayscale"
msgstr "មាត្រដ្ឋាន​ប្រផេះ"
#. TWEx8
-#: svtools/uiconfig/ui/graphicexport.ui:809
+#: svtools/uiconfig/ui/graphicexport.ui:829
msgctxt "graphicexport|extended_tip|color2rb"
msgid "Exports the file in grayscale tones."
msgstr "នាំចេញ​​ឯកសារ​នៅ​ក្នុង​សំឡេង​មាត្រដ្ឋាន​ប្រផេះ ។"
#. BbSGF
-#: svtools/uiconfig/ui/graphicexport.ui:824
+#: svtools/uiconfig/ui/graphicexport.ui:844
#, fuzzy
msgctxt "graphicexport|label18"
msgid "Color Format"
msgstr "ទ្រង់ទ្រាយ​ពណ៌"
#. b6J7X
-#: svtools/uiconfig/ui/graphicexport.ui:851
+#: svtools/uiconfig/ui/graphicexport.ui:871
msgctxt "graphicexport|level1rb"
msgid "Level 1"
msgstr "កម្រិត ១"
#. pEcBC
-#: svtools/uiconfig/ui/graphicexport.ui:860
+#: svtools/uiconfig/ui/graphicexport.ui:880
msgctxt "graphicexport|extended_tip|level1rb"
msgid "Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2."
msgstr "ការ​បង្ហាប់​មិន​អាច​ប្រើ​បាន​ទេ​នៅ​កម្រិត​នេះ ។ ជ្រើស​ជម្រើស​កម្រិត​ ១ ប្រសិនបើ​​ម៉ាស៊ីន​បោះពុម្ព​ PostScript របស់​អ្នក​មិន​ផ្ដល់​សមត្ថភាព​កម្រិត​ ២ ទេ​នោះ ។"
#. kuCNX
-#: svtools/uiconfig/ui/graphicexport.ui:871
+#: svtools/uiconfig/ui/graphicexport.ui:891
msgctxt "graphicexport|level2rb"
msgid "Level 2"
msgstr "កម្រិត ២"
#. wiWrE
-#: svtools/uiconfig/ui/graphicexport.ui:880
+#: svtools/uiconfig/ui/graphicexport.ui:900
msgctxt "graphicexport|extended_tip|level2rb"
msgid "Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics."
msgstr "ជ្រើស​ជម្រើស​កម្រិត​ ២ ប្រសិនបើ​​ឧបករណ៍​​ទិន្នផល​របស់​អ្នក​គាំទ្រ bitmaps ដែល​បាន​ដាក់​ពណ៌ ក្រាហ្វិក​ក្ដារ និង​ក្រាហ្វិក​ដែល​បាន​បង្ហាប់ ។"
#. JUuBZ
-#: svtools/uiconfig/ui/graphicexport.ui:895
+#: svtools/uiconfig/ui/graphicexport.ui:915
msgctxt "graphicexport|label19"
msgid "Version"
msgstr "កំណែ​"
#. FjkbL
-#: svtools/uiconfig/ui/graphicexport.ui:922
+#: svtools/uiconfig/ui/graphicexport.ui:942
msgctxt "graphicexport|compresslzw"
msgid "LZW encoding"
msgstr "ការ​អ៊ិនកូដ LZW"
#. 5cYFM
-#: svtools/uiconfig/ui/graphicexport.ui:931
+#: svtools/uiconfig/ui/graphicexport.ui:951
msgctxt "graphicexport|extended_tip|compresslzw"
msgid "LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm."
msgstr "ការ​បង្ហាប់ LZW គឺ​ជា​ការ​បង្ហាប់​​នៃ​ឯកសារ​ទៅ​ជា​ឯកសារ​តូចជាង​ដោយ​ប្រើ​តារាង​​​ដែល​ផ្អែក​លើ​ក្បួន​ដោះស្រាយ ។"
#. vXGXe
-#: svtools/uiconfig/ui/graphicexport.ui:942
+#: svtools/uiconfig/ui/graphicexport.ui:962
msgctxt "graphicexport|compressnone"
msgid "None"
msgstr "គ្មាន"
#. kW3QD
-#: svtools/uiconfig/ui/graphicexport.ui:951
+#: svtools/uiconfig/ui/graphicexport.ui:971
msgctxt "graphicexport|extended_tip|compressnone"
msgid "Specifies that you do not wish to use compression."
msgstr "បញ្ជាក់​ថា​អ្នក​មិន​ចង់​ប្រើ​ការ​បង្ហាប់​ឡើយ ។"
#. ghAqZ
-#: svtools/uiconfig/ui/graphicexport.ui:966
+#: svtools/uiconfig/ui/graphicexport.ui:986
msgctxt "graphicexport|label20"
msgid "Compression"
msgstr "ការ​បង្ហាប់"
#. LmAeC
-#: svtools/uiconfig/ui/graphicexport.ui:1005
+#: svtools/uiconfig/ui/graphicexport.ui:1025
msgctxt "graphicexport|label4"
msgid "Information"
msgstr "ព័ត៌មាន"
@@ -5650,10 +5668,10 @@ msgctxt "printersetupdialog|options"
msgid "Options..."
msgstr "ជម្រើស..."
-#. BAnmG
+#. dAZjP
#: svtools/uiconfig/ui/printersetupdialog.ui:46
msgctxt "printersetupdialog|extended_tip|options"
-msgid "Opens the Printer Options dialog where you can override the global printer options set on the Tools - Options - %PRODUCTNAME Writer/Web - Print panel for the current document."
+msgid "Opens the Printer Options dialog where you can override the global printer options set on the Tools - Options - Writer/Web - Print panel for the current document."
msgstr ""
#. NCVY4
diff --git a/source/km/svx/messages.po b/source/km/svx/messages.po
index 70ac4f8bacd..c37cc7a6617 100644
--- a/source/km/svx/messages.po
+++ b/source/km/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: 2021-11-25 19:34+0100\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Central Khmer <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/km/>\n"
@@ -6278,365 +6278,473 @@ msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr ""
-#. 6BoWp
+#. aVTAG
#: include/svx/strings.hrc:1121
+msgctxt "RID_SVXSTR_THEME_COLORS"
+msgid "Theme colors"
+msgstr ""
+
+#. 6BoWp
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr ""
-#. DJGyY
+#. D6gmu
#: include/svx/strings.hrc:1123
+msgctxt "RID_SVXSTR_THEME_COLOR1"
+msgid "Background - Dark 1"
+msgstr ""
+
+#. JBJhM
+#: include/svx/strings.hrc:1124
+msgctxt "RID_SVXSTR_THEME_COLOR2"
+msgid "Text - Light 1"
+msgstr ""
+
+#. C7MSY
+#: include/svx/strings.hrc:1125
+msgctxt "RID_SVXSTR_THEME_COLOR3"
+msgid "Background - Dark 2"
+msgstr ""
+
+#. YdMAB
+#: include/svx/strings.hrc:1126
+msgctxt "RID_SVXSTR_THEME_COLOR4"
+msgid "Text - Light 2"
+msgstr ""
+
+#. NAAZJ
+#: include/svx/strings.hrc:1127
+msgctxt "RID_SVXSTR_THEME_COLOR5"
+msgid "Accent 1"
+msgstr ""
+
+#. 6txaB
+#: include/svx/strings.hrc:1128
+msgctxt "RID_SVXSTR_THEME_COLOR6"
+msgid "Accent 2"
+msgstr ""
+
+#. fECsk
+#: include/svx/strings.hrc:1129
+msgctxt "RID_SVXSTR_THEME_COLOR7"
+msgid "Accent 3"
+msgstr ""
+
+#. 4DH3P
+#: include/svx/strings.hrc:1130
+msgctxt "RID_SVXSTR_THEME_COLOR8"
+msgid "Accent 4"
+msgstr ""
+
+#. dUUDX
+#: include/svx/strings.hrc:1131
+msgctxt "RID_SVXSTR_THEME_COLOR9"
+msgid "Accent 5"
+msgstr ""
+
+#. 73ZEk
+#: include/svx/strings.hrc:1132
+msgctxt "RID_SVXSTR_THEME_COLOR10"
+msgid "Accent 6"
+msgstr ""
+
+#. VKjfB
+#: include/svx/strings.hrc:1133
+msgctxt "RID_SVXSTR_THEME_COLOR11"
+msgid "Hyperlink"
+msgstr ""
+
+#. DBfXC
+#: include/svx/strings.hrc:1134
+msgctxt "RID_SVXSTR_THEME_COLOR12"
+msgid "Followed Hyperlink"
+msgstr ""
+
+#. sNGoN
+#: include/svx/strings.hrc:1135
+msgctxt "RID_SVXSTR_THEME_EFFECT1"
+msgid "%1, 80% Lighter"
+msgstr ""
+
+#. uQBgP
+#: include/svx/strings.hrc:1136
+msgctxt "RID_SVXSTR_THEME_EFFECT2"
+msgid "%1, 60% Lighter"
+msgstr ""
+
+#. sEpvU
+#: include/svx/strings.hrc:1137
+msgctxt "RID_SVXSTR_THEME_EFFECT3"
+msgid "%1, 40% Lighter"
+msgstr ""
+
+#. XSfNG
+#: include/svx/strings.hrc:1138
+msgctxt "RID_SVXSTR_THEME_EFFECT4"
+msgid "%1, 25% Darker"
+msgstr ""
+
+#. 3xjEA
+#: include/svx/strings.hrc:1139
+msgctxt "RID_SVXSTR_THEME_EFFECT5"
+msgid "%1, 50% Darker"
+msgstr ""
+
+#. DJGyY
+#: include/svx/strings.hrc:1141
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "ហូត"
#. TyWTi
-#: include/svx/strings.hrc:1124
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "បិទ/បើក អនុវត្ត​ការ​ហូត"
#. DKFYE
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1143
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "ផ្អៀង​ចុះក្រោម"
#. 2Rrxc
-#: include/svx/strings.hrc:1126
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "ផ្អៀង​ឡើងលើ"
#. eDpJK
-#: include/svx/strings.hrc:1127
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "ផ្អៀង​ទៅ​ឆ្វេង"
#. CWDSN
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "ផ្អៀង​ទៅ​ស្តាំ"
#. CxYgt
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "ប្តូរ​ជម្រៅ​ហូត"
#. c5JCp
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "ប្តូរ​ទិស"
#. KDSyh
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "ប្តូរ​ប្រភេទ​ជញ្ជាំង"
#. JpzeS
-#: include/svx/strings.hrc:1132
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "ប្តូរ​ការ​បាញ់​ពន្លឺ"
#. j4AR9
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "ប្តូរ​ភាព​ភ្លឺ"
#. yA2xm
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr "ប្តូរ​ផ្ទៃ​ហូត"
#. DFEZP
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "ប្តូរ​ពណ៌​ហូត"
#. uPyWe
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1155
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "R ៖"
#. UMMJN
-#: include/svx/strings.hrc:1138
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "G ៖"
#. ocdkG
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1157
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "B ៖"
#. L962H
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1159
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "សិល្បៈ​អក្សរ"
#. 7RVov
-#: include/svx/strings.hrc:1142
+#: include/svx/strings.hrc:1160
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "អនុវត្ត​រាង​សិល្បៈ​អក្សរ"
#. h3CLw
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "អនុវត្ត​សិល្បៈ​អក្សរ កម្ពស់​អក្សរ​ដូចគ្នា"
#. 6h2dG
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1162
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "អនុវត្ត​ការ​តម្រឹម​សិល្បៈ​អក្សរ"
#. eKHcV
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1163
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr "អនុវត្ត​គម្លាត​តួអក្សរ​របស់​សិល្បៈ​អក្សរ"
#. oo88Y
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1165
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "ជាមួយ"
#. 4sz83
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1166
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "រចនាប័ទ្ម"
#. fEHXC
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1167
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "និង"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1169
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr "វត្ថុ​​បញ្ជា​​​​ជ្រុង"
#. CUEEW
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1170
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "ជម្រើស​នៃ​ចំណុច​កាច់​ជ្រុង ។"
#. cQmVp
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1171
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "កំពូល​ ឆ្វេង"
#. TtnJn
-#: include/svx/strings.hrc:1154
+#: include/svx/strings.hrc:1172
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr "កំពូល កណ្តាល"
#. UERVC
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1173
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "កំពូល​ ស្តាំ"
#. CznfN
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1174
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr "​ឆ្វេង កណ្តាល"
#. jvzC7
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1175
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "កណ្តាល"
#. HPtYD
-#: include/svx/strings.hrc:1158
+#: include/svx/strings.hrc:1176
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr "​ស្តាំ កណ្តាល"
#. v4SqB
-#: include/svx/strings.hrc:1159
+#: include/svx/strings.hrc:1177
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "បាត​ ឆ្វេង"
#. daA8a
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1178
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr "បាត​ កណ្តាល"
#. DGWf8
-#: include/svx/strings.hrc:1161
+#: include/svx/strings.hrc:1179
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "បាត​ ស្តាំ"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1181
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr "​វត្ថុ​​​​បញ្ជា​វណ្ឌវង្ក"
#. aMva8
-#: include/svx/strings.hrc:1164
+#: include/svx/strings.hrc:1182
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "នេះ​គឺ​ជា​កន្លែង​ដែល​អ្នក​អាច​កែសម្រួល​វណ្ឌវង្ក ។"
#. DXEuF
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1183
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "ជម្រើស​តួអក្សរ​ពិសេស"
#. JfRzP
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1184
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "ជ្រើស​តួអក្សរ​ពិសេស​ក្នុង​ផ្ទៃ​នេះ ។"
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1168
+#: include/svx/strings.hrc:1186
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "លេខ​តួអក្សរ"
#. HECeC
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1188
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "ទាមទារ​ការ​បញ្ចូល​ក្នុងវាល​ '#' ។ សូម​បញ្ចូល​តម្លៃ​មួយ ។"
#. w4wm8
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1189
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "សំណុំ​​បែបបទ"
#. cz8aS
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1190
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "គ្មាន​វត្ថុ​​​​បញ្ជា​ត្រូវ​បាន​ជ្រើស"
#. JG7Es
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1191
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "លក្ខណសម្បត្តិ ៖"
#. YQvBF
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "លក្ខណសម្បត្តិ​សំណុំ​បែបបទ"
#. qS9Rn
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1193
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "កម្មវិធី​រុករក​សំណុំ​បែបបទ"
#. PzEVD
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "សំណុំ​បែបបទ"
#. FWPxF
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr ""
#. DnoDH
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "សំណុំ​បែបបទ"
#. Ba4Gy
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "វត្ថុ​​បញ្ជា​​​​ដែល​លាក់"
#. wtZqP
-#: include/svx/strings.hrc:1180
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "វត្ថុ​​​​បញ្ជា"
#. HvXRK
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "កំណត់​​ត្រា"
#. HmTfB
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1200
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "នៃ​"
#. NZ68L
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1201
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "បន្ថែម​វាល​ ៖"
#. vGXiw
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1202
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "កំហុស​​​សរសេរ​ទិន្នន័យ​ទៅ​មូលដ្ឋាន​ទិន្នន័យ"
#. zzFRi
-#: include/svx/strings.hrc:1185
+#: include/svx/strings.hrc:1203
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "កំហុស​​​វាក្យ​​សម្ពន្ធ​​ ​ក្នុង​​​កន្សោម​​សំណួរ"
#. fS8JJ
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1204
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr "អ្នក​មាន​បំណង​​លុប​កំណត់ត្រា ១ ។"
#. Qb4Gk
-#: include/svx/strings.hrc:1187
+#: include/svx/strings.hrc:1205
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "# កំណត់ត្រា​នឹង​ត្រូវ​បាន​លុប ។"
#. zSJQe
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1206
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6646,337 +6754,337 @@ msgstr ""
"យ៉ាង​ណា​ក៏​ដោយ តើ​អ្នក​ចង់​បន្ត​ឬ​ទេ ?"
#. Kb7sF
-#: include/svx/strings.hrc:1189
+#: include/svx/strings.hrc:1207
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "របារ​​រុករក"
#. pKEQb
-#: include/svx/strings.hrc:1190
+#: include/svx/strings.hrc:1208
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "ជួរ​"
#. FXRKA
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "កំណត់​លក្ខណសម្បត្តិ​ '#'"
#. hXjTN
-#: include/svx/strings.hrc:1192
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "បញ្ចូល​ក្នុង​កុង​តឺន័រ"
#. BWpyC
-#: include/svx/strings.hrc:1193
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "លុប #"
#. ZeaDk
-#: include/svx/strings.hrc:1194
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "លុប​វត្ថុ #"
#. VgGrE
-#: include/svx/strings.hrc:1195
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "ជំនួស​ធាតុ​កុងតឺន័រ"
#. FoXgt
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1214
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "​​ជំនួស​វត្ថុ​​​​បញ្ជា"
#. ZGDAr
-#: include/svx/strings.hrc:1198
+#: include/svx/strings.hrc:1216
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
msgstr "ប្រអប់​​អក្សរ"
#. CBmAL
-#: include/svx/strings.hrc:1199
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "ប្រអប់ធីក​"
#. xwuJF
-#: include/svx/strings.hrc:1200
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
msgstr "ប្រអប់​​បន្សំ"
#. WiNUf
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "ប្រអប់​បញ្ជី"
#. a7gAj
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "វាល​​​កាល​​បរិច្ឆេទ​"
#. EaBTj
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "វាល​​​ពេល​​វេលា​"
#. DWfsm
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "វាល​​​​​លេខ​"
#. TYjnr
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "វាល​​​រូបិយ​វត្ថុ​"
#. B6MEP
-#: include/svx/strings.hrc:1206
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "វាល​​​លំនាំ​​"
#. DEn9D
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_PROPTITLE_FORMATTED"
msgid "Formatted Field"
msgstr "វាល​​​ដែល​​​​បាន​​​ធ្វើ​​​ទ្រង់​​ទ្រាយ"
#. V4iMu
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1227
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Push Button"
msgstr "ប៊ូតុងរុញ"
#. TreFC
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
msgstr "ប៊ូតុង​ជម្រើស​"
#. NFysA
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
msgid "Label Field"
msgstr "វាល​​​ស្លា​ក​"
#. E5mMK
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
msgstr "​ប្រអប់​​ក្រុម​"
#. 5474w
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
msgid "Image Button"
msgstr "ប៊ូតុង​​រូប​ភាព​"
#. qT2Ed
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
msgid "Image Control"
msgstr "វត្ថុ​​​​បញ្ជា​​រូប​ភាព​"
#. 6Qvho
-#: include/svx/strings.hrc:1215
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
msgstr "ជម្រើស​​​ឯកសារ​"
#. uEYBR
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "វត្ថុ​​​បញ្ជា​​​​តារាង ​"
#. 3SUEn
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr "របារ​រមូរ"
#. VtEN6
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "​ប៊ូតុង​​​​បង្កើន​​​​បន្ថយ"
#. eGgm4
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "របារ​រុករក"
#. yME46
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "ពហុជម្រើស"
#. s94UU
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1240
msgctxt "RID_STR_DATE_AND_TIME"
msgid "Date and Time Field"
msgstr ""
#. PzA5d
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1242
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr "គ្មាន​វត្ថុ​បញ្ជា​ដែល​ទាក់ទង​ទិន្នន័យ​ ក្នុង​សំណុំ​បែបបទ​បច្ចុប្បន្ន !"
#. ZyBEz
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (ការ​បរិច្ឆេទ)"
#. guA5u
-#: include/svx/strings.hrc:1226
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (ពេល​វេលា)"
#. 2wgdY
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr "កម្មវិធី​រុករក​តម្រង"
#. BUYuD
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr "ត្រង"
#. AcTBB
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "ឬ"
#. 6RPtu
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr "វត្ថុ​ភ្ជាប់​ត្រឹមត្រូវ​ ដែល​អាច​ត្រូវ​បាន​ប្រើ​ក្នុង​ទិដ្ឋភាព​តារាង​ មិន​មាន​ក្នុង​សំណុំ​បែប​បទ​បច្ចុប្បន្ន ។"
#. iEoGb
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr "<​វាល​​ស្វ័យ​ប្រវត្តិ​>"
#. Da6gx
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr "កំហុស​វាក្យ​សម្ព័ន្ធ​ក្នុង​សេចក្តី​ថ្លែង​ការណ៍ SQL"
#. ZoEuu
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr "មិនអាច​ប្រើតម្លៃ #1 ជាមួយ LIKE បានទេ ។"
#. 75ECE
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr "មិន​អាច​ប្រើ LIKE ជាមួយ​វាល​​នេះបានទេ ។"
#. tzFv5
-#: include/svx/strings.hrc:1235
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr "តម្លៃ​ដែល​បាន​បញ្ចូល មិន​មែន​ជា​តម្លៃ​ត្រឹមត្រូវ ។ សូម​បញ្ចូល​កាលបរិច្ឆេទ​មួយ ក្នុង​ទ្រង់ទ្រាយ​ត្រឹមត្រូវ ឧទាហរណ៍ MM/DD/YY ។"
#. y6Z26
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr "មិន​អាច​ប្រៀប​ធៀប​វាល​​ជាមួយ​ចំនួន​គត់បានទេ ។"
#. F8FgA
-#: include/svx/strings.hrc:1237
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "មូលដ្ឋានទិន្នន័យ មិនមាន​តារាង​ឈ្មោះ \"#\" ទេ​ ។"
#. EDcU7
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr "មូលដ្ឋានទិន្នន័យ​​មិនមានទាំង​តារាង ឬក៏ សំណួរ​ដែលមានឈ្មោះ \"#\" ទេ ។"
#. YBFF5
-#: include/svx/strings.hrc:1239
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr "មូលដ្ឋានទិន្នន័យ មានតារាង ឬ ទិដ្ឋភាព​ដែល​មានឈ្មោះ \"#\" រួចហើយ ។"
#. cECTG
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr "មូលដ្ឋាន​ទិន្នន័យ មាន​សំណួួរ​ដែលមាន​ឈ្មោះ \"#\" រួចហើយ ។"
#. VkeLY
-#: include/svx/strings.hrc:1241
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr "មិន​ស្គាល់​ជួរឈរ \"#1\" នៅក្នុងតារាង \"#2\" ទេ ។"
#. z9bf9
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr "មិន​អាច​ប្រៀប​ធៀប​វាល​​ជាមួយ​ចំនួន​​ពិត ។"
#. CEg85
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr "មិន​អាច​ប្រៀប​ធៀប​លក្ខណៈ​វិនិច្ឆ័យ​ដែល​បាន​បញ្ចូល ជាមួយ​វាល​នេះ ។"
#. ZGAAQ
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr "កម្មវិធី​រុករក​ទិន្នន័យ"
#. W4uM2
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (បាន​តែ​អាន)"
#. DgfNh
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "មាន​ឯកសារ​រួចហើយ ។ សរសេរ​ជាន់លើ​ឬ ?"
#. dSYCi
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "ស្លាក #object#"
#. JpaM6
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1267
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
@@ -6987,7 +7095,7 @@ msgstr ""
"តើ​អ្នក​ពិត​ជា​ចង់​លុប​គំរូ​នេះ​ឬ ?"
#. y5Dyt
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1268
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
@@ -6998,7 +7106,7 @@ msgstr ""
"តើ​អ្នក​ពិត​ជា​ចង់​លុប​វត្ថុនេះ​ឬ ?"
#. VEzGF
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1269
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
@@ -7009,13 +7117,13 @@ msgstr ""
"តើ​អ្នក​ពិត​ជា​ចង់​លុប​ធាតុ​នេះឬ ?"
#. 3hF6H
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr "តើ​អ្នក​ពិត​ជា​ចង់​លុប​គុណ​លក្ខណៈ​ '$ATTRIBUTENAME'?"
#. AWEbJ
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1271
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
@@ -7028,7 +7136,7 @@ msgstr ""
"តើ​អ្នក​ពិត​ជា​ចង់​លុប​ការ​ដាក់ស្នើ​នេះ​ឬ ?"
#. SGiK5
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1272
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
@@ -7041,1014 +7149,1020 @@ msgstr ""
"តើ​អ្នក​ពិត​ជា​ចង់​លុប​ការ​ចង​នេះ​ឬ ?"
#. 2zzHP
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr "ឈ្មោះ '%1' គឺ​មិន​ត្រឹមត្រូវ​ក្នុង XML ។ សូម​បញ្ចូល​ឈ្មោះ​ផ្សេងៗ ។"
#. 4nAtc
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr "បុព្វបទ '%1' គឺ​មិន​ត្រឹមត្រូវ​ក្នុង XML ។ សូម​បញ្ចូល​បុព្វបទ​ផ្សេង​មួយ ។"
#. qrFQD
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "ឈ្មោះ '%1' មាន​រួច​ហើយ ។​ សូម​បញ្ចូល​ឈ្មោះ​ថ្មី "
#. DKkaw
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr "ការ​ដាក់ស្នើ​ត្រូវ​តែ​មាន​ឈ្មោះ​មួយ ។"
#. xcAaD
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1277
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr "ប្រកាស"
#. XGRQA
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr "ដាក់"
#. tkRR3
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1279
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr "យក​"
#. fsyAL
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1280
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "គ្មាន"
#. Bjxmg
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1281
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "វត្ថុ"
#. affmF
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1282
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "ឯកសារ"
#. gJLHj
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1283
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "ចង ៖"
#. AEHco
-#: include/svx/strings.hrc:1266
+#: include/svx/strings.hrc:1284
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "សេចក្តី​​យោង ៖"
#. iLaBC
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1285
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "អំពើ ៖"
#. HBV5Q
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1286
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "វិធីសាស្ត្រ ៖"
#. dAN2F
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1287
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "ជំនួស ៖"
#. QMiqA
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1288
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "បន្ថែម​ធាតុ"
#. C9YBB
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1289
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "កែ​សម្រួល​ធាតុ"
#. XAh7B
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1290
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "លុប​ធាតុ"
#. CLHER
-#: include/svx/strings.hrc:1273
+#: include/svx/strings.hrc:1291
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "បន្ថែម​គុណ​លក្ខណៈ"
#. 6Ycoo
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1292
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "កែ​សម្រួល​គុណ​លក្ខណៈ"
#. 6dSAd
-#: include/svx/strings.hrc:1275
+#: include/svx/strings.hrc:1293
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "លុប​គុណ​លក្ខណៈ"
#. Ljhja
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1294
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr "បន្ថែម​ចង"
#. CHTrw
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1295
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr "កែ​សម្រួល​ចង"
#. yYwEG
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1296
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr "លុប​ចង"
#. yVch8
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1297
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr "បន្ថែម​ការ​ដាក់ស្នើ"
#. AX58u
-#: include/svx/strings.hrc:1280
+#: include/svx/strings.hrc:1298
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr "កែ​សម្រួល​ការ​ដាក់ស្នើ"
#. DFxmD
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1299
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr "លុប​ការ​ដាក់​ស្នើ"
#. qvvD7
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1300
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr "ធាតុ"
#. U4Btb
-#: include/svx/strings.hrc:1283
+#: include/svx/strings.hrc:1301
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr "គុណ​លក្ខណៈ"
#. Prceg
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1302
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "ចង"
#. iFARB
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1303
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr "កន្សោម​ភ្ជាប់"
#. BTmNa
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1305
#, fuzzy
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr "តើ​អ្នក​ពិត​ជា​ចង់​បោះបង់​ការ​សង្គ្រោះឯកសារ %PRODUCTNAME ឬ ?"
#. 5WjQZ
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1307
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "ឆ្វេង"
#. JC7pc
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "​ស្តាំ"
#. MhfuC
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "កណ្តាល"
#. kX7GR
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "ទសភាគ"
#. 7vecp
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1312
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr ""
#. ZCWNC
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1313
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr ""
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1315
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr "សរសេរ​ជាន់​លើ"
#. qqCSF
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr ""
#. 2BBEb
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_SELECTIONMODE_HELPTEXT"
msgid "%1. Click to change selection mode."
msgstr ""
#. Dh5A2
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr "ហត្ថលេខា​ជា​លេខ ៖ ហត្ថលេខា​ឯកសារ​គឺ​គ្មាន​បញ្ហា​ឡើយ ។"
#. xZprv
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr "ហត្ថលេខា​ជា​លេខ ៖ ហត្ថលេខា​ឯកសារ​គឺ​គ្មាន​បញ្ហា​ឡើយ ប៉ុន្តែ​មិន​អាច​ធ្វើ​ឲ្យ​វិញ្ញាបនបត្រ​មាន​សុពលភាព ។"
#. Yydkh
-#: include/svx/strings.hrc:1302
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr ""
#. X7CjP
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr "ហត្ថលេខា​ជា​លេខ ៖ ឯកសារ​មិន​ត្រូវ​បាន​ចុះ​ហត្ថលេខា​ឡើយ ។"
#. BRmFY
-#: include/svx/strings.hrc:1304
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr "ហត្ថលេខា​ឌីជីថល ៖ ហត្ថលេខា​ឯកសារ និង​វិញ្ញាបនបត្រ​ត្រឹមត្រូវ ប៉ុន្តែ​មិន​បាន​ចុះ​ហត្ថលេខា​លើ​ផ្នែក​ទាំងអស់​របស់​ឯកសារ​ទេ ។"
#. Swq5S
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1323
#, fuzzy
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "ឯកសារ​ត្រូវ​បាន​​កែប្រែ ។ ចុច​ទ្វេ​ដង​ដើម្បី​រក្សាទុក​ឯកសារ ។"
#. tRWKa
-#: include/svx/strings.hrc:1306
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr "ឯកសារ​មិន​ត្រូវ​បានកែប្រែ​ទេ តាំង​ពី​បាន​រក្សាទុក​ចុងក្រោយ ។"
#. 7C8GH
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "កំពុង​ផ្ទុក​ឯកសារ..."
#. YbNsP
-#: include/svx/strings.hrc:1308
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "ស្លាយ​ត្រូវ​ហ្នឹង​វីនដូ​បច្ចុប្បន្ន។"
#. Fpkx2
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr ""
#. HCjAM
-#: include/svx/strings.hrc:1311
+#: include/svx/strings.hrc:1329
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "ពង្រីក"
#. 2YBJE
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "បង្រួម"
#. n9EyG
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr ""
#. vNTaU
-#: include/svx/strings.hrc:1314
+#: include/svx/strings.hrc:1332
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "៥០%"
#. D6jxs
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr "៧៥​%"
#. 2Bufm
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1334
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "១០០%"
#. E5Xj8
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "១៥០%"
#. DjBVG
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "២០០%"
#. 6Axop
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1337
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "ទំព័រ​ទាំងមូល"
#. 2UBAF
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "ទទឹង​ទំព័រ"
#. YBg9X
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1339
#, fuzzy
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr "ទិដ្ឋភាព​ប្រសើរ​បំផុត"
#. Wi5Fy
-#: include/svx/strings.hrc:1323
+#: include/svx/strings.hrc:1341
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "រួមបញ្ចូល​រចនាប័ទ្ម"
#. BJSzf
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1342
#, fuzzy
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "រចនា​ប័ទ្ម​កថា​ខណ្ឌ"
#. ARuQM
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1343
#, fuzzy
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "រចនាប័ទ្ម​ក្រឡា"
#. 7ChAu
-#: include/svx/strings.hrc:1326
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr ""
#. K6Ave
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr ""
#. USdBy
-#: include/svx/strings.hrc:1328
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr "បាន​ទៅ​ដល់​ចុង​ឯកសារ"
#. CVSwo
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr ""
#. yCJzd
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr "បាន​ទៅ​ដល់​ចុង​សន្លឹក"
#. Diftw
-#: include/svx/strings.hrc:1331
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "រក​មិន​ឃើញ​ពាក្យ​គន្លឹះ"
#. xACuY
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr ""
#. CGo5w
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1351
#, fuzzy
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr "បាន​ទៅ​ដល់​ចុង​ឯកសារ"
#. nDCC4
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr ""
#. FNdxE
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr ""
#. hAzCn
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr ""
#. ihDqY
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1356
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr "ក្តារ​លាយ​ពណ៌"
#. sDL47
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr ""
#. 7FcWA
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1359
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr ""
#. j6dA6
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1361
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "ពាក្យ​សម្ងាត់​មិន​ត្រឹមត្រូវ"
#. JGJ9F
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1362
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr "ពាក្យ​សម្ងាត់​មិន​ដូច​​គ្នា"
#. VHTRb
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1364
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "ចំណុច​រង្វង់​តូច​តាន់"
#. AiNrB
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "ចំណុច​រង្វង់​ធំ​តាន់"
#. Vtk8J
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1366
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr "ចំណុច​ពេជ្រ​តាន់"
#. bQFBw
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1367
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "ចំណុច​ការេ​ធំ​តាន់"
#. 5eJDd
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr "ចំណុច​ព្រួញ​ចង្អុល​ស្ដាំ​ដែល​បំពេញ"
#. D8zQC
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr "ចំណុច​ព្រួញ​ចង្អុល​ស្ដាំ"
#. QCULV
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1370
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr ""
#. XuXC7
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1371
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr ""
#. cUEoG
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "លេខ 1) 2) 3)"
#. P2aKH
-#: include/svx/strings.hrc:1355
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "លេខ 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1356
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "លេខ (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1375
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr "លេខ​រ៉ូម៉ាំង​តួ​អក្សរ​ធំ I. II. III."
#. BPgDJ
-#: include/svx/strings.hrc:1358
+#: include/svx/strings.hrc:1376
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr "តួ​អក្សរ​ធំ A) B) C)"
#. GooHz
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1377
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr "តួ​អក្សរ​តូច a) b) c)"
#. k6waJ
-#: include/svx/strings.hrc:1360
+#: include/svx/strings.hrc:1378
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr "តួ​អក្សរ​តូច (a) (b) (c)"
#. ZiWKK
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1379
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr "លេខ​រ៉ូម៉ាំង​តូច i. ii. iii."
#. oDTBg
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1380
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr "លេខ លេខ តួ​អក្សរ​តូច ចំណុច​រង្វង់​តូច​តាន់"
#. m56fN
-#: include/svx/strings.hrc:1363
+#: include/svx/strings.hrc:1381
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr "លេច តួ​អក្សរ​តូច ចំណុច​រង្វង់​តូច​តាន់"
#. RyTLW
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1382
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr "លេច តួ​អក្សរ​តូច តួ​អក្សរ​រ៉ូម៉ាំង​តូច តួ​អក្សរ​ធំ ចំណុច​រង្វង់​តូច​តាន់"
#. GAfTp
-#: include/svx/strings.hrc:1365
+#: include/svx/strings.hrc:1383
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr "លេខ"
#. gjEgN
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1384
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr "តួ​អក្សរ​រ៉ូម៉ាំង​ធំ តួ​អក្សរ​ធំ តួ​អក្សរ​រ៉ូម៉ាំង​តូច តួ​អក្សរ​តូច ចំណុច​រង្វង់​តូច​តាន់"
#. DZ2kE
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1385
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr "តួ​អក្សរ​ធំ តួ​អក្សរ​រ៉ូម៉ាំង​ធំ តួ​អក្សរ​តូច តួ​អក្សរ​រ៉ូម៉ាំង​តូច ចំណុច​រង្វង់​តូច​តាន់"
#. TV9Mc
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1386
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr "លេខ​មាន​កម្រិត​រង​ទាំងអស់"
#. tiXu5
-#: include/svx/strings.hrc:1369
+#: include/svx/strings.hrc:1387
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr "ចំណុច​ចង្អុល​ខាង​ស្ដាំ ចំណុច​ព្រួញ​ចង្អុល​ខាង​ស្ដាំ ចំណុច​ពេជ្រ​តាន់ ចំណុច​រង្វង់​តូច​តាន់"
#. nEJiF
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1389
#, fuzzy
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "មិន​អាច​បង្កើត​ឯកសារ​បាន​ឡើយ ។"
#. CC6Sw
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1391
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr "រចនាប័ទ្ម​រចនា​តារាង"
#. c69eB
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1393
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr "អំពើ​ត្រូវ​មិន​ធ្វើ​វិញ ៖ $(ARG1)"
#. nsioo
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr "អំពើ​ត្រូវ​មិន​ធ្វើ​វិញ ៖ $(ARG1)"
#. DzJ9Y
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr "អំពើ​ត្រូវ​ធ្វើ​វិញ ៖ $(ARG1)"
#. HTTW5
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr "អំពើ​ត្រូវ​ធ្វើ​វិញ ៖ $(ARG1)"
#. H9jn7
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1398
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr "រក"
#. WbEFL
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr "ករណី​ដំណូច"
#. 59ENV
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr ""
#. vYw6p
-#: include/svx/strings.hrc:1384
+#: include/svx/strings.hrc:1402
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
#. JEkzY
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1403
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
#. n8VBe
-#: include/svx/strings.hrc:1386
+#: include/svx/strings.hrc:1404
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr "$(CAPACITY) kiB"
#. Xgeqc
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1405
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
msgstr ""
#. 8GqWz
-#: include/svx/strings.hrc:1388
+#: include/svx/strings.hrc:1406
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr ""
#. G2q7M
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1407
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr ""
#. oGKBg
-#: include/svx/strings.hrc:1390
+#: include/svx/strings.hrc:1408
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr ""
#. Fkrjs
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1409
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr ""
#. VWyEb
-#: include/svx/strings.hrc:1392
+#: include/svx/strings.hrc:1410
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr ""
#. pCpoE
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1411
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr ""
#. DELaB
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1412
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr ""
#. 3AZAG
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1413
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr ""
#. aCEJW
-#: include/svx/strings.hrc:1396
+#: include/svx/strings.hrc:1414
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr ""
+#. NBoWH
+#: include/svx/strings.hrc:1415
+msgctxt "STR_IMAGE_WEBP"
+msgid "WebP image"
+msgstr ""
+
#. p2L8C
-#: include/svx/strings.hrc:1397
+#: include/svx/strings.hrc:1416
#, fuzzy
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "មិន​ស្គាល់"
#. 8LBFX
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1418
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr "ប្ដូរ"
#. xLF42
-#: include/svx/strings.hrc:1401
+#: include/svx/strings.hrc:1420
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr "របៀប​រូបភាព"
#. fw5hA
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1421
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "ក្រហម"
#. CiQvY
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1422
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "បៃតង"
#. BhvBe
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1423
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "ខៀវ"
#. HSP36
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1424
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr "ពន្លឺ"
#. w5BYP
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1425
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "កម្រិត​ពណ៌"
#. EZUjS
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1426
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "ហ្គាម៉ា"
#. ernMB
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "ថ្លា​"
#. LdkNB
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1428
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr "ច្រឹប"
#. TJmBu
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1430
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr "ទិស​លំនាំដើម"
#. WQqju
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1431
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr "ពី​កំពូល​ទៅ​​បាត"
#. ipfz6
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1432
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr "បាត​ទៅ​កំពូល"
#. MLR44
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1433
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr "ជា​ជង់"
#. vUDeh
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1434
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr "រឹម​ទំព័រ​ឆ្វេង ៖"
#. EFBbE
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr "រឹម​ទំព័រ​កំពូល ៖"
#. 7HeyP
-#: include/svx/strings.hrc:1417
+#: include/svx/strings.hrc:1436
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr "រឹម​ទំព័រ​ស្តាំ ៖"
#. HCuWQ
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1437
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr "រឹម​ទំព័រ​បាត ៖"
#. zD9BB
-#: include/svx/strings.hrc:1419
+#: include/svx/strings.hrc:1438
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "​ពិពណ៌នា​​ទំព័រ ៖"
#. a4eSJ
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1439
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr "អក្សរ​ធំ"
#. DuQGP
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1440
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr "អក្សរ​តូច"
#. nWQ7R
-#: include/svx/strings.hrc:1422
+#: include/svx/strings.hrc:1441
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr "អក្សរ​ធំ​រ៉ូម៉ាំង"
#. PxkPZ
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1442
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr "អក្សរ​តូច​រ៉ូម៉ាំង​"
#. B7YEa
-#: include/svx/strings.hrc:1424
+#: include/svx/strings.hrc:1443
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr "ភាសា​​អារ៉ាប់"
#. vPbGB
-#: include/svx/strings.hrc:1425
+#: include/svx/strings.hrc:1444
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "គ្មាន"
#. akGGo
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1445
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "ផ្ដេក"
#. bbcaZ
-#: include/svx/strings.hrc:1427
+#: include/svx/strings.hrc:1446
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "បញ្ឈររ"
#. BQtGg
-#: include/svx/strings.hrc:1428
+#: include/svx/strings.hrc:1447
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "ឆ្វេង"
#. JWFLj
-#: include/svx/strings.hrc:1429
+#: include/svx/strings.hrc:1448
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "​ស្តាំ"
#. bxvGx
-#: include/svx/strings.hrc:1430
+#: include/svx/strings.hrc:1449
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "ទាំង​អស់"
#. S3nm4
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1450
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr "ឆ្លុះ"
#. dcvEJ
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1451
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "អ្នក​និពន្ធ ៖"
#. 2siC9
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1452
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "កាលបរិច្ឆេទ ៖"
#. pWoLe
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1453
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "អត្ថបទ ៖"
#. pAABc
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1454
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "ផ្ទៃ​ខាង​ក្រោយ​តួអក្សរ"
#. Deknh
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1456
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr "ក្តារ​លាយ​ពណ៌"
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1459
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr ""
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1462
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -8056,2135 +8170,2156 @@ msgid ""
msgstr ""
#. KycVH
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1464
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr "​ឡាតាំង​​​គោល"
#. bcjRA
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr "ឡាតាំង-១"
#. h6THj
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr "ឡាតាំង ពង្រីក-A"
#. o4EF9
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr "ឡាតាំង ​ពង្រីក-B"
#. W3CGs
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "ផ្នែក​បន្ថែម IPA"
#. yZjF6
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr "តួអក្សរ​អ្នក​បញ្ជាក់​គម្លាត"
#. EASZR
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr "ផ្សំ​វណ្ណយុត្តិ"
#. wBjC4
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr "​​ក្រិក​គោល"
#. Dh8Es
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr "និមិត្ត​សញ្ញា​​​​ក្រិក និង​​​កុបទិច"
#. jGT5E
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr "ស៊ីរីលីក"
#. DQgLS
-#: include/svx/strings.hrc:1455
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr "​អារមេនី"
#. kXEQY
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr "​ហេប្រូ​គោល"
#. Cb8g4
-#: include/svx/strings.hrc:1457
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr "​ហេប្រូ ពង្រីក"
#. ZmDCd
-#: include/svx/strings.hrc:1458
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr "​អារ៉ាប់​គោល"
#. hZDFV
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr "​អារ៉ាប់ ​ពង្រីក"
#. c3CqD
-#: include/svx/strings.hrc:1460
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr "ដេវាណាការី"
#. EfVnG
-#: include/svx/strings.hrc:1461
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr "​បេន្កាលី"
#. iWzLc
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr "គួរមុកឃី"
#. omacG
-#: include/svx/strings.hrc:1463
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr "ហ្កុយ៉ារាទី"
#. Cdwzw
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr "អូឌៀ"
#. BhEGN
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr "តាមីល"
#. 6YkEo
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr "តេលូហ្គូ"
#. J5qn4
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr "កិណាដា"
#. 4UEFU
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr "ម៉ាឡាយ៉ាឡាម"
#. C5yzo
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr "ថៃ"
#. EvjbD
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr "ឡាវ"
#. HqFTh
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr "​ហ្សកហ្ស៊ី​​គោល"
#. npAc8
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr "ហ្សកហ្ស៊ី​ ​ពង្រីក"
#. AHAB4
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr "ហាន់​ហ្គូល យ៉ាមូ"
#. gMEFL
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr "ឡាតាំង​ ​ពង្រីក​បន្ថែម"
#. uVYXp
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr "ក្រិក ​ពង្រីក"
#. LEQg6
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr "ការ​ប្រើ​​វណ្ណយុត្តិ​​ទូទៅ"
#. D9KFj
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr "អក្សរ​តូច​លើ និង​អក្សរ​តូច​​ក្រោម"
#. yaxYV
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "និមិត្ត​សញ្ញា​រូបិយប័ណ្ណ"
#. jzA5i
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr "ផ្សំ​​និមិត្ត​សញ្ញា​វណ្ណយុត្តិ"
#. CHNBZ
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr "និមិត្ត​សញ្ញា​ដូច​អក្សរ"
#. cDkEd
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "ទម្រង់​លេខ"
#. j25Fp
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "ព្រួញ"
#. p5Tbx
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr "សញ្ញា​ប្រមាណវិធី​គណិតវិទ្យា"
#. ckgof
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr "បច្ចេកទេស​ផ្សេង​ៗ"
#. 8rXdw
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr "ត្រួតត្រា​​​​រូបភាព"
#. D4J8A
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr "ការ​ស្គាល់​ដោយ​ផ្នែក"
#. hXwgf
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr "អក្សរ​ក្រម​លេខ​ដែល​​ត្រូវ​បាន​ព័ទ្ធជុំ​វិញ"
#. AD9HJ
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr "គំនូរ​ប្រអប់"
#. vViaR
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr "ធាតុ​បណ្តុំ"
#. ok7ks
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr "រាង​ធរណីមាត្រ"
#. sKty5
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "និមិត្ត​សញ្ញា​ផ្សេង​ៗ"
#. yDpNT
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr "ដែល​ខុស​គេ"
#. Cth4P
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr "និមិត្ត​សញ្ញា CJK និង​ការ​ប្រើ​​វណ្ណយុត្តិ"
#. Bo4iK
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr "ហ៊ីរាហ្គាណា"
#. i2Cdr
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr "កាតាកាណា"
#. 9YYLD
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr "បូភូមូហ្វូ "
#. F9UFG
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr "ហាន់​ហ្គូលឆបយ៉ាមូ "
#. yeRDE
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr "CJK ផ្សេង​ៗ"
#. kPFs9
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr "តួអក្សរ​ និង​ខែ​ CJK ដែល​​ត្រូវ​បាន​​ព័ទ្ធជុំវិញ"
#. 6tAx6
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "ភាព​ឆប​គ្នា CJK"
#. VakXP
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr "ហាន់​ហ្គូល"
#. XzS6D
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr "CJK Unified Ideographs"
#. JVCP5
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr "CJK Unified Ideographs Extension-A"
#. Y33VK
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr "តំបន់​ប្រើ​ឯកជន"
#. 8yYiM
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr "CJK Compatibility Ideographs"
#. BEfFQ
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr "សំណុំ​បែបបទ​ Presentatoin តាម​លំដាប់​អក្ខរក្រម"
#. NCsAG
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr "សំណុំ​​បែបបទ​ Presentation ​អារ៉ាប់​-​A"
#. adi8G
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr "បន្សំ​សញ្ញា​ពាក់​កណ្តាល"
#. vLBhn
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr "សំណុំ​បែបបទ​ឆបគ្នា CJK"
#. i6R3B
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr "ទម្រង់​តូច​ប្រែប្រួល"
#. 7EDCh
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr "សំណុំ​​បែបបទ​ Presentation ​អារ៉ាប់​-​B"
#. WWoWx
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr "សំណុំ​​បែបបទ​​ទទឹង​​ពាក់​​កណ្តាល និង​​ពេញ"
#. dkDXh
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "ពិសេស"
#. GQSEx
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr "ព្យាង្គ Yi"
#. BL66x
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr "រ៉ាឌីកាល់ Yi"
#. cuQ2k
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr "ទ្រេត​បុរាណ"
#. wtKAB
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr "Gothic"
#. GPFqC
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr "Deseret"
#. 7AovD
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr "និមិត្តសញ្ញា​តន្ត្រី Byzantine"
#. G3GQF
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr "និមិត្តសញ្ញា​តន្ត្រី​"
#. YzBDD
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr "និមិត្តសញ្ញា​​អក្សរក្រម​លេខ​គណិតវិទ្យា"
#. 3XZRw
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr "ផ្នែក​បន្ថែម B សញ្ញា​ក្រាហ្វិក​ CJK ដែល​បាន​បញ្ចូល​គ្នា"
#. nZnQc
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr "ផ្នែក​បន្ថែម C សញ្ញា​ក្រាហ្វិក​ CJK ដែល​បាន​បញ្ចូល​គ្នា"
#. HBwZE
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr "ផ្នែក​បន្ថែម A សញ្ញា​ក្រាហ្វិក​ CJK ដែល​បាន​បញ្ចូល​គ្នា"
#. TTFkh
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr "ការ​បំពេញ​សញ្ញា​ក្រាហ្វិក​​នៃ​ភាព​ឆប​គ្នា​របស់ CJK"
#. 2jALB
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr "ស្លាក"
#. 2iHJN
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr "ស៊ីរី​បន្ថែម"
#. ABgr9
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr "កម្មវិធី​ជ្រើស​បម្រែបម្រួល"
#. a4q6S
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr "ផ្ទៃ​ប្រើប្រាស់​ឯកជន​បង្គ្រប់ A"
#. k638K
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr "ផ្ទៃ​ប្រើប្រាស់​ឯកជន​បង្គ្រប់ B"
#. pKFTg
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr "លីមប៊ួ"
#. TJHGp
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr "Tai Le"
#. nujxa
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr "និមិត្តសញ្ញា​របស់​​ខ្មែរ"
#. neD93
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr "ផ្នែក​បន្ថែម​នៃ​សូរស័ព្ទ"
#. C6LwC
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr "និមិត្តសញ្ញា និង​ព្រួញ​ផ្សេង​ៗ"
#. giR4r
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr "និមិត្តសញ្ញា​រូប​ប្រាំមួយ​ផ្ទាំង​របស់​ Yijing"
#. EqFxm
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr "ព្យាង្គ​លីនេអ៊ែរ​ B"
#. VeZNe
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr "សញ្ញា​ក្រាហ្វិក​លីនេអ៊ែរ B "
#. Tvkgh
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr "លេខ​អ៊ីឌ្យីន​"
#. CuThH
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr "Ugaritic"
#. nBtk5
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr "Shavian"
#. vvMNk
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr "Osmanya"
#. aiySp
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr "ស៊ីនហាឡា​"
#. PEGiu
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr "ទីបេ"
#. tRBTP
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr "ភូមា"
#. 8sgGF
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr "ខ្មែរ"
#. CdXvH
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr "អ៊កហែម"
#. jFWRQ
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr "រ៉ូនីក"
#. jhzoc
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr "ស៊ីរី"
#. B66QG
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr "ថាណា"
#. j8cuG
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr "អ៊ីយូពីក"
#. AE5wq
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr "ចេរ៉ូគី"
#. 9mgNF
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1572
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr "Canadan Aboriginal Syllables"
#. d5JWE
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr "ម៉ុងហ្គោលី"
#. XnzyB
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr "និមិត្ត​សញ្ញា​គណិតវិទ្យា​ផ្សេង​ៗ-A"
#. R5W9H
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr "ព្រួញ​​​បង្គ្រប់ - A"
#. QYf7A
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr "លំនាំអក្សរ​សម្រាប់​អ្នក​ពិការ​ភ្នែក"
#. 63BBg
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr "ព្រួញ​​បង្គ្រប់-B"
#. ykowm
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr "និមិត្ត​សញ្ញា​គណិតវិទ្យា​ផ្សេង​ៗ-B"
#. GGdze
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr "ការ​បន្ថែម​រ៉ាឌីកាល់ CJK"
#. WLLAP
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr "រ៉ាឌីកាល់​កាន់ជី"
#. EyZR2
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr "Ideographic Description Characters"
#. o3AQ6
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr "តាកាឡូក"
#. BVieL
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr "ហានូណូ"
#. DwAEz
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr "តាក​បាន​វ៉ា"
#. 3GDP5
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr "ប៊ុយហីត"
#. BfGBm
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr "កាន់ប៊ូន"
#. cL7Vo
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr "បូភូមូហ្វូ បាន​ពង្រីក"
#. MQoBs
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr "សទ្ទសាស្ត្រ​កាតាកាណា"
#. fCpRM
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr "ស្នាម​គូស CJK"
#. zyW2q
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr "តារាង​តួអក្សរ Cypriot"
#. GWxb8
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr "និមិត្តសញ្ញា Tai Xuan Jing"
#. 8ZJmr
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr "ការ​បំពេញ​កម្មវិធី​ជ្រើស​បម្រែបម្រួល"
#. RR6Er
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr "ការ​កត់ត្រា​តន្ត្រី​ក្រិក​បូរាណ"
#. K3GsF
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr "លេខ​ក្រិក​បុរាណ​"
#. y4HCg
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr "អារ៉ាប់ បន្ថែម"
#. KUnXb
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr "Buginese"
#. zDaXa
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr "ការ​បន្ថែម​សញ្ញា​បន្សំ​វណ្ណយុត្ត"
#. 9Z24A
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr "កុបទិក"
#. CANHf
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr "អេត្យូពី​បាន​ពង្រីក"
#. X8DEc
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr "អេត្យូពី បន្ថែម"
#. fYpFz
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr "ហ្សក​ហ្ស៊ី បន្ថែម"
#. 3Gzxx
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr "Glagolitic"
#. zKCVG
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr "Kharoshthi"
#. U8zrU
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr "កម្មវិធី​កែ​សំឡេង​អក្សរ"
#. B2yF8
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr "Tai Lue ថ្មី"
#. J4KdA
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr "ភឺសៀន​បុរាណ"
#. eGPjC
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr "ការ​បំពេញ​ផ្នែក​បន្ថែម​នៃ​សូរស័ព្ទ"
#. XboFE
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr "វណ្ណយុត្ត​បង្គ្រប់"
#. tBJi3
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr "Syloti Nagri"
#. Qrowh
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr "Tifinagh"
#. aZKS5
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "ទម្រង់​បញ្ឈរ"
#. ihUDF
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr "Nko"
#. Z3AAi
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr "Balinese"
#. 428ER
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr "ឡាតាំង​បាន​ពង្រីក-C"
#. SqFfT
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr "ឡាតាំង​បាន​ពង្រីក​-D"
#. yMmow
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr "Phags-Pa"
#. V6CsB
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr "Phoenician"
#. GNBwz
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr "Cuneiform"
#. VBPZE
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr "ចំនួន និង​ការ​ដាក់​វណ្ណយុត្ត​របស់ Cuneiform"
#. 9msGJ
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr "រាប់​លេខ​ម្ដង​មួយ​កំណាត់"
#. i6Gx9
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr "ស៊ូដង់"
#. WrXXX
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr "Lepcha"
#. FhhAQ
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr "Ol Chiki"
#. eHvUh
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr "ស៊ីរី​បាន​ពង្រីក​-A"
#. ZkKwE
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr "Vai"
#. pBASG
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr "ស៊ីរី​បាន​ពង្រីក​-B"
#. GoQpd
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr "Saurashtra"
#. 6pufg
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr "Kayah Li"
#. bmFny
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr "Rejang"
#. EaXay
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "ចាម"
#. qYaAV
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr "និមិត្ត​សញ្ញា​ដើម"
#. At8Tk
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr "Phaistos Disc"
#. ryGAF
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr "Lycian"
#. EYLa8
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr "Carian"
#. TPN6m
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr "Lydian"
#. G5GLd
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr "Mahjong Tiles"
#. EyMaF
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr "Domino Tiles"
#. r2YQs
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr "សាម៉ារីតាន់"
#. feZ2Q
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr "ព្យាង្គ​រួម​របស់​កាណាដា​ដែល​បាន​ពង្រីក"
#. H4FpF
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr "Tai Tham"
#. BgKLG
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr "ផ្នែក​បន្ថែម​របស់ Vedic"
#. bVNYf
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "Lisu"
#. riEM3
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr "Bamum"
#. CQMqK
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr "ទម្រង់​លេខ​​របស់ Indic ទូទៅ"
#. gDEUp
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr "Devanagari បាន​ពង្រីក"
#. UsAq2
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr "Hangul Jamo បាន​ពង្រីក A"
#. g5H7j
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr "ជ្វា"
#. upBjC
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr "មីយ៉ាន់ម៉ា​បាន​ពង្រីក A"
#. GQ3XX
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr "Tai Viet"
#. HGVSu
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr "Meetei Mayek"
#. ryvor
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr "Hangul Jamo បាន​ពង្រីក B"
#. RTxUc
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr "Imperial Aramaic"
#. 7E6G8
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr "អារ៉ាប់​ខាងត្បួង​បុរាណ"
#. Ab3wu
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr "អាវែស្តង់"
#. 5gN8e
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr "សិលាចារឹក Parthian"
#. D7rcV
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr "សិលាចារឹក Pahlavi"
#. d44Dq
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr "ទួរគី​បុរាណ"
#. CLuJC
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr "សញ្ញា​លេខ Rumi"
#. FpFeH
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr "Kaithi"
#. Swfzy
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr "អក្សរ​បយរាណ​របស់​អេហ្សីប"
#. bMYVC
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr "បាន​ភ្ជាប់​ជាមួយ​នូវ​អក្សរក្រម​លេខ​បង្គ្រប់"
#. Dqcpa
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr "បាន​ភ្ជាប់​អក្សរក្រម​លេខ​បង្គ្រប់"
#. 8eCZn
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr "Mandaic"
#. 8LVFp
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr "Batak"
#. 9SrgK
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr "អេត្យូពី​បាន​ពង្រីក​ A"
#. cQEzt
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr "Brahmi"
#. n4oND
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr "Bamum បង្គ្រប់"
#. xibkG
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr "Kana បង្គ្រប់"
#. xyswt
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1669
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr "លេង​បៀរ"
#. TqExt
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr "និមិត្តសញ្ញា និង​សញ្ញា​សម្គាល់​ផ្សេង​ៗ"
#. wtMts
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr "សញ្ញា​អារម្មណ៍"
#. WgGuX
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr "និមិត្តសញ្ញា​ផែនទី និង​ការ​ដឹកជញ្ជូន"
#. fBitP
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr "និមិត្តសញ្ញា​រូបវិទ្យា​គីមី"
#. CWvjP
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr "​អារ៉ាប់ ​ពង្រីក A"
#. D7mEf
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr "និមិត្តសញ្ញា​អក្សរក្រម​គណិតវិទ្យា​អារ៉ាប់"
#. 8ouWH
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr "Chakma"
#. z3gG4
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr "ផ្នែក​បន្ថែម​របស់ Meetei Mayek"
#. mFAeA
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr "Meroitic Cursive"
#. b5m8K
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr "Meroitic Hieroglyphs"
#. Xrkei
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr "Miao"
#. hG9Na
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr "Sharada"
#. rTKpL
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr "Sora Sompeng"
#. CAKEC
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr "ស៊ូដង់​បង្គ្រប់"
#. pTsMT
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr "Takri"
#. HNCk9
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr ""
#. GWufB
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr ""
#. t8Bfn
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr ""
#. kAeYs
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1688
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr "ការ​បន្ថែម​សញ្ញា​បន្សំ​វណ្ណយុត្ត"
#. 8TGuM
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr ""
#. Yaq3z
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr ""
#. QmkME
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr ""
#. R9PgF
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr ""
#. tpSqU
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1693
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr ""
#. 4pjBM
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr ""
#. GoPep
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1695
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr "ឡាតាំង ពង្រីក-A"
#. wNozk
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1696
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "លីនេអ៊ែរ"
#. SjAev
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1697
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr ""
#. CA7vw
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr ""
#. UUKC4
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr ""
#. ZhzBz
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1700
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr "របៀប"
#. jC4Ue
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr ""
#. TiWmd
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1702
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr "មីយ៉ាន់ម៉ា​បាន​ពង្រីក A"
#. y7tCX
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr ""
#. T29Cw
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1704
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr "អារ៉ាប់​ខាងត្បួង​បុរាណ"
#. EZADa
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr ""
#. 9oFL2
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1706
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr ""
#. TYGv3
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1707
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr ""
#. wd8bD
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1708
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr ""
#. dkSnn
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr ""
#. bts3U
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr ""
#. XSwsB
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr ""
#. rdXCX
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1712
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr ""
#. GwT8c
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr ""
#. mz3Cs
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1714
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr "ព្រួញ​​​បង្គ្រប់ - A"
#. iGUzh
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr ""
#. HRBEN
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1716
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr ""
#. 9NCBd
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr ""
#. cPJhp
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr ""
#. GAd7H
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr ""
#. TDgY4
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1720
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr "CJK Unified Ideographs Extension-A"
#. ho93C
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr ""
#. La5yr
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr ""
#. e3aXA
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr ""
#. D6qsK
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr ""
#. aVhdm
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr ""
#. B6UHz
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr ""
#. rFgRw
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr ""
#. F2AJT
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr ""
#. zDLT2
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1729
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr "ស៊ីរី​បាន​ពង្រីក​-A"
#. S69GG
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr ""
#. QeCxG
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr ""
#. 45hVB
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr ""
#. Mr7RB
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1733
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr "ហ្សក​ហ្ស៊ី បន្ថែម"
#. RTgGA
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1734
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "ថ្មី"
#. JJrpR
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1735
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "ការ​ប្រើ"
#. o3qMt
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr ""
#. nRMFd
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr ""
#. uFMWt
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1738
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr "CJK Unified Ideographs Extension-A"
#. DH39v
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1739
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr "មីយ៉ាន់ម៉ា​បាន​ពង្រីក A"
#. jPSFu
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr ""
#. TGJHU
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr ""
#. DHbMR
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr ""
#. gPnhH
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1743
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr "ស៊ីរី​បន្ថែម"
#. rbMNp
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1744
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr ""
#. i5evF
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1745
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr ""
#. BYA5Y
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1746
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr ""
#. xDvRL
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1747
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr ""
#. uzq7e
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1748
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr ""
#. FAwvP
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1749
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr ""
#. TYjtp
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1750
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr ""
#. abFR5
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1751
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr ""
#. aDjHx
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1752
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr ""
#. qMf5N
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1753
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr ""
#. rUG8e
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1754
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr ""
#. B6UKP
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1755
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr ""
#. YBxAE
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1756
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr ""
#. ibmgu
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1757
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr ""
#. 8A7FD
-#: include/svx/strings.hrc:1739
+#: include/svx/strings.hrc:1758
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr ""
#. DajDi
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1759
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr ""
#. FAb6M
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1760
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr ""
#. bmviu
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1761
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr ""
#. SmFqD
-#: include/svx/strings.hrc:1743
+#: include/svx/strings.hrc:1762
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr ""
#. qNixg
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1763
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr ""
#. EDpqy
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1764
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr ""
#. EH9Xf
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1765
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr ""
#. wBzzY
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1766
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr ""
#. CX5R4
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1767
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr ""
#. onKAu
-#: include/svx/strings.hrc:1749
+#: include/svx/strings.hrc:1768
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr ""
#. yMTF4
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1769
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr ""
#. SZmB5
-#: include/svx/strings.hrc:1751
+#: include/svx/strings.hrc:1770
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr ""
#. zxpCG
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1771
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr ""
#. 9UAmW
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1772
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-B"
msgstr ""
#. QFLaj
-#: include/svx/strings.hrc:1754
+#: include/svx/strings.hrc:1773
msgctxt "RID_SUBSETMAP"
msgid "Cypro-Minoan"
msgstr ""
#. CYEeS
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1774
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-B"
msgstr ""
#. ABqB6
-#: include/svx/strings.hrc:1756
+#: include/svx/strings.hrc:1775
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-B"
msgstr ""
#. DmagG
-#: include/svx/strings.hrc:1757
+#: include/svx/strings.hrc:1776
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-F"
msgstr ""
#. tjuhJ
-#: include/svx/strings.hrc:1758
+#: include/svx/strings.hrc:1777
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-G"
msgstr ""
#. naYAA
-#: include/svx/strings.hrc:1759
+#: include/svx/strings.hrc:1778
msgctxt "RID_SUBSETMAP"
msgid "Old Uyghur"
msgstr ""
#. JGVtT
-#: include/svx/strings.hrc:1760
+#: include/svx/strings.hrc:1779
msgctxt "RID_SUBSETMAP"
msgid "Tangsa"
msgstr ""
#. pkBYF
-#: include/svx/strings.hrc:1761
+#: include/svx/strings.hrc:1780
msgctxt "RID_SUBSETMAP"
msgid "Toto"
msgstr ""
#. SEVKT
-#: include/svx/strings.hrc:1762
+#: include/svx/strings.hrc:1781
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended-A"
msgstr ""
#. NpBis
-#: include/svx/strings.hrc:1763
+#: include/svx/strings.hrc:1782
msgctxt "RID_SUBSETMAP"
msgid "Vithkuqi"
msgstr ""
#. ssh5F
-#: include/svx/strings.hrc:1764
+#: include/svx/strings.hrc:1783
msgctxt "RID_SUBSETMAP"
msgid "Znamenny Musical Notation"
msgstr ""
#. BGGvD
-#: include/svx/strings.hrc:1766
+#: include/svx/strings.hrc:1785
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr ""
#. Ct9UG
-#: include/svx/strings.hrc:1767
+#: include/svx/strings.hrc:1786
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr ""
#. XFhAz
-#: include/svx/strings.hrc:1768
+#: include/svx/strings.hrc:1787
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr ""
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1770
+#: include/svx/strings.hrc:1789
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr ""
#. b6Guf
-#: include/svx/strings.hrc:1771
+#: include/svx/strings.hrc:1790
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr ""
#. yQGoC
-#: include/svx/strings.hrc:1772
+#: include/svx/strings.hrc:1791
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr ""
#. k7B2r
-#: include/svx/strings.hrc:1773
+#: include/svx/strings.hrc:1792
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
#. DF4B8
-#: include/svx/strings.hrc:1774
+#: include/svx/strings.hrc:1793
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr ""
#. siSmL
-#: include/svx/strings.hrc:1776
+#: include/svx/strings.hrc:1795
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr ""
#. Eg8QT
-#: include/svx/strings.hrc:1778
+#: include/svx/strings.hrc:1797
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr ""
#. NyP2E
-#: include/svx/strings.hrc:1779
+#: include/svx/strings.hrc:1798
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr ""
#. gsDhD
-#: include/svx/strings.hrc:1781
+#: include/svx/strings.hrc:1800
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr ""
#. PGuXa
#. strings related to borders
-#: include/svx/strings.hrc:1785
+#: include/svx/strings.hrc:1804
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
#. LzhYZ
-#: include/svx/strings.hrc:1786
+#: include/svx/strings.hrc:1805
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1787
+#: include/svx/strings.hrc:1806
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1788
+#: include/svx/strings.hrc:1807
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1789
+#: include/svx/strings.hrc:1808
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1790
+#: include/svx/strings.hrc:1809
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1791
+#: include/svx/strings.hrc:1810
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1792
+#: include/svx/strings.hrc:1811
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1793
+#: include/svx/strings.hrc:1812
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1794
+#: include/svx/strings.hrc:1813
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1795
+#: include/svx/strings.hrc:1814
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
#. o8fB8
-#: include/svx/strings.hrc:1796
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
#. 6NnM2
-#: include/svx/strings.hrc:1797
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1798
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
#. fRcEu
-#: include/svx/strings.hrc:1799
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Left Border Only"
msgstr ""
#. uqzE7
-#: include/svx/strings.hrc:1800
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
msgid "Right Border Only"
msgstr ""
#. 6ecLB
-#: include/svx/strings.hrc:1801
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
msgid "Top Border Only"
msgstr ""
#. B6KZc
-#: include/svx/strings.hrc:1802
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
msgid "Bottom Border Only"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1803
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1804
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. EPdAS
+#. --------------------------------------------------------------------
+#. Description: GraphicSizeCheck strings
+#. --------------------------------------------------------------------
+#: include/svx/strings.hrc:1828
+msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
+msgid "Graphic Size Check"
+msgstr ""
+
+#. D66VS
+#: include/svx/strings.hrc:1829
+msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
+msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
+msgstr ""
+
+#. Q2kMw
+#: include/svx/strings.hrc:1830
+msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
+msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
+msgstr ""
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
@@ -10251,345 +10386,345 @@ msgid "_Yes"
msgstr ""
#. oFcMf
-#: include/svx/svxitems.hrc:33
+#: include/svx/svxitems.hrc:34
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
msgstr "មាត្រ​ដ្ឋាន​"
#. kmF4A
-#: include/svx/svxitems.hrc:34
+#: include/svx/svxitems.hrc:35
msgctxt "RID_ATTR_NAMES"
msgid "Brush"
msgstr "ច្រាស"
#. BDkkM
-#: include/svx/svxitems.hrc:35
+#: include/svx/svxitems.hrc:36
msgctxt "RID_ATTR_NAMES"
msgid "Tab stops"
msgstr "ឈប់​ថេប"
#. hdbAu
-#: include/svx/svxitems.hrc:36
+#: include/svx/svxitems.hrc:37
msgctxt "RID_ATTR_NAMES"
msgid "Character"
msgstr "តួ​​អក្សរ​"
#. DvGGy
-#: include/svx/svxitems.hrc:37
+#: include/svx/svxitems.hrc:38
msgctxt "RID_ATTR_NAMES"
msgid "Font"
msgstr "ពុម្ព​អក្សរ"
#. XEqXh
-#: include/svx/svxitems.hrc:38
+#: include/svx/svxitems.hrc:39
msgctxt "RID_ATTR_NAMES"
msgid "Font posture"
msgstr "សណ្ឋាន​ពុម្ពអក្សរ"
#. P5Ljb
-#: include/svx/svxitems.hrc:39
+#: include/svx/svxitems.hrc:40
msgctxt "RID_ATTR_NAMES"
msgid "Font weight"
msgstr "កម្រាស់​ពុម្ពអក្សរ"
#. FHznU
-#: include/svx/svxitems.hrc:40
+#: include/svx/svxitems.hrc:41
msgctxt "RID_ATTR_NAMES"
msgid "Shadowed"
msgstr "​​ស្រមោល"
#. GP5cC
-#: include/svx/svxitems.hrc:41
+#: include/svx/svxitems.hrc:42
msgctxt "RID_ATTR_NAMES"
msgid "Individual words"
msgstr "ពាក្យ​ដោយ​ឡែក"
#. V2fmG
-#: include/svx/svxitems.hrc:42
+#: include/svx/svxitems.hrc:43
msgctxt "RID_ATTR_NAMES"
msgid "Outline"
msgstr "គ្រោង​"
#. svoaM
-#: include/svx/svxitems.hrc:43
+#: include/svx/svxitems.hrc:44
msgctxt "RID_ATTR_NAMES"
msgid "Strikethrough"
msgstr "បន្ទាត់​ឆូត"
#. NiUS6
-#: include/svx/svxitems.hrc:44
+#: include/svx/svxitems.hrc:45
msgctxt "RID_ATTR_NAMES"
msgid "Underline"
msgstr "គូស​បន្ទាត់​ក្រោម"
#. jTEYn
-#: include/svx/svxitems.hrc:45
+#: include/svx/svxitems.hrc:46
msgctxt "RID_ATTR_NAMES"
msgid "Font size"
msgstr "ទំហំ​ពុម្ពអក្សរ"
#. TtzX2
-#: include/svx/svxitems.hrc:46
+#: include/svx/svxitems.hrc:47
msgctxt "RID_ATTR_NAMES"
msgid "Font color"
msgstr "ពណ៌​ពុម្ពអក្សរ"
#. edBWB
-#: include/svx/svxitems.hrc:47
+#: include/svx/svxitems.hrc:48
msgctxt "RID_ATTR_NAMES"
msgid "Kerning"
msgstr "ការ​សម្រួល​ចន្លោះ"
#. eJdFK
-#: include/svx/svxitems.hrc:48
+#: include/svx/svxitems.hrc:49
msgctxt "RID_ATTR_NAMES"
msgid "Effects"
msgstr "បែបផែន"
#. CYKY7
-#: include/svx/svxitems.hrc:49
+#: include/svx/svxitems.hrc:50
msgctxt "RID_ATTR_NAMES"
msgid "Language"
msgstr "ភាសា"
#. CDzun
-#: include/svx/svxitems.hrc:50
+#: include/svx/svxitems.hrc:51
msgctxt "RID_ATTR_NAMES"
msgid "Position"
msgstr "ទីតាំង​"
#. A6yDx
-#: include/svx/svxitems.hrc:51
+#: include/svx/svxitems.hrc:52
msgctxt "RID_ATTR_NAMES"
msgid "Character blinking"
msgstr ""
#. A7wEV
-#: include/svx/svxitems.hrc:52
+#: include/svx/svxitems.hrc:53
msgctxt "RID_ATTR_NAMES"
msgid "Character set color"
msgstr "ពណ៌​សំណុំ​តួអក្សរ​"
#. 5uUtt
-#: include/svx/svxitems.hrc:53
+#: include/svx/svxitems.hrc:54
msgctxt "RID_ATTR_NAMES"
msgid "Overline"
msgstr "គូស​បន្ទាត់​ពីលើ"
#. 8kVWW
-#: include/svx/svxitems.hrc:54
+#: include/svx/svxitems.hrc:55
msgctxt "RID_ATTR_NAMES"
msgid "Alignment"
msgstr "ការ​​តម្រឹម"
#. 8zGuy
-#: include/svx/svxitems.hrc:55
+#: include/svx/svxitems.hrc:56
msgctxt "RID_ATTR_NAMES"
msgid "Line spacing"
msgstr "គម្លាត​​បន្ទាត់"
#. LyKLp
-#: include/svx/svxitems.hrc:56
+#: include/svx/svxitems.hrc:57
msgctxt "RID_ATTR_NAMES"
msgid "Page Break"
msgstr "បំបែក​ទំព័រ"
#. dkLD4
-#: include/svx/svxitems.hrc:57
+#: include/svx/svxitems.hrc:58
msgctxt "RID_ATTR_NAMES"
msgid "Hyphenation"
msgstr "ការ​ដាក់​​សហសញ្ញា"
#. ZCVVC
-#: include/svx/svxitems.hrc:58
+#: include/svx/svxitems.hrc:59
msgctxt "RID_ATTR_NAMES"
msgid "Do not split paragraph"
msgstr "កុំ​ពុះ​កថាខណ្ឌ"
#. XpVud
-#: include/svx/svxitems.hrc:59
+#: include/svx/svxitems.hrc:60
msgctxt "RID_ATTR_NAMES"
msgid "Orphans"
msgstr "មេម៉ាយ"
#. NHw9j
-#: include/svx/svxitems.hrc:60
+#: include/svx/svxitems.hrc:61
msgctxt "RID_ATTR_NAMES"
msgid "Widows"
msgstr "កំព្រា"
#. XpD3P
-#: include/svx/svxitems.hrc:61
+#: include/svx/svxitems.hrc:62
msgctxt "RID_ATTR_NAMES"
msgid "Paragraph spacing"
msgstr "គម្លាត​​​កថា​​ខណ្ឌ"
#. Z7Kxv
-#: include/svx/svxitems.hrc:62
+#: include/svx/svxitems.hrc:63
#, fuzzy
msgctxt "RID_ATTR_NAMES"
msgid "Paragraph indent"
msgstr "​តម្រឹម​​​កថា​​ខណ្ឌ"
#. cffCk
-#: include/svx/svxitems.hrc:63
+#: include/svx/svxitems.hrc:64
msgctxt "RID_ATTR_NAMES"
msgid "Indent"
msgstr "ចូល​បន្ទាត់"
#. UMEWr
-#: include/svx/svxitems.hrc:64
+#: include/svx/svxitems.hrc:65
msgctxt "RID_ATTR_NAMES"
msgid "Spacing"
msgstr "គម្លាត"
#. 2Zwau
-#: include/svx/svxitems.hrc:65
+#: include/svx/svxitems.hrc:66
msgctxt "RID_ATTR_NAMES"
msgid "Page"
msgstr "ទំព័រ​​"
#. BPZBb
-#: include/svx/svxitems.hrc:66
+#: include/svx/svxitems.hrc:67
msgctxt "RID_ATTR_NAMES"
msgid "Page Style"
msgstr "​រចនាប័ទ្ម​ទំព័រ"
#. hWxFn
-#: include/svx/svxitems.hrc:67
+#: include/svx/svxitems.hrc:68
msgctxt "RID_ATTR_NAMES"
msgid "Keep with next paragraph"
msgstr "រក្សា​ជាមួយ​កថាខណ្ឌ​បន្ទាប់"
#. JGTCV
-#: include/svx/svxitems.hrc:68
+#: include/svx/svxitems.hrc:69
msgctxt "RID_ATTR_NAMES"
msgid "Blinking"
msgstr "​​​​ភ្លឹប​ភ្លែត​ៗ"
#. D4Kxy
-#: include/svx/svxitems.hrc:69
+#: include/svx/svxitems.hrc:70
msgctxt "RID_ATTR_NAMES"
msgid "Page line-spacing"
msgstr ""
#. t2uX7
-#: include/svx/svxitems.hrc:70
+#: include/svx/svxitems.hrc:71
msgctxt "RID_ATTR_NAMES"
msgid "Character background"
msgstr "ផ្ទៃ​ខាង​ក្រោយ​តួអក្សរ"
#. hd4cD
-#: include/svx/svxitems.hrc:71
+#: include/svx/svxitems.hrc:72
msgctxt "RID_ATTR_NAMES"
msgid "Asian font"
msgstr "ពុម្ពអក្សរ​​អាស៊ី"
#. i4aab
-#: include/svx/svxitems.hrc:72
+#: include/svx/svxitems.hrc:73
msgctxt "RID_ATTR_NAMES"
msgid "Size of Asian font"
msgstr "ទំហំ​ពុម្ពអក្សរ​អាស៊ី"
#. rxUMe
-#: include/svx/svxitems.hrc:73
+#: include/svx/svxitems.hrc:74
msgctxt "RID_ATTR_NAMES"
msgid "Language of Asian font"
msgstr "ភាសា​ពុម្ពអក្សរ​អាស៊ី"
#. FGao4
-#: include/svx/svxitems.hrc:74
+#: include/svx/svxitems.hrc:75
msgctxt "RID_ATTR_NAMES"
msgid "Posture of Asian font"
msgstr "សណ្ឋាន​ពុម្ពអក្សរ​អាស៊ី"
#. 6mRQX
-#: include/svx/svxitems.hrc:75
+#: include/svx/svxitems.hrc:76
msgctxt "RID_ATTR_NAMES"
msgid "Weight of Asian font"
msgstr "កម្រាស់​ពុម្ពអក្សរ​អាស៊ី"
#. 4BGdv
-#: include/svx/svxitems.hrc:76
+#: include/svx/svxitems.hrc:77
msgctxt "RID_ATTR_NAMES"
msgid "CTL"
msgstr "ភាសា​ខ្មែរ និង​ភាសា CTL ផ្សេង​ទៀត"
#. p45An
-#: include/svx/svxitems.hrc:77
+#: include/svx/svxitems.hrc:78
msgctxt "RID_ATTR_NAMES"
msgid "Size of complex scripts"
msgstr "ទំហំ​អក្សរ​ស្មុគ្រស្មាញ"
#. 9bGum
-#: include/svx/svxitems.hrc:78
+#: include/svx/svxitems.hrc:79
msgctxt "RID_ATTR_NAMES"
msgid "Language of complex scripts"
msgstr "ភាសា​​អក្សរ​​ស្មុគ្រស្មាញ"
#. LMbZE
-#: include/svx/svxitems.hrc:79
+#: include/svx/svxitems.hrc:80
msgctxt "RID_ATTR_NAMES"
msgid "Posture of complex scripts"
msgstr "សណ្ឋាន​​​​អក្សរ​​ស្មុគ្រស្មាញ"
#. kBQpv
-#: include/svx/svxitems.hrc:80
+#: include/svx/svxitems.hrc:81
msgctxt "RID_ATTR_NAMES"
msgid "Weight of complex scripts"
msgstr "កម្រាស់​​​​អក្សរ​​ស្មុគ្រស្មាញ"
#. CiTka
-#: include/svx/svxitems.hrc:81
+#: include/svx/svxitems.hrc:82
msgctxt "RID_ATTR_NAMES"
msgid "Double-lined"
msgstr "ពីរ​ជួរ"
#. BMHPn
-#: include/svx/svxitems.hrc:82
+#: include/svx/svxitems.hrc:83
msgctxt "RID_ATTR_NAMES"
msgid "Emphasis mark"
msgstr "សញ្ញា​សង្កត់​សំឡេង"
#. yKetF
-#: include/svx/svxitems.hrc:83
+#: include/svx/svxitems.hrc:84
msgctxt "RID_ATTR_NAMES"
msgid "Text spacing"
msgstr "គម្លាត​អត្ថបទ"
#. GTQjw
-#: include/svx/svxitems.hrc:84
+#: include/svx/svxitems.hrc:85
msgctxt "RID_ATTR_NAMES"
msgid "Hanging punctuation"
msgstr "​ព្យួរ​វណ្ណយុត្តិ"
#. maSbF
-#: include/svx/svxitems.hrc:85
+#: include/svx/svxitems.hrc:86
msgctxt "RID_ATTR_NAMES"
msgid "Forbidden characters"
msgstr "តួអក្សរ​ហាម​ឃាត់"
#. G48GM
-#: include/svx/svxitems.hrc:86
+#: include/svx/svxitems.hrc:87
msgctxt "RID_ATTR_NAMES"
msgid "Rotation"
msgstr "​បង្វិល"
#. W8gBY
-#: include/svx/svxitems.hrc:87
+#: include/svx/svxitems.hrc:88
#, fuzzy
msgctxt "RID_ATTR_NAMES"
msgid "Character scaling"
msgstr "គម្លាត​តួអក្សរ"
#. d574i
-#: include/svx/svxitems.hrc:88
+#: include/svx/svxitems.hrc:89
msgctxt "RID_ATTR_NAMES"
msgid "Relief"
msgstr "ក្បាច់"
#. qFGGp
-#: include/svx/svxitems.hrc:89
+#: include/svx/svxitems.hrc:90
msgctxt "RID_ATTR_NAMES"
msgid "Vertical text alignment"
msgstr "តម្រឹម​អត្ថបទ​បញ្ឈរ"
@@ -12875,164 +13010,104 @@ msgctxt "acceptrejectchangesdialog|AcceptRejectChangesDialog"
msgid "Manage Changes"
msgstr ""
-#. RMm2g
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:23
-msgctxt "acceptrejectchangesdialog|accept"
-msgid "_Accept"
-msgstr "យល់ព្រម "
-
-#. vxNLK
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:30
-msgctxt "acceptrejectchangesdialog|extended_tip|accept"
-msgid "Accepts the selected change and removes the highlighting from the change in the document."
-msgstr ""
-
-#. UEZKm
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:43
-msgctxt "acceptrejectchangesdialog|reject"
-msgid "_Reject"
-msgstr "ច្រានចោល "
-
-#. rDjqw
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:50
-msgctxt "acceptrejectchangesdialog|extended_tip|reject"
-msgid "Rejects the selected change and removes the highlighting from the change in the document."
-msgstr ""
-
-#. CY86f
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:63
-msgctxt "acceptrejectchangesdialog|acceptall"
-msgid "A_ccept All"
-msgstr "យល់ព្រម​ទាំងអស់ "
-
-#. At7GQ
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:70
-msgctxt "acceptrejectchangesdialog|extended_tip|acceptall"
-msgid "Accepts all of the changes and removes the highlighting from the document."
-msgstr "ព្រម​ទទួល​ការ​ផ្លាស់ប្ដូរ​ទាំងអស់ ហើយ​លុប​រំលេច​ចេញពី​ឯកសារ។"
-
-#. debjw
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:83
-msgctxt "acceptrejectchangesdialog|rejectall"
-msgid "R_eject All"
-msgstr "ច្រានចោល​​​ទាំងអស់ "
-
-#. ZSHyG
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:90
-msgctxt "acceptrejectchangesdialog|extended_tip|rejectall"
-msgid "Rejects all of the changes and removes the highlighting from the document."
-msgstr "បដិសេធ​ការ​ផ្លាស់ប្ដូរ​ទាំងអស់ ហើយ​លុប​រំលេច​ចេញពី​ឯកសារ។"
-
-#. tRnmX
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:103
-msgctxt "acceptrejectchangesdialog|undo"
-msgid "_Undo"
-msgstr ""
-
-#. phEJs
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:110
-msgctxt "acceptrejectchangesdialog|extended_tip|undo"
-msgid "Reverse the last Accept or Reject command."
-msgstr ""
-
#. Jyka9
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:169
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:77
#, fuzzy
msgctxt "acceptrejectchangesdialog|calcedit"
msgid "Edit Comment..."
msgstr "កែ​សម្រួលមតិយោបល់..."
#. EnZSS
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:172
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:80
msgctxt "acceptrejectchangesdialog|extended_tip|calcedit"
msgid "Edit the comment for the selected change."
msgstr ""
#. kqtia
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:181
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:89
#, fuzzy
msgctxt "acceptrejectchangesdialog|calcsort"
msgid "Sorting"
msgstr "​តម្រៀប"
#. 2DLpG
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:191
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:99
msgctxt "acceptrejectchangesdialog|calcaction"
msgid "Action"
msgstr "អំពើ​"
#. 3YNZ7
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:199
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:107
#, fuzzy
msgctxt "acceptrejectchangesdialog|calcposition"
msgid "Position"
msgstr "ទីតាំង"
#. wzRCk
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:208
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:116
msgctxt "acceptrejectchangesdialog|calcauthor"
msgid "Author"
msgstr "អ្នកនិពន្ធ ​"
#. xavjS
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:217
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:125
msgctxt "acceptrejectchangesdialog|calcdate"
msgid "Date"
msgstr "កាល​​បរិច្ឆេទ"
#. CyvEG
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:226
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:134
#, fuzzy
msgctxt "acceptrejectchangesdialog|calcdesc"
msgid "Description"
msgstr "ពិពណ៌​នា​"
#. VDtBL
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:243
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:151
#, fuzzy
msgctxt "acceptrejectchangesdialog|writeredit"
msgid "Edit Comment..."
msgstr "កែ​សម្រួលមតិយោបល់..."
#. eRArW
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:246
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:154
msgctxt "acceptrejectchangesdialog|extended_tip|writeredit"
msgid "Edit the comment for the selected change."
msgstr ""
#. 75VLB
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:255
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:163
#, fuzzy
msgctxt "acceptrejectchangesdialog|writersort"
msgid "Sort By"
msgstr "តម្រៀប​តាម"
#. EYaEE
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:265
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:173
msgctxt "acceptrejectchangesdialog|writeraction"
msgid "Action"
msgstr "អំពើ​"
#. acfbi
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:273
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:181
msgctxt "acceptrejectchangesdialog|writerauthor"
msgid "Author"
msgstr "អ្នកនិពន្ធ ​"
#. WNQ9L
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:282
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:190
msgctxt "acceptrejectchangesdialog|writerdate"
msgid "Date"
msgstr "កាល​​បរិច្ឆេទ"
#. 8qG3o
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:291
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:199
msgctxt "acceptrejectchangesdialog|writerdesc"
msgid "Comment"
msgstr "មតិយោបល់"
#. Z9yjZ
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:300
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:208
#, fuzzy
msgctxt "acceptrejectchangesdialog|writerposition"
msgid "Document Position"
@@ -17244,11 +17319,11 @@ msgctxt "floatingcontour|extended_tip|container"
msgid "Displays a preview of the contour."
msgstr "បង្ហាញ​ការ​មើល​ជា​មុន​នៃ​វណ្ឌ​វង្ក ។"
-#. K5FKA
+#. jNUEr
#: svx/uiconfig/ui/floatingcontour.ui:528
msgctxt "floatingcontour|extended_tip|FloatingContour"
-msgid "Changes the contour of the selected object. %PRODUCTNAME uses the contour when determining the text wrap options for the object."
-msgstr "ផ្លាស់​ប្តូរ​វណ្ឌវង្ក​នៃ​វត្ថុ​ដែល​បាន​ជ្រើស ។ %PRODUCTNAME ប្រើ​វណ្ឌវង្ក នៅ​ពេល​កំណត់​ជម្រើស រុំ​អត្ថបទ សម្រាប់​វត្ថុ ។"
+msgid "Changes the contour of the selected object. The contour is used when determining the text wrap options for the object."
+msgstr ""
#. zn8AW
#: svx/uiconfig/ui/floatinglineproperty.ui:58
@@ -17256,10 +17331,10 @@ msgctxt "floatinglineproperty|label1"
msgid "Custom Line Width:"
msgstr ""
-#. U9eWB
+#. HYcR3
#: svx/uiconfig/ui/fontworkalignmentcontrol.ui:45
msgctxt "fontworkalignmentcontrol|RID_SVXSTR_ALIGN_LEFT"
-msgid "_Left Align"
+msgid "Align _Left"
msgstr ""
#. Dt4xu
@@ -17268,10 +17343,10 @@ msgctxt "fontworkalignmentcontrol|RID_SVXSTR_ALIGN_CENTER"
msgid "_Center"
msgstr ""
-#. MBLeE
+#. dBoRs
#: svx/uiconfig/ui/fontworkalignmentcontrol.ui:79
msgctxt "fontworkalignmentcontrol|RID_SVXSTR_ALIGN_RIGHT"
-msgid "_Right Align"
+msgid "Align _Right"
msgstr ""
#. jyydg
@@ -17610,6 +17685,18 @@ msgctxt "gallerymenu2|paste"
msgid "_Paste"
msgstr ""
+#. YHL6E
+#: svx/uiconfig/ui/genericcheckentry.ui:31
+msgctxt "genericcheckentry|markButton"
+msgid "Mark"
+msgstr ""
+
+#. wgUGR
+#: svx/uiconfig/ui/genericcheckentry.ui:44
+msgctxt "genericcheckentry|propertiesButton"
+msgid "Properties"
+msgstr ""
+
#. YFG3B
#: svx/uiconfig/ui/headfootformatpage.ui:63
msgctxt "headfootformatpage|checkHeaderOn"
@@ -17695,252 +17782,252 @@ msgid "Footer"
msgstr "បាតកថា​"
#. TZUZQ
-#: svx/uiconfig/ui/imapdialog.ui:144
+#: svx/uiconfig/ui/imapdialog.ui:150
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "អនុវត្ត"
#. QH65f
-#: svx/uiconfig/ui/imapdialog.ui:148
+#: svx/uiconfig/ui/imapdialog.ui:154
msgctxt "imapdialog|extended_tip|TBI_APPLY"
msgid "Applies the changes that you made to the image map."
msgstr "អនុវត្ត​ការ​ផ្លាស់​ប្តូរ​​​​​​ដែល​បាន​ធ្វើ​​ទៅ​លើ​​ផែន​ទី​រូបភាព ។"
#. HG5FA
-#: svx/uiconfig/ui/imapdialog.ui:161
+#: svx/uiconfig/ui/imapdialog.ui:167
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "បើក​..."
#. BBFxi
-#: svx/uiconfig/ui/imapdialog.ui:165
+#: svx/uiconfig/ui/imapdialog.ui:171
msgctxt "imapdialog|extended_tip|TBI_OPEN"
msgid "Loads an existing image map in the MAP-CERN, MAP-NCSA or SIP StarView ImageMap file format."
msgstr ""
#. FhXsi
-#: svx/uiconfig/ui/imapdialog.ui:178
+#: svx/uiconfig/ui/imapdialog.ui:184
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "រក្សាទុក..."
#. znbDS
-#: svx/uiconfig/ui/imapdialog.ui:182
+#: svx/uiconfig/ui/imapdialog.ui:188
msgctxt "imapdialog|extended_tip|TBI_SAVEAS"
msgid "Saves the image map in the MAP-CERN, MAP-NCSA or SIP StarView ImageMap file format."
msgstr ""
#. zicE4
-#: svx/uiconfig/ui/imapdialog.ui:195
+#: svx/uiconfig/ui/imapdialog.ui:201
#, fuzzy
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "បិទ​"
#. jYnn6
-#: svx/uiconfig/ui/imapdialog.ui:206
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "ជ្រើស"
#. eFg49
-#: svx/uiconfig/ui/imapdialog.ui:210
+#: svx/uiconfig/ui/imapdialog.ui:216
msgctxt "imapdialog|extended_tip|TBI_SELECT"
msgid "Selects a hotspot in the image map for editing."
msgstr "ជ្រើស​ចំណុច​ក្តៅ​មួយ​​ក្នុង​ផែន​ទី​រូប​ភាព​ដើម្បី​កែ​សម្រួល​ ។"
#. MNb9P
-#: svx/uiconfig/ui/imapdialog.ui:223
+#: svx/uiconfig/ui/imapdialog.ui:229
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "ចតុកោណ"
#. EYDzs
-#: svx/uiconfig/ui/imapdialog.ui:227
+#: svx/uiconfig/ui/imapdialog.ui:233
msgctxt "imapdialog|extended_tip|TBI_RECT"
msgid "Draws a rectangular hotspot where you drag in the graphic. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open."
msgstr ""
#. CxNuP
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:246
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "រាង​ពងក្រពើ"
#. UEtoB
-#: svx/uiconfig/ui/imapdialog.ui:244
+#: svx/uiconfig/ui/imapdialog.ui:250
msgctxt "imapdialog|extended_tip|TBI_CIRCLE"
msgid "Draws an elliptical hotspot where you drag in the graphic. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open."
msgstr ""
#. SGPH5
-#: svx/uiconfig/ui/imapdialog.ui:257
+#: svx/uiconfig/ui/imapdialog.ui:263
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "ពហុកោណ"
#. DCcTE
-#: svx/uiconfig/ui/imapdialog.ui:261
+#: svx/uiconfig/ui/imapdialog.ui:267
msgctxt "imapdialog|extended_tip|TBI_POLY"
msgid "Draws a polygonal hotspot in the graphic. Click this icon, drag in the graphic, and then click to define one side of the polygon. Move to where you want to place the end of the next side, and then click. Repeat until you have drawn all of the sides of the polygon. When you are finished, double-click to close the polygon. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open."
msgstr ""
#. zUUCB
-#: svx/uiconfig/ui/imapdialog.ui:274
+#: svx/uiconfig/ui/imapdialog.ui:280
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "ពហុកោណ​ទម្រង់​សេរី"
#. jqx5a
-#: svx/uiconfig/ui/imapdialog.ui:278
+#: svx/uiconfig/ui/imapdialog.ui:284
msgctxt "imapdialog|extended_tip|TBI_FREEPOLY"
msgid "Draws a hotspot that is based on a freeform polygon. Click this icon and move to where you want to draw the hotspot. Drag a freeform line and release to close the shape. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open."
msgstr ""
#. kG6AK
-#: svx/uiconfig/ui/imapdialog.ui:291
+#: svx/uiconfig/ui/imapdialog.ui:297
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "កែ​សម្រួល​ចំណុច"
#. vjFcb
-#: svx/uiconfig/ui/imapdialog.ui:295
+#: svx/uiconfig/ui/imapdialog.ui:301
msgctxt "imapdialog|extended_tip|TBI_POLYEDIT"
msgid "Lets you change the shape of the selected hotspot by editing the anchor points."
msgstr "អនុញ្ញាត​ឲ្យ​អ្នក​ប្តូរ​រាង​ចំណុច​ក្តៅ​ដែល​បាន​ជ្រើស​ដោយ​កែ​សម្រួល​ចំណុច​យុថ្កា ។"
#. 2oDGD
-#: svx/uiconfig/ui/imapdialog.ui:308
+#: svx/uiconfig/ui/imapdialog.ui:314
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "ផ្លាស់ទី​ចំណុច"
#. ZEetx
-#: svx/uiconfig/ui/imapdialog.ui:312
+#: svx/uiconfig/ui/imapdialog.ui:318
msgctxt "imapdialog|extended_tip|TBI_POLYMOVE"
msgid "Lets you move the individual anchor points of the selected hotspot."
msgstr "អនុញ្ញាត​ឲ្យ​អ្នក​​ផ្លាស់​ទី​ចំណុច​យុថ្កា​នីមួយៗ​​របស់​ចំណុច​ក្តៅ​ដែល​បាន​ជ្រើស ។"
#. c9fFa
-#: svx/uiconfig/ui/imapdialog.ui:325
+#: svx/uiconfig/ui/imapdialog.ui:331
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "បញ្ចូល​ចំណុច"
#. 77x67
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:335
msgctxt "imapdialog|extended_tip|TBI_POLYINSERT"
msgid "Adds an anchor point where you click on the outline of the hotspot."
msgstr "បន្ថែម​ចំណុច​យុថ្កា​មួយ​ ដែល​អ្នក​ចុច​នៅ​លើ​គ្រោង​របស់​ចំណុច​ក្តៅ ។​"
#. tuCNB
-#: svx/uiconfig/ui/imapdialog.ui:342
+#: svx/uiconfig/ui/imapdialog.ui:348
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "លុប​ចំណុច"
#. 6FfFj
-#: svx/uiconfig/ui/imapdialog.ui:346
+#: svx/uiconfig/ui/imapdialog.ui:352
msgctxt "imapdialog|extended_tip|TBI_POLYDELETE"
msgid "Deletes the selected anchor point."
msgstr "លុប​ចំណុច​​យុថ្កា​​ដែល​បាន​ជ្រើស ។"
#. TcAdh
-#: svx/uiconfig/ui/imapdialog.ui:359
+#: svx/uiconfig/ui/imapdialog.ui:365
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "មិន​ធ្វើ​វិញ"
#. UnkbT
-#: svx/uiconfig/ui/imapdialog.ui:371
+#: svx/uiconfig/ui/imapdialog.ui:377
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "ក្រហម"
#. bc2XY
-#: svx/uiconfig/ui/imapdialog.ui:383
+#: svx/uiconfig/ui/imapdialog.ui:389
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "សកម្ម"
#. S7JcF
-#: svx/uiconfig/ui/imapdialog.ui:387
+#: svx/uiconfig/ui/imapdialog.ui:393
msgctxt "imapdialog|extended_tip|TBI_ACTIVE"
msgid "Disables or enables the hyperlink for the selected hotspot. A disabled hotspot is transparent."
msgstr "ធ្វើ​ឲ្យ​​តំណខ្ពស់​​ប្រើ​បាន​ ឬ​មិន​បាន​ សម្រាប់​ចំណុច​ក្តៅ​ដែល​បានជ្រើស​ ។ ចំណុច​ក្តៅ​​ដែល​ត្រូវ​បាន​ធ្វើ​ឲ្យ​ប្រើ​លែង​បាន​​គឺ​ថ្លា ។"
#. AjSFD
-#: svx/uiconfig/ui/imapdialog.ui:400
+#: svx/uiconfig/ui/imapdialog.ui:406
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "ម៉ាក្រូ..."
#. AhhJV
-#: svx/uiconfig/ui/imapdialog.ui:404
+#: svx/uiconfig/ui/imapdialog.ui:410
msgctxt "imapdialog|extended_tip|TBI_MACRO"
msgid "Lets you assign a macro that runs when you click the selected hotspot in a browser."
msgstr "អនុញ្ញាត​ឲ្យ​អ្នក​ផ្តល់​តម្លៃ​ឲ្យ​ម៉ាក្រូ​មួយ​ដែល​រត់​ ពេល​អ្នក​ចុច​ចំណុច​ក្តៅ​ដែល​បាន​ជ្រើស​ក្នុង​កម្មវិធី​រុករក"
#. WS3NJ
-#: svx/uiconfig/ui/imapdialog.ui:417
+#: svx/uiconfig/ui/imapdialog.ui:423
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "លក្ខណសម្បត្តិ ៖"
#. CBpCj
-#: svx/uiconfig/ui/imapdialog.ui:421
+#: svx/uiconfig/ui/imapdialog.ui:427
msgctxt "imapdialog|extended_tip|TBI_PROPERTY"
msgid "Allows you to define the properties of the selected hotspot."
msgstr "អនុញ្ញាត​ឲ្យ​អ្នក​កំណត់​លក្ខណសម្បត្តិ​​របស់​ចំណុច​ក្តៅ​ដែល​បាន​ជ្រើស ។"
#. r8L58
-#: svx/uiconfig/ui/imapdialog.ui:449
+#: svx/uiconfig/ui/imapdialog.ui:455
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "អាសយដ្ឋាន ៖"
#. KFcWk
-#: svx/uiconfig/ui/imapdialog.ui:471
+#: svx/uiconfig/ui/imapdialog.ui:477
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "ស៊ុម"
#. iEBEB
-#: svx/uiconfig/ui/imapdialog.ui:489
+#: svx/uiconfig/ui/imapdialog.ui:495
msgctxt "imapdialog|extended_tip|text"
msgid "Enter the text that you want to display when the mouse rests on the hotspot in a browser."
msgstr ""
#. 5BPAy
-#: svx/uiconfig/ui/imapdialog.ui:527
+#: svx/uiconfig/ui/imapdialog.ui:533
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "អត្ថបទ ៖"
#. DoDLD
-#: svx/uiconfig/ui/imapdialog.ui:550
+#: svx/uiconfig/ui/imapdialog.ui:556
msgctxt "imapdialog|extended_tip|url"
msgid "Enter the URL for the file that you want to open when you click the selected hotspot."
msgstr ""
#. CnDFH
-#: svx/uiconfig/ui/imapdialog.ui:590
+#: svx/uiconfig/ui/imapdialog.ui:596
msgctxt "imapdialog|extended_tip|container"
msgid "Displays the image map, so that you can click and edit the hotspots."
msgstr "​បង្ហាញ​ផែន​ទី​រូបភាព​​ ដូច្នេះ​​អ្នក​អាច​ចុច​ និង កែសម្រួល​ចំណុច​ក្តៅ ។"
#. FkpS8
-#: svx/uiconfig/ui/imapdialog.ui:621
+#: svx/uiconfig/ui/imapdialog.ui:624
msgctxt "imapdialog|extended_tip|ImapDialog"
msgid "Allows you to attach URLs to specific areas, called hotspots, on a graphic or a group of graphics. An image map is a group of one or more hotspots."
msgstr ""
@@ -18158,31 +18245,31 @@ msgid "Namespaces"
msgstr "Namespaces"
#. HD9wB
-#: svx/uiconfig/ui/navigationbar.ui:129
+#: svx/uiconfig/ui/navigationbar.ui:128
msgctxt "navigationbar|first"
msgid "First"
msgstr ""
#. mX6CE
-#: svx/uiconfig/ui/navigationbar.ui:150
+#: svx/uiconfig/ui/navigationbar.ui:149
msgctxt "navigationbar|prev"
msgid "Previous"
msgstr ""
#. ggpok
-#: svx/uiconfig/ui/navigationbar.ui:171
+#: svx/uiconfig/ui/navigationbar.ui:170
msgctxt "navigationbar|next"
msgid "Next"
msgstr ""
#. E3c7E
-#: svx/uiconfig/ui/navigationbar.ui:191
+#: svx/uiconfig/ui/navigationbar.ui:190
msgctxt "navigationbar|last"
msgid "Last"
msgstr ""
#. GbURX
-#: svx/uiconfig/ui/navigationbar.ui:211
+#: svx/uiconfig/ui/navigationbar.ui:210
msgctxt "navigationbar|new"
msgid "New"
msgstr ""
@@ -18349,11 +18436,11 @@ msgctxt "extended_tip|snappoints"
msgid "Specifies whether to align the contour of the graphic object to the points of the nearest graphic object."
msgstr ""
-#. rY7Uu
+#. fRAFB
#: svx/uiconfig/ui/optgridpage.ui:519
msgctxt "extended_tip|mtrfldsnaparea"
-msgid "Defines the snap distance between the mouse pointer and the object contour. %PRODUCTNAME Impress snaps to a snap point if the mouse pointer is nearer than the distance selected in the Snap range control."
-msgstr "កំណត់​ចម្ងាយ​ឆក់​រវាង​ព្រួញ​កណ្ដុរ និង​វត្ថុ​វណ្ឌវង្ក។ %PRODUCTNAME Impress នឹង​ឆក់​ទៅ​ចំណុច​ឆក់​ប្រសិនបើ​ព្រួញ​កណ្ដុរ​នៅ​ជិត​ជាង​ចម្ងាយ​ដែល​បាន​ជ្រើស​នៅ​ក្នុង​វត្ថុ​បញ្ជា ជួរ​ឆក់ ។"
+msgid "Defines the snap distance between the mouse pointer and the object contour. Impress snaps to a snap point if the mouse pointer is nearer than the distance selected in the Snap range control."
+msgstr ""
#. FekAR
#: svx/uiconfig/ui/optgridpage.ui:532
@@ -19024,51 +19111,111 @@ msgid "Filters the list of changes according to the date and the time that you s
msgstr ""
#. p8TCX
-#: svx/uiconfig/ui/redlineviewpage.ui:69 svx/uiconfig/ui/redlineviewpage.ui:175
+#: svx/uiconfig/ui/redlineviewpage.ui:70 svx/uiconfig/ui/redlineviewpage.ui:166
msgctxt "redlineviewpage|action"
msgid "Action"
msgstr "អំពើ​"
-#. j2BA9
-#: svx/uiconfig/ui/redlineviewpage.ui:84
-msgctxt "redlineviewpage|position"
-msgid "Position"
-msgstr "ទីតាំង"
-
#. BCWpJ
-#: svx/uiconfig/ui/redlineviewpage.ui:99 svx/uiconfig/ui/redlineviewpage.ui:195
+#: svx/uiconfig/ui/redlineviewpage.ui:90 svx/uiconfig/ui/redlineviewpage.ui:196
msgctxt "redlineviewpage|author"
msgid "Author"
msgstr "អ្នកនិពន្ធ ​"
#. tFbAs
-#: svx/uiconfig/ui/redlineviewpage.ui:114
-#: svx/uiconfig/ui/redlineviewpage.ui:210
+#: svx/uiconfig/ui/redlineviewpage.ui:105
+#: svx/uiconfig/ui/redlineviewpage.ui:211
msgctxt "redlineviewpage|date"
msgid "Date"
msgstr "កាល​​បរិច្ឆេទ"
#. p8a2G
-#: svx/uiconfig/ui/redlineviewpage.ui:129
-#: svx/uiconfig/ui/redlineviewpage.ui:225
+#: svx/uiconfig/ui/redlineviewpage.ui:120
+#: svx/uiconfig/ui/redlineviewpage.ui:226
msgctxt "redlineviewpage|comment"
msgid "Comment"
msgstr "មតិយោបល់"
+#. pGEZv
+#: svx/uiconfig/ui/redlineviewpage.ui:135
+msgctxt "redlineviewpage|writerchanges-atkobject"
+msgid "Changes"
+msgstr ""
+
+#. j2BA9
+#: svx/uiconfig/ui/redlineviewpage.ui:181
+msgctxt "redlineviewpage|position"
+msgid "Position"
+msgstr "ទីតាំង"
+
#. nUz2M
-#: svx/uiconfig/ui/redlineviewpage.ui:144
+#: svx/uiconfig/ui/redlineviewpage.ui:241
msgctxt "redlineviewpage|calcchanges-atkobject"
msgid "Changes"
msgstr ""
-#. pGEZv
-#: svx/uiconfig/ui/redlineviewpage.ui:240
-msgctxt "redlineviewpage|writerchanges-atkobject"
-msgid "Changes"
+#. RMm2g
+#: svx/uiconfig/ui/redlineviewpage.ui:260
+msgctxt "acceptrejectchangesdialog|accept"
+msgid "_Accept"
+msgstr "យល់ព្រម "
+
+#. vxNLK
+#: svx/uiconfig/ui/redlineviewpage.ui:267
+msgctxt "acceptrejectchangesdialog|extended_tip|accept"
+msgid "Accepts the selected change and removes the highlighting from the change in the document."
+msgstr ""
+
+#. UEZKm
+#: svx/uiconfig/ui/redlineviewpage.ui:279
+msgctxt "acceptrejectchangesdialog|reject"
+msgid "_Reject"
+msgstr "ច្រានចោល "
+
+#. rDjqw
+#: svx/uiconfig/ui/redlineviewpage.ui:286
+msgctxt "acceptrejectchangesdialog|extended_tip|reject"
+msgid "Rejects the selected change and removes the highlighting from the change in the document."
+msgstr ""
+
+#. CY86f
+#: svx/uiconfig/ui/redlineviewpage.ui:298
+msgctxt "acceptrejectchangesdialog|acceptall"
+msgid "A_ccept All"
+msgstr "យល់ព្រម​ទាំងអស់ "
+
+#. At7GQ
+#: svx/uiconfig/ui/redlineviewpage.ui:305
+msgctxt "acceptrejectchangesdialog|extended_tip|acceptall"
+msgid "Accepts all of the changes and removes the highlighting from the document."
+msgstr "ព្រម​ទទួល​ការ​ផ្លាស់ប្ដូរ​ទាំងអស់ ហើយ​លុប​រំលេច​ចេញពី​ឯកសារ។"
+
+#. debjw
+#: svx/uiconfig/ui/redlineviewpage.ui:317
+msgctxt "acceptrejectchangesdialog|rejectall"
+msgid "R_eject All"
+msgstr "ច្រានចោល​​​ទាំងអស់ "
+
+#. ZSHyG
+#: svx/uiconfig/ui/redlineviewpage.ui:324
+msgctxt "acceptrejectchangesdialog|extended_tip|rejectall"
+msgid "Rejects all of the changes and removes the highlighting from the document."
+msgstr "បដិសេធ​ការ​ផ្លាស់ប្ដូរ​ទាំងអស់ ហើយ​លុប​រំលេច​ចេញពី​ឯកសារ។"
+
+#. tRnmX
+#: svx/uiconfig/ui/redlineviewpage.ui:336
+msgctxt "acceptrejectchangesdialog|undo"
+msgid "_Undo"
+msgstr ""
+
+#. phEJs
+#: svx/uiconfig/ui/redlineviewpage.ui:343
+msgctxt "acceptrejectchangesdialog|extended_tip|undo"
+msgid "Reverse the last Accept or Reject command."
msgstr ""
#. ePj3x
-#: svx/uiconfig/ui/redlineviewpage.ui:252
+#: svx/uiconfig/ui/redlineviewpage.ui:362
msgctxt "redlineviewpage|extended_tip|RedlineViewPage"
msgid "Accept or reject individual changes."
msgstr "​យល់​ព្រម​ ឬ​ច្រាន​ចោល​ការ​ផ្លាស់​ប្តូរ​នីមួយៗ​ ។"
diff --git a/source/km/sw/messages.po b/source/km/sw/messages.po
index 7b56d8bb0e6..81e59f33b00 100644
--- a/source/km/sw/messages.po
+++ b/source/km/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2018-11-20 17:21+0000\n"
"Last-Translator: Andras Timar <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4536,1742 +4536,1748 @@ msgctxt "STR_HIDDEN_CHANGES_DETAIL3"
msgid "Document contains tracked changes."
msgstr ""
+#. 5gsCi
+#: sw/inc/strings.hrc:418
+msgctxt "STR_HEADER_FOOTER"
+msgid "Header/Footer"
+msgstr ""
+
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:420
+#: sw/inc/strings.hrc:421
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr "មិន​អាច​ធ្វើ​បាន"
#. 5GdxN
-#: sw/inc/strings.hrc:421
+#: sw/inc/strings.hrc:422
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "លុប $1"
#. i6vB4
-#: sw/inc/strings.hrc:422
+#: sw/inc/strings.hrc:423
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "បញ្ចូល $1"
#. JESFv
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:424
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr "សរសេរ​ជាន់​លើ ៖ $1"
#. FVqpL
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:425
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr "កថាខណ្ឌ​​ថ្មី"
#. r3iVE
-#: sw/inc/strings.hrc:425
+#: sw/inc/strings.hrc:426
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "ផ្លាស់ទី"
#. Z2Ft8
-#: sw/inc/strings.hrc:426
+#: sw/inc/strings.hrc:427
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "អនុវត្ត​គុណ​លក្ខណៈ"
#. hetuZ
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:428
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "អនុវត្ត​​រចនាប័ទ្ម ៖ $1"
#. GokWu
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:429
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "កំណត់​គុណ​លក្ខណៈ​ឡើង​វិញ"
#. mDgEJ
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:430
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr "ផ្លាស់ប្តូរ​រចនាប័ទ្ម ៖ $1"
#. onBFE
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:431
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr "បញ្ចូល​ឯកសារ"
#. WCCkF
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:432
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr "បញ្ចូល អត្ថបទ​ស្វ័យ​ប្រវត្តិ"
#. CyNXC
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:433
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr "លុប​​កន្លែង​ចំណាំ ៖ $1"
#. 54y8f
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:434
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr "បញ្ចូល​កន្លែង​ចំណាំ ៖ $1"
#. XHkEY
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:435
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr "តម្រៀប​​តារាង"
#. gui6q
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:436
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr "តម្រៀប​អត្ថបទ"
#. APAMG
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:437
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr "បញ្ចូល​តារាង ៖ $1$2$3"
#. 4pGhz
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:438
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr "បម្លែង​អត្ថបទ -> តារាង"
#. h3EH7
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:439
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr "បម្លែង តារាង -> អត្ថបទ"
#. uKreq
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:440
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr "ចម្លង ៖ $1"
#. BfGaZ
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:441
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr "ជំនួស $1 $2 $3"
#. GEC4C
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:442
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr "បញ្ចូល​ការ​បំបែក​ទំព័រ"
#. mrWg2
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:443
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr "បញ្ចូល​ការ​បំបែក​ជួរឈរ"
#. MGqRt
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:444
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr "បញ្ចូល​ស្រោម​សំបុត្រ"
#. g8ALR
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:445
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr "ចម្លង ៖ $1"
#. qHdLG
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:446
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr "ផ្លាស់ទី ៖ $1"
#. xqxPn
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:447
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr "បញ្ចូល​គំនូសតាង​​ %PRODUCTNAME"
#. qWEVG
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:448
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "បញ្ចូល​ស៊ុម"
#. GmqXE
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:449
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr "លុប​ស៊ុម"
#. z9Eai
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:450
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "ទ្រង់ទ្រាយ​ស្វ័យប្រវត្តិ"
#. E6uaH
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:451
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr "ក្បាល​​តារាង"
#. gnndv
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:452
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr "ជំនួស ៖ $1 $2 $3"
#. WwuFC
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:453
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr "បញ្ចូល​ភាគ"
#. 7pzWX
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:454
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr "លុប​ភាគ"
#. AFkoM
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:455
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr "កែប្រែ​ភាគ"
#. BY9gB
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:456
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr "កែប្រែ​តម្លៃ​លំនាំដើម"
#. X7eMx
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:457
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr "ជំនួស​រចនាប័ទ្ម ៖ $1 $2 $3"
#. EXFvJ
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:458
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr "លុប​ការ​បំបែក​ទំព័រ"
#. kHVr9
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:459
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr "ទិស​អត្ថបទ"
-#. ZPCQf
-#: sw/inc/strings.hrc:459
+#. VfBBy
+#: sw/inc/strings.hrc:460
msgctxt "STR_OUTLINE_LR"
-msgid "Promote/demote outline"
-msgstr "បង្កើន​/​បន្ថយ គ្រោង"
+msgid "Promote/demote outline level"
+msgstr ""
-#. WQJz2
-#: sw/inc/strings.hrc:460
+#. Mmk22
+#: sw/inc/strings.hrc:461
msgctxt "STR_OUTLINE_UD"
-msgid "Move outline"
-msgstr "ផ្លាស់ទី​​គ្រោង"
+msgid "Move chapter up/down"
+msgstr ""
#. 3UGKP
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:462
msgctxt "STR_OUTLINE_EDIT"
msgid "Modify outline"
msgstr ""
#. RjcRH
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:463
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr "បញ្ចូល​​​លេខ​រៀង"
-#. hbCQa
-#: sw/inc/strings.hrc:463
+#. RdWjx
+#: sw/inc/strings.hrc:464
msgctxt "STR_NUMUP"
-msgid "Promote level"
-msgstr "បង្កើន​កម្រិត"
+msgid "Demote list level"
+msgstr ""
-#. 63Ec4
-#: sw/inc/strings.hrc:464
+#. VpBDP
+#: sw/inc/strings.hrc:465
msgctxt "STR_NUMDOWN"
-msgid "Demote level"
-msgstr "បន្ថយ​កម្រិត"
+msgid "Promote list level"
+msgstr ""
#. FGciC
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:466
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr "ផ្លាស់​ទី​កថាខណ្ឌ"
#. WdMCK
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:467
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr "បញ្ចូល​​វត្ថុ​គំនូរ ៖ $1"
#. ErB3W
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:468
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr "បិទ​/​បើក លេខ"
#. rEZvN
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:469
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr "បង្កើន​ការ​ចូល​បន្ទាត់"
#. aJxcG
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:470
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr "បន្ថយ​ការ​ចូល​បន្ទាត់"
#. 4GP7c
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:471
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr "បញ្ចូល​ចំណងជើង ៖ $1"
#. GGFM8
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:472
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr "ចាប់ផ្ដើម​​បង់​​លេខ​​រៀង​​ឡើង​​វិញ"
#. pHfp7
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:473
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr "កែប្រែ​លេខ​យោង"
#. Knr9y
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:474
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr "យល់​ព្រម​ផ្លាស់​ប្តូរ ៖ $1"
#. jAvjr
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:475
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr "ច្រាន​ចោល​ការ​ផ្លាស់ប្តូរ ៖ $1"
#. uCGqy
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:476
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr "ពុះ​តារាង"
#. TJCZ8
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:477
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr "បញ្ឈប់​គុណ​លក្ខណៈ"
#. qyCiy
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:478
#, fuzzy
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr "កែ​​​ស្វ័យ​ប្រវត្តិ"
#. f4Jfr
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:479
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr "បញ្ចូល​តារាង​ចូល​គ្នា"
#. BLcCC
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:480
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr "ផ្លាស់ប្ដូរ​លក្ខណៈ​អក្សរ"
#. BTGyD
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:481
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr "លុប​​​លេខ​រៀង"
#. TMvTD
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:482
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "វត្ថុ​​គំនូរ ៖ $1"
#. FG7rN
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:483
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr "ដាក់​វត្ថុ​គំនូរ​ជា​ក្រុម"
#. xZqoJ
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:484
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr "បំបែក​វត្ថុ​គំនូរ​ជា​ក្រុម"
#. FA3Vo
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:485
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr "លុប​វត្ថុ​​គំនូរ"
#. MbJSs
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:486
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr "ជំនួសរូបភាព"
#. 6GmVr
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:487
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr "លុបរូបភាព"
#. PAmBF
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:488
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr "អនុវត្ត​គុណ​លក្ខណៈ​​តារាង"
#. GA8gF
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:489
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr "​​ធ្វើ​ទ្រង់ទ្រាយ​តារាង ស្វ័យប្រវត្តិ"
#. AAPTL
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "បញ្ចូល​​ជួរឈរ"
#. tA7ss
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "បញ្ចូល​ជួរដេក"
#. LAzxr
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:492
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "លុប ជួរ​ដេក​/​​​ជួរ​ឈរ"
#. yFDYp
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:493
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "លុប​ជួរ​ឈរ"
#. 9SF9L
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:494
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "លុប​ជួរដេក"
#. FnLC7
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:495
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr "ពុះ​​ក្រឡា"
#. 3Em7B
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:496
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr "បញ្ចូល​ក្រឡា​ចូល​គ្នា"
#. 3VVmF
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:497
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "ធ្វើ​ទ្រង់ទ្រាយ​ក្រឡា"
#. UbSKw
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:498
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr "បញ្ចូល លិបិក្រម/​​តារាង"
#. szpbj
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:499
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr "យក លិបិក្រម​/​តារាង ចេញ"
#. cN5DN
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:500
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr "ចម្លង​តារាង"
#. eUFgx
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:501
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr "ចម្លង​តារាង"
#. TC6mz
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:502
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr "កំណត់​ទស្សន៍​ទ្រនិច"
#. 4GStA
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:503
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr ""
#. XV4Ap
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:504
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr ""
#. vUJG9
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:505
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr "កែប្រែ​ជម្រើស​លេខ​យោង"
#. AgREs
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:506
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "ប្រៀបធៀប​​ឯកសារ"
#. kZATW
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:507
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "អនុវត្ត​រចនាប័ទ្ម​ស៊ុម ៖ $1"
#. 4Ae2X
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:508
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr "កំណត់​មគ្គុទ្ទេសក៍​សូរសព្ទ"
#. J4AUR
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:509
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr "បញ្ចូល​លេខ​យោង​"
#. RMgFD
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:510
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr "បញ្ចូល​ប៊ូតុង​ URL"
#. UKN7k
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:511
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "បញ្ចូល​​តំណខ្ពស់​"
#. 9odT8
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:512
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr "យក​មាតិកា​ដែលមើល​​មិន​ឃើញ​ចេញ"
#. e6U2R
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:513
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr "តារាង​/​លិបិក្រម ដែល​​ផ្លាស់ប្តូរ"
#. JpGh6
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:514
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr ""
#. kZoAG
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:515
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr ""
#. wNZDq
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:516
msgctxt "STR_LDOTS"
msgid "..."
msgstr "..."
#. yiQgo
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:517
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr "ពហុ​ជម្រើស"
#. qFESB
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:518
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr "វាយ ៖ $1"
#. A6HSG
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:519
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr "បិទ​ភ្ជាប់​ក្តារ​តម្បៀត​ខ្ទាស់"
#. mfDMF
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:520
msgctxt "STR_YIELDS"
msgid "→"
msgstr ""
#. wNRhZ
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:521
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr "ការ​កើត​មាន​ឡើង​នៃ"
#. hHUZi
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:522
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
msgstr[0] ""
#. eP6mC
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:523
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
msgstr[0] ""
#. yS3nP
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:524
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "ការ​បំបែក​ទំព័រ"
#. Q4YVg
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:525
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr "ការ​បំបែក​ជួរ​ឈរ"
#. L6qva
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:526
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "បញ្ចូល $1"
#. i8ZQo
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:527
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "លុប $1"
#. 5KECk
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:528
#, fuzzy
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr "គុណ​លក្ខណៈ​ដែល​បាន​ផ្លាស់ប្តូរ"
#. N7CUk
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:529
#, fuzzy
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr "តារាង​ផ្លាស់ប្តូរ"
#. DCGPF
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:530
#, fuzzy
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr "តារាង​ផ្លាស់ប្តូរ"
#. p77WZ
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:531
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. nehrq
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:532
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "បញ្ចូល​ជួរដេក"
#. Ud4qT
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:533
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "លុប​ជួរដេក"
#. GvxsC
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:534
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr "បញ្ចូល​ក្រឡា"
#. ZMrVY
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:535
#, fuzzy
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr "លុប​ក្រឡា"
#. DqprY
-#: sw/inc/strings.hrc:535
+#: sw/inc/strings.hrc:536
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr "$1 ផ្លាស់ប្តូរ"
#. ve5ZA
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr "ផ្លាស់ប្តូរ​រចនាប័ទ្ម​ទំព័រ ៖​ $1"
#. RDkdy
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr "បង្កើត​រចនាប័ទ្ម​ទំព័រ ៖​ $1"
#. tBVzV
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr "លុប​រចនាប័ទ្ម​ទំព័រ ៖​ $1"
#. wzjRB
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr "ប្តូរ​ឈ្មោះ​រចនាប័ទ្ម​ទំព័រ ៖​ $1 $2 $3"
#. UcTVv
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr "បឋមកថា​/​បាតកថា ដែល​បាន​ផ្លាស់ប្តូរ"
#. tGyeC
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr "វាល​​ដែលបាន​ផ្លាស់ប្ដូរ"
#. xh3dq
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr "បង្កើត​រចនាប័ទ្ម​កថាខណ្ឌ ៖ $1"
#. aRf6Z
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:544
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr "លុប​រចនាប័ទ្ម​កថាខណ្ឌ ៖ $1"
#. DtD6w
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr "ប្តូរ​ឈ្មោះ​រចនាប័ទ្ម​កថាខណ្ឌ ៖ $1 $2 $3"
#. J2FcF
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:546
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr "បង្កើត​រចនាប័ទ្ម​តួអក្សរ ៖​ $1"
#. FjT56
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:547
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr "លុប​រចនាប័ទ្ម​តួអក្សរ ៖​ $1"
#. mT2GJ
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:548
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr "ប្តូរ​ឈ្មោះ​រចនាប័ទ្ម​តួអក្សរ ៖​ $1 $2 $3"
#. AvK4p
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:549
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr "បង្កើត​រចនាប័ទ្ម​ស៊ុម ៖​ $1"
#. zHLcd
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:550
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr "លុប​រចនាប័ទ្ម​ស៊ុម ៖​ $1"
#. BUdbD
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:551
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr "ប្តូរ​ឈ្មោះ​រចនាប័ទ្ម​ស៊ុម ៖​ $1 $2 $3"
#. GG9BH
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:552
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr "បង្កើត​រចនាប័ទ្ម​លេខ​រៀង ៖​ $1"
#. zYZW8
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:553
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr "លុប​រចនាប័ទ្ម​លេខ​រៀង ៖​ $1"
#. QhDFe
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:554
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr "ប្តូរ​ឈ្មោះ​រចនាប័ទ្ម​លេខ​រៀង ៖​ $1 $2 $3"
#. oWrh9
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:555
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr "ប្តូរ​ឈ្មោះ​កន្លែង​ចំណាំ ៖ $1 $2 $3"
#. WTcEw
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:556
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr "បញ្ចូល​ធាតុ​លិបិក្រម"
#. fbidx
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:557
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr "លុប​ធាតុ​លិបិក្រម"
#. WCDy7
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:558
msgctxt "STR_FIELD"
msgid "field"
msgstr "វាល"
#. aC9iU
-#: sw/inc/strings.hrc:558
+#: sw/inc/strings.hrc:559
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr ""
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:561
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "កថាខណ្ឌ"
#. 9fb4z
-#: sw/inc/strings.hrc:561
+#: sw/inc/strings.hrc:562
msgctxt "STR_FRAME"
msgid "frame"
msgstr "ស៊ុម"
#. gcZ3a
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:563
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr "វត្ថុ-OLE"
#. db5Tg
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:564
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "រូបមន្ត"
#. BirkF
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:565
msgctxt "STR_CHART"
msgid "chart"
msgstr "គំនូសតាង"
#. YxCuu
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:566
msgctxt "STR_NOTE"
msgid "comment"
msgstr "មតិយោបល់"
#. CKqsU
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:567
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr "សេចក្តី​យោង​ឆ្លង"
#. q9BGR
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:568
msgctxt "STR_SCRIPT"
msgid "script"
msgstr "ស្គ្រីប"
#. o6FWi
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:569
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr "ធាតុ​គន្ថនិទ្ទេស"
#. qbRLG
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:570
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr "តួអក្សរ​ពិសេស"
#. qJd8G
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:571
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr "លេខ​យោង"
#. bKvaD
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:572
#, fuzzy
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "រូបភាព"
#. J7CgG
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:573
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "វត្ថុ​​គំនូរ"
#. rYPFG
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:574
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr "តារាង ៖ $1$2$3"
#. AtWxA
-#: sw/inc/strings.hrc:574
+#: sw/inc/strings.hrc:575
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
msgstr[0] ""
#. 2JCL2
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:576
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "កថាខណ្ឌ"
#. DvnGA
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:577
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr ""
#. oL9GG
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:578
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr "ផ្លាស់ប្ដូរ​ចំណង​ជើង​វត្ថុ​នៃ $1"
#. 3Cv7E
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:579
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
#. rWw8U
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:580
#, fuzzy
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr "បង្កើត​រចនាប័ទ្ម​ទំព័រ ៖​ $1"
#. jGxgy
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:581
#, fuzzy
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr "លុប​រចនាប័ទ្ម​ទំព័រ ៖​ $1"
#. 6NWP3
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:582
#, fuzzy
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr "បង្កើត​រចនាប័ទ្ម​ទំព័រ ៖​ $1"
#. JegfU
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:583
#, fuzzy
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr "លុប​​ទំព័រ"
#. KSMpJ
-#: sw/inc/strings.hrc:583
+#: sw/inc/strings.hrc:584
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr ""
#. 2zJmG
-#: sw/inc/strings.hrc:584
+#: sw/inc/strings.hrc:585
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr ""
#. CUXeF
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:587
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr "ទិដ្ឋភាព​ឯកសារ"
#. FrBrC
-#: sw/inc/strings.hrc:587
+#: sw/inc/strings.hrc:588
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr "ទិដ្ឋភាព​ឯកសារ"
#. BCEgS
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:589
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr "បឋមកថា​ $(ARG1)"
#. zKdDR
-#: sw/inc/strings.hrc:589
+#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr "ទំព័រ​បឋមកថា​ $(ARG1)"
#. NhFrV
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:591
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr "បាតកថា $(ARG1)"
#. 6GJNd
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:592
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr "​ទំព័រ​បាតកថា $(ARG1)"
#. VGUwW
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:593
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr "លេខ​យោង $(ARG1)"
#. a7XMU
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:594
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr "លេខ​យោង $(ARG1)"
#. 3ExiP
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:595
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr "លេខ​យោង​ចុង $(ARG1)"
#. 8XdTm
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:596
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr "លេខ​យោង​ចុង $(ARG1)"
#. 4sTZN
-#: sw/inc/strings.hrc:596
+#: sw/inc/strings.hrc:597
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr "$(ARG1) លើ​ទំព័រ $(ARG2)"
#. Z5Uy9
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:598
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr "ទំព័រ $(ARG1)"
#. CWroT
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:599
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr "ទំព័រ ៖ $(ARG1)"
#. iwfxM
-#: sw/inc/strings.hrc:599
+#: sw/inc/strings.hrc:600
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "អ្នកនិពន្ធ"
#. sff9t
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:601
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "កាលបរិច្ឆេទ"
#. VScXC
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:602
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr ""
#. JtzA4
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:603
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "សកម្មភាព"
#. cHWqM
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:604
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr "ធ្វើ​ឲ្យ​ប៊ូតុង​នេះ​សកម្ម ដើម្បីបើកបញ្ជី​សកម្មភាព​ដែល​ត្រូវបាន​អនុវត្ត​នៅ​លើ​មតិយោបល់​នេះ និង​មតិយោបល់​ផ្សេង"
#. 9YxaB
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:605
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr "មើល​ឯកសារ​ជាមុន"
#. eYFFo
-#: sw/inc/strings.hrc:605
+#: sw/inc/strings.hrc:606
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr "(របៀប​មើល​ជាមុន)"
#. Fp7Hn
-#: sw/inc/strings.hrc:606
+#: sw/inc/strings.hrc:607
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "ឯកសារ %PRODUCTNAME"
#. CsQKH
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:609
#, fuzzy
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr "កំហុស​ការ​អាន"
#. ztbVu
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:610
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr "មិន​អាច​បង្ហាញ​ក្រាហ្វិក​ ។"
#. iJsFt
-#: sw/inc/strings.hrc:610
+#: sw/inc/strings.hrc:611
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr "កំហុស​អាន​ពី​ក្តារ​តម្បៀត​ខ្ទាស់​ ។"
#. bXZQD
-#: sw/inc/strings.hrc:612
+#: sw/inc/strings.hrc:613
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr "ការ​បំបែក​ជួរឈរ​ដោយ​ដៃ"
#. 7DzNG
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:615
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr "ជួរ​ដេក %ROWNUMBER"
#. GYFVF
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:616
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr "ជួរ​ឈរ %COLUMNLETTER"
#. GGS2b
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:617
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "តួអក្សរ"
#. KBw5e
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:618
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "កថាខណ្ឌ"
#. ERH8o
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:619
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr "ស៊ុម"
#. Cqjn8
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:620
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "ទំព័រ"
#. FFZEr
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:621
msgctxt "STR_STYLE_FAMILY_NUMBERING"
msgid "List"
msgstr ""
#. NydLs
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:622
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "តារាង"
#. XUhuM
-#: sw/inc/strings.hrc:622
+#: sw/inc/strings.hrc:623
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr "ក្រឡា"
#. DRqDZ
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:625
#, fuzzy
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr "អាស៊ី"
#. owFtq
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:626
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr "CTL"
#. ap5iF
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:627
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr "ភាគ​ខាង​លិច"
#. HD64i
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:628
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. q6egu
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:629
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "មាតិកា"
#. Ka4fM
-#: sw/inc/strings.hrc:629
+#: sw/inc/strings.hrc:630
#, fuzzy
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr "ផ្ទៃខាងក្រោយ​ទំព័រ "
#. YPEEH
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:631
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr ""
#. L6GSj
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:632
#, fuzzy
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr "អត្ថបទ​ដែល​លាក់"
#. pXiRN
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:633
#, fuzzy
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr "កន្លែង​ដាក់​អត្ថបទ "
#. JBWVd
-#: sw/inc/strings.hrc:633
+#: sw/inc/strings.hrc:634
#, fuzzy
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr "ត្រួពិនិត្យ​សំណុំ​បែបបទ "
#. X8Bfu
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:635
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "ពណ៌"
#. kQDcq
-#: sw/inc/strings.hrc:635
+#: sw/inc/strings.hrc:636
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr "បោះពុម្ព​អត្ថបទ​ពណ៌​ខ្មៅ "
#. DEELn
-#: sw/inc/strings.hrc:636
+#: sw/inc/strings.hrc:637
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr ""
#. uddbB
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:638
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr "បោះពុម្ព​ទំព័រ​ទទេ​ដែល​បាន​បញ្ចូល​ដោយ​ស្វ័យ​ប្រវត្តិ"
#. MTJt2
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:639
#, fuzzy
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr "ប្រើ​តែ​ថាស​ក្រដាស​ពីចំណូល​ចិត្ត​ម៉ាស៊ីនបោះពុម្ព​​ប៉ុណ្ណោះ"
#. 4uBam
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:640
#, fuzzy
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr "គ្មាន (តែ​ឯកសារ)"
#. pbQtA
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:641
#, fuzzy
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr "តែ​មតិយោបល់"
#. sVnbD
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:642
#, fuzzy
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr "ដាក់​នៅ​ខាង​ចុង​ឯកសារ"
#. D4BXH
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:643
#, fuzzy
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr "ដាក់នៅ​ខាង​ចុង​ទំព័រ"
#. 6rzab
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:644
#, fuzzy
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "មតិយោបល់"
#. cnqLU
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:645
#, fuzzy
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr "ប័ណ្ណ​ប្រកាស"
#. t6drz
-#: sw/inc/strings.hrc:645
+#: sw/inc/strings.hrc:646
#, fuzzy
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr "ស្គ្រីប​ឆ្វេង​ទៅ​ស្ដាំ"
#. QgmxB
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:647
#, fuzzy
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr "ស្គ្រីប​ស្ដាំ​ទៅ​ឆ្វេង"
#. t4Cm7
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:648
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr ""
#. ZDRM2
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:649
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. rajyx
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:650
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr ""
#. 9EXcV
-#: sw/inc/strings.hrc:650
+#: sw/inc/strings.hrc:651
#, fuzzy
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr "ដាក់​ក្នុង​រឹង"
#. NGQw3
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:653
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "អនុគមន៍"
#. D3RCG
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:654
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "បោះបង់"
#. 3Tg3C
-#: sw/inc/strings.hrc:654
+#: sw/inc/strings.hrc:655
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "អនុវត្ត"
#. UDkFb
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:656
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr "របារ​ឧបករណ៍​រូបមន្ត"
#. Z3CB5
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:657
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr ""
#. 3CCa7
-#: sw/inc/strings.hrc:657
+#: sw/inc/strings.hrc:658
#, fuzzy
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr "អត្ថបទ​រូបមន្ត "
#. FXNer
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:660
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr ""
#. aeeRP
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:661
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr ""
#. UAExA
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:662
#, fuzzy
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr "គ្រោង ៖ កម្រិត "
#. yERK6
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:663
#, fuzzy
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "របៀប​អូស"
#. PAB4k
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:664
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr ""
#. b5tPU
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:665
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. qzXwn
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:666
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr ""
#. HGDgJ
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:667
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr ""
#. BYRpF
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:668
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr ""
#. NGgt3
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:669
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr ""
#. 44jEc
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:670
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. mnZA9
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:671
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr ""
#. rkD8H
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:672
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. oBH6y
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:673
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr ""
#. YBDFD
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:674
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Unfold All"
msgstr ""
#. Cj4js
-#: sw/inc/strings.hrc:674
+#: sw/inc/strings.hrc:675
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Fold All"
msgstr ""
#. 9Fipd
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:677
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr ""
#. FxGVt
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:678
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr ""
#. xvSRm
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:679
#, fuzzy
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "បញ្ចូល​​តំណខ្ពស់​"
#. sdfGe
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:680
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "បញ្ចូល​ជា​តំណ"
#. Suaiz
-#: sw/inc/strings.hrc:680
+#: sw/inc/strings.hrc:681
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "បញ្ចូល​ជា​ច្បាប់​ចម្លង"
#. VgdhT
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:682
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "បង្ហាញ"
#. 3VXp5
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:683
#, fuzzy
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "បង្អួច​សកម្ម"
#. fAAUc
-#: sw/inc/strings.hrc:683
+#: sw/inc/strings.hrc:684
#, fuzzy
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "លាក់"
#. 3VWjq
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:685
#, fuzzy
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "សកម្ម"
#. YjPvg
-#: sw/inc/strings.hrc:685
+#: sw/inc/strings.hrc:686
#, fuzzy
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "អសកម្ម"
#. tBPKU
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:687
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "កែសម្រួល..."
#. ppC87
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:688
#, fuzzy
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "ធ្វើ​បច្ចុប្បន្នភាព"
#. 44Esc
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:689
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "កែ​សម្រួល"
#. w3ZrD
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:690
#, fuzzy
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr "កែ​សម្រួល​តំណ"
#. xyPWE
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:691
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "បញ្ចូល"
#. AT9SS
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:692
#, fuzzy
msgctxt "STR_INDEX"
msgid "~Index"
msgstr "លិបិក្រម"
#. MnBLc
-#: sw/inc/strings.hrc:692
+#: sw/inc/strings.hrc:693
msgctxt "STR_FILE"
msgid "File"
msgstr "ឯកសារ"
#. DdBgh
-#: sw/inc/strings.hrc:693
+#: sw/inc/strings.hrc:694
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "ឯកសារ​ថ្មី"
#. aV9Uy
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:695
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "អត្ថបទ"
#. 5rD3D
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:696
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "លុប"
#. 9MrsU
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:697
#, fuzzy
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "លុប"
#. A28Rb
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:698
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "ជម្រើស"
#. gRBxA
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:699
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "លិបិក្រម"
#. WKwLS
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:700
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "តំណ"
#. TaaJK
-#: sw/inc/strings.hrc:700
+#: sw/inc/strings.hrc:701
#, fuzzy
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "ទាំងអស់"
#. HpMeb
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:703
#, fuzzy
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "លាក់"
#. XcCnB
-#: sw/inc/strings.hrc:703
+#: sw/inc/strings.hrc:704
#, fuzzy
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "រក​មិន​ឃើញ​តម្រង ​។​"
#. UC53U
-#: sw/inc/strings.hrc:705
+#: sw/inc/strings.hrc:706
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr ""
#. 3ceMF
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:708
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr "ឆ្វេង៖"
#. EiXF2
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:709
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ". ស្ដាំ៖"
#. UFpVa
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:710
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr "ខាងក្នុង៖"
#. XE7Wb
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:711
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ". ខាងក្រៅ៖"
#. 3A8Vg
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:712
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ". កំពូល៖"
#. dRhyZ
-#: sw/inc/strings.hrc:712
+#: sw/inc/strings.hrc:713
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
@@ -6279,931 +6285,931 @@ msgstr ". បាត៖"
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:716
#, fuzzy
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "ទំព័រ​​ "
#. AeDYh
-#: sw/inc/strings.hrc:716
+#: sw/inc/strings.hrc:717
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "បន្ទាត់​"
#. kfJG6
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:718
#, fuzzy
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "អ្នកនិពន្ធ"
#. gejqG
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:719
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr ""
#. q6dUT
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:720
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr ""
#. HSo6d
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:721
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr ""
#. jcNfg
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:722
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr ""
#. C453V
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:723
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr ""
#. KEQfz
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:724
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr ""
#. hxrg9
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:725
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr ""
#. 2yBhF
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:726
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr ""
#. jgRW7
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:727
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "គ្មាន"
#. KRD6s
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:728
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr ""
#. FCRUB
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:729
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#. ocA84
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:730
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr "លិបិក្រម​តាម​លំដាប់​អក្សរក្រម"
#. GDCRF
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:731
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "កំណត់​ដោយ​អ្នកប្រើ"
#. vnaNc
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:732
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr "តារាង​មាតិកា"
#. BESjb
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:733
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr "គន្ថនិទ្ទេស"
#. ZFBUD
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:734
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr "សេចក្ដី​ស្រង់"
#. WAs8q
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:735
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr "លិបិក្រម​តារាង"
#. NFzTx
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:736
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr "តារាង​វត្ថុ"
#. mSyms
-#: sw/inc/strings.hrc:736
+#: sw/inc/strings.hrc:737
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr ""
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:739
#, fuzzy
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "ចំណង​ជើង"
#. ziEpC
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:740
#, fuzzy
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "ប្រធានបទ៖"
#. FCVZS
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:741
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "ពាក្យ​គន្លឹះ"
#. kHC7q
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:742
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "មតិយោបល់"
#. i6psX
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:743
#, fuzzy
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr "បង្កើត"
#. L2Bxp
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:744
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "បាន​កែប្រែ"
#. D2YKS
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:745
#, fuzzy
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr "បាន​បោះពុម្ព​ចុងក្រោយ៖"
#. QtuZM
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:746
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "ចំនួន​ពិនិត្យ​ឡើង​វិញ"
#. YDFbi
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:747
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "រយៈពេល​កែសម្រួល​សរុប"
#. EpZ9C
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:748
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr ""
#. nY3NU
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:749
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr ""
#. eQtGV
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:750
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr ""
#. aBwxC
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr "អត្ថបទ​"
#. di8ud
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:752
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr "សៀវភៅ​"
#. GD5KJ
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:753
#, fuzzy
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr "ប័ណ្ណ​ប្រកាស"
#. mfFSf
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr "ការ​​​ដំណើរ​​​ការ​​ស​ន្និសីទ​​"
#. Et2Px
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "សេចក្តី​​ដក​ស្រង់​​ពី​​សៀវភៅ"
#. ys2B8
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:756
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "សេចក្តី​​​ដក​ស្រង់​​​ពី​​សៀវភៅ​​​​ជា​មួយ​​​ចំណង​​​ជើង"
#. mdEqj
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr "ការ​​​ដំណើរ​​​ការ​​ស​ន្និសីទ​​"
#. jNmVD
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr "ទិនា​នុ​ប្បវត្តិ"
#. M3xkM
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "ឯកសារ​​​​​​បច្ចេក​ទេស"
#. EJAj4
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:760
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "និក្ខេប​បទ"
#. NoUCv
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr "ផ្សេងៗ​"
#. qNGGE
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "បរមា​​ធិប្បាយ"
#. L7W7R
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "ការ​​​ដំណើរ​​​ការ​​ស​ន្និសីទ​​"
#. X8bGG
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:764
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr "របាយការណ៍​​​ស្រាវ​ជ្រាវ"
#. 4dDC9
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:765
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "មិន​​បាន​​បោះ​​ពុម្ព​​ផ្សាយ​"
#. Gb38d
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:766
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr ""
#. 9HKD6
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:767
#, fuzzy
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr "ក្នុង​មួយ​ឯកសារ"
#. qA449
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:768
#, fuzzy
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "កំណត់​ដោយ​អ្នកប្រើ"
#. nyzxz
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:769
#, fuzzy
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "កំណត់​ដោយ​អ្នកប្រើ"
#. cCFTF
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:770
#, fuzzy
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "កំណត់​ដោយ​អ្នកប្រើ"
#. mrqJC
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:771
#, fuzzy
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "កំណត់​ដោយ​អ្នកប្រើ"
#. fFs86
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:772
#, fuzzy
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "កំណត់​ដោយ​អ្នកប្រើ"
#. nsCwi
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:773
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr "ឈ្មោះ​​ខ្លី"
#. CpKgc
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "ប្រភេទ"
#. kUGDr
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "អាសយដ្ឋាន"
#. DquVQ
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:776
#, fuzzy
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr "ចំណារ​​​ពន្យល់​​ "
#. sduuV
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:777
#, fuzzy
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr "អ្នក​​និពន្ធ"
#. fXvz6
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:778
#, fuzzy
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr "ចំណង​​ជើង​របស់​សៀវភៅ "
#. c8PFE
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "ជំពូក"
#. GXqxF
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:780
#, fuzzy
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr "ស្នា​ដៃ ​"
#. p7A3p
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:781
#, fuzzy
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr "អ្នក​​​កែ​​សម្រួល​​"
#. aAFEz
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:782
#, fuzzy
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr "ប្រ​ភេទ​​ការ​​បោះ​​ពុម្ព​​ផ្សាយ​​ "
#. 8DwdJ
-#: sw/inc/strings.hrc:782
+#: sw/inc/strings.hrc:783
#, fuzzy
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr "ស្ថាប័ន ​"
#. VWNxy
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr "ទិនា​នុ​ប្បវត្តិ"
#. Da4fW
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:785
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "ខែ"
#. SdSBt
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "ចំណាំ"
#. MZYpD
-#: sw/inc/strings.hrc:786
+#: sw/inc/strings.hrc:787
#, fuzzy
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "លេខ"
#. ZB7Go
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:788
#, fuzzy
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr "អង្គការ "
#. C4CdP
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:789
#, fuzzy
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr "ទំព័រ "
#. yFPFa
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:790
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr "Publisher"
#. d9u3p
-#: sw/inc/strings.hrc:790
+#: sw/inc/strings.hrc:791
#, fuzzy
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr "សកល​វិទ្យា​ល័យ"
#. Qxsdb
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:792
#, fuzzy
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr "ស៊េរី "
#. YhXPg
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:793
#, fuzzy
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "ចំណង​ជើង"
#. qEBhL
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:794
#, fuzzy
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr "ប្រភេទ​​​របាយ​​ការណ៍ "
#. Sij9w
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:795
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr "ភាគ​"
#. K8miv
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:796
#, fuzzy
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "ជា​ទី​គោរព"
#. pFMSV
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:797
#, fuzzy
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr "URL៖"
#. xFG3c
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:798
#, fuzzy
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "កំណត់​ដោយ​អ្នកប្រើ"
#. wtDyU
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:799
#, fuzzy
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "កំណត់​ដោយ​អ្នកប្រើ"
#. VH3Se
-#: sw/inc/strings.hrc:799
+#: sw/inc/strings.hrc:800
#, fuzzy
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "កំណត់​ដោយ​អ្នកប្រើ"
#. twuKb
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:801
#, fuzzy
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "កំណត់​ដោយ​អ្នកប្រើ"
#. WAo7Z
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:802
#, fuzzy
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "កំណត់​ដោយ​អ្នកប្រើ"
#. 3r6Wg
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:803
#, fuzzy
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr "ISBN "
#. BhDrt
-#: sw/inc/strings.hrc:803
+#: sw/inc/strings.hrc:804
msgctxt "STR_AUTH_FIELD_LOCAL_URL"
msgid "Local copy"
msgstr ""
#. eFnnx
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:806
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "កែសម្រួល​​​​​​ធាតុ​លិបិក្រម"
#. EHTHH
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:807
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "បញ្ចូល​ធាតុ​លិបិក្រម "
#. D2gkA
-#: sw/inc/strings.hrc:807
+#: sw/inc/strings.hrc:808
#, fuzzy
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr "ឯកសារ​មាន​ធាតុ​គន្ថនិទ្ទេស​រួច​ហើយ ប៉ុន្តែ​​ជាមួយ​​ទិន្នន័យ​ផ្សេង​គ្នា ។ តើ​អ្នក​ចង់​លៃ​តម្រូវ​​ធាតុ​ដែល​មាន​ស្រាប់​​ឬ​ទេ ?"
#. mK84T
-#: sw/inc/strings.hrc:809
+#: sw/inc/strings.hrc:810
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "មតិយោបល់"
#. fwecS
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:811
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "បង្ហាញ​មតិយោបល់"
#. HkUvy
-#: sw/inc/strings.hrc:811
+#: sw/inc/strings.hrc:812
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr "លាក់​មតិយោបល់"
#. FcmEy
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:814
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "ឈ្មោះ​ផ្លូវ​កាត់​មាន​រួច​ហើយ ។ សូម​ជ្រើស​ឈ្មោះ​ផ្សេង​ទៀត ។"
#. VhMST
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:815
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "លុប​អត្ថបទ​ស្វ័យប្រវត្តិ ?"
#. E5MLr
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:816
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "លុប​ប្រភេទ "
#. qndNh
-#: sw/inc/strings.hrc:816
+#: sw/inc/strings.hrc:817
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "?"
#. B6xah
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:818
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "អត្ថបទ​ស្វ័យប្រវត្តិ ៖"
#. ChetY
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:819
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "រក្សាទុក អត្ថបទ​ស្វ័យប្រវត្តិ"
#. QxAiF
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:820
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "គ្មាន​អត្ថបទ​ស្វ័យប្រវត្តិ​ក្នុង​ឯកសារ​នេះ ។"
#. sG8Xt
-#: sw/inc/strings.hrc:820
+#: sw/inc/strings.hrc:821
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr "អត្ថបទ​ស្វ័យ​ប្រវត្តិ​របស់​ខ្ញុំ​"
#. GaoqR
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:823
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "រក​មិន​ឃើញ​អត្ថបទ​ស្វ័យ​ប្រវត្តិ​សម្រាប់​ផ្លូវ​កាត់ '%1' ។"
#. MwUEP
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:824
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr ""
#. AawM4
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:825
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr ""
#. GGo8i
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:826
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "មិន​អាច​បង្កើត អត្ថបទ​ស្វ័យប្រវត្តិ ។"
#. DCPSB
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:827
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr "មិន​មាន​ទ្រង់ទ្រាយ​ក្តារ​តម្បៀត​ខ្ទាស់​​ដែល​បាន​ស្នើ​សុំ ។"
#. YxCCF
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:828
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr ""
#. 8ygN3
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:829
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr ""
#. ewPPB
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:830
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr ""
#. 9VEc3
-#: sw/inc/strings.hrc:830
+#: sw/inc/strings.hrc:831
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. svrE7
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:833
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "មតិយោបល់​ទាំងអស់"
#. YGNN4
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:834
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "មតិយោបល់​ទាំងអស់"
#. GDH49
-#: sw/inc/strings.hrc:834
+#: sw/inc/strings.hrc:835
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "ផ្ដល់​មតិយោបល់​ដោយ "
#. RwAcm
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:836
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(គ្មាន​កាលបរិច្ឆេទ)"
#. ytxKG
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:837
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "(គ្មាន​អ្នក​និពន្ធ)"
#. nAwMG
-#: sw/inc/strings.hrc:837
+#: sw/inc/strings.hrc:838
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "ឆ្លើយតប​ទៅ $1"
#. CVVa6
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:840
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "កែសម្រួល​បណ្តុំ​អាសយដ្ឋាន"
#. njGGA
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:841
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr "វន្ទនាការ​ផ្ទាល់​ខ្លួន (​អ្នក​ទទួល​ប្រុស​)"
#. ZVuKY
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:842
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr "វន្ទនាការ​ផ្ទាល់​ខ្លួន (​អ្នក​ទទួល​ស្រី​)"
#. h4yuq
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:843
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "ធាតុ​វន្ទនាការ "
#. kWhqT
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:844
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr "បន្ថែម​ទៅ​វន្ទនាការ"
#. hvF3V
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:845
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr "លុប​ចេញ​ពី​វន្ទនាការ"
#. A6XaR
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:846
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr "១. អូស​ធាតុ​វន្ទនាការ ទៅ​ក្នុង​ប្រអប់​ខាង​ក្រោម "
#. 4VJWL
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:847
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr "វន្ទនាការ"
#. Vj6XT
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:848
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr "សញ្ញា​សម្គាល់​ការ​ដាក់​វណ្ណយុត្តិ"
#. bafeG
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:849
msgctxt "ST_TEXT"
msgid "Text"
msgstr "អត្ថបទ"
#. tt6sA
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:850
#, fuzzy
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr "ផ្តល់​តម្លៃ​វាល​​ពី​ប្រភព​ទិន្នន័យ​របស់​អ្នក ដើម្បី​ផ្គូផ្គង​ធាតុ​អាសយដ្ឋាន ។"
#. zrUsN
-#: sw/inc/strings.hrc:850
+#: sw/inc/strings.hrc:851
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "មើល​វន្ទនាការ​ជា​មុន"
#. 2UVE6
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:852
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "ធាតុ​អាសយដ្ឋាន"
#. Bd6pd
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:853
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "ធាតុ​វន្ទនាការ"
#. 9krzf
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:854
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "ផ្គូផ្គង​ទៅ​វាល ៖"
#. oahCQ
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:855
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "មើល​ជា​​​មុន"
#. ijdxe
-#: sw/inc/strings.hrc:855
+#: sw/inc/strings.hrc:856
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr ""
#. kE5C3
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:858
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " មិន​ទាន់​ផ្គូផ្គង​នៅ​ឡើយ​ទេ"
#. Y6FhG
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:859
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "ឯកសារ​ទាំងអស់"
#. 7cNjh
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:860
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr "បញ្ជី​អាសយដ្ឋាន (*.*)"
#. Ef8TY
-#: sw/inc/strings.hrc:860
+#: sw/inc/strings.hrc:861
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr "%PRODUCTNAME Base (*.odb)"
#. 24opW
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:862
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr "%PRODUCTNAME Calc (*.ods;*.sxc)"
#. sq73T
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:863
#, fuzzy
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr "%PRODUCTNAME Calc (*.ods;*.sxc)"
#. QupGC
-#: sw/inc/strings.hrc:863
+#: sw/inc/strings.hrc:864
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr "dBase (*.dbf)"
#. SzqRv
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:865
#, fuzzy
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr "Microsoft Excel (*.xls)"
#. zAUu8
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:866
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr ""
#. JBZFc
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:867
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr "អត្ថបទ​ធម្មតា (*.txt)"
#. CRJb6
-#: sw/inc/strings.hrc:867
+#: sw/inc/strings.hrc:868
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr "អត្ថបទ​បំបែក​​ដោយ​ក្បៀស (*.csv)"
#. U4H2j
-#: sw/inc/strings.hrc:868
+#: sw/inc/strings.hrc:869
#, fuzzy
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr "Microsoft Access (*.mdb)"
#. DwxF8
-#: sw/inc/strings.hrc:869
+#: sw/inc/strings.hrc:870
#, fuzzy
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr "Microsoft Access 2007 (*.accdb)"
#. uDNRt
-#: sw/inc/strings.hrc:870
+#: sw/inc/strings.hrc:871
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -7212,92 +7218,92 @@ msgid ""
msgstr ""
#. r9BVg
-#: sw/inc/strings.hrc:871
+#: sw/inc/strings.hrc:872
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "បញ្ជី​អាសយដ្ឋាន​របស់​របស់ %PRODUCTNAME (.csv)"
#. jiJuZ
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:874
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr ""
#. FiUyK
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:875
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr ""
#. QwrpS
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:876
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr ""
#. omRZF
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:877
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr ""
#. YrDuD
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:878
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr ""
#. tTr4B
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:879
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr ""
#. S4p5M
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:880
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr ""
#. N5YUH
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:881
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "បញ្ចប់ "
#. L5FEG
-#: sw/inc/strings.hrc:881
+#: sw/inc/strings.hrc:882
#, fuzzy
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr "អ្នក​ជំនួយការ​សំបុត្រ​សំណុំ​បែបបទ"
#. CEhZj
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:884
msgctxt "ST_TABLE"
msgid "Table"
msgstr "តារាង"
#. v9hEB
-#: sw/inc/strings.hrc:884
+#: sw/inc/strings.hrc:885
msgctxt "ST_QUERY"
msgid "Query"
msgstr "សំណួរ​"
#. HxGAu
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:887
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "បន្ត​​ពិនិត្យមើល​​នៅ​​ដើម​​ឯកសារ ?"
#. gE7CA
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:888
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "ការ​ពិនិត្យ​​អក្ខរាវិរុទ្ធ​បាន​​បញ្ចប់​ទាំង​ស្រុង ។"
#. 2SuqF
-#: sw/inc/strings.hrc:888
+#: sw/inc/strings.hrc:889
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr ""
@@ -7307,252 +7313,252 @@ msgstr ""
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:895
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "កាល​​បរិច្ឆេទ"
#. V9cQp
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:896
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "ពេល​វេលា​"
#. 2zgWi
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:897
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "ឈ្មោះ​ឯកសារ"
#. FdSaU
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:898
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "ឈ្មោះ​មូលដ្ឋាន​ទិន្នន័យ"
#. XZADh
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:899
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "ជំពូក"
#. wYWy2
-#: sw/inc/strings.hrc:899
+#: sw/inc/strings.hrc:900
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr ""
#. EXC6N
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:901
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "ស្ថិតិ"
#. EW86G
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:902
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "អ្នកនិពន្ធ ​"
#. 5aFak
-#: sw/inc/strings.hrc:902
+#: sw/inc/strings.hrc:903
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "ពុម្ព"
#. 3wdud
-#: sw/inc/strings.hrc:903
+#: sw/inc/strings.hrc:904
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "អ្នក​ផ្ញើ"
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:906
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "កំណត់​អថេរ"
#. ckA26
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:907
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "បង្ហាញ​អថេរ"
#. Fjzgu
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:908
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "បញ្ចូល​រូបមន្ត"
#. AXoAT
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:909
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "វាល​បញ្ចូល"
#. VfqNE
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:910
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "វាល​​​បញ្ចូល (ប្រែប្រួល)"
#. E8JAd
-#: sw/inc/strings.hrc:910
+#: sw/inc/strings.hrc:911
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "វាល​បញ្ចូល (អ្នក​ប្រើ​)"
#. 8LGEQ
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:912
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr "អត្ថបទ​​តាម​លក្ខខណ្ឌ"
#. jrZ7i
-#: sw/inc/strings.hrc:912
+#: sw/inc/strings.hrc:913
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "វាល DDE"
#. 9WAT9
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:914
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "ប្រតិបត្តិ​ម៉ាក្រូ"
#. qEBxa
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:915
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "ជួរ​លេខ"
#. ACE5s
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:916
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "កំណត់​អថេរ​ទំព័រ"
#. ayB3N
-#: sw/inc/strings.hrc:916
+#: sw/inc/strings.hrc:917
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "បង្ហាញ​អថេរ​ទំព័រ"
#. DBM4P
-#: sw/inc/strings.hrc:917
+#: sw/inc/strings.hrc:918
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "ផ្ទុក URL"
#. LJFF5
-#: sw/inc/strings.hrc:918
+#: sw/inc/strings.hrc:919
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "កន្លែង​ដាក់"
#. zZCg6
-#: sw/inc/strings.hrc:919
+#: sw/inc/strings.hrc:920
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "ផ្សំ​តួអក្សរ"
#. 9MGU6
-#: sw/inc/strings.hrc:920
+#: sw/inc/strings.hrc:921
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "បញ្ជី​បញ្ចូល"
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:923
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "កំណត់​សេចក្តី​យោង"
#. FJ2X8
-#: sw/inc/strings.hrc:923
+#: sw/inc/strings.hrc:924
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "បញ្ចូល​សេចក្ដីយោង"
#. sztLS
#. range database
-#: sw/inc/strings.hrc:925
+#: sw/inc/strings.hrc:926
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr "វាល​សំបុត្រ​សំណុំ​បែបបទ"
#. JP2DU
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:927
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "កំណត់ត្រា​បន្ទាប់"
#. GizhA
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:928
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr "កំណត់ត្រា​ណា​មួយ"
#. aMGxm
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:929
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "លេខ​កំណត់ត្រា"
#. DtYzi
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:930
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "ទំព័រ​មុន"
#. UCSej
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:931
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "ទំព័រ​បន្ទាប់"
#. M8Fac
-#: sw/inc/strings.hrc:931
+#: sw/inc/strings.hrc:932
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "អត្ថបទ​ដែល​លាក់"
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:933
+#: sw/inc/strings.hrc:934
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "វាល​​អ្នក​ប្រើ​"
#. XELYN
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:935
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "ចំណាំ"
#. MB6kt
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:936
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "ស្គ្រីប"
#. BWU6A
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:937
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "ធាតុ​គន្ថនិទ្ទេស"
#. 7EGCR
-#: sw/inc/strings.hrc:937
+#: sw/inc/strings.hrc:938
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "កថាខណ្ឌ​​ដែល​លាក់"
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:939
+#: sw/inc/strings.hrc:940
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "ព័ត៌មាន​ឯកសារ"
@@ -7561,87 +7567,87 @@ msgstr "ព័ត៌មាន​ឯកសារ"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:944
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "កាល​​បរិច្ឆេទ"
#. qMCEh
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:945
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "កាលបរិច្ឆេទ (ថេរ)"
#. AXmyw
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:946
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "ពេល​វេលា​"
#. 6dxVs
-#: sw/inc/strings.hrc:946
+#: sw/inc/strings.hrc:947
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "ពេលវេលា (​ថេរ)"
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:949
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "តារាង"
#. 7qW4K
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:950
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "តួអក្សរ​"
#. zDRCp
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:951
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "ពាក្យ"
#. 2wgLC
-#: sw/inc/strings.hrc:951
+#: sw/inc/strings.hrc:952
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "កថាខណ្ឌ"
#. JPGG7
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:953
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "រូបភាព"
#. CzoFh
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:954
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "វត្ថុ​"
#. bDG6R
-#: sw/inc/strings.hrc:954
+#: sw/inc/strings.hrc:955
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "ទំព័រ"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:957
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "DDE ស្វ័យ​ប្រវត្តិ"
#. xPP2E
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:958
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "DDE ដោយ​ដៃ"
#. spdXd
-#: sw/inc/strings.hrc:958
+#: sw/inc/strings.hrc:959
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr ""
@@ -7650,103 +7656,103 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:964
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "ក្រុមហ៊ុន"
#. WWxTK
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:965
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "នាម​ខ្លួន"
#. 4tdAc
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:966
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "នាម​ត្រកូល"
#. xTV7n
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:967
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "អាទិ​សង្កេត"
#. AKD3k
-#: sw/inc/strings.hrc:967
+#: sw/inc/strings.hrc:968
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "វិថី"
#. ErMju
-#: sw/inc/strings.hrc:968
+#: sw/inc/strings.hrc:969
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "ប្រទេស"
#. ESbkx
-#: sw/inc/strings.hrc:969
+#: sw/inc/strings.hrc:970
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "លេខ​​តំបន់"
#. WDAc2
-#: sw/inc/strings.hrc:970
+#: sw/inc/strings.hrc:971
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "ទីក្រុង​"
#. pg7MV
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:972
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "ងារ"
#. DwLhZ
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:973
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "ឋានៈ"
#. LDTdu
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:974
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "ទូរស័ព្ទ (​ផ្ទះ)"
#. JBZyj
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:975
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "ទូរស័ព្ទ (កន្លែង​ធ្វើការ)"
#. 5EmGH
-#: sw/inc/strings.hrc:975
+#: sw/inc/strings.hrc:976
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr ""
#. AtN9J
-#: sw/inc/strings.hrc:976
+#: sw/inc/strings.hrc:977
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr ""
#. 6GBRm
-#: sw/inc/strings.hrc:977
+#: sw/inc/strings.hrc:978
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "ស្ថាន​​ភាព"
#. pbrdQ
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:979
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "បិទ"
#. wC8SE
-#: sw/inc/strings.hrc:979
+#: sw/inc/strings.hrc:980
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "លើ"
@@ -7756,37 +7762,37 @@ msgstr "លើ"
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:985
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "ឈ្មោះ​ឯកសារ"
#. RBpz3
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:986
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "ឈ្មោះ​​ឯកសារ​ដែល​គ្មាន​កន្ទុយ"
#. BCzy8
-#: sw/inc/strings.hrc:986
+#: sw/inc/strings.hrc:987
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "ផ្លូវ​/ឈ្មោះ​ឯកសារ"
#. ChFwM
-#: sw/inc/strings.hrc:987
+#: sw/inc/strings.hrc:988
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "ផ្លូវ"
#. R6KrL
-#: sw/inc/strings.hrc:988
+#: sw/inc/strings.hrc:989
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr ""
#. ANM2H
-#: sw/inc/strings.hrc:989
+#: sw/inc/strings.hrc:990
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "ប្រភេទ"
@@ -7795,25 +7801,25 @@ msgstr "ប្រភេទ"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:993
+#: sw/inc/strings.hrc:994
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr "ឈ្មោះ​ជំពូក"
#. tnLqE
-#: sw/inc/strings.hrc:994
+#: sw/inc/strings.hrc:995
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr "លេខ​ជំពូក"
#. qGEAs
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:996
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr "លេខ​ជំពូកដោយ​គ្មាន​បន្ទាត់​ខណ្ឌ​ចែក"
#. WFA5R
-#: sw/inc/strings.hrc:996
+#: sw/inc/strings.hrc:997
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr "ឈ្មោះ​ និង​​លេខ​ជំពូក "
@@ -7822,55 +7828,55 @@ msgstr "ឈ្មោះ​ និង​​លេខ​ជំពូក "
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr ""
#. jm7G7
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr ""
#. ETgy7
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1003
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr ""
#. m84Fb
-#: sw/inc/strings.hrc:1003
+#: sw/inc/strings.hrc:1004
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr ""
#. d9YtB
-#: sw/inc/strings.hrc:1004
+#: sw/inc/strings.hrc:1005
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "រ៉ូម៉ាំង (I II III)"
#. vA5RT
-#: sw/inc/strings.hrc:1005
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "រ៉ូម៉ាំង (i ii iii)"
#. 3ZDgc
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1007
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "អារ៉ាប់ (1 2 3)"
#. CHmdp
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "ដូច​រចនាប័ទ្ម​ទំព័រ"
#. xBKwZ
-#: sw/inc/strings.hrc:1008
+#: sw/inc/strings.hrc:1009
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "អត្ថបទ"
@@ -7879,13 +7885,13 @@ msgstr "អត្ថបទ"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "ឈ្មោះ"
#. RCnZb
-#: sw/inc/strings.hrc:1013
+#: sw/inc/strings.hrc:1014
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "អាទិ​សង្កេត"
@@ -7894,49 +7900,49 @@ msgstr "អាទិ​សង្កេត"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "ប្រព័ន្ធ"
#. qKXLW
-#: sw/inc/strings.hrc:1018
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "អត្ថបទ"
#. E86ZD
-#: sw/inc/strings.hrc:1019
+#: sw/inc/strings.hrc:1020
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "ឈ្មោះ"
#. FB3Rp
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1021
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "អត្ថបទ"
#. KiBai
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1022
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "រូបមន្ត"
#. 9AsdS
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1023
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "អត្ថបទ"
#. GokUf
-#: sw/inc/strings.hrc:1023
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "មូលដ្ឋាន​​ទិន្នន័យ"
#. UBADL
-#: sw/inc/strings.hrc:1024
+#: sw/inc/strings.hrc:1025
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "ប្រព័ន្ធ"
@@ -7945,19 +7951,19 @@ msgstr "ប្រព័ន្ធ"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1028
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "អ្នកនិពន្ធ ​"
#. aqFVp
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "ពេល​វេលា​"
#. FaZKx
-#: sw/inc/strings.hrc:1030
+#: sw/inc/strings.hrc:1031
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "កាល​​បរិច្ឆេទ"
@@ -7966,79 +7972,79 @@ msgstr "កាល​​បរិច្ឆេទ"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1034
+#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_TEXT"
msgid "Referenced text"
msgstr ""
#. eeSAu
-#: sw/inc/strings.hrc:1035
+#: sw/inc/strings.hrc:1036
msgctxt "FMT_REF_PAGE"
msgid "Page number (unstyled)"
msgstr ""
#. MaB3q
-#: sw/inc/strings.hrc:1036
+#: sw/inc/strings.hrc:1037
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "ជំពូក"
#. VBMno
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1038
msgctxt "FMT_REF_UPDOWN"
msgid "“Above”/“Below”"
msgstr ""
#. 96emU
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1039
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "Page number (styled)"
msgstr ""
#. CQitd
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1040
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "ប្រភេទ និង​​លេខ"
#. BsvCn
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1041
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "​អត្ថបទ​ចំណងជើង"
#. P7wiX
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1042
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr "លេខរៀង"
#. QBGit
-#: sw/inc/strings.hrc:1042
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "លេខ"
#. CGkV7
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "លេខ (គ្មាន​បរិបទ)"
#. XgSb3
-#: sw/inc/strings.hrc:1044
+#: sw/inc/strings.hrc:1045
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "លេខ (បរិបទ​ពេញលេញ)"
#. zQTNF
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1047
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr ""
#. 97Vs7
-#: sw/inc/strings.hrc:1047
+#: sw/inc/strings.hrc:1048
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr ""
@@ -8047,31 +8053,31 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1052
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "អត្ថបទ"
#. rAQoE
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1053
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "តារាង"
#. biUa2
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1054
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "ស៊ុម"
#. 7mkZb
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1055
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "រូបភាព"
#. GgbFY
-#: sw/inc/strings.hrc:1055
+#: sw/inc/strings.hrc:1056
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "វត្ថុ"
@@ -8080,1613 +8086,1613 @@ msgstr "វត្ថុ"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1059
+#: sw/inc/strings.hrc:1060
msgctxt "STR_COND"
msgid "~Condition"
msgstr "លក្ខខណ្ឌ "
#. X9cqJ
-#: sw/inc/strings.hrc:1060
+#: sw/inc/strings.hrc:1061
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "នោះ បើ​ពុំ​នោះ"
#. bo8yF
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1062
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "សេចក្តី​ថ្លែងការណ៍ DDE"
#. LixXA
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1063
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "អត្ថបទ​​ដែល​លាក់ "
#. EX3bJ
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1064
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "ឈ្មោះ​​ម៉ាក្រូ​ "
#. dNZtd
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1065
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "សេចក្ដីយោង "
#. bfRPa
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1066
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "តួអក្សរ "
#. j2G5G
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1067
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "អុហ្វសិត "
#. vEgGo
-#: sw/inc/strings.hrc:1067
+#: sw/inc/strings.hrc:1068
msgctxt "STR_VALUE"
msgid "Value"
msgstr "តម្លៃ"
#. YQesU
-#: sw/inc/strings.hrc:1068
+#: sw/inc/strings.hrc:1069
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "រូបមន្ត"
#. Eq5xq
-#: sw/inc/strings.hrc:1069
+#: sw/inc/strings.hrc:1070
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "ផ្ទាល់ខ្លួន"
#. 32NzA
-#: sw/inc/strings.hrc:1071
+#: sw/inc/strings.hrc:1072
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr "[អ្នក​ប្រើ​]"
#. dYQTU
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1074
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr "ជម្រេ​ផ្ដេក"
#. xELZY
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1075
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr "ជម្រេ​បញ្ឈរ"
#. F9Ldz
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1076
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "ទទឹង​"
#. rdxcb
-#: sw/inc/strings.hrc:1076
+#: sw/inc/strings.hrc:1077
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "កម្ពស់"
#. DQm2h
-#: sw/inc/strings.hrc:1077
+#: sw/inc/strings.hrc:1078
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "រឹម​ទំព័រ​ឆ្វេង"
#. imDMU
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1079
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr "រឹម​ទំព័រ​​កំពូល"
#. ayQss
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1080
msgctxt "STR_COLS"
msgid "Columns"
msgstr "ជួរឈរ"
#. 3moLd
-#: sw/inc/strings.hrc:1080
+#: sw/inc/strings.hrc:1081
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "ជួរ​ដេក"
#. XWMSH
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1083
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr ""
#. nxGNq
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1084
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr ""
#. 57ju6
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1085
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr ""
#. tbig8
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1086
#, fuzzy
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr "មើល​សៀវភៅ​ជា​មុន"
#. xBHUG
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1087
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr ""
#. XaF3v
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1088
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr ""
#. EWtd2
-#: sw/inc/strings.hrc:1088
+#: sw/inc/strings.hrc:1089
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr ""
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1092
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr ""
#. PLAVt
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1093
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "ជួរដេក"
#. sg6Za
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1094
#, fuzzy
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr "អក្សរ​ធំ​ដើម​អត្ថបទ"
#. gueRC
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1095
#, fuzzy
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "ការ​បំបែក​ទំព័រ"
#. G3CQN
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1096
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr ""
#. MVEk8
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1097
#, fuzzy
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr "ត្រឡប់​បញ្ឈរ"
#. Dns6t
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1098
#, fuzzy
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr "ត្រឡប់ ​%1 ​ផ្ដេក"
#. ZUKCy
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1099
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr ""
#. LoQic
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1100
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr ""
#. kbnTf
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1101
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr "រចនាប័ទ្ម​តួអក្សរ"
#. D99ZJ
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1102
#, fuzzy
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr "រចនាប័ទ្ម​តួអក្សរ"
#. fzG3P
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1103
#, fuzzy
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "បាតកថា​"
#. 9RCsQ
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1104
#, fuzzy
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr "ទៅ​បាតកថា"
#. zFTin
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1105
#, fuzzy
msgctxt "STR_HEADER"
msgid "Header"
msgstr "បឋមកថា​"
#. PcYEB
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1106
#, fuzzy
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr "ទៅ​បឋមកថា"
#. 8Jgfg
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1107
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr ""
#. HEuGy
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1108
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr ""
#. 4tA4q
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1109
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr "កាត់"
#. ypvD6
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1110
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr ""
#. hyEQ5
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1111
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr ""
#. bGBtQ
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1112
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr ""
#. SrG3D
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1113
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr ""
#. 9Ywzb
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1114
#, fuzzy
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr "ទទឹង​"
#. 2GYT7
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1115
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr ""
#. QrFMi
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1116
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr ""
#. kLiYd
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
#, fuzzy
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr "ទៅ​កថាខណ្ឌ"
#. A8nAb
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr ""
#. Uszmm
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_FLY_AT_CHAR"
msgid "to character"
msgstr ""
#. hDUSa
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
#, fuzzy
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "ទៅ​ទំព័រ"
#. JMHRz
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr ""
#. oCZWW
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr ""
#. YNKE6
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr ""
#. GPTAu
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "តម្រឹម​កណ្ដាល"
#. fcpTS
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
#, fuzzy
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "ទៅ​បាត"
#. 37hos
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "កំពូល​បន្ទាត់"
#. MU7hC
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
#, fuzzy
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "ឆ្វេង​ កណ្តាល​"
#. ZvEq7
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "បាត​​​បន្ទាត់"
#. jypsG
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr ""
#. wzGK7
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "តម្រឹម​កណ្ដាល"
#. ngRmB
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr ""
#. JyHkM
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
#, fuzzy
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "ខាង​ក្នុង"
#. iXSZZ
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
#, fuzzy
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "ខាង​ក្រៅ"
#. kDY9Z
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
#, fuzzy
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "ទទឹង​ពេញលេញ"
#. Hvn8D
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "ជួរឈរ"
#. 6j6TA
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr ""
#. dvdDt
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr ""
#. BWqF3
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
#, fuzzy
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "អាច​កែ​សម្រួល​ ក្នុង​ឯកសារ​បាន​តែ​អាន"
#. SCL5F
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "ពុះ"
#. CFmBk
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
#. HvZBm
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
#. rWmT8
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "និង"
#. H2Kwq
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
#. yjSiJ
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
#. HE4BV
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
#. 7Q8qC
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
#, fuzzy
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "​ពន្លឺ"
#. sNxPE
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
#, fuzzy
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "ធ្វើ​វិញ"
#. u73NC
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
#, fuzzy
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "កម្រិត​ពណ៌​"
#. avJBK
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
#. HQCJZ
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
#, fuzzy
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "ភាព​ថ្លា"
#. 5jDK3
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
#, fuzzy
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "បញ្ចូល"
#. DVSAx
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr ""
#. Z7tXB
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
#, fuzzy
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "របៀប​ក្រាហ្វិក"
#. RXuUF
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
#, fuzzy
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "ស្តង់ដារ"
#. kbALJ
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
#, fuzzy
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "មាត្រ​ដ្ឋាន​ប្រផេះ"
#. eSHEj
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
#, fuzzy
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "ស និង​ខ្មៅ"
#. tABTr
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "ព្រាល​ៗ"
#. 8SwC3
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
#, fuzzy
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "សម្រង់"
#. hWEeF
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "គ្មាន​ក្រឡា​​ចត្រង្គ"
#. HEuEv
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "ក្រឡា​​ចត្រង្គ (​​តែ​បន្ទាត់)"
#. VFgMq
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "ក្រឡា​ចត្រង្គ (បន្ទាត់ និង​តួអក្សរ)"
#. VRJrB
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1167
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "តាម​លំហូរ​អត្ថបទ"
#. Sb3Je
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr ""
#. yXFKP
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
#. vwHbS
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1170
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr ""
#. 3874B
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_TBL"
msgid "Table"
msgstr "តារាង"
#. T9JAj
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
#, fuzzy
msgctxt "ST_PGE"
msgid "Page"
msgstr "ទំព័រ​​ "
#. pKFCz
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "គំនូរ"
#. amiSY
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
msgctxt "ST_CTRL"
msgid "Control"
msgstr "វត្ថុ​​​​បញ្ជា"
#. GEw9u
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_REG"
msgid "Section"
msgstr "ភាគ"
#. bEiyL
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "កន្លែង​ចំណាំ"
#. 6gXCo
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "ក្រាហ្វិក"
#. d5eSc
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "វត្ថុ OLE"
#. h5QQ8
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "ក្បាល"
#. Cbktp
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
msgctxt "ST_SEL"
msgid "Selection"
msgstr "ជម្រើស"
#. nquvS
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "លេខ​យោង"
#. GpAUo
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
#. nDFKa
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "មតិយោបល់"
#. qpbDE
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
#, fuzzy
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "ស្វែងរក​ម្តង​ទៀត"
#. ipxfH
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
#. DtkuT
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1189
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. A6Vgk
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. pCp7u
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "ST_FIELD"
msgid "Field"
msgstr ""
#. LYuHA
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1192
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr ""
#. yhnpi
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "ទំព័រ​បន្ទាប់"
#. UWeq4
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
#, fuzzy
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "គ្មាន​ក្បាល "
#. ZVCrD
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr ""
#. NGAqr
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
#, fuzzy
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "ភាគ​ថ្មី"
#. Mwcvm
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
#, fuzzy
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "ទៅ​កន្លែង​ចំណាំ​បន្ទាប់"
#. xbxDs
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr ""
#. 4ovAF
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr ""
#. YzK6w
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
#, fuzzy
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "គ្មាន​ក្បាល "
#. skdRc
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
#, fuzzy
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "ភាគ​ថ្មី"
#. RBFga
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
#, fuzzy
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "ទៅ​លេខ​យោង​បន្ទាប់"
#. GNLrx
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
#. mFCfp
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "មតិយោបល់បន្ទាប់"
#. gbnwp
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
#. TXYkA
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
#, fuzzy
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "បញ្ចូល​ធាតុ​លិបិក្រម"
#. EyvbV
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
#, fuzzy
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "ទំព័រ​មុន"
#. cC5vJ
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "ទំព័រ​មុន"
#. p5jbU
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr ""
#. 2WMmZ
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr ""
#. 6uGDP
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
#, fuzzy
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "ទៅ​ភាគ​មុន"
#. YYCtk
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
#, fuzzy
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "ទៅ​កន្លែង​ចំណាំ​មុន"
#. nFLdX
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr ""
#. VuxvB
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr ""
#. QSuct
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
#. CzLBr
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr ""
#. B7PoL
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
#, fuzzy
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "ទៅ​លេខ​​យោង​មុន"
#. AgtLD
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr ""
#. GJQ6F
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "មតិយោបល់​មុន"
#. GWnfD
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr ""
#. uDtcG
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr ""
#. VR6DX
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "ទៅ​រូបមន្ត​តារាង​មុន"
#. GqESF
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr ""
#. gBgxo
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "ទៅ​រូបមន្ត​តារាង​មុន​ដែល​មាន​កំហុស"
#. UAon9
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "ទៅ​រូបមន្ត​តារាង​បន្ទាប់​ដែល​មាន​កំហុស"
#. L2Apv
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. o3BBz
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1232
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr ""
#. bQ33Z
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
#. bhUaK
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
msgid "Previous '%FIELDTYPE' field"
msgstr ""
#. A8HWi
-#: sw/inc/strings.hrc:1234
+#: sw/inc/strings.hrc:1235
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "បញ្ចូល"
#. LnFkq
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "លុប"
#. cTNEn
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
#. YWr7C
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
#, fuzzy
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "តារាង​ផ្លាស់ប្តូរ"
#. 6xVDN
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "បាន​​អនុវត្ត​រចនាប័ទ្ម​កថាខណ្ឌ"
#. 32AND
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. wLDkj
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "ជួរដេក​​ដែល​បាន​បញ្ចូល"
#. Eb5Gb
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "ជួរ​ដេក​ដែល​បាន​លុប"
#. i5ZJt
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. BLEBh
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_REDLINE_INSERT_MOVED"
msgid "Moved (insertion)"
msgstr ""
#. o39AA
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_REDLINE_DELETE_MOVED"
msgid "Moved (deletion)"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
#, fuzzy
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "លេខ​យោង​ចុង"
#. qpW2q
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
#, fuzzy
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "លេខ​យោង"
#. 3RFUd
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
#. QCD36
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr ""
#. AYjgB
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr ""
#. qVX2k
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr ""
#. DSg3b
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr ""
#. 6GzuM
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr ""
#. FDVNH
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr ""
#. SL7r3
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1258
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr ""
#. CBvih
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr ""
#. s8v3h
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1260
#, fuzzy
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "លុប​​ស្រទាប់​..."
#. wL3Fr
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1261
#, fuzzy
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "ធ្វើ​ទ្រង់ទ្រាយ​ទំព័រ... "
#. DrAUe
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1262
#, fuzzy
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "លុប​បាតកថា?"
#. 9Xgou
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1263
#, fuzzy
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "ធ្វើ​ទ្រង់ទ្រាយ​បាត..."
#. ApT5B
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1265
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "មិន​អាច​បើក​ឯកសារ​រូបភាព"
#. iJuAv
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "មិន​អាច​អាន​ឯកសារ​រូបភាព"
#. Bwwho
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
#, fuzzy
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "មិន​ស្គាល់​ទ្រង់ទ្រាយ​រូបភាព"
#. bfog5
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
#, fuzzy
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "មិន​គាំទ្រ​កំណែ​ឯកសារ​រូបភាព​នេះ ។"
#. xy4Vm
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "រក​មិន​ឃើញ​តម្រង​រូបភាព"
#. tEqyq
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
#, fuzzy
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "មិន​មាន​អង្គ​ចងចាំ​​គ្រប់គ្រាន់ ដើម្បី​បញ្ចូល​រូបភាព។"
#. 5ihue
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "បញ្ចូល​រូបភាព"
#. GWzLN
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "មតិយោបល់ ៖"
#. CoJc8
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "បញ្ចូល"
#. dfMEF
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "​លុប"
#. NytQQ
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "កែ​ស្វ័យ​ប្រវត្តិ"
#. YRAQL
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1281
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "តារាង​ផ្លាស់ប្តូរ"
#. PzfQF
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "បាន​​អនុវត្ត​រចនាប័ទ្ម​កថាខណ្ឌ"
#. sgEbW
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_PAGE"
msgid "Page "
msgstr "ទំព័រ"
#. 3DpEx
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1284
#, fuzzy
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "ទំព័រ %p នៃ %n"
#. HSbzS
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. a7tDc
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "កថាខណ្ឌ"
#. aAtmp
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "រូបភាព"
#. UBDMK
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "វត្ថុ OLE"
#. xEWbo
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "ស៊ុម"
#. hfJns
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1292
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "តារាង"
#. GRqNY
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1293
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "ជួរ​ដេក​តារាង"
#. CDQY4
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "ក្រឡា​តារាង"
#. 2Db9T
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1295
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "ទំព័រ​​"
#. 63FuG
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1296
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "បឋមកថា​"
#. aDuAY
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "បាតកថា​"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "ឯកសារ HTML %PRODUCTNAME %PRODUCTVERSION"
#. y2GBv
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
msgctxt "STR_TITLE"
msgid "Title"
msgstr "ចំណងជើង"
#. AipGR
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "បន្ទាត់​ខណ្ឌចែក"
#. CoSEf
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "កម្រិត"
#. JdTF4
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "រក​មិន​ឃើញ​ឯកសារ​ \"%1\" ក្នុង​ផ្លូវ​ \"%2\" ។"
#. zRWDZ
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "លិបិក្រម​ដែល​​​កំណត់​ដោយ​អ្នក​ប្រើ"
#. t5uWs
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<​គ្មាន​>"
#. vSSnJ
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<​គ្មាន​>"
#. NSx98
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "E#"
#. 8EgTx
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "CI"
#. XWaFn
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "LS"
#. xp6D6
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "លេខ​ជំពូក"
#. FH365
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "ធាតុ​"
#. xZjtZ
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "ឈប់​ថេប"
#. aXW8y
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "អត្ថបទ"
#. MCUd2
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "លេខ​ទំព័រ"
#. pXqw3
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "ព័ត៌មាន​ជំពូក"
#. DRBSD
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "ដើម​តំណខ្ពស់​"
#. Ytn5g
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "ចុង​តំណខ្ពស់"
#. hRo3J
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "ធាតុ​គន្ថនិទ្ទេស ៖"
#. ZKG5v
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1327
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "រចនាប័ទ្ម​តួអក្សរ ៖"
#. d9BES
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1328
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
#. kwoGP
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1329
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr ""
#. Avm9y
-#: sw/inc/strings.hrc:1329
+#: sw/inc/strings.hrc:1330
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "ចុច​ព្រួញ​​ខាង​ឆ្វេង និង​ខាង​ស្ដាំ​ដើម្បី​ជ្រើស​វត្ថុ​បញ្ជា​រចនាសម្ព័ន្ធ"
#. 59eRi
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1331
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1332
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "ឯកសារ​ជម្រើស ​សម្រាប់​លិបិក្រម​តាម​អក្ខរក្រម (*.sdi)"
@@ -9695,268 +9701,268 @@ msgstr "ឯកសារ​ជម្រើស ​សម្រាប់​លិ
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "បន្ទាត់​គោល​នៅ​កំពូល "
#. 5GiEA
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "បន្ទាត់​គោល​នៅ​បាត "
#. sdyVF
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1339
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "បន្ទាត់​គោល​កណ្តាល "
#. NAXyZ
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "បញ្ចូល​វត្ថុ"
#. 5C6Rc
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "កែសម្រួល​វត្ថុ"
#. 3QFYB
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1342
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (​ពុម្ព ៖"
#. oUhnK
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "ស៊ុម​"
#. T2SH2
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1344
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "​ផ្ទៃ​ខាង​ក្រោយ"
#. K6Yvs
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(​រចនាប័ទ្ម​កថាខណ្ឌ ៖"
#. Fsanh
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1347
#, fuzzy
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "លេខ​ទំព័រ​មិន​អាច​ត្រូវ​បាន​អនុវត្ត​ចំពោះ​ទំព័រ​បច្ចុប្បន្ន​ទេ ។ លេខ​គូ អាច​ត្រូវ​បាន​ប្រើ​នៅ​លើ​ទំព័រ​ឆ្វេង ហើយ​លេខ​សេស​នៅ​លើ​ទំព័រ​ស្ដាំ ។"
#. VZnJf
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "ឯកសារ​មេ %PRODUCTNAME %PRODUCTVERSION"
#. kWe9j
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1351
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
#. oUR7Y
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
#. GBVqD
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1355
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "គ្មាន (កុំពិនិត្យ​អក្ខរាវិរុទ្ធ)"
#. Z8EjG
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "កំណត់​ទៅ​ភាសា​លំនាំដើម​ឡើងវិញ"
#. YEXdS
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1358
#, fuzzy
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "ច្រើន​ទៀត..."
#. QecQ3
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "មិន​អើពើ "
#. aaiBM
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
#. kSDGu
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
#. FqsCt
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
#. K9qMS
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
#. XWQ8w
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "ឯកសារ ​HTML"
#. qVZBx
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
#, fuzzy
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "ក្នុង​មួយ​ឯកសារ"
#. qmmPU
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr ""
#. 2LgDJ
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "កម្រិត"
#. AcAD8
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
#, fuzzy
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "គ្រោង"
#. DE9FZ
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1372
#, fuzzy
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "បញ្ចូល​លេខយោង/​លេខយោង​ចុង"
#. EzBCZ
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
#, fuzzy
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "​បាន​ជំនួស​ពាក្យ​គន្លឹះ​​ស្វែងរក XX ដង​"
#. fgywB
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
#, fuzzy
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "ជួរ​ដេក"
#. GUc4a
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1375
#, fuzzy
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "ជួរឈរ "
#. yMyuo
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
#. ywFCb
-#: sw/inc/strings.hrc:1376
+#: sw/inc/strings.hrc:1377
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
#. BT3M3
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1379
#, fuzzy
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "បន្ត"
#. ZR9aw
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1380
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
#. YCNYb
-#: sw/inc/strings.hrc:1380
+#: sw/inc/strings.hrc:1381
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
#. fmHmE
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1382
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
#. yAAPM
-#: sw/inc/strings.hrc:1383
+#: sw/inc/strings.hrc:1384
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1385
+#: sw/inc/strings.hrc:1386
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1388
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9965,7 +9971,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1393
+#: sw/inc/strings.hrc:1394
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9974,122 +9980,122 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1399
+#: sw/inc/strings.hrc:1400
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1401
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1401
+#: sw/inc/strings.hrc:1402
#, fuzzy
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "ចុះហត្ថលេខា​ដោយ"
#. BK7ub
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1403
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
#. kZKCf
-#: sw/inc/strings.hrc:1404
+#: sw/inc/strings.hrc:1405
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "នាម​ប័ណ្ណ"
#. ECFij
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1408
+#: sw/inc/strings.hrc:1409
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "បញ្ចូល"
#. NL48o
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "លុប"
#. PW4Bz
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "គុណ​លក្ខណៈ"
#. yfgiq
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "ពាក្យ​ស្វែងរក"
#. fhLzk
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "ធាតុ​ឆ្លាស់គ្នា"
#. gD4D3
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "ពាក្យ​គន្លឹះ​ទី ១"
#. BFszo
-#: sw/inc/strings.hrc:1415
+#: sw/inc/strings.hrc:1416
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "ពាក្យ​គន្លឹះ​ទី ២"
#. EoAB8
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "មតិយោបល់"
#. Shstx
-#: sw/inc/strings.hrc:1417
+#: sw/inc/strings.hrc:1418
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "ករណី​ដំណូច"
#. 8Cjvb
-#: sw/inc/strings.hrc:1418
+#: sw/inc/strings.hrc:1419
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "តែ​ពាក្យ​ប៉ុណ្ណោះ"
#. zD8rb
-#: sw/inc/strings.hrc:1419
+#: sw/inc/strings.hrc:1420
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "បាទ/ចាស"
#. 4tTop
-#: sw/inc/strings.hrc:1420
+#: sw/inc/strings.hrc:1421
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "ទេ"
#. KhKwa
-#: sw/inc/strings.hrc:1422
+#: sw/inc/strings.hrc:1423
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "ផ្ទាល់ខ្លួន"
@@ -10691,10 +10697,10 @@ msgctxt "assignstylesdialog|AssignStylesDialog"
msgid "Assign Styles"
msgstr "រចនាប័ទ្ម​ផ្ដល់​តម្លៃ"
-#. JVyGG
+#. ADyBs
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:197
msgctxt "assignstylesdialog|left|tooltip_text"
-msgid "Promote level"
+msgid "Promote outline level"
msgstr ""
#. szu9U
@@ -10709,10 +10715,10 @@ msgctxt "assignstylesdialog|extended_tip|left"
msgid "Moves the selected paragraph style up one level in the index hierarchy."
msgstr "ផ្លាស់ទី​រចនាប័ទ្ម​កថាខណ្ឌ​ដែល​បាន​ជ្រើស​ឡើង​លើ​មួយ​កម្រិត ក្នុង​ឋានានុក្រម​លិបិក្រម ។"
-#. ScVY5
+#. gYMaZ
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:218
msgctxt "assignstylesdialog|right|tooltip_text"
-msgid "Demote level"
+msgid "Demote outline level"
msgstr ""
#. 6aqvE
@@ -10740,7 +10746,7 @@ msgid "Styles"
msgstr "រចនាប័ទ្ម"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:482
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr "បង្កើត​ធាតុ​លិបិក្រម ពី​រចនាប័ទ្ម​កថាខណ្ឌ​ជាក់លាក់ ។"
@@ -12047,62 +12053,62 @@ msgid "Send a Copy of This Mail To..."
msgstr "ផ្ញើ​ច្បាប់​ចម្លង​នៃ​សំបុត្រ​នេះ​ទៅកាន់..."
#. z7D9z
-#: sw/uiconfig/swriter/ui/characterproperties.ui:8
+#: sw/uiconfig/swriter/ui/characterproperties.ui:9
msgctxt "characterproperties|CharacterPropertiesDialog"
msgid "Character"
msgstr "តួ​​អក្សរ​"
#. pjT6b
-#: sw/uiconfig/swriter/ui/characterproperties.ui:32
+#: sw/uiconfig/swriter/ui/characterproperties.ui:33
msgctxt "characterproperties|reset"
msgid "Unsaved modifications to this tab are reverted."
msgstr ""
#. tLVfC
-#: sw/uiconfig/swriter/ui/characterproperties.ui:35
+#: sw/uiconfig/swriter/ui/characterproperties.ui:36
msgctxt "characterproperties|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
msgstr ""
#. GJNuu
-#: sw/uiconfig/swriter/ui/characterproperties.ui:159
+#: sw/uiconfig/swriter/ui/characterproperties.ui:160
msgctxt "characterproperties|font"
msgid "Font"
msgstr "ពុម្ព​អក្សរ"
#. bwwEA
-#: sw/uiconfig/swriter/ui/characterproperties.ui:206
+#: sw/uiconfig/swriter/ui/characterproperties.ui:207
msgctxt "characterproperties|fonteffects"
msgid "Font Effects"
msgstr "បែបផែន​ពុម្ពអក្សរ"
#. CV8Tr
-#: sw/uiconfig/swriter/ui/characterproperties.ui:254
+#: sw/uiconfig/swriter/ui/characterproperties.ui:255
msgctxt "characterproperties|position"
msgid "Position"
msgstr "ទីតាំង"
#. CXLtN
-#: sw/uiconfig/swriter/ui/characterproperties.ui:302
+#: sw/uiconfig/swriter/ui/characterproperties.ui:303
msgctxt "characterproperties|asianlayout"
msgid "Asian Layout"
msgstr "ប្លង់​អាស៊ី"
#. jTVKZ
-#: sw/uiconfig/swriter/ui/characterproperties.ui:350
+#: sw/uiconfig/swriter/ui/characterproperties.ui:351
msgctxt "characterproperties|hyperlink"
msgid "Hyperlink"
msgstr "តំណខ្ពស់"
#. uV8CG
-#: sw/uiconfig/swriter/ui/characterproperties.ui:398
+#: sw/uiconfig/swriter/ui/characterproperties.ui:399
#, fuzzy
msgctxt "characterproperties|background"
msgid "Highlighting"
msgstr "​បន្លិច"
#. fJhsz
-#: sw/uiconfig/swriter/ui/characterproperties.ui:446
+#: sw/uiconfig/swriter/ui/characterproperties.ui:447
msgctxt "characterproperties|borders"
msgid "Borders"
msgstr "ស៊ុម​"
@@ -12539,10 +12545,10 @@ msgctxt "conditionpage|usedft"
msgid "Applied Styles"
msgstr "រចនាប័ទ្ម​អនុវត្ត"
-#. SJK72
+#. B9oQk
#: sw/uiconfig/swriter/ui/conditionpage.ui:99
msgctxt "conditionpage|extended_tip|links"
-msgid "Here you can see the %PRODUCTNAME predefined contexts, including outline levels 1 to 10, list levels 1 to 10, table header, table contents, section, border, footnote, header and footer."
+msgid "Here you can see the Writer predefined contexts, including outline levels 1 to 10, list levels 1 to 10, table header, table contents, section, border, footnote, header and footer."
msgstr ""
#. nDZqL
@@ -14289,11 +14295,11 @@ msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr "រាយ​មូលដ្ឋាន​ទិន្នន័យ ដែល​កំពុង​ប្រើ​បច្ចុប្បន្ន ។"
-#. FSFCM
+#. UyMbz
#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
msgctxt "exchangedatabases|extended_tip|availablelb"
-msgid "Lists the databases that are registered in %PRODUCTNAME."
-msgstr "រាយ​មូលដ្ឋាន​ទិន្នន័យ​ដែល​អ្នក​បាន​ចុះឈ្មោះ​នៅ​ក្នុង %PRODUCTNAME ។"
+msgid "Lists the databases that are registered in Writer."
+msgstr ""
#. ZzrDA
#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
@@ -15060,126 +15066,6 @@ msgctxt "fldvarpage|extended_tip|delete"
msgid "Removes the user-defined field from the select list. You can only remove fields that are not used in the current document."
msgstr ""
-#. 27v8z
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:36
-msgctxt "floatingnavigation|ST_TBL"
-msgid "Table"
-msgstr ""
-
-#. UAUEu
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:49
-msgctxt "floatingnavigation|ST_FRM"
-msgid "Frame"
-msgstr ""
-
-#. EmyjV
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:62
-msgctxt "floatingnavigation|ST_GRF"
-msgid "Graphics"
-msgstr ""
-
-#. EAAkn
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:75
-msgctxt "floatingnavigation|ST_OLE"
-msgid "OLE object"
-msgstr ""
-
-#. RQJCg
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:88
-msgctxt "floatingnavigation|ST_PGE"
-msgid "Page"
-msgstr ""
-
-#. UDWkR
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:101
-msgctxt "floatingnavigation|ST_OUTL"
-msgid "Headings"
-msgstr ""
-
-#. 3xmFf
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:114
-msgctxt "floatingnavigation|ST_MARK"
-msgid "Reminder"
-msgstr ""
-
-#. bfbkE
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:127
-msgctxt "floatingnavigation|ST_DRW"
-msgid "Drawing"
-msgstr ""
-
-#. SgcLi
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:140
-msgctxt "floatingnavigation|ST_CTRL"
-msgid "Control"
-msgstr ""
-
-#. zUBV8
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:153
-msgctxt "floatingnavigation|STR_IMGBTN_PGE_UP"
-msgid "Previous page"
-msgstr ""
-
-#. ASLap
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:179
-msgctxt "floatingnavigation|ST_REG"
-msgid "Section"
-msgstr ""
-
-#. TAc6D
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:192
-msgctxt "floatingnavigation|ST_BKM"
-msgid "Bookmark"
-msgstr ""
-
-#. RT9Gg
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:205
-msgctxt "floatingnavigation|ST_SEL"
-msgid "Selection"
-msgstr ""
-
-#. vcT7p
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:218
-msgctxt "floatingnavigation|ST_FTN"
-msgid "Footnote"
-msgstr ""
-
-#. C8bCp
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:231
-msgctxt "floatingnavigation|ST_POSTIT"
-msgid "Comment"
-msgstr ""
-
-#. AYXsF
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:244
-msgctxt "floatingnavigation|ST_SRCH_REP"
-msgid "Repeat search"
-msgstr ""
-
-#. RAaAE
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:257
-msgctxt "floatingnavigation|ST_INDEX_ENTRY"
-msgid "Index entry"
-msgstr ""
-
-#. ptmd3
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:270
-msgctxt "floatingnavigation|ST_TABLE_FORMULA"
-msgid "Table formula"
-msgstr ""
-
-#. 4FctR
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:283
-msgctxt "floatingnavigation|ST_TABLE_FORMULA_ERROR"
-msgid "Wrong table formula"
-msgstr ""
-
-#. fJmeT
-#: sw/uiconfig/swriter/ui/floatingnavigation.ui:296
-msgctxt "floatingnavigation|STR_IMGBTN_PGE_DOWN"
-msgid "Next page"
-msgstr ""
-
#. b5iXT
#: sw/uiconfig/swriter/ui/floatingsync.ui:7
msgctxt "floatingsync|FloatingSync"
@@ -15489,18 +15375,17 @@ msgctxt "footnotepage|label18"
msgid "Start of next page"
msgstr "ដើម​​ទំព័រ​បន្ទាប់ "
-#. 6FoaF
+#. CUWNP
#: sw/uiconfig/swriter/ui/footnotepage.ui:311
msgctxt "footnotepage|extended_tip|contfromed"
-msgid "Enter the text that you want to display on the page where the footnotes are continued, for example, \"Continued from Page \". %PRODUCTNAME Writer automatically inserts the number of the previous page."
-msgstr "បញ្ចូល​អត្ថបទ​ដែល​អ្នក​ចង់​បង្ហាញ​លើ​ទំព័រ ដែល​លេខ​យោង​ត្រូវ​បាន​បន្ត ឧទាហរណ៍ \"ត​ពី​ទំព័រ \" ។ %PRODUCTNAME Writer បញ្ចូល​ស្វ័យ​ប្រវត្តិ​នូវ​លេខ​នៃ​ទំព័រ​មុន ។"
+msgid "Enter the text that you want to display on the page where the footnotes are continued, for example, \"Continued from Page \". Writer automatically inserts the number of the previous page."
+msgstr ""
-#. PM3nD
+#. 2X7QW
#: sw/uiconfig/swriter/ui/footnotepage.ui:330
-#, fuzzy
msgctxt "footnotepage|extended_tip|conted"
-msgid "Enter the text that you want to display when the footnotes are continued on the next page, for example, \"Continued on Page \". %PRODUCTNAME Writer automatically inserts the number of the following page."
-msgstr "បញ្ចូល​អត្ថបទ​ដែល​អ្នក​ចង់​បង្ហាញ នៅ​ពេល​លេខ​យោង​ត្រូវ​បាន​បន្ត​នៅ​ទំព័រ​បន្ទាប់ ឧទាហរណ៍ \"ត​ទៅ​ទំព័រ \" ។ %PRODUCTNAME Writer បញ្ចូល​លេខ​នៃ​ទំព័រ​បន្ត​ដោយ​ស្វ័យ​ប្រវត្តិ ។"
+msgid "Enter the text that you want to display when the footnotes are continued on the next page, for example, \"Continued on Page \". Writer automatically inserts the number of the following page."
+msgstr ""
#. ZEhG2
#: sw/uiconfig/swriter/ui/footnotepage.ui:345
@@ -16784,32 +16669,56 @@ msgctxt "indexentry|searchcasewordonlycb"
msgid "Whole words only"
msgstr "តែ​ពាក្យ​ទាំងមូល "
+#. 62yyk
+#: sw/uiconfig/swriter/ui/indexentry.ui:539
+msgctxt "indexentry|previous|tooltip_text"
+msgid "Previous entry"
+msgstr ""
+
#. Vd86J
-#: sw/uiconfig/swriter/ui/indexentry.ui:541
+#: sw/uiconfig/swriter/ui/indexentry.ui:542
msgctxt "indexentry|extended_tip|previous"
msgid "Jumps to the previous index entry of the same type in the document."
msgstr "ទៅកាន់​ធាតុ​លិបិក្រម​មុន​នៃ​ប្រភេទ​ដូចគ្នា​នៅ​ក្នុង​ឯកសារ។"
+#. VsuQU
+#: sw/uiconfig/swriter/ui/indexentry.ui:560
+msgctxt "indexentry|next|tooltip_text"
+msgid "Next entry"
+msgstr ""
+
#. WsgJC
-#: sw/uiconfig/swriter/ui/indexentry.ui:561
+#: sw/uiconfig/swriter/ui/indexentry.ui:563
msgctxt "indexentry|extended_tip|next"
msgid "Jumps to the next index entry of the same type in the document."
msgstr "ទៅកាន់​ធាតុ​លិបិក្រម​បន្ទាប់​នៃ​ប្រភេទ​ដូចគ្នា​នៅ​ក្នុង​ឯកសារ។"
-#. GEB3A
+#. KnhCr
#: sw/uiconfig/swriter/ui/indexentry.ui:581
+msgctxt "indexentry|first|tooltip_text"
+msgid "Previous entry (same name)"
+msgstr ""
+
+#. 3dGEa
+#: sw/uiconfig/swriter/ui/indexentry.ui:584
msgctxt "indexentry|extended_tip|first"
-msgid "Jumps to the first index entry of the same type in the document."
-msgstr "ទៅកាន់​ធាតុ​លិបិក្រម​ដំបូង​នៃ​ប្រភេទ​ដូចគ្នា​នៅ​ក្នុង​ឯកសារ។"
+msgid "Jumps to the previous index entry of the same type and with the same name in the document."
+msgstr ""
+
+#. 2mkMr
+#: sw/uiconfig/swriter/ui/indexentry.ui:602
+msgctxt "indexentry|last|tooltip_text"
+msgid "Next entry (same name)"
+msgstr ""
-#. AKiAd
-#: sw/uiconfig/swriter/ui/indexentry.ui:601
+#. gYHoh
+#: sw/uiconfig/swriter/ui/indexentry.ui:605
msgctxt "indexentry|extended_tip|last"
-msgid "Jumps to the last index entry of the same type in the document."
-msgstr "ទៅកាន់​ធាតុ​លិបិក្រម​ចុងក្រោយ​នៃ​ប្រភេទ​ដូចគ្នា​នៅ​ក្នុង​ឯកសារ។"
+msgid "Jumps to the next index entry of the same type and with the same name in the document."
+msgstr ""
#. dLE2B
-#: sw/uiconfig/swriter/ui/indexentry.ui:629
+#: sw/uiconfig/swriter/ui/indexentry.ui:633
msgctxt "indexentry|label1"
msgid "Selection"
msgstr "ជម្រើស"
@@ -17282,13 +17191,13 @@ msgid "Bookmark"
msgstr "ចំណាំ"
#. fofuv
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:108
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:107
msgctxt "insertbookmark|extended_tip|name"
msgid "Type the name of the bookmark that you want to create. Then press Insert."
msgstr ""
#. zocpL
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:119
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:118
msgctxt "insertbookmark|insert"
msgid "Insert"
msgstr "បញ្ចូល"
@@ -17311,68 +17220,68 @@ msgctxt "insertbookmark|condlabel"
msgid "_Condition:"
msgstr ""
-#. ACcov
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:195
-msgctxt "insertbookmark|bookmarks"
-msgid "_Bookmarks:"
-msgstr ""
-
#. XbAhB
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:228
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:239
msgctxt "insertbookmark|page"
msgid "Page"
msgstr ""
#. gmKKz
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:242
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:253
msgctxt "insertbookmark|name"
msgid "Name"
msgstr ""
#. fXQTX
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:256
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:267
msgctxt "insertbookmark|text"
msgid "Text"
msgstr ""
#. ha65m
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:270
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:281
msgctxt "insertbookmark|hidden"
msgid "Hidden"
msgstr ""
#. M7eFG
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:284
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:295
msgctxt "insertbookmark|condition"
msgid "Condition"
msgstr ""
+#. ACcov
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:313
+msgctxt "insertbookmark|bookmarks"
+msgid "_Bookmarks:"
+msgstr ""
+
#. aZFEd
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:329
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:335
msgctxt "insertbookmark|goto"
msgid "Go to"
msgstr ""
#. AfRGE
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:343
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:349
msgctxt "insertbookmark|delete"
msgid "Delete"
msgstr "លុប"
#. 2XZ5g
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:349
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:355
msgctxt "insertbookmark|extended_tip|delete"
msgid "To delete a bookmark, select the bookmark and click the Delete button. No confirmation dialog will follow."
msgstr ""
#. hvWfd
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:362
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:368
msgctxt "insertbookmark|rename"
msgid "Rename"
msgstr "ប្តូរ​​ឈ្មោះ​"
#. gb2CC
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:392
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:395
msgctxt "insertbookmark|extended_tip|InsertBookmarkDialog"
msgid "Inserts a bookmark at the cursor position. You can then use the Navigator to quickly jump to the marked location at a later time."
msgstr ""
@@ -17479,11 +17388,11 @@ msgctxt "insertcaption|auto"
msgid "Auto..."
msgstr "ស្វ័យប្រវត្តិ..."
-#. eNMYS
+#. PfpPV
#: sw/uiconfig/swriter/ui/insertcaption.ui:30
msgctxt "insertcaption|extended_tip|auto"
-msgid "Opens the Caption dialog. It has the same information as the dialog you get by menu %PRODUCTNAME Writer - AutoCaption in the Options dialog box."
-msgstr "បើក​ប្រអប់​ចំណង​ជើង​ ។ វា​មាន​ព័ត៌មាន​ដូច​គ្នា​នឹង​ប្រអប់​ដែល​អ្នក​យក​តាម​ម៉ឺនុយ​ %PRODUCTNAME Writer - ចំណង​ជើង​ស្វ័យ​ប្រវត្តិ​នៅ​ក្នុង​ប្រអប់​ជម្រើស​ ។"
+msgid "Opens the Caption dialog. It has the same information as the dialog you get by menu Writer - AutoCaption in the Options dialog box."
+msgstr ""
#. CsBbW
#: sw/uiconfig/swriter/ui/insertcaption.ui:42
@@ -20497,110 +20406,110 @@ msgid "Use the current _document"
msgstr "​ប្រើ​ឯកសារ​បច្ចុប្បន្ន"
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr "ប្រើ​ឯកសារ Writer បច្ចុប្បន្ន​ជា​មូលដ្ឋាន សម្រាប់​ឯកសារ​សំបុត្រ​សំណុំ​បែបបទ ។"
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr "បង្កើត​ឯកសារ​ថ្មី"
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr "បង្កើត​ឯកសារ Writer ថ្មី​មួយ ដើម្បី​ប្រើ​សម្រាប់​សំបុត្រ​សំណុំ​បែបបទ ។"
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr "ចាប់ផ្ដើម​ពី​ឯកសារ​ដែល​មាន​ស្រាប់"
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr "ចាប់ផ្តើម​ពី​ឯកសារ Writer មួយ​ដែល​មាន​សម្រាប់ ដើម្បី​ប្រើ​ជា​មូលដ្ឋាន​សម្រាប់​ឯកសារ​សំបុត្រ​សំណុំ​បែបបទ ។"
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr "ចាប់ផ្ដើម​ពី​ពុម្ព"
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr "ជ្រើស​ពុម្ព​ដែល​អ្នក​ចង់​បង្កើត​ឯកសារ​សំបុត្រ​សំណុំ​បែបបទ​របស់​អ្នក ជាមួយ ។"
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr "ចាប់ផ្ដើម​ពី​ឯកសារ​ដែល​បាន​រក្សាទុក​ថ្មីៗ"
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr "ប្រើ​ឯកសារ​សំបុត្រ​សំណុំ​បែបបទ​មួយ​ដែល​មាន​ស្រាប់ ជា​មូលដ្ឋាន​សម្រាប់​ឯកសារ​សំបុត្រ​សំណុំ​បែបបទ​ថ្មី​មួយ ។"
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr "ជ្រើស​ឯកសារ ។"
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "រកមើល..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr "រក​ទីតាំង​ឯកសារ Writer ដែល​អ្នក​ចង់​ប្រើ រួច​ចុច បើក។"
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "រកមើល..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
#, fuzzy
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "ជ្រើស​ឯកសារ​ចាប់ផ្ដើម​សម្រាប់​សំបុត្រ​សំណុំ​បែបបទ"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -20696,28 +20605,28 @@ msgctxt "navigatorcontextmenu|STR_DELETE"
msgid "Delete"
msgstr ""
-#. CQSp3
+#. axFMf
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
msgctxt "navigatorcontextmenu|STR_PROMOTE_CHAPTER"
-msgid "Promote Chapter"
+msgid "Move Chapter Up"
msgstr ""
-#. ikRHB
+#. Radwp
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
msgctxt "navigatorcontextmenu|STR_DEMOTE_CHAPTER"
-msgid "Demote Chapter"
+msgid "Move Chapter Down"
msgstr ""
-#. MhtFa
+#. FJZdw
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
msgctxt "navigatorcontextmenu|STR_PROMOTE_LEVEL"
-msgid "Promote Level"
+msgid "Promote Outline Level"
msgstr ""
-#. dUM5D
+#. GRZmf
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
-msgid "Demote Level"
+msgid "Demote Outline Level"
msgstr ""
#. tukRq
@@ -21046,12 +20955,11 @@ msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
-#. ijAjg
+#. r4uH8
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:570
-#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
-msgid "Promote Level"
-msgstr "បង្កើន​កម្រិត"
+msgid "Promote outline level"
+msgstr ""
#. dvQYH
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
@@ -21059,12 +20967,11 @@ 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
+#. DoiCW
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:586
-#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
-msgid "Demote Level"
-msgstr "បន្ថយ​កម្រិត"
+msgid "Demote outline level"
+msgstr ""
#. NHBAZ
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:590
@@ -21072,10 +20979,10 @@ 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
+#. Bbq3k
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:602
msgctxt "navigatorpanel|chapterup|tooltip_text"
-msgid "Promote Chapter"
+msgid "Move chapter up"
msgstr ""
#. mwCBQ
@@ -21084,10 +20991,10 @@ 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
+#. fxY5W
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:618
msgctxt "navigatorpanel|chapterdown|tooltip_text"
-msgid "Demote Chapter"
+msgid "Move chapter down"
msgstr ""
#. sGNbn
@@ -21252,199 +21159,199 @@ msgid "New User Index"
msgstr "លិបិក្រម​អ្នក​ប្រើ​ថ្មី"
#. pyNZP
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3152
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3159
msgctxt "WriterNotebookbar|FileMenuButton"
msgid "_File"
msgstr ""
#. uFrkV
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3171
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3178
msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
#. QC5EA
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3226
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3233
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4488
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4495
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4575
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4582
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5728
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5826
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5833
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6899
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6977
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6984
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7690
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7697
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7774
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7781
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8689
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8696
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8774
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8781
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9625
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9632
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9710
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9717
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10853
+#: sw/uiconfig/swriter/ui/notebookbar.ui:10860
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10937
+#: sw/uiconfig/swriter/ui/notebookbar.ui:10944
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12163
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12170
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12260
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12267
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13579
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13586
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13686
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13693
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14553
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14560
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14638
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14645
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15417
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15424
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15521
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15528
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15952
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15959
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16034
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16041
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16842
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16849
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16926
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16933
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16983
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16990
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17057
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17064
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18004
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18011
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18088
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18095
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22684,79 +22591,79 @@ msgid "For ordered lists and List Styles with numbering"
msgstr ""
#. SCaCA
-#: sw/uiconfig/swriter/ui/numparapage.ui:209
+#: sw/uiconfig/swriter/ui/numparapage.ui:208
msgctxt "numparapage|extended_tip|checkCB_NEW_START"
msgid "Restarts the numbering at the current paragraph."
msgstr ""
#. UivrN
-#: sw/uiconfig/swriter/ui/numparapage.ui:231
+#: sw/uiconfig/swriter/ui/numparapage.ui:230
msgctxt "numparapage|checkCB_NUMBER_NEW_START"
msgid "S_tart with:"
msgstr "ចាប់ផ្ដើម​ដោយ៖"
#. 2Vb8v
-#: sw/uiconfig/swriter/ui/numparapage.ui:245
+#: sw/uiconfig/swriter/ui/numparapage.ui:244
msgctxt "numparapage|extended_tip|checkCB_NUMBER_NEW_START"
msgid "Select this check box, and then enter the number that you want to assign to the paragraph."
msgstr ""
#. GmF7H
-#: sw/uiconfig/swriter/ui/numparapage.ui:271
+#: sw/uiconfig/swriter/ui/numparapage.ui:270
msgctxt "numparapage|extended_tip|spinNF_NEW_START"
msgid "Enter the number that you want to assign to the paragraph."
msgstr ""
#. SDdFs
-#: sw/uiconfig/swriter/ui/numparapage.ui:294
+#: sw/uiconfig/swriter/ui/numparapage.ui:293
msgctxt "numparapage|label2"
msgid "Apply List Style"
msgstr ""
#. tBYXk
-#: sw/uiconfig/swriter/ui/numparapage.ui:323
+#: sw/uiconfig/swriter/ui/numparapage.ui:322
msgctxt "numparapage|checkCB_COUNT_PARA"
msgid "_Include this paragraph in line numbering"
msgstr "រួមបញ្ចូល​កថាខណ្ឌ​នេះ​ក្នុង​លេខរៀង​បន្ទាត់ "
#. mhtFH
-#: sw/uiconfig/swriter/ui/numparapage.ui:334
+#: sw/uiconfig/swriter/ui/numparapage.ui:332
msgctxt "numparapage|extended_tip|checkCB_COUNT_PARA"
msgid "Includes the current paragraph in the line numbering."
msgstr ""
#. wGRPh
-#: sw/uiconfig/swriter/ui/numparapage.ui:346
+#: sw/uiconfig/swriter/ui/numparapage.ui:344
msgctxt "numparapage|checkCB_RESTART_PARACOUNT"
msgid "Rest_art at this paragraph"
msgstr "ចាប់ផ្តើម​ឡើង​វិញ​នៅ​កថាខណ្ឌ​នេះ "
#. YhNoE
-#: sw/uiconfig/swriter/ui/numparapage.ui:357
+#: sw/uiconfig/swriter/ui/numparapage.ui:354
msgctxt "numparapage|extended_tip|checkCB_RESTART_PARACOUNT"
msgid "Restarts the line numbering at the current paragraph, or at the number that you enter."
msgstr ""
#. uuXAF
-#: sw/uiconfig/swriter/ui/numparapage.ui:385
+#: sw/uiconfig/swriter/ui/numparapage.ui:382
msgctxt "numparapage|labelFT_RESTART_NO"
msgid "_Start with:"
msgstr "ចាប់ផ្ដើម​ដោយ៖"
#. CMbmy
-#: sw/uiconfig/swriter/ui/numparapage.ui:412
+#: sw/uiconfig/swriter/ui/numparapage.ui:409
msgctxt "numparapage|extended_tip|spinNF_RESTART_PARA"
msgid "Enter the number at which to restart the line numbering"
msgstr ""
#. FcEtC
-#: sw/uiconfig/swriter/ui/numparapage.ui:435
+#: sw/uiconfig/swriter/ui/numparapage.ui:432
msgctxt "numparapage|labelLINE_NUMBERING"
msgid "Line Numbering"
msgstr "លេខរៀង​​បន្ទាត់"
#. QrTFm
-#: sw/uiconfig/swriter/ui/numparapage.ui:450
+#: sw/uiconfig/swriter/ui/numparapage.ui:447
msgctxt "numparapage|extended_tip|NumParaPage"
msgid "Adds or removes Outline Level, List Style, and line numbering from the paragraph. You can also reset the numbering in a numbered list."
msgstr ""
@@ -23168,11 +23075,11 @@ msgctxt "optcompatpage|default"
msgid "Use as _Default"
msgstr "ប្រើ​ជា​លំនាំដើម"
-#. SfroE
+#. ZVuBe
#: sw/uiconfig/swriter/ui/optcompatpage.ui:258
msgctxt "extended_tip|default"
-msgid "Click to use the current settings on this tab page as the default for further sessions with %PRODUCTNAME."
-msgstr "ចុច​ដើម្បី​ប្រើ​ការ​កំណត់​បច្ចុប្បន្ន​នៅ​លើ​ទំព័រ​ផ្ទាំង​នេះ​ជា​លំនាំដើម​សម្រាប់​សម័យ​ខាងមុខ​ជាមួយ %PRODUCTNAME ។"
+msgid "Click to use the current settings on this tab page as the default for further sessions with Writer."
+msgstr ""
#. XAXU2
#: sw/uiconfig/swriter/ui/optcompatpage.ui:273
@@ -23180,11 +23087,11 @@ msgctxt "optcompatpage|label11"
msgid "Compatibility options for “%DOCNAME”"
msgstr ""
-#. u6ih3
+#. XAThv
#: sw/uiconfig/swriter/ui/optcompatpage.ui:288
msgctxt "extended_tip|OptCompatPage"
-msgid "Specifies compatibility settings for text documents. These options help in fine-tuning %PRODUCTNAME when importing Microsoft Word documents."
-msgstr "បញ្ជាក់​ការ​កំណត់​ឆបគ្នា​សម្រាប់​ឯកសារ​អត្ថបទ។ ជម្រើស​នេះ​ជួយ​ក្នុង​ការ​ផ្លាស់ប្ដូរ %PRODUCTNAME នៅ​ពេល​នាំចូល​ឯកសារ Microsoft Word ។"
+msgid "Specifies compatibility settings for text documents. These options help in fine-tuning Writer when importing Microsoft Word documents."
+msgstr ""
#. kHud8
#: sw/uiconfig/swriter/ui/optfonttabpage.ui:35
@@ -23526,11 +23433,11 @@ msgctxt "optformataidspage|lbImage"
msgid "Image"
msgstr ""
-#. npuVw
+#. F7oGa
#: sw/uiconfig/swriter/ui/optformataidspage.ui:551
msgctxt "extended_tip|OptFormatAidsPage"
-msgid "In %PRODUCTNAME text and HTML documents, defines the display for certain characters and for the direct cursor."
-msgstr "នៅ​ក្នុង​ឯកសារ​អត្ថបទ និង HTML របស់ %PRODUCTNAME កំណត់​ការ​បង្ហាញ​សម្រាប់​តួអក្សរ​ជាក់លាក់ និង​សម្រាប់​ទស្សន៍ទ្រនិច​ផ្ទាល់។"
+msgid "In Writer text and HTML documents, defines the display for certain characters and for the direct cursor."
+msgstr ""
#. V9Ahc
#: sw/uiconfig/swriter/ui/optgeneralpage.ui:43
@@ -23782,11 +23689,11 @@ msgctxt "optredlinepage|insertcolor-atkobject"
msgid "Color of Insertions"
msgstr ""
-#. NHubs
+#. sMFHo
#: sw/uiconfig/swriter/ui/optredlinepage.ui:102
msgctxt "extended_tip|insertcolor"
-msgid "You can also choose a color to display each type of recorded change. When you choose the condition \"By author\" in the list, the color is automatically determined by %PRODUCTNAME, then modified to match to the author of each change."
-msgstr "អ្នក​ក៏​អាច​ជ្រើស​ពណ៌​ដើម្បី​បង្ហាញ​ប្រភេទ​នៃ​ការ​ផ្លាស់ប្ដូរ​​នីមួយ​ដែល​បាន​កត់ត្រា​ផង​ដែរ។ ពេល​អ្នក​ជ្រើស​លក្ខខណ្ឌ \"តាម​អ្នក​និពន្ធ\" នៅ​ក្នុង​បញ្ជី ពណ៌​នឹង​ត្រូវ​បាន​កំណត់​ដោយ​ស្វ័យប្រវត្តិ​តាម %PRODUCTNAME, បន្ទាប់មក​ប្ដូរ​ឲ្យ​ត្រូវគ្នា​ជាមួយ​អ្នកនិពន្ធ​នៃ​ការ​ផ្លាស់ប្ដូរ​នីមួយៗ។"
+msgid "You can also choose a color to display each type of recorded change. When you choose the condition \"By author\" in the list, the color is automatically determined by Writer, then modified to match to the author of each change."
+msgstr ""
#. aCEwk
#: sw/uiconfig/swriter/ui/optredlinepage.ui:145
@@ -23818,11 +23725,11 @@ msgctxt "optredlinepage|deletedcolor-atkobject"
msgid "Color of Deletions"
msgstr ""
-#. w84gW
+#. 62sfZ
#: sw/uiconfig/swriter/ui/optredlinepage.ui:234
msgctxt "extended_tip|deletedcolor"
-msgid "You can also choose a color to display each type of recorded change. When you choose the condition \"By author\" in the list, the color is automatically determined by %PRODUCTNAME, then modified to match to the author of each change."
-msgstr "អ្នក​ក៏​អាច​ជ្រើស​ពណ៌​ដើម្បី​បង្ហាញ​ប្រភេទ​នៃ​ការ​ផ្លាស់ប្ដូរ​​នីមួយ​ដែល​បាន​កត់ត្រា​ផង​ដែរ។ ពេល​អ្នក​ជ្រើស​លក្ខខណ្ឌ \"តាម​អ្នក​និពន្ធ\" នៅ​ក្នុង​បញ្ជី ពណ៌​នឹង​ត្រូវ​បាន​កំណត់​ដោយ​ស្វ័យប្រវត្តិ​តាម %PRODUCTNAME, បន្ទាប់មក​ប្ដូរ​ឲ្យ​ត្រូវគ្នា​ជាមួយ​អ្នកនិពន្ធ​នៃ​ការ​ផ្លាស់ប្ដូរ​នីមួយៗ។"
+msgid "You can also choose a color to display each type of recorded change. When you choose the condition \"By author\" in the list, the color is automatically determined by Writer, then modified to match to the author of each change."
+msgstr ""
#. 3FpZy
#: sw/uiconfig/swriter/ui/optredlinepage.ui:277
@@ -23854,11 +23761,11 @@ msgctxt "optredlinepage|changedcolor-atkobject"
msgid "Color of Changed Attributes"
msgstr ""
-#. ZmSyG
+#. Zdx7m
#: sw/uiconfig/swriter/ui/optredlinepage.ui:366
msgctxt "extended_tip|changedcolor"
-msgid "You can also choose a color to display each type of recorded change. When you choose the condition \"By author\" in the list, the color is automatically determined by %PRODUCTNAME, then modified to match to the author of each change."
-msgstr "អ្នក​ក៏​អាច​ជ្រើស​ពណ៌​ដើម្បី​បង្ហាញ​ប្រភេទ​នៃ​ការ​ផ្លាស់ប្ដូរ​​នីមួយ​ដែល​បាន​កត់ត្រា​ផង​ដែរ។ ពេល​អ្នក​ជ្រើស​លក្ខខណ្ឌ \"តាម​អ្នក​និពន្ធ\" នៅ​ក្នុង​បញ្ជី ពណ៌​នឹង​ត្រូវ​បាន​កំណត់​ដោយ​ស្វ័យប្រវត្តិ​តាម %PRODUCTNAME, បន្ទាប់មក​ប្ដូរ​ឲ្យ​ត្រូវគ្នា​ជាមួយ​អ្នកនិពន្ធ​នៃ​ការ​ផ្លាស់ប្ដូរ​នីមួយៗ។"
+msgid "You can also choose a color to display each type of recorded change. When you choose the condition \"By author\" in the list, the color is automatically determined by Writer, then modified to match to the author of each change."
+msgstr ""
#. ZqYdk
#: sw/uiconfig/swriter/ui/optredlinepage.ui:409
@@ -25047,85 +24954,85 @@ msgid "Custom"
msgstr "ផ្ទាល់ខ្លួន"
#. ZrS3t
-#: sw/uiconfig/swriter/ui/paradialog.ui:8
+#: sw/uiconfig/swriter/ui/paradialog.ui:9
msgctxt "paradialog|ParagraphPropertiesDialog"
msgid "Paragraph"
msgstr "កថាខណ្ឌ"
#. npDMu
-#: sw/uiconfig/swriter/ui/paradialog.ui:32
+#: sw/uiconfig/swriter/ui/paradialog.ui:33
msgctxt "paradialog|reset"
msgid "Unsaved modifications to this tab are reverted."
msgstr ""
#. Gw9vR
-#: sw/uiconfig/swriter/ui/paradialog.ui:35
+#: sw/uiconfig/swriter/ui/paradialog.ui:36
msgctxt "paradialog|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
msgstr ""
#. 6xRiy
-#: sw/uiconfig/swriter/ui/paradialog.ui:159
+#: sw/uiconfig/swriter/ui/paradialog.ui:160
msgctxt "paradialog|labelTP_PARA_STD"
msgid "Indents & Spacing"
msgstr "ចូល​បន្ទាត់ & គម្លាត"
#. PRo68
-#: sw/uiconfig/swriter/ui/paradialog.ui:206
+#: sw/uiconfig/swriter/ui/paradialog.ui:207
msgctxt "paradialog|labelTP_PARA_ALIGN"
msgid "Alignment"
msgstr "ការ​​តម្រឹម"
#. hAL52
-#: sw/uiconfig/swriter/ui/paradialog.ui:255
+#: sw/uiconfig/swriter/ui/paradialog.ui:256
msgctxt "paradialog|textflow"
msgid "Text Flow"
msgstr "លំហូរ​​អត្ថបទ"
#. EB5A9
-#: sw/uiconfig/swriter/ui/paradialog.ui:304
+#: sw/uiconfig/swriter/ui/paradialog.ui:305
msgctxt "paradialog|labelTP_PARA_ASIAN"
msgid "Asian Typography"
msgstr "មុទ្ទវិទ្យា​អាស៊ី"
#. hFkAh
-#: sw/uiconfig/swriter/ui/paradialog.ui:352
+#: sw/uiconfig/swriter/ui/paradialog.ui:353
msgctxt "paradialog|labelTP_NUMPARA"
msgid "Outline & List"
msgstr ""
#. hZxni
-#: sw/uiconfig/swriter/ui/paradialog.ui:353
+#: sw/uiconfig/swriter/ui/paradialog.ui:354
msgctxt "paradialog|labelTP_NUMPARA"
msgid "Set outline level, list style and line numbering for paragraph."
msgstr ""
#. BzbWJ
-#: sw/uiconfig/swriter/ui/paradialog.ui:401
+#: sw/uiconfig/swriter/ui/paradialog.ui:402
msgctxt "paradialog|labelTP_TABULATOR"
msgid "Tabs"
msgstr "ថេប"
#. GHrCB
-#: sw/uiconfig/swriter/ui/paradialog.ui:449
+#: sw/uiconfig/swriter/ui/paradialog.ui:450
msgctxt "paradialog|labelTP_DROPCAPS"
msgid "Drop Caps"
msgstr "អក្សរ​ធំ​ដើម​អត្ថបទ"
#. EVCmZ
-#: sw/uiconfig/swriter/ui/paradialog.ui:497
+#: sw/uiconfig/swriter/ui/paradialog.ui:498
msgctxt "paradialog|labelTP_BORDER"
msgid "Borders"
msgstr "ស៊ុម​"
#. GCvEC
-#: sw/uiconfig/swriter/ui/paradialog.ui:545
+#: sw/uiconfig/swriter/ui/paradialog.ui:546
msgctxt "paradialog|area"
msgid "Area"
msgstr "តំបន់"
#. VnDtp
-#: sw/uiconfig/swriter/ui/paradialog.ui:593
+#: sw/uiconfig/swriter/ui/paradialog.ui:594
msgctxt "paradialog|transparence"
msgid "Transparency"
msgstr "ភាព​ថ្លា"
@@ -25489,10 +25396,10 @@ msgctxt "printeroptions|autoblankpages"
msgid "Print automatically inserted blank pages"
msgstr "បោះពុម្ព​ទំព័រ​ទទេ​ដែល​បាន​បញ្ចូល​ដោយ​ស្វ័យ​ប្រវត្តិ"
-#. YMAX4
+#. cnT2C
#: sw/uiconfig/swriter/ui/printeroptions.ui:244
msgctxt "printeroptions|extended_tip|autoblankpages"
-msgid "If this option is enabled automatically inserted blank pages are printed. This is best if you are printing double-sided. For example, in a book, a \"chapter\" paragraph style has been 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 print that even numbered page."
+msgid "If this option is enabled automatically inserted blank pages are printed. This is best if you are printing double-sided. For example, in a book, a \"chapter\" paragraph style has been set to always start with an odd numbered page. If the previous chapter ends on an odd page, Writer inserts an even numbered blank page. This option controls whether to print that even numbered page."
msgstr ""
#. tkryr
@@ -25748,11 +25655,11 @@ msgctxt "printoptionspage|blankpages"
msgid "Print _automatically inserted blank pages"
msgstr "បោះពុម្ព​ទំព័រ​ទទេ​ដែល​បាន​បញ្ចូល​ដោយ​ស្វ័យ​ប្រវត្តិ"
-#. JB64a
+#. fT4kP
#: sw/uiconfig/swriter/ui/printoptionspage.ui:484
msgctxt "extended_tip|blankpages"
-msgid "If this option is enabled, automatically-inserted blank pages are being printed. This is best if you are printing double-sided. For example, in a book, a \"chapter\" paragraph style has been 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 print that even numbered page or not."
-msgstr "បើ​ជម្រើស​នេះ​ត្រូវ​បាន​បើក ទំព័រ​ទទេ​ដែល​បាន​បញ្ចូល​ដោយ​ស្វ័យ​ប្រវត្តិ​កំពុង​ត្រូវ​បាន​បោះពុម្ព ។ នេះ​ប្រសើរ​បំផុត បើ​អ្នក​កំពុង​បោះពុម្ព​សង​ខាង ។ ឧទាហរណ៍ ក្នុង​សៀវភៅ រចនា​ប័ទ្ម​កថា​ខណ្ឌ \"ជំពូក\" បាន​ត្រូវ​កំណត់​ទៅ​ចាប់ផ្ដើម​ជានិច្ច​ជាមួយ​ទំព័រ​ដែល​មាន​លេខ​សេស ។ បើ​ជំពូក​មុន​ចប់​លើ​ទំព័រ​សេស %PRODUCTNAME បញ្ចូល​ទំព័រ​ទទេ​ដែល​មាន​លេខ​សេស ។ ជម្រើស​នេះ​ត្រួត​ពិនិត្យ​ថា​តើ​ត្រូវ​បោះពុម្ព​ទំព័រ​ដែល​មាន​លេខ​គូ​ឬ​អត់ ។"
+msgid "If this option is enabled, automatically-inserted blank pages are being printed. This is best if you are printing double-sided. For example, in a book, a \"chapter\" paragraph style has been set to always start with an odd numbered page. If the previous chapter ends on an odd page, Writer inserts an even numbered blank page. This option controls whether to print that even numbered page or not."
+msgstr ""
#. oSYKd
#: sw/uiconfig/swriter/ui/printoptionspage.ui:495
@@ -28095,393 +28002,393 @@ msgid "Set the text flow options for the text before and after the table."
msgstr "កំណត់​ជ្រើស​លំហូរ​អត្ថបទ សម្រាប់​អត្ថបទ​នៅ​ពី​មុខ ឬ​បន្ទាប់​ពី​តារាង ។"
#. xhDck
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:8
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:9
msgctxt "templatedialog1|TemplateDialog1"
msgid "Character Style"
msgstr "រចនាប័ទ្ម​តួអក្សរ"
#. gKTob
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:34
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:35
msgctxt "templatedialog1|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
msgstr ""
#. UH8Vz
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:172
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:173
msgctxt "templatedialog1|organizer"
msgid "Organizer"
msgstr "អ្នក​រៀបចំ"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:219
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:220
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "ពុម្ព​អក្សរ"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:268
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "បែបផែន​ពុម្ពអក្សរ"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:315
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:316
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "ទីតាំង"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:363
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:364
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "ប្លង់​អាស៊ី"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:411
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:412
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "​បន្លិច"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:459
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:460
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "ស៊ុម​"
#. fpEC5
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:8
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:9
msgctxt "templatedialog16|TemplateDialog16"
msgid "List Style"
msgstr ""
#. tA5vb
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:168
msgctxt "templatedialog16|organizer"
msgid "Organizer"
msgstr "អ្នក​រៀបចំ"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:168
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:169
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:264
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:313
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:314
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "គ្រោង"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:314
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:315
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:362
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:363
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "រូបភាព"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:363
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:364
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:411
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:412
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "ទីតាំង"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:412
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:413
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:460
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:461
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "ប្ដូរ​តាម​តម្រូវ​ការ"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:461
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:462
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. 6ozqU
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:8
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:9
msgctxt "templatedialog2|TemplateDialog2"
msgid "Paragraph Style"
msgstr "រចនាប័ទ្ម​កថាខណ្ឌ"
#. 2NhWM
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:168
msgctxt "templatedialog2|organizer"
msgid "Organizer"
msgstr "អ្នក​រៀបចំ"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:214
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:215
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "ចូល​បន្ទាត់ & គម្លាត"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:262
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:263
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "ការ​​តម្រឹម"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:310
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:311
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "លំហូរ​​អត្ថបទ"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:358
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:359
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "មុទ្ទវិទ្យា​អាស៊ី"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:406
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:407
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "ពុម្ព​អក្សរ"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:454