summaryrefslogtreecommitdiff
path: root/dtrans/source/win32/dnd/source.cxx
blob: f242688188b74253bbb77d4db4bd3532e22be1af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * Copyright 2000, 2010 Oracle and/or its affiliates.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
 ************************************************************************/

#include <com/sun/star/datatransfer/dnd/DNDConstants.hpp>
#include <com/sun/star/datatransfer/XTransferable.hpp>
#include <com/sun/star/awt/MouseButton.hpp>
#include <com/sun/star/awt/MouseEvent.hpp>
#include <rtl/unload.h>

#include <process.h>
#include <memory>

#include "source.hxx"
#include "globals.hxx"
#include "sourcecontext.hxx"
#include "../../inc/DtObjFactory.hxx"
#include <rtl/ustring.h>
#include <process.h>
#include <winuser.h>
#include <stdio.h>

#ifdef __MINGW32__
#define __uuidof(I) IID_##I
#endif

using namespace cppu;
using namespace osl;
using namespace com::sun::star::datatransfer;
using namespace com::sun::star::datatransfer::dnd;
using namespace com::sun::star::datatransfer::dnd::DNDConstants;
using namespace com::sun::star::uno;
using namespace com::sun::star::awt::MouseButton;
using namespace com::sun::star::awt;
using namespace com::sun::star::lang;

using ::rtl::OUString;

extern rtl_StandardModuleCount g_moduleCount;

//--> TRA

extern Reference< XTransferable > g_XTransferable;

//<-- TRA

unsigned __stdcall DndOleSTAFunc(LPVOID pParams);

//----------------------------------------------------
/** Ctor
*/
DragSource::DragSource( const Reference<XMultiServiceFactory>& sf):
    m_serviceFactory( sf),
    WeakComponentImplHelper3< XDragSource, XInitialization, XServiceInfo >(m_mutex),
//  m_pcurrentContext_impl(0),
    m_hAppWindow(0),
    m_MouseButton(0),
    m_RunningDndOperationCount(0)
{
    g_moduleCount.modCnt.acquire( &g_moduleCount.modCnt );
}

//----------------------------------------------------
/** Dtor
*/
DragSource::~DragSource()
{
    g_moduleCount.modCnt.release( &g_moduleCount.modCnt );
}

//----------------------------------------------------
/** First start a new drag and drop thread if
     the last one has finished

     ????
          Do we really need a separate thread for
          every Dnd opeartion or only if the source
          thread is an MTA thread
     ????
*/
void DragSource::StartDragImpl(
    const DragGestureEvent& trigger,
    sal_Int8 sourceActions,
    sal_Int32 /*cursor*/,
    sal_Int32 /*image*/,
    const Reference<XTransferable >& trans,
    const Reference<XDragSourceListener >& listener )
{
    // The actions supported by the drag source
    m_sourceActions= sourceActions;
    // We need to know which mouse button triggered the operation.
    // If it was the left one, then the drop occurs when that button
    // has been released and if it was the right one then the drop
    // occurs when the right button has been released. If the event is not
    // set then we assume that the left button is pressed.
    MouseEvent evtMouse;
    trigger.Event >>= evtMouse;
    m_MouseButton= evtMouse.Buttons;

    // The SourceContext class administers the XDragSourceListener s and
    // fires events to them. An instance only exists in the scope of this
    // functions. However, the drag and drop operation causes callbacks
    // to the IDropSource interface implemented in this class (but only
    // while this function executes). The source context is also used
    // in DragSource::QueryContinueDrag.
    m_currentContext= static_cast<XDragSourceContext*>( new SourceContext(
                      static_cast<DragSource*>(this), listener ) );

    // Convert the XTransferable data object into an IDataObject object;

    //--> TRA
    g_XTransferable = trans;
    //<-- TRA

    m_spDataObject= m_aDataConverter.createDataObjFromTransferable(
                    m_serviceFactory, trans);

    // Obtain the id of the thread that created the window
    DWORD processId;
    m_threadIdWindow= GetWindowThreadProcessId( m_hAppWindow, &processId);

    // hold the instance for the DnD thread, it's to late
    // to acquire at the start of the thread procedure
    // the thread procedure is responsible for the release
    acquire();

    // The thread acccesses members of this instance but does not call acquire.
    // Hopefully this instance is not destroyed before the thread has terminated.
    unsigned threadId;
    HANDLE hThread= reinterpret_cast<HANDLE>(_beginthreadex(
        0, 0, DndOleSTAFunc, reinterpret_cast<void*>(this), 0, &threadId));

    // detach from thread
    CloseHandle(hThread);
}

// XInitialization

//----------------------------------------------------
/** aArguments contains a machine id
*/
void SAL_CALL DragSource::initialize( const Sequence< Any >& aArguments )
    throw(Exception, RuntimeException)
{
    if( aArguments.getLength() >=2)
        m_hAppWindow= *(HWND*)aArguments[1].getValue();
    OSL_ASSERT( IsWindow( m_hAppWindow) );
}

//----------------------------------------------------
/** XDragSource
*/
sal_Bool SAL_CALL DragSource::isDragImageSupported(  )
         throw(RuntimeException)
{
    return 0;
}

//----------------------------------------------------
/**
*/
sal_Int32 SAL_CALL DragSource::getDefaultCursor( sal_Int8 /*dragAction*/ )
          throw( IllegalArgumentException, RuntimeException)
{
    return 0;
}

//----------------------------------------------------
/** Notifies the XDragSourceListener by
     calling dragDropEnd
*/
void SAL_CALL DragSource::startDrag(
    const DragGestureEvent& trigger,
    sal_Int8 sourceActions,
    sal_Int32 cursor,
    sal_Int32 image,
    const Reference<XTransferable >& trans,
    const Reference<XDragSourceListener >& listener ) throw( RuntimeException)
{
    // Allow only one running dnd operation at a time,
    // see XDragSource documentation

    long cnt = InterlockedIncrement(&m_RunningDndOperationCount);

    if (1 == cnt)
    {
        StartDragImpl(trigger, sourceActions, cursor, image, trans, listener);
    }
    else
    {
        cnt = InterlockedDecrement(&m_RunningDndOperationCount);

        DragSourceDropEvent dsde;

        dsde.DropAction  = ACTION_NONE;
        dsde.DropSuccess = false;

        try
        {
            listener->dragDropEnd(dsde);
        }
        catch(RuntimeException&)
        {
            OSL_FAIL("Runtime exception during event dispatching");
        }
    }
}

//----------------------------------------------------
/**IDropTarget
*/
HRESULT STDMETHODCALLTYPE DragSource::QueryInterface( REFIID riid, void  **ppvObject)
{
    if( !ppvObject)
        return E_POINTER;
    *ppvObject= NULL;

    if(  riid == __uuidof( IUnknown) )
        *ppvObject= static_cast<IUnknown*>( this);
    else if ( riid == __uuidof( IDropSource) )
        *ppvObject= static_cast<IDropSource*>( this);

    if(*ppvObject)
    {
        AddRef();
        return S_OK;
    }
    else
        return E_NOINTERFACE;

}

//----------------------------------------------------
/**
*/
ULONG STDMETHODCALLTYPE DragSource::AddRef( void)
{
    acquire();
    return (ULONG) m_refCount;
}

//----------------------------------------------------
/**
*/
ULONG STDMETHODCALLTYPE DragSource::Release( void)
{
    ULONG ref= m_refCount;
    release();
    return --ref;
}

//----------------------------------------------------
/** IDropSource
*/
HRESULT STDMETHODCALLTYPE DragSource::QueryContinueDrag(
/* [in] */ BOOL fEscapePressed,
/* [in] */ DWORD grfKeyState)
{
#if defined DBG_CONSOLE_OUT
    printf("\nDragSource::QueryContinueDrag");
#endif

    HRESULT retVal= S_OK; // default continue DnD

    if (fEscapePressed)
    {
        retVal= DRAGDROP_S_CANCEL;
    }
    else
    {
        if( ( m_MouseButton == MouseButton::RIGHT &&  !(grfKeyState & MK_RBUTTON) ) ||
            ( m_MouseButton == MouseButton::MIDDLE && !(grfKeyState & MK_MBUTTON) ) ||
            ( m_MouseButton == MouseButton::LEFT && !(grfKeyState & MK_LBUTTON) )   ||
            ( m_MouseButton == 0 && !(grfKeyState & MK_LBUTTON) ) )
        {
            retVal= DRAGDROP_S_DROP;
        }
    }

    // fire dropActionChanged event.
    // this is actually done by the context, which also detects whether the action
    // changed at all
    sal_Int8 dropAction= fEscapePressed ? ACTION_NONE :
                                                         dndOleKeysToAction( grfKeyState, m_sourceActions);

    sal_Int8 userAction= fEscapePressed ? ACTION_NONE :
                                                         dndOleKeysToAction( grfKeyState, -1 );

    static_cast<SourceContext*>(m_currentContext.get())->fire_dropActionChanged(
        dropAction, userAction);

    return retVal;
}

//----------------------------------------------------
/**
*/
HRESULT STDMETHODCALLTYPE DragSource::GiveFeedback(
/* [in] */ DWORD
#if defined DBG_CONSOLE_OUT
dwEffect
#endif
)
{
#if defined DBG_CONSOLE_OUT
    printf("\nDragSource::GiveFeedback %d", dwEffect);
#endif

    return DRAGDROP_S_USEDEFAULTCURSORS;
}

// XServiceInfo
OUString SAL_CALL DragSource::getImplementationName(  ) throw (RuntimeException)
{
    return OUString(RTL_CONSTASCII_USTRINGPARAM(DNDSOURCE_IMPL_NAME));
}
// XServiceInfo
sal_Bool SAL_CALL DragSource::supportsService( const OUString& ServiceName ) throw (RuntimeException)
{
    if( ServiceName.equals(OUString(RTL_CONSTASCII_USTRINGPARAM(DNDSOURCE_SERVICE_NAME ))))
        return sal_True;
    return sal_False;
}

Sequence< OUString > SAL_CALL DragSource::getSupportedServiceNames(  ) throw (RuntimeException)
{
    OUString names[1]= {OUString(RTL_CONSTASCII_USTRINGPARAM(DNDSOURCE_SERVICE_NAME))};

    return Sequence<OUString>(names, 1);
}

//----------------------------------------------------
/**This function is called as extra thread from
    DragSource::executeDrag. The function
    carries out a drag and drop operation by calling
    DoDragDrop. The thread also notifies all
    XSourceListener.
*/
unsigned __stdcall DndOleSTAFunc(LPVOID pParams)
{
    // The structure contains all arguments for DoDragDrop and other
    DragSource *pSource= (DragSource*)pParams;

    // Drag and drop only works in a thread in which OleInitialize is called.
    HRESULT hr= OleInitialize( NULL);

    if(SUCCEEDED(hr))
    {
        // We force the creation of a thread message queue. This is necessary
        // for a later call to AttachThreadInput
        MSG msgtemp;
        PeekMessage( &msgtemp, NULL, WM_USER, WM_USER, PM_NOREMOVE);

        DWORD threadId= GetCurrentThreadId();

        // This thread is attached to the thread that created the window. Hence
        // this thread also receives all mouse and keyboard messages which are
        // needed by DoDragDrop
        AttachThreadInput( threadId , pSource->m_threadIdWindow, TRUE );

        DWORD dwEffect= 0;
        hr= DoDragDrop(
            pSource->m_spDataObject.get(),
            static_cast<IDropSource*>(pSource),
            dndActionsToDropEffects( pSource->m_sourceActions),
            &dwEffect);

        // #105428 detach my message queue from the other threads
        // message queue before calling fire_dragDropEnd else
        // the office may appear to hang sometimes
        AttachThreadInput( threadId, pSource->m_threadIdWindow, FALSE);

        //--> TRA
        // clear the global transferable again
        g_XTransferable = Reference< XTransferable >( );
        //<-- TRA

        OSL_ENSURE( hr != E_INVALIDARG, "IDataObject impl does not contain valid data");

        //Fire event
        sal_Int8 action= hr == DRAGDROP_S_DROP ? dndOleDropEffectsToActions( dwEffect) : ACTION_NONE;

        static_cast<SourceContext*>(pSource->m_currentContext.get())->fire_dragDropEnd(
                                                        hr == DRAGDROP_S_DROP ? sal_True : sal_False, action);

        // Destroy SourceContextslkfgj
        pSource->m_currentContext= 0;
        // Destroy the XTransferable wrapper
        pSource->m_spDataObject=0;

        OleUninitialize();
    }

    InterlockedDecrement(&pSource->m_RunningDndOperationCount);

    // the DragSource was manually acquired by
    // thread starting method DelayedStartDrag
    pSource->release();

    return 0;
}




/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
po (PACKAGE VERSION) #-#-#-#-#\n"
-"འོག་ཐིག\n"
-"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
-"འོག་ཐིག\n"
-"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
-"འོག་ཐིག།\n"
-"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
-"འོག་ཐིག\n"
-"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
-"འོག་ཐིག"
#: svxitems.src
msgctxt ""
@@ -785,43 +738,12 @@ msgid "Strike through with Xes"
msgstr ""
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_CASEMAP_NONE\n"
"string.text"
msgid "None"
msgstr ""
-"#-#-#-#-# utlui.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཅི་མེད།\n"
-"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཅི་མེད།\n"
-"#-#-#-#-# chrdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཅི་མེད།\n"
-"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཅི་མེད།\n"
-"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཅི་མེད།\n"
-"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཅི་མེད།\n"
-"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཅི་་མེད།\n"
-"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཅི་མེད།\n"
-"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཅི་མེད།\n"
-"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཅི་མེད།\n"
-"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཅི་མེད།\n"
-"#-#-#-#-# control.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཅི་མེད།\n"
-"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཅི་མེད།\n"
-"#-#-#-#-# form.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཅི་མེད\n"
-"#-#-#-#-# stbctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཅི་མེད།"
#: svxitems.src
#, fuzzy
@@ -841,35 +763,12 @@ msgid "Lowercase"
msgstr "མགྱོགས་ཡིག"
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_CASEMAP_TITEL\n"
"string.text"
msgid "Title"
msgstr ""
-"#-#-#-#-# ribbar.po (PACKAGE VERSION) #-#-#-#-#\n"
-"མགོ་མིང་།\n"
-"#-#-#-#-# dbui.po (PACKAGE VERSION) #-#-#-#-#\n"
-"མགོ་མིང་།\n"
-"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
-"མགོ་མིང་།\n"
-"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
-"མགོ་མིང་\n"
-"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
-"མགོ་མིང་།\n"
-"#-#-#-#-# template.po (PACKAGE VERSION) #-#-#-#-#\n"
-"མགོ་མིང་།\n"
-"#-#-#-#-# res.po (PACKAGE VERSION) #-#-#-#-#\n"
-"མགོ་མིང་།\n"
-"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
-"མགོ་མིང་།\n"
-"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
-"གོ་གནས།\n"
-"#-#-#-#-# gallery2.po (PACKAGE VERSION) #-#-#-#-#\n"
-"མགོ་མིང་།\n"
-"#-#-#-#-# textconversiondlgs.po (PACKAGE VERSION) #-#-#-#-#\n"
-"མགོ་མིང་།"
#: svxitems.src
msgctxt ""
@@ -1058,42 +957,20 @@ msgid "3D engraved"
msgstr ""
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_INSET\n"
"string.text"
msgid "Inset"
msgstr ""
-"#-#-#-#-# ribbar.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཙུགས།\n"
-"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཙུགས།\n"
-"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཙུགས།\n"
-"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཙུགས།\n"
-"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཙུགས་།\n"
-"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཙུགས།\n"
-"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཙུགས།\n"
-"#-#-#-#-# basicide.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཙུགས།"
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_OUTSET\n"
"string.text"
msgid "Outset"
msgstr ""
-"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཕྱི་ཁར་\n"
-"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཕྱི་ཁར།"
#: svxitems.src
msgctxt ""
@@ -1258,23 +1135,12 @@ msgid "No Outline"
msgstr ""
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_PRINT_TRUE\n"
"string.text"
msgid "Print"
msgstr ""
-"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཚག\n"
-"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
-"པར་བསྐྲུན།\n"
-"#-#-#-#-# pagedlg.po (PACKAGE VERSION) #-#-#-#-#\n"
-"དཔར་བསྐྲུན།\n"
-"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
-"དཔར་བསྐྲུན།\n"
-"#-#-#-#-# contnr.po (PACKAGE VERSION) #-#-#-#-#\n"
-"དཔར་བསྐུན་འབད།"
#: svxitems.src
msgctxt ""
@@ -1400,21 +1266,12 @@ msgid "Not Transparent"
msgstr ""
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_HYPHEN_TRUE\n"
"string.text"
msgid "Hyphenation"
msgstr ""
-"#-#-#-#-# utlui.po (PACKAGE VERSION) #-#-#-#-#\n"
-"སྦྲེལ་རྟགས་བཀལ་བ།\n"
-"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
-"སྦྲེལ་རྟགས་བཀལ་བ།\n"
-"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
-"སྦྲེལ་རྟགས་བཀལ་ནི།\n"
-"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
-"སྦྲེལ་རྟགས་བཀལ་བ།"
#: svxitems.src
msgctxt ""
@@ -1703,32 +1560,20 @@ msgid "Accent "
msgstr ""
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_EMPHASIS_ABOVE_POS\n"
"string.text"
msgid "Above"
msgstr ""
-"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ལྟག་གི།\n"
-"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ལྟག་ལུ"
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_EMPHASIS_BELOW_POS\n"
"string.text"
msgid "Below"
msgstr ""
-"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
-"འོག་ལུ།\n"
-"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
-"འོག་ལུ་\n"
-"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
-"འོག་ལུ།"
#: svxitems.src
#, fuzzy
@@ -2007,17 +1852,12 @@ msgid "Align left"
msgstr "གཡོན་ཕྲང་།"
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_HORJUST_CENTER\n"
"string.text"
msgid "Centered horizontally"
msgstr ""
-"#-#-#-#-# utlui.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཐད་སྙོམས་སྦེ་དབུས་སྒྲིག་འབད་ཡི།\n"
-"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཀེར་ཕྲེང་སྦེ་གསར་བསྐྲུན་འབད་ཡོདཔ།"
#: svxitems.src
#, fuzzy
@@ -2062,17 +1902,12 @@ msgid "Align to top"
msgstr "སྤྱི་ཏོག་གི་ཕྲང།"
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_VERJUST_CENTER\n"
"string.text"
msgid "Centered vertically"
msgstr ""
-"#-#-#-#-# utlui.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཀེར་ཕྲང་སྦེ་དབུས་སྒྲིག་འབད་ཡི།\n"
-"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཀེར་ཕྲང་སྦེ་དབུས་སྒྲིག་འབད་ཡོདཔ།"
#: svxitems.src
msgctxt ""
@@ -2083,31 +1918,12 @@ msgid "Align to bottom"
msgstr "གཤམ་ལུ་ཕྲང་།"
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_JUSTMETHOD_AUTO\n"
"string.text"
msgid "Automatic"
msgstr ""
-"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
-"རང་བཞིན་གྱི།\n"
-"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
-"རང་བཞིན་གྱི།\n"
-"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
-"རང་བཞིན་\n"
-"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
-"རང་བཞིན་གྱི།(~A)\n"
-"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
-"རང་བཞིན་གྱི།\n"
-"#-#-#-#-# control.po (PACKAGE VERSION) #-#-#-#-#\n"
-"རང་བཞིན་གྱི།\n"
-"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
-"རང་བཞིན་གྱི།\n"
-"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
-"རང་བཞིན་གྱིས།\n"
-"#-#-#-#-# t602.po (PACKAGE VERSION) #-#-#-#-#\n"
-"རང་བཞིན་གྱི་"
#: svxitems.src
#, fuzzy
diff --git a/source/dz/editeng/source/outliner.po b/source/dz/editeng/source/outliner.po
index b1cc86cd4ce..69b7e27371a 100644
--- a/source/dz/editeng/source/outliner.po
+++ b/source/dz/editeng/source/outliner.po
@@ -51,26 +51,9 @@ msgid "Apply attributes"
msgstr "མངའ་ཁོངས་ཁྱད་ཆོས་ཚུ།"
#: outliner.src
-#, fuzzy
msgctxt ""
"outliner.src\n"
"RID_OUTLUNDO_INSERT\n"
"string.text"
msgid "Insert"
msgstr ""
-"#-#-#-#-# ribbar.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཙུགས།\n"
-"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཙུགས།\n"
-"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཙུགས།\n"
-"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཙུགས།\n"
-"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཙུགས་།\n"
-"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཙུགས།\n"
-"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཙུགས།\n"
-"#-#-#-#-# basicide.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཙུགས།"
diff --git a/source/dz/extensions/source/propctrlr.po b/source/dz/extensions/source/propctrlr.po
index 4454a40f230..2ed31bf24d5 100644
--- a/source/dz/extensions/source/propctrlr.po
+++ b/source/dz/extensions/source/propctrlr.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:49+0000\n"
+"PO-Revision-Date: 2016-11-13 20:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467658183.000000\n"
+"X-POOTLE-MTIME: 1479069879.000000\n"
#: formlinkdialog.src
msgctxt ""
@@ -2859,31 +2859,12 @@ msgstr "རྒྱགས་པ་གཡས་གཡོ།"
#. That's the 'Italic' as used for a font style, so please use a consistent translation.
#: formres.src
-#, fuzzy
msgctxt ""
"formres.src\n"
"RID_STR_FONTSTYLE_ITALIC\n"
"string.text"
msgid "Italic"
msgstr ""
-"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཨའི་ཊ་ལིཀ། \n"
-"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཨའི་ཊ་ལིཀ། \n"
-"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཨའི་ཊ་ལིཀ། \n"
-"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཨའི་ཊ་ལིཀ། \n"
-"#-#-#-#-# animations.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཨའི་ཊ་ལིཀ།\n"
-"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཨའི་ཊ་ལིཀ།\n"
-"#-#-#-#-# control.po (PACKAGE VERSION) #-#-#-#-#\n"
-"གཡས་གཡོ།\n"
-"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཨའི་ཊ་ལིཀ། \n"
-"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
-"ཨའི་ཊ་ལིཀ"
#. That's the 'Bold' as used for a font style, so please use a consistent translation.
#: formres.src
diff --git a/source/dz/extensions/source/update/check.po b/source/dz/extensions/source/update/check.po
index 497f3050f28..5baa0e08ce4 100644
--- a/source/dz/extensions/source/update/check.po
+++ b/source/dz/extensions/source/update/check.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-05-23 21:37+0200\n"
-"PO-Revision-Date: 2016-03-10 22:01+0000\n"
+"PO-Revision-Date: 2016-05-25 12:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457647317.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1464178965.000000\n"
#: updatehdl.src
msgctxt ""
@@ -211,17 +211,12 @@ msgid "Reload File"
msgstr "གཞི་ཁྲམ་ཡང་བསྐྱར་མངོན་གསལ་འབད།"
#: updatehdl.src
-#, fuzzy
msgctxt ""
"updatehdl.src\n"
"RID_UPDATE_STR_RELOAD_CONTINUE\n"
"string.text"
msgid "Continue"
msgstr ""
-"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
-"འཕྲོ་མཐུད།\n"
-"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
-"འཕྲོ་མཐུད་"
#: updatehdl.src
msgctxt ""
diff --git a/source/dz/filter/source/t602.po b/source/dz/filter/source/t602.po
index 1b399b4b999..440aba947c1 100644
--- a/source/dz/filter/source/t602.po
+++ b/source/dz/filter/source/t602.po
@@ -2,9 +2,9 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2011-04-05 19:33+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2013-05-27 09:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,8 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1369646643.000000\n"
#: t602filter.src
msgctxt ""
@@ -96,24 +97,9 @@ msgid "Cancel"
msgstr "ཆ་མེད་གཏང་"
#: t602filter.src
-#, fuzzy
msgctxt ""
"t602filter.src\n"
"T602FILTER_STR_OK_BUTTON\n"
"string.text"
msgid "OK"
msgstr ""
-"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཏུབ།\n"
-"#-#-#-#-# euro.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཏུབ།\n"
-"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཏུབ།\n"
-"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཏུབ་\n"
-"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཏུབ་\n"
-"#-#-#-#-# all.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཏུབ།\n"
-"#-#-#-#-# gui.po (PACKAGE VERSION) #-#-#-#-#\n"
-"བཏུབ་"
diff --git a/source/dz/helpcontent2/source/text/sbasic/guide.po b/source/dz/helpcontent2/source/text/sbasic/guide.po
index a9f3d065042..e836772502d 100644
--- a/source/dz/helpcontent2/source/text/sbasic/guide.po
+++ b/source/dz/helpcontent2/source/text/sbasic/guide.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-03-09 20:48+0100\n"
-"PO-Revision-Date: 2015-04-23 14:21+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"PO-Revision-Date: 2016-05-02 10:40+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429798871.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462185653.000000\n"
#: access2base.xhp
msgctxt ""
@@ -188,7 +188,6 @@ msgstr "<bookmark_value>རྒྱུ་དངོས་ཚུ་; གིས་ཌ
msgctxt ""
"control_properties.xhp\n"
"hd_id3145786\n"
-"1\n"
"help.text"
msgid "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Changing the Properties of Controls in the Dialog Editor</link></variable>"
msgstr "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">ཌའི་ལོག་ཞུན་དག་པའི་ནང་ལུ་ཡོད་མི་ ཚད་འཛིན་གྱི་རྒྱུ་དངོས་ བསྒྱུར་བཅོས་འབད་ོ།</link></variable>"
@@ -197,7 +196,6 @@ msgstr "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/contr
msgctxt ""
"control_properties.xhp\n"
"par_id3147317\n"
-"2\n"
"help.text"
msgid "You can set the properties of control that you add to a dialog. For example, you can change the color, name, and size of a button that you added. You can change most control properties when you create or edit a dialog. However, you can only change some properties at runtime."
msgstr "ཁྱོད་ཀྱིས་ ཌའི་ལོག་ནང་ལུ་ཁ་སྐོང་རྐྱབས་མི་ ཚད་འཛིན་གྱི་རྒྱུ་དངོས་ གཞི་སྒྲིག་འབད། དཔེར་ན་ ཁྱོད་ཀྱིས་ཁ་སྐོང་བརྐྱབས་མི་ གཡེབ་རྟ་གི་ ཚོས་གཞི་དང་ མིང་དང་ དེ་ལས་ཚད་ཚུ་ བསྒྱུར་བཅོས་འབད་ཚུགས། ཁྱོད་ཀྱིས་ ཌའི་ལོག་གསར་བསྐྲུན་ ཡང་ན ཞུན་དག་འབདཝ་ད་ལུ་ ཚད་འཛིན་རྒྱུ་དངོས་མང་ཤོས་རང་ བསྒྱུར་བཅོས་འབད་ཚུགས།"
@@ -206,7 +204,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཌའི་ལོག་ནང་ལུ
msgctxt ""
"control_properties.xhp\n"
"par_id3145749\n"
-"3\n"
"help.text"
msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
msgstr "བཀོད་སྐྲིག་ཐབས་ལམ་ནང་གི་ ཚད་འཛིན་གྱི་རྒྱུ་དངོས་ཚུ་བསྒྱུར་བཅོས་འབད་ནིའི་དོན་ལུ་ གཡས་ཨེབ་གཏང་འབད་དེ་<emph>དེ་ལས་ རྒྱུ་དངོས་འདམ་ཁ་རྐྱབས།</emph>."
@@ -231,7 +228,6 @@ msgstr ""
msgctxt ""
"create_dialog.xhp\n"
"hd_id3149346\n"
-"1\n"
"help.text"
msgid "<variable id=\"create_dialog\"><link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Creating a Basic Dialog\">Creating a Basic Dialog</link></variable>"
msgstr "<variable id=\"create_dialog\"><link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Creating a Basic Dialog\">གཞི་རྩའི་དའི་ལོག་གསར་བསྐྲུན་འབད་དོ།</link></variable>"
@@ -240,7 +236,6 @@ msgstr "<variable id=\"create_dialog\"><link href=\"text/sbasic/guide/create_dia
msgctxt ""
"create_dialog.xhp\n"
"par_id3163802\n"
-"3\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Dialogs</emph>, and then click <emph>New</emph>."
msgstr "འདམ་ཁ་རྐྱབས་<emph>ལག་ཆས།- མེཀ་རོསི། - ཌའི་ལོག་འགོ་འདྲེན་འཐབ་</emph>, དེ་ལས་ ཨེབ་གཏང་འབད། <emph>New</emph>."
@@ -249,7 +244,6 @@ msgstr "འདམ་ཁ་རྐྱབས་<emph>ལག་ཆས།- མེཀ
msgctxt ""
"create_dialog.xhp\n"
"par_id3150447\n"
-"11\n"
"help.text"
msgid "Enter a name for the dialog, and click OK. To rename the dialog later, right-click the name on the tab, and choose <emph>Rename</emph>."
msgstr "ཌའི་ལོག་ལུ་མིང་ཐོ་བཀོད་འབད་བཞིནམ་ལས་ དེ་ལས་ བཏུབ་པས་ལུ་ ཨེབ་གཏང་འབད།. ཌའི་ལོག་ཤུལ་ལས་བསྐྱར་མིང་བཏགས་ནིའི་དོན་ལུ་ མཆོང་ལྡེ་གུར་གཡས་ ཨེབ་གཏང་འབད་དེ་ <emph>བསྐྱར་མིང་བཏགས་ནི་ འདམ་ཁ་རྐྱབས།</emph>."
@@ -266,7 +260,6 @@ msgstr "ཨེབ་གཏང་འབད། <emph>Edit</emph>. གཞི་ར
msgctxt ""
"create_dialog.xhp\n"
"par_id3153726\n"
-"6\n"
"help.text"
msgid "If you do not see the <emph>Toolbox</emph> bar, click the arrow next to the <emph>Insert Controls </emph>icon to open the <emph>Toolbox</emph> bar."
msgstr "ཁྱོད་ཀྱིས་<emph>ལག་ཆས་སྒྲོམ་དང་</emph> ཕྲ་རིང་མཐོང་མ་ཚུགས་པ་ཅིན་, མདའ་རྟགས་<emph>དེ་ཡང་ ནང་ན་བཙུགས་ནིའི་ཚད་འཛིན་ </emph>ངོས་དཔར་ <emph>ལག་ཆས་སྒྲོམ་</emph>ཕྲ་རིང་ཚུ་གི་ཤུལ་མར་ཡོད་མི་ལུ་ ཨེབ་གཏང་འབད།"
@@ -275,7 +268,6 @@ msgstr "ཁྱོད་ཀྱིས་<emph>ལག་ཆས་སྒྲོམ་
msgctxt ""
"create_dialog.xhp\n"
"par_id3148455\n"
-"12\n"
"help.text"
msgid "Click a tool and then drag in the dialog to create the control."
msgstr "ལག་ཆས་ལུ་ཨེབ་གཏང་འབད་བཞིནམ་ལས་ ཚད་འཛིན་གསར་བསྐྲུན་འབད་ནིའི་དོན་ལུ་ ཌའི་ཡོག་ནང་ལུ་ འདྲུད།"
@@ -300,7 +292,6 @@ msgstr "<bookmark_value>ཚད་འཛིན་འབདཝ་ཨིན།; ཌ
msgctxt ""
"insert_control.xhp\n"
"hd_id3149182\n"
-"1\n"
"help.text"
msgid "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\" name=\"Creating Controls in the Dialog Editor\">Creating Controls in the Dialog Editor</link></variable>"
msgstr "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\" name=\"Creating Controls in the Dialog Editor\">ཌའི་ལོག་ཞུན་དག་པའི་ནང་ལུ་ ཚད་འཛིན་གསར་བསྐྲུན་འབད་དོ།</link></variable>"
@@ -309,7 +300,6 @@ msgstr "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_co
msgctxt ""
"insert_control.xhp\n"
"par_id3146797\n"
-"2\n"
"help.text"
msgid "Use the tools on the <emph>Toolbox </emph>of the BASIC dialog editor to add controls to your dialog."
msgstr "ཁྱོད་རའི་ཌའི་ལོག་ལུ་ ཚད་འཛིན་ཁ་སྐོང་བརྐྱབ་ནིའི་དོན་ལས་ <emph>གཞི་རྩའི་ཌའི་ལོག་ཞུན་དག་པའི་ལག་ཆས་སྒྲོམ་གུར་ </emph>ལག་ཆས་ཚུ་ལག་ལེན་འཐབ།"
@@ -318,7 +308,6 @@ msgstr "ཁྱོད་རའི་ཌའི་ལོག་ལུ་ ཚད་
msgctxt ""
"insert_control.xhp\n"
"par_id3150276\n"
-"7\n"
"help.text"
msgid "To open the <emph>Toolbox</emph>, click the arrow next to the <emph>Insert Controls</emph> icon on the <emph>Macro</emph> toolbar."
msgstr "<emph> ལག་ཆ་སྒྲོམ </emph> ཁ་ཕྱེ་ནིའི་དོན་ལུ་<emph>མདའ་རྟགས་ཀྱི་ཤུལ་མམ་གྱི་</emph>ཚད་འཛིན་ཚུ་བཙུགས་ནིའི་<emph>མེཀ་ཀོརོ་འདིའི་གུའི་</emph>ངོས་དཔར་གྱི་ལག་ཆས་སྒྲོམ་གུ་ཨེབ་གཏང་འབད་དགོ།"
@@ -327,7 +316,6 @@ msgstr "<emph> ལག་ཆ་སྒྲོམ </emph> ཁ་ཕྱེ་ནི
msgctxt ""
"insert_control.xhp\n"
"par_id3145068\n"
-"3\n"
"help.text"
msgid "Click a tool on the toolbar, for example, <emph>Button</emph>."
msgstr "ལག་ཆས་ཕྲརིང་གུར་ལག་ཆས་ོགཅིག་ཨེབ་གཏང་འབད། དཔེ་འབད་བ་ཅིན་ <emph>གཡེབ་རྟ།</emph>."
@@ -336,7 +324,6 @@ msgstr "ལག་ཆས་ཕྲརིང་གུར་ལག་ཆས་ོག
msgctxt ""
"insert_control.xhp\n"
"par_id3153360\n"
-"4\n"
"help.text"
msgid "On the dialog, drag the button to the size you want."
msgstr "ཌའི་ལོག་གུར་ ཁྱོད་ར་དགོ་མི་ཚད་ལུ་ གཡེབ་རྟ་འདྲུད།"
@@ -361,7 +348,6 @@ msgstr "<bookmark_value>ཚད་འཛིན་གྱི་དོན་ལུ
msgctxt ""
"sample_code.xhp\n"
"hd_id3155338\n"
-"1\n"
"help.text"
msgid "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Programming Examples for Controls in the Dialog Editor</link></variable>"
msgstr "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">ཌའི་ལོག་ཞུན་དག་པ་ནང་གི་ཚད་འཛིན་གྱི་དོན་ལུ་ དཔེའི་ལས་རིམ་བཟོ་དོ།</link></variable>"
@@ -370,7 +356,6 @@ msgstr "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.
msgctxt ""
"sample_code.xhp\n"
"par_id3153031\n"
-"2\n"
"help.text"
msgid "The following examples are for a new <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog\">dialog</link> called \"Dialog1\". Use the tools on the <emph>Toolbox</emph> bar in the dialog editor to create the dialog and add the following controls: a <emph>Check Box</emph> called \"CheckBox1\", a <emph>Label Field</emph> called \"Label1\", a <emph>Button</emph> called \"CommandButton1\", and a <emph>List Box</emph> called \"ListBox1\"."
msgstr "འོག་ལུ་ཡོད་མི་དཔེ་འདི་ཚུ་ The following examples are for a new <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog\">ཌའི་ལོག་གསརཔ་</link> called \"Dialog1\". Use the tools on the <emph>Toolbox</emph> bar in the dialog editor to create the dialog and add the following controls: a <emph>Check Box</emph> called \"CheckBox1\", a <emph>Label Field</emph> called \"Label1\", a <emph>Button</emph> called \"CommandButton1\", and a <emph>List Box</emph> called \"ListBox1\"."
@@ -379,7 +364,6 @@ msgstr "འོག་ལུ་ཡོད་མི་དཔེ་འདི་ཚུ
msgctxt ""
"sample_code.xhp\n"
"par_id3154141\n"
-"3\n"
"help.text"
msgid "Be consistent with uppercase and lowercase letter when you attach a control to an object variable."
msgstr "བསྒྱུར་ཅན་དངོས་པོ་ལུ་ ཚད་འཛིན་གཅིག་ མཉམ་སྦྲགས་འབད་བའི་སྐབས་ ཚུགས་ཡིག་དང་མགྱོགས་ཡིག་ཚུ་དང་གཅིག་ཁར་ རིམ་མཐུ་སྦེ་སྡོད་གོ།"
@@ -388,7 +372,6 @@ msgstr "བསྒྱུར་ཅན་དངོས་པོ་ལུ་ ཚད
msgctxt ""
"sample_code.xhp\n"
"hd_id3154909\n"
-"4\n"
"help.text"
msgid "Global Function for Loading Dialogs"
msgstr "ཌའི་ལོགསི་མངོན་གསལ་འབད་ནིའི་དོན་ལུ་ སྤཡི་ཁྱབ་ཀྱི་ལས་འགན།"
@@ -397,7 +380,6 @@ msgstr "ཌའི་ལོགསི་མངོན་གསལ་འབད་ན
msgctxt ""
"sample_code.xhp\n"
"hd_id3149412\n"
-"18\n"
"help.text"
msgid "Displaying a Dialog"
msgstr "ཌའི་ལོག་བཀྲམ་སྟོན་འབད་དོ།"
@@ -414,7 +396,6 @@ msgstr "རིམ་ འགྱུར་ཅན་ཚུའི་ངེས་ཚ
msgctxt ""
"sample_code.xhp\n"
"hd_id3150042\n"
-"27\n"
"help.text"
msgid "Read or Edit Properties of Controls in the Program"
msgstr "ལས་རིམ་འདི་ནང་ལུ་ཚད་འཛིན་ཚུའི་རྒྱུ་དངོས་ཚུ་ཞུན་དག་འབད་ཡང་ན་ལྷག"
@@ -503,7 +484,6 @@ msgstr "ཡན་ལག་མཇུག"
msgctxt ""
"sample_code.xhp\n"
"hd_id3145387\n"
-"55\n"
"help.text"
msgid "Add an Entry to a ListBox"
msgstr "ཐོ་ཡིག་སྒྲོམ་ནང་ལུ་ཐོ་བཀོད་ཁ་སྐོང་འབད།"
@@ -528,7 +508,6 @@ msgstr "ཨོ་ཐོ་ཡིག་སྒྲོམ།རྣམ་གྲངས
msgctxt ""
"sample_code.xhp\n"
"hd_id3147071\n"
-"64\n"
"help.text"
msgid "Remove an Entry from a ListBox"
msgstr "ཐོ་ཡིག་སྒྲོམ་ནང་ལས་ཐོ་བཀོད་རྩ་བསྐྲད་གཏང་།"
@@ -561,7 +540,6 @@ msgstr "<bookmark_value>ཚད་གཞི་ཚུ་དང་ཌའི་ལ
msgctxt ""
"show_dialog.xhp\n"
"hd_id3154140\n"
-"1\n"
"help.text"
msgid "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Program Code\">Opening a Dialog With Program Code</link></variable>"
msgstr "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Program Code\">Opening a Dialog With Program Code</link></variable>"
@@ -570,7 +548,6 @@ msgstr "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.
msgctxt ""
"show_dialog.xhp\n"
"par_id3145171\n"
-"2\n"
"help.text"
msgid "In the <item type=\"productname\">%PRODUCTNAME</item> BASIC window for a dialog that you created, leave the dialog editor by clicking the name tab of the Module that the dialog is assigned to. The name tab is at the bottom of the window."
msgstr "ཁྱོད་ཀྱིས་ཌའི་ལོག་གསར་བསྐྲུན་འབད་བའི་ཝིན་ཌོ་་གཞི་རྟེན་<item type=\"productname\">%PRODUCTNAME</item> འདི་ནང་ལུ་ཌའི་ལོག་ཞུན་དག་པ་འདི་ཌའི་ལོག་འདི་འགན་སྤྲོད་པའི་ཚད་གཞིའི་མཆོང་ལྡེའི་མིང་འདི་ཨེབ་གཏང་འབད་བཀོག་བཞག མཆོང་ལྡེའི་མིང་འདི་ཝིན་ཌོའི་མཇུག་ལུ་ཡོད།"
@@ -579,7 +556,6 @@ msgstr "ཁྱོད་ཀྱིས་ཌའི་ལོག་གསར་བས
msgctxt ""
"show_dialog.xhp\n"
"par_id3153968\n"
-"6\n"
"help.text"
msgid "Enter the following code for a subroutine called <emph>Dialog1Show</emph>. In this example, the name of the dialog that you created is \"Dialog1\":"
msgstr "ཡན་ལག་རྒྱུན་ལས་འབོ་ཡོད་མི་གི་དོན་ལུ་འོག་གི་ <emph>Dialog1Show</emph> ཨང་རྟགས་འདི་བཙུགས། འ་ནི་དཔེ་འདི་ནང་ལུ་ ཁྱོད་ཀྱིས་གསར་བསྐྲུན་འབད་མི་ཌའི་ལོག་འདིའི་མིང་ \"Dialog1\" ཨིན:"
@@ -588,7 +564,6 @@ msgstr "ཡན་ལག་རྒྱུན་ལས་འབོ་ཡོད་མ
msgctxt ""
"show_dialog.xhp\n"
"par_id3152596\n"
-"18\n"
"help.text"
msgid "Without using \"LoadDialog\" you can call the code as follows:"
msgstr "\"LoadDialog\" ལག་ལེན་མ་འཐབ་པར་་སྦེ་ ཁྱོད་ཀྱིས་ཨང་རྟགས་འདི་རྗེས་སུ་འབྲང་ཡོདཔ་བཟུམ་སྦེ་འབོ་བཏུབ:"
@@ -597,7 +572,6 @@ msgstr "\"LoadDialog\" ལག་ལེན་མ་འཐབ་པར་་སྦ
msgctxt ""
"show_dialog.xhp\n"
"par_id3153157\n"
-"16\n"
"help.text"
msgid "When you execute this code, \"Dialog1\" opens. To close the dialog, click the close button (x) on its title bar."
msgstr "\"Dialog1\" ཁྱོད་ཀྱིས་འ་ནི་ཨང་རྟགས་ལག་ལེན་འཐབ་ད་ཁ་ཕྱེཝ་ཨིན། ཌའི་ལོག་ཁ་བསྡམས་ནིའི་དོན་ལུ་འདིའི་མགོ་མིང་ཕྲ་རིང་་གུའི་ (x)ཁ་བསྡམས་ཨེབ་རྟ་འདི་ཨེབ་གཏང་།"
diff --git a/source/dz/helpcontent2/source/text/sbasic/shared.po b/source/dz/helpcontent2/source/text/sbasic/shared.po
index 165056a7687..9dcabfc68ab 100644
--- a/source/dz/helpcontent2/source/text/sbasic/shared.po
+++ b/source/dz/helpcontent2/source/text/sbasic/shared.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-05 18:10+0000\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"PO-Revision-Date: 2016-07-05 17:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467742251.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467741538.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -28,7 +28,6 @@ msgstr "$[officename] གཞི་རིམ་ཚིག་ཐོ།"
msgctxt ""
"00000002.xhp\n"
"hd_id3145068\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"$[officename] Basic Glossary\">$[officename] Basic Glossary</link>"
msgstr "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"$[officename] Basic Glossary\">$[officename] གཞི་རིམ་ཚིག་ཐོ་</link>"
@@ -37,7 +36,6 @@ msgstr "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"$[officename] Basi
msgctxt ""
"00000002.xhp\n"
"par_id3150792\n"
-"2\n"
"help.text"
msgid "This glossary explains some technical terms that you may come across when working with $[officename] Basic."
msgstr "འ་དི་ཚིག་ཐོ་གིས་ཁྱོད་ཀྱིས་ $[officename] གཞི་རིམ་དང་་གཅིག་ཁར་ལཱ་འབད་བའི་སྐབས་ཡན་ཆད་འོང་བའི་ཐབས་རིག་ལམ་ལུགས་ཚུ་ལ་ལོ་བཤདཔ་ཨིན།"
@@ -46,7 +44,6 @@ msgstr "འ་དི་ཚིག་ཐོ་གིས་ཁྱོད་ཀྱི
msgctxt ""
"00000002.xhp\n"
"hd_id3155133\n"
-"7\n"
"help.text"
msgid "Decimal Point"
msgstr "བཅུ་ཚག་ས་ཚིགས།"
@@ -55,7 +52,6 @@ msgstr "བཅུ་ཚག་ས་ཚིགས།"
msgctxt ""
"00000002.xhp\n"
"par_id3156443\n"
-"8\n"
"help.text"
msgid "When converting numbers, $[officename] Basic uses the locale settings of the system for determining the type of decimal and thousand separator."
msgstr "ཨང་གྲངས་ཚུ་གཞི་བསྒྱུར་འབད་བའི་སྐབས་ $[officename] གཞི་རིམ་གྱིས་དབྱེ་སེལ་སྟོང་ཁྲག་དང་བཅུ་ཚག་གི་དབྱེ་བ་འདི་གཏན་འབེབས་བཟོ་ནིའི་དོན་ལུ་རིམ་ལུགས་འདིའི་ཉེན་གནས་སྒྲིག་སྟངས་ཚུ་ལག་ལེན་འཐབ་ཨིན།"
@@ -64,7 +60,6 @@ msgstr "ཨང་གྲངས་ཚུ་གཞི་བསྒྱུར་འབ
msgctxt ""
"00000002.xhp\n"
"par_id3153092\n"
-"9\n"
"help.text"
msgid "The behavior has an effect on both the implicit conversion ( 1 + \"2.3\" = 3.3 ) as well as the runtime function <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>."
msgstr "སྤྱོད་ལམ་འདི་གིས་བསམ་པའི་སྒོ་ལས་གཞི་བསྒྱུར་་འདི་གཉིས་ཆ་རང་གུ་ནུས་པ་ཡོད་ ( 1 + \"2.3\" = 3.3 ) པའི་ཁར་དེ་བཟུམ་སྦེ་རཱན་ཊའིམ་ལས་འགན་ <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">ཨའི་ཨེསི་ཨང་གྲངས་ཀྱི་</link>."
@@ -73,7 +68,6 @@ msgstr "སྤྱོད་ལམ་འདི་གིས་བསམ་པའི
msgctxt ""
"00000002.xhp\n"
"hd_id3155854\n"
-"29\n"
"help.text"
msgid "Colors"
msgstr "ཚོས་གཞི་ཚུ།"
@@ -82,7 +76,6 @@ msgstr "ཚོས་གཞི་ཚུ།"
msgctxt ""
"00000002.xhp\n"
"par_id3145366\n"
-"30\n"
"help.text"
msgid "In $[officename] Basic, colors are treated as long integer value. The return value of color queries is also always a long integer value. When defining properties, colors can be specified using their RGB code that is converted to a long integer value using the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB function\">RGB function</link>."
msgstr "$[officename] གཞི་རྟེན་ནང་ལུ་ཚོས་གཞི་ཚུ་ཆ་མཉམ་གནས་གོང་ཧྲིལ་ཨང་་རིང་མོ་སྦེ་བརྩི་འཇོག་འབདཝ་ཨིན། ཚོས་གཞི་འདྲི་དཔྱད་ཚུའི་གནས་གོང་སླར་ལོག་འདི་ཡང་ཨ་རྟག་རང་གནས་གོང་ཧྲིལ་ཨང་རིང་མོ་ཨིན། རྒྱུ་དངོས་ཚུ་ངོས་འཛིན་འབད་བའི་སྐབས་ཚོས་གཞི་ཚུ་ ཨར་ཇི་བི་ཨང་རྟགས་ལག་ལེན་འཐབ་འདི་གསལ་བཀོད་འབད་ཡོད་པའི་གནས་གོང་ཧྲིལ་ཨང་་རིང་མོ་གཞི་བསྒྱུར་་འབཐ་མི་ལག་ལེན་འཐབ་མི་འདི་ཡང་ <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB function\">ཨར་ཇི་བི་ ལས་འགན་</link>."
@@ -91,7 +84,6 @@ msgstr "$[officename] གཞི་རྟེན་ནང་ལུ་ཚོས་
msgctxt ""
"00000002.xhp\n"
"hd_id3146119\n"
-"32\n"
"help.text"
msgid "Measurement Units"
msgstr "ཚད་འཇལ་ཆ་ཕྲན་ཚུ།"
@@ -100,7 +92,6 @@ msgstr "ཚད་འཇལ་ཆ་ཕྲན་ཚུ།"
msgctxt ""
"00000002.xhp\n"
"par_id3154013\n"
-"33\n"
"help.text"
msgid "In $[officename] Basic, a <emph>method parameter</emph> or a <emph>property</emph> expecting unit information can be specified either as integer or long integer expression without a unit, or as a character string containing a unit. If no unit is passed to the method the default unit defined for the active document type will be used. If the parameter is passed as a character string containing a measurement unit, the default setting will be ignored. The default measurement unit for a document type can be set under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - (Document Type) - General</emph>."
msgstr ""
@@ -117,7 +108,6 @@ msgstr "<bookmark_value>ཊི་ཝིབསི་ ངེས་ཚིག་</bo
msgctxt ""
"00000002.xhp\n"
"hd_id3145801\n"
-"5\n"
"help.text"
msgid "Twips"
msgstr "ཊི་ཝིབསི།"
@@ -126,7 +116,6 @@ msgstr "ཊི་ཝིབསི།"
msgctxt ""
"00000002.xhp\n"
"par_id3154731\n"
-"6\n"
"help.text"
msgid "A twip is a screen-independent unit which is used to define the uniform position and size of screen elements on all display systems. A twip is 1/1440th of an inch or 1/20 of a printer's point. There are 1440 twips to an inch or about 567 twips to a centimeter."
msgstr "ཊིཔ་ཟེར་མི་འདི་རང་དབང་གསལ་གཞི་ཆ་ཕྲན་གཅིག་མཚུངས་གནས་ས་འདི་ངེས་འཛིན་འབད་ནི་་དང་ རིམ་ལུགས་ཚུ་ཆ་མཉམ་གུའི་གསལ་གཞི་རྒྱུ་རྫས་ཚུའི་གསལ་གཞིའི་ཚད་བཀྲམ་བཏོན་འབད་ནི་ལུ་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན། ཊིཔ་འདི་དཔར་བསྐྲུན་བཅུ་ཚག་གི་ ༡/༢༠ ཡང་ན་ཨིན་ཅི་གི་ ༡ /༡༤༤༠་པམ་འདི་ཨིན། ཨིན་ཅི་ལུ་ཊིཔསི་ ༡༤༤༠་ ཡང་ན་སིན་ཊི་མི་ཊར་ལུ་ཊིཔསི་ ༥༦༧་ཙམ་ཡོདཔ་ཨིན།"
@@ -135,7 +124,6 @@ msgstr "ཊིཔ་ཟེར་མི་འདི་རང་དབང་གས
msgctxt ""
"00000002.xhp\n"
"hd_id3153159\n"
-"106\n"
"help.text"
msgid "URL Notation"
msgstr "ཡུ་ཨར་ཨེལ་ དབྱངས་རྟགས།"
@@ -144,7 +132,6 @@ msgstr "ཡུ་ཨར་ཨེལ་ དབྱངས་རྟགས།"
msgctxt ""
"00000002.xhp\n"
"par_id3153415\n"
-"108\n"
"help.text"
msgid "URLs (<emph>Uniform Resource Locators</emph>) are used to determine the location of a resource like a file in a file system, typically inside a network environment. A URL consists of a protocol specifier, a host specifier and a file and path specifier:"
msgstr "ཡུ་ཨར་ཨེལསི་(<emph>གཅིག་མཚུངས་ཐོན་ཁུངས་ག་ཡོད་འཚོལ་མི་ཚུ་</emph>) ཆ་མཉམ་གྱིས་ཐོན་ཁུངས་ཀྱི་དཔེར་ན་ ཡིག་སྣོད་རིམ་ལུགས་ནང་ཡིག་སྣོད་འདི་ག་ཡོད་འཚོལ་གཏན་འབེབས་བཟོ་ནི་ལུ་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན། . ཡུ་ཨར་ཨེལ་འདི་གནད་སྤེལ་ལམ་ལུགས་གསལ་བཀོད་པ་ ཧོསིཊི་གསལ་བཀོད་པ་དང་ཡིག་སྣོད་དང་འགྲུལ་ལམ་གསལ་བཀོད་པ་འདི་རིམ་མཐུནམ་ཨིན :"
@@ -153,7 +140,6 @@ msgstr "ཡུ་ཨར་ཨེལསི་(<emph>གཅིག་མཚུང
msgctxt ""
"00000002.xhp\n"
"par_id3149121\n"
-"107\n"
"help.text"
msgid "<emph>protocol</emph>://<emph>host.name</emph>/<emph>path/to/the/file.html</emph>"
msgstr "<emph>གནད་སྤེལ་ལམ་ལུགས་</emph>://<emph>ཧོསིཊི་ མིང་</emph>/<emph>ཡིག་སྣོད་ ཨེཆ་ཊི་ཨེམ/འདིའི་/ལམ་/ལུ་</emph>"
@@ -162,7 +148,6 @@ msgstr "<emph>གནད་སྤེལ་ལམ་ལུགས་</emph>://<emph
msgctxt ""
"00000002.xhp\n"
"par_id3168612\n"
-"109\n"
"help.text"
msgid "The most common usage of URLs is on the internet when specifying web pages. Example for protocols are <emph>http</emph>, <emph>ftp</emph>, or <emph>file</emph>. The <emph>file</emph> protocol specifier is used when referring to a file on the local file system."
msgstr "ཡུ་ཨར་ཨེལ་ལག་ལེན་འདི་མང་ཤོས་ཨིན་ཊར་ནེཊི་གུ་ཝེབ་ཤོག་ལེབ་ཚུ་གསལ་བཀོད་འབད་བའི་སྐབས་ལག་ལེན་འཐབ་ཨིན། དཔེར་ན་ གནད་སྤེལ་ལམ་ལུགས་ཚུའི་དོན་ལུ་ དེ་ཚུ་ཡང་ <emph>ཨེཆ་ཊི་ཊི་པི་</emph>, <emph>ཨེཕ་ཊི་པི་</emph>, ཡང་ན་ <emph>ཡིག་སྣོད་</emph>། ཡིག་སྣོད་<emph>འདི་</emph> གནད་སྤེལ་ལམ་ལུགས་གསལ་བཀོད་པ་ ཡིག་སྣོད་ཅིག་ཉེན་གནས་ཡིག་སྣོད་རིམ་ལུགས་གུ་གཞི་བསྟུན་འབདཝ་ད་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན།"
@@ -171,7 +156,6 @@ msgstr "ཡུ་ཨར་ཨེལ་ལག་ལེན་འདི་མང་
msgctxt ""
"00000002.xhp\n"
"par_id3150324\n"
-"110\n"
"help.text"
msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (<emph>/</emph>) is used as a path separator. For example, a file referred to as <emph>C:\\My File.odt</emph> on the local host in \"Windows notation\" becomes <emph>file:///C|/My%20File.odt</emph> in URL notation."
msgstr ""
@@ -188,7 +172,6 @@ msgstr "བརྡ་དོན།"
msgctxt ""
"00000003.xhp\n"
"hd_id3148550\n"
-"1\n"
"help.text"
msgid "Information"
msgstr "བརྡ་དོན།"
@@ -197,7 +180,6 @@ msgstr "བརྡ་དོན།"
msgctxt ""
"00000003.xhp\n"
"par_id3153381\n"
-"102\n"
"help.text"
msgid "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>. In Basic format codes, the decimal point (<emph>.</emph>) is always used as <emph>placeholder</emph> for the decimal separator defined in your locale and will be replaced by the corresponding character."
msgstr ""
@@ -206,7 +188,6 @@ msgstr ""
msgctxt ""
"00000003.xhp\n"
"par_id3150870\n"
-"103\n"
"help.text"
msgid "The same applies to the locale settings for date, time and currency formats. The Basic format code will be interpreted and displayed according to your locale setting."
msgstr "འདི་གཅིགཔ་སྦེ་ཚེས་ ཆུ་ཚོད་དང་དངུལ་རྩ་སྒྲིག་ཚུའི་དོན་ལུ་ཉེན་གནས་སྒྲིག་སྟངས་འདི་ཚུ་ལུ་འཇུགཔ་ཨིན། གཞི་རྟེན་རྩ་སྒྲིག་ཨང་རྟགས་འདི་ཁྱོད་ཀྱི་ཉེན་གནས་སྒྲིག་སྟངས་སུ་འཁྲིལ་ཏེ་ཁ་བསྒྱུར་འབད་ནི་་དང་བཀྲམ་བཏོན་འབད་ནི་ཨིན།"
@@ -215,7 +196,6 @@ msgstr "འདི་གཅིགཔ་སྦེ་ཚེས་ ཆུ་ཚོ
msgctxt ""
"00000003.xhp\n"
"par_id3156424\n"
-"2\n"
"help.text"
msgid "The color values of the 16 basic colors are as follows:"
msgstr "གཞི་རྟེན་ཚོས་གཞི་ ༡༦ ཚུ་་ཆ་མཉམ་གྱི་ཚོས་གཞི་གནས་གོང་འདི་རྗེས་སུ་འབྲིང་མི་མཟུམ།"
@@ -224,7 +204,6 @@ msgstr "གཞི་རྟེན་ཚོས་གཞི་ ༡༦ ཚུ་་
msgctxt ""
"00000003.xhp\n"
"par_id3153091\n"
-"3\n"
"help.text"
msgid "<emph>Color Value</emph>"
msgstr "<emph>ཚོས་གཞི་གནས་གོང་</emph>"
@@ -233,7 +212,6 @@ msgstr "<emph>ཚོས་གཞི་གནས་གོང་</emph>"
msgctxt ""
"00000003.xhp\n"
"par_id3154319\n"
-"4\n"
"help.text"
msgid "<emph>Color Name</emph>"
msgstr "<emph>ཚོས་གཞི་མིང་</emph>"
@@ -242,7 +220,6 @@ msgstr "<emph>ཚོས་གཞི་མིང་</emph>"
msgctxt ""
"00000003.xhp\n"
"par_id3151112\n"
-"5\n"
"help.text"
msgid "0"
msgstr ""
@@ -251,7 +228,6 @@ msgstr ""
msgctxt ""
"00000003.xhp\n"
"par_id3155854\n"
-"6\n"
"help.text"
msgid "Black"
msgstr "གནག་པོ།"
@@ -260,7 +236,6 @@ msgstr "གནག་པོ།"
msgctxt ""
"00000003.xhp\n"
"par_id3154942\n"
-"7\n"
"help.text"
msgid "128"
msgstr "༡༢༨"
@@ -269,7 +244,6 @@ msgstr "༡༢༨"
msgctxt ""
"00000003.xhp\n"
"par_id3154731\n"
-"8\n"
"help.text"
msgid "Blue"
msgstr "ཧོནམ།"
@@ -278,7 +252,6 @@ msgstr "ཧོནམ།"
msgctxt ""
"00000003.xhp\n"
"par_id3145645\n"
-"9\n"
"help.text"
msgid "32768"
msgstr "༣༢༧༦༨"
@@ -287,7 +260,6 @@ msgstr "༣༢༧༦༨"
msgctxt ""
"00000003.xhp\n"
"par_id3149400\n"
-"10\n"
"help.text"
msgid "Green"
msgstr "ལྗང་ཁུ།"
@@ -296,7 +268,6 @@ msgstr "ལྗང་ཁུ།"
msgctxt ""
"00000003.xhp\n"
"par_id3150753\n"
-"11\n"
"help.text"
msgid "32896"
msgstr "༣༢༨༩༦"
@@ -305,7 +276,6 @@ msgstr "༣༢༨༩༦"
msgctxt ""
"00000003.xhp\n"
"par_id3153765\n"
-"12\n"
"help.text"
msgid "Cyan"
msgstr "སྔོ་ལྗང་།"
@@ -314,7 +284,6 @@ msgstr "སྔོ་ལྗང་།"
msgctxt ""
"00000003.xhp\n"
"par_id3154756\n"
-"13\n"
"help.text"
msgid "8388608"
msgstr "༨༣༨༨༦༠༨"
@@ -323,7 +292,6 @@ msgstr "༨༣༨༨༦༠༨"
msgctxt ""
"00000003.xhp\n"
"par_id3159266\n"
-"14\n"
"help.text"
msgid "Red"
msgstr "དམར་པོ།"
@@ -332,7 +300,6 @@ msgstr "དམར་པོ།"
msgctxt ""
"00000003.xhp\n"
"par_id3163807\n"
-"15\n"
"help.text"
msgid "8388736"
msgstr "༨༣༨༨༧༣༦"
@@ -341,7 +308,6 @@ msgstr "༨༣༨༨༧༣༦"
msgctxt ""
"00000003.xhp\n"
"par_id3145150\n"
-"16\n"
"help.text"
msgid "Magenta"
msgstr "དམར་སྨུག"
@@ -350,7 +316,6 @@ msgstr "དམར་སྨུག"
msgctxt ""
"00000003.xhp\n"
"par_id3147002\n"
-"17\n"
"help.text"
msgid "8421376"
msgstr "༨༤༢༡༣༧༦"
@@ -359,7 +324,6 @@ msgstr "༨༤༢༡༣༧༦"
msgctxt ""
"00000003.xhp\n"
"par_id3152778\n"
-"18\n"
"help.text"
msgid "Yellow"
msgstr "སེར་པོ།"
@@ -368,7 +332,6 @@ msgstr "སེར་པོ།"
msgctxt ""
"00000003.xhp\n"
"par_id3150088\n"
-"19\n"
"help.text"
msgid "8421504"
msgstr "༨༤༢༡༥༠༤"
@@ -377,7 +340,6 @@ msgstr "༨༤༢༡༥༠༤"
msgctxt ""
"00000003.xhp\n"
"par_id3159239\n"
-"20\n"
"help.text"
msgid "White"
msgstr "དཀར་པོ།"
@@ -386,7 +348,6 @@ msgstr "དཀར་པོ།"
msgctxt ""
"00000003.xhp\n"
"par_id3150206\n"
-"21\n"
"help.text"
msgid "12632256"
msgstr "༡༢༦༣༢༢༥༦"
@@ -395,7 +356,6 @@ msgstr "༡༢༦༣༢༢༥༦"
msgctxt ""
"00000003.xhp\n"
"par_id3149817\n"
-"22\n"
"help.text"
msgid "Gray"
msgstr "སྐྱ་ཐལ།"
@@ -404,7 +364,6 @@ msgstr "སྐྱ་ཐལ།"
msgctxt ""
"00000003.xhp\n"
"par_id3150363\n"
-"23\n"
"help.text"
msgid "255"
msgstr "༢༥༥"
@@ -413,7 +372,6 @@ msgstr "༢༥༥"
msgctxt ""
"00000003.xhp\n"
"par_id3154576\n"
-"24\n"
"help.text"
msgid "Light blue"
msgstr "སྔོ་སྐྱ།"
@@ -422,7 +380,6 @@ msgstr "སྔོ་སྐྱ།"
msgctxt ""
"00000003.xhp\n"
"par_id3150367\n"
-"25\n"
"help.text"
msgid "65280"
msgstr "༦༥༢༨༠"
@@ -431,7 +388,6 @@ msgstr "༦༥༢༨༠"
msgctxt ""
"00000003.xhp\n"
"par_id3150202\n"
-"26\n"
"help.text"
msgid "Light green"
msgstr "ལྗང་སྐྱ།"
@@ -440,7 +396,6 @@ msgstr "ལྗང་སྐྱ།"
msgctxt ""
"00000003.xhp\n"
"par_id3154487\n"
-"27\n"
"help.text"
msgid "65535"
msgstr "༦༥༥༣༥"
@@ -449,7 +404,6 @@ msgstr "༦༥༥༣༥"
msgctxt ""
"00000003.xhp\n"
"par_id3151332\n"
-"28\n"
"help.text"
msgid "Light cyan"
msgstr "སྔོ་ལྗང་སྐྱ་བོ།"
@@ -458,7 +412,6 @@ msgstr "སྔོ་ལྗང་སྐྱ་བོ།"
msgctxt ""
"00000003.xhp\n"
"par_id3148702\n"
-"29\n"
"help.text"
msgid "16711680"
msgstr "༡༦༧༡༡༦༨༠"
@@ -467,7 +420,6 @@ msgstr "༡༦༧༡༡༦༨༠"
msgctxt ""
"00000003.xhp\n"
"par_id3153067\n"
-"30\n"
"help.text"
msgid "Light red"
msgstr "དམར་སྐྱ་བོ།"
@@ -476,7 +428,6 @@ msgstr "དམར་སྐྱ་བོ།"
msgctxt ""
"00000003.xhp\n"
"par_id3153912\n"
-"31\n"
"help.text"
msgid "16711935"
msgstr "༡༦༧༡༡༩༣༥"
@@ -485,7 +436,6 @@ msgstr "༡༦༧༡༡༩༣༥"
msgctxt ""
"00000003.xhp\n"
"par_id3159097\n"
-"32\n"
"help.text"
msgid "Light magenta"
msgstr "དམར་སྨུག་སྐྱ་བོ།"
@@ -494,7 +444,6 @@ msgstr "དམར་སྨུག་སྐྱ་བོ།"
msgctxt ""
"00000003.xhp\n"
"par_id3155266\n"
-"33\n"
"help.text"
msgid "16776960"
msgstr "༡༦༧༧༦༩༦༠"
@@ -503,7 +452,6 @@ msgstr "༡༦༧༧༦༩༦༠"
msgctxt ""
"00000003.xhp\n"
"par_id3157978\n"
-"34\n"
"help.text"
msgid "Light yellow"
msgstr "སེར་སྐྱ།"
@@ -512,7 +460,6 @@ msgstr "སེར་སྐྱ།"
msgctxt ""
"00000003.xhp\n"
"par_id3153286\n"
-"35\n"
"help.text"
msgid "16777215"
msgstr "༡༦༧༧༧༢༡༥"
@@ -521,7 +468,6 @@ msgstr "༡༦༧༧༧༢༡༥"
msgctxt ""
"00000003.xhp\n"
"par_id3151302\n"
-"36\n"
"help.text"
msgid "Transparent white"
msgstr "དཀར་པོ་དྭངས་གསལ།"
@@ -530,7 +476,6 @@ msgstr "དཀར་པོ་དྭངས་གསལ།"
msgctxt ""
"00000003.xhp\n"
"hd_id3152869\n"
-"37\n"
"help.text"
msgid "<variable id=\"errorcode\">Error Codes</variable>"
msgstr "<variable id=\"errorcode\">ཨང་རྟགས་འཛོལ་བ་ </variable>"
@@ -547,7 +492,6 @@ msgstr "<variable id=\"err18\">༡༨ ལག་ལེན་པ་བར་དཀ
msgctxt ""
"00000003.xhp\n"
"par_id3155095\n"
-"38\n"
"help.text"
msgid "<variable id=\"err2\">2 Syntax error</variable>"
msgstr "<variable id=\"err2\"> ༢ གསལ་བཀོད་བཤོལ་བའི་ཚིག་སྦྱོར་འཛོལ་བ་ </variable>"
@@ -556,7 +500,6 @@ msgstr "<variable id=\"err2\"> ༢ གསལ་བཀོད་བཤོལ་བ
msgctxt ""
"00000003.xhp\n"
"par_id3149126\n"
-"39\n"
"help.text"
msgid "<variable id=\"err3\">3 Return without Gosub</variable>"
msgstr "<variable id=\"err3\">༣ སླར་ལོག་མེདཔ་སྦེ་ གོ་སབ་</variable>"
@@ -565,7 +508,6 @@ msgstr "<variable id=\"err3\">༣ སླར་ལོག་མེདཔ་སྦ
msgctxt ""
"00000003.xhp\n"
"par_id3153976\n"
-"40\n"
"help.text"
msgid "<variable id=\"err4\">4 Incorrect entry; please retry</variable>"
msgstr "<variable id=\"err14\">༡༤་ ནུས་མེད་ཚད་བཟུང་ </variable>"
@@ -574,7 +516,6 @@ msgstr "<variable id=\"err14\">༡༤་ ནུས་མེད་ཚད་བཟ
msgctxt ""
"00000003.xhp\n"
"par_id3150891\n"
-"41\n"
"help.text"
msgid "<variable id=\"err5\">5 Invalid procedure call</variable>"
msgstr "<variable id=\"err5\">༥ ནུས་མེད་བྱ་སྒོའི་ལམ་ལུགས་བོད་བརྡ་ </variable>"
@@ -583,7 +524,6 @@ msgstr "<variable id=\"err5\">༥ ནུས་མེད་བྱ་སྒོའ
msgctxt ""
"00000003.xhp\n"
"par_id3159227\n"
-"42\n"
"help.text"
msgid "<variable id=\"err6\">6 Overflow</variable>"
msgstr "<variable id=\"err6\">༦ ལུད་སོང་བ་ </variable>"
@@ -592,7 +532,6 @@ msgstr "<variable id=\"err6\">༦ ལུད་སོང་བ་ </variable>"
msgctxt ""
"00000003.xhp\n"
"par_id3154649\n"
-"43\n"
"help.text"
msgid "<variable id=\"err7\">7 Not enough memory</variable>"
msgstr "<variable id=\"err7\">༧ དྲན་ཚད་ཀྱི་ཕྱི་ཁར་ </variable>"
@@ -601,7 +540,6 @@ msgstr "<variable id=\"err7\">༧ དྲན་ཚད་ཀྱི་ཕྱི་
msgctxt ""
"00000003.xhp\n"
"par_id3150050\n"
-"44\n"
"help.text"
msgid "<variable id=\"err8\">8 Array already dimensioned</variable>"
msgstr "<variable id=\"err8\">༨ ཨེ་རེ་ཧེ་མ་ལས་རྒྱ་ཁྱོན་འབད་ཡོདཔ་ </variable>"
@@ -610,7 +548,6 @@ msgstr "<variable id=\"err8\">༨ ཨེ་རེ་ཧེ་མ་ལས་ར
msgctxt ""
"00000003.xhp\n"
"par_id3148900\n"
-"45\n"
"help.text"
msgid "<variable id=\"err9\">9 Index out of defined range</variable>"
msgstr "<variable id=\"err9\">༩ འོག་ཡིག་ཁྱབ་ཚད་ཀྱི་ཕྱི་ཁར་ </variable>"
@@ -619,7 +556,6 @@ msgstr "<variable id=\"err9\">༩ འོག་ཡིག་ཁྱབ་ཚད་
msgctxt ""
"00000003.xhp\n"
"par_id3153806\n"
-"46\n"
"help.text"
msgid "<variable id=\"err10\">10 Duplicate definition</variable>"
msgstr "<variable id=\"err10\">༡༠ ངེས་འཛིན་རྫུན་མ་ </variable>"
@@ -628,7 +564,6 @@ msgstr "<variable id=\"err10\">༡༠ ངེས་འཛིན་རྫུན་
msgctxt ""
"00000003.xhp\n"
"par_id3146963\n"
-"47\n"
"help.text"
msgid "<variable id=\"err11\">11 Division by zero</variable>"
msgstr "<variable id=\"err11\">༡༡ སྡེ་ཚན་དང་ཀླད་ཀོར་ </variable>"
@@ -637,7 +572,6 @@ msgstr "<variable id=\"err11\">༡༡ སྡེ་ཚན་དང་ཀླད་
msgctxt ""
"00000003.xhp\n"
"par_id3153013\n"
-"48\n"
"help.text"
msgid "<variable id=\"err12\">12 Variable not defined</variable>"
msgstr "<variable id=\"err12\">༡༢ འགྱུར་ཅན་ངེས་འཛིན་བཤོལ་ </variable>"
@@ -646,7 +580,6 @@ msgstr "<variable id=\"err12\">༡༢ འགྱུར་ཅན་ངེས་འ
msgctxt ""
"00000003.xhp\n"
"par_id3155593\n"
-"49\n"
"help.text"
msgid "<variable id=\"err13\">13 Data type mismatch</variable>"
msgstr "<variable id=\"err13\">༡༣ དབྱེ་བ་མ་མཐུནམ་ </variable>"
@@ -655,7 +588,6 @@ msgstr "<variable id=\"err13\">༡༣ དབྱེ་བ་མ་མཐུནམ
msgctxt ""
"00000003.xhp\n"
"par_id3151197\n"
-"50\n"
"help.text"
msgid "<variable id=\"err14\">14 Invalid parameter</variable>"
msgstr "<variable id=\"err14\">༡༤་ ནུས་མེད་ཚད་བཟུང་ </variable>"
@@ -664,7 +596,6 @@ msgstr "<variable id=\"err14\">༡༤་ ནུས་མེད་ཚད་བཟ
msgctxt ""
"00000003.xhp\n"
"par_id3154710\n"
-"51\n"
"help.text"
msgid "<variable id=\"err18\">18 Process interrupted by user</variable>"
msgstr "<variable id=\"err18\">༡༨ ལག་ལེན་པ་བར་དཀྲོགས་འབྱུང་ཡོདཔ་ </variable>"
@@ -673,7 +604,6 @@ msgstr "<variable id=\"err18\">༡༨ ལག་ལེན་པ་བར་དཀ
msgctxt ""
"00000003.xhp\n"
"par_id3147504\n"
-"52\n"
"help.text"
msgid "<variable id=\"err20\">20 Resume without error</variable>"
msgstr "<variable id=\"err20\">༢༠ བསྐྱར་ལོག་མེདཔ་སྦེ་འཛོལ་བ་ </variable>"
@@ -682,7 +612,6 @@ msgstr "<variable id=\"err20\">༢༠ བསྐྱར་ལོག་མེདཔ
msgctxt ""
"00000003.xhp\n"
"par_id3145319\n"
-"53\n"
"help.text"
msgid "<variable id=\"err28\">28 Not enough stack memory</variable>"
msgstr "<variable id=\"err28\">༢༨ བརྩེགས་ཕུང་བར་སྟོང་གི་ཕྱི་ཁར་ </variable>"
@@ -691,7 +620,6 @@ msgstr "<variable id=\"err28\">༢༨ བརྩེགས་ཕུང་བར་
msgctxt ""
"00000003.xhp\n"
"par_id3146110\n"
-"54\n"
"help.text"
msgid "<variable id=\"err35\">35 Sub-procedure or function procedure not defined</variable>"
msgstr "<variable id=\"err35\">༣༥ ཡན་ལག་ཡང་ན་ལས་འགན་ངེས་འཛིན་མ་འབདཝ་ </variable>"
@@ -700,7 +628,6 @@ msgstr "<variable id=\"err35\">༣༥ ཡན་ལག་ཡང་ན་ལས་
msgctxt ""
"00000003.xhp\n"
"par_id3147246\n"
-"55\n"
"help.text"
msgid "<variable id=\"err48\">48 Error loading DLL file</variable>"
msgstr "<variable id=\"err48\">༤༨ འཛོལ་བ་མངོན་གསལ་ནང་ </variable>"
@@ -709,7 +636,6 @@ msgstr "<variable id=\"err48\">༤༨ འཛོལ་བ་མངོན་གས
msgctxt ""
"00000003.xhp\n"
"par_id3146101\n"
-"56\n"
"help.text"
msgid "<variable id=\"err49\">49 Wrong DLL call convention</variable>"
msgstr "<variable id=\"err49\">༤༩ ཌི་ཨེལ་ཨེལ་ བྱང་ཉེས་བོད་བརྡ་གྲོས་འཛོམས་ </variable>"
@@ -718,7 +644,6 @@ msgstr "<variable id=\"err49\">༤༩ ཌི་ཨེལ་ཨེལ་ བྱ
msgctxt ""
"00000003.xhp\n"
"par_id3153957\n"
-"57\n"
"help.text"
msgid "<variable id=\"err51\">51 Internal error</variable>"
msgstr "<variable id=\"err51\">༥༡་ རྒྱལ་སྤྱི་འཛོལ་བ་ </variable>"
@@ -727,7 +652,6 @@ msgstr "<variable id=\"err51\">༥༡་ རྒྱལ་སྤྱི་འཛོ
msgctxt ""
"00000003.xhp\n"
"par_id3154404\n"
-"58\n"
"help.text"
msgid "<variable id=\"err52\">52 Invalid file name or file number</variable>"
msgstr "<variable id=\"err52\">༥༢ བྱང་ཉེས་ཡིག་སྣོད་མིང་ཡང་ན་ཨང་གྲངས་ </variable>"
@@ -736,7 +660,6 @@ msgstr "<variable id=\"err52\">༥༢ བྱང་ཉེས་ཡིག་སྣ
msgctxt ""
"00000003.xhp\n"
"par_id3151338\n"
-"59\n"
"help.text"
msgid "<variable id=\"err53\">53 File not found</variable>"
msgstr "<variable id=\"err53\">༥༣་ ཡིག་སྣོད་འཚོལ་མ་ཐོབ་ </variable>"
@@ -745,7 +668,6 @@ msgstr "<variable id=\"err53\">༥༣་ ཡིག་སྣོད་འཚོལ
msgctxt ""
"00000003.xhp\n"
"par_id3147298\n"
-"60\n"
"help.text"
msgid "<variable id=\"err54\">54 Incorrect file mode</variable>"
msgstr "<variable id=\"err54\">༥༤ བྱང་ཉེས་ཡིག་སྣོད་ཐབས་ལམ་ </variable>"
@@ -754,7 +676,6 @@ msgstr "<variable id=\"err54\">༥༤ བྱང་ཉེས་ཡིག་སྣ
msgctxt ""
"00000003.xhp\n"
"par_id3148747\n"
-"61\n"
"help.text"
msgid "<variable id=\"err55\">55 File already open</variable>"
msgstr "<variable id=\"err55\">༥༥ ཡིག་སྣོད་ཧེ་མ་ལས་ཁ་ཕྱེ་ </variable>"
@@ -763,7 +684,6 @@ msgstr "<variable id=\"err55\">༥༥ ཡིག་སྣོད་ཧེ་མ་
msgctxt ""
"00000003.xhp\n"
"par_id3145233\n"
-"62\n"
"help.text"
msgid "<variable id=\"err57\">57 Device I/O error</variable>"
msgstr "<variable id=\"err57\">༥༧ ཐབས་འཕྲུལ་ I /༠ འཛོལ་བ </variable>"
@@ -772,7 +692,6 @@ msgstr "<variable id=\"err57\">༥༧ ཐབས་འཕྲུལ་ I /༠ འ
msgctxt ""
"00000003.xhp\n"
"par_id3156399\n"
-"63\n"
"help.text"
msgid "<variable id=\"err58\">58 File already exists</variable>"
msgstr "<variable id=\"err58\">༥༨ ཡིག་སྣོད་ཧེ་མ་ལས་ཡོདཔ་ </variable>"
@@ -781,7 +700,6 @@ msgstr "<variable id=\"err58\">༥༨ ཡིག་སྣོད་ཧེ་མ་
msgctxt ""
"00000003.xhp\n"
"par_id3149324\n"
-"64\n"
"help.text"
msgid "<variable id=\"err59\">59 Incorrect record length</variable>"
msgstr "<variable id=\"err59\">༥༩ བྱང་་ཉེས་དྲན་ཐོ་རིང་ཚད་ </variable>"
@@ -790,7 +708,6 @@ msgstr "<variable id=\"err59\">༥༩ བྱང་་ཉེས་དྲན་ཐ
msgctxt ""
"00000003.xhp\n"
"par_id3147409\n"
-"65\n"
"help.text"
msgid "<variable id=\"err61\">61 Disk or hard drive full</variable>"
msgstr "<variable id=\"err61\">༦༡ ཌིཀསི་ གང་ </variable>"
@@ -799,7 +716,6 @@ msgstr "<variable id=\"err61\">༦༡ ཌིཀསི་ གང་ </variable>"
msgctxt ""
"00000003.xhp\n"
"par_id3149146\n"
-"66\n"
"help.text"
msgid "<variable id=\"err62\">62 Reading exceeds EOF</variable>"
msgstr "<variable id=\"err67\">༦༧ ཡིག་སྣོད་ཚུ་ལེ་ཤ་ </variable>"
@@ -808,7 +724,6 @@ msgstr "<variable id=\"err67\">༦༧ ཡིག་སྣོད་ཚུ་ལེ
msgctxt ""
"00000003.xhp\n"
"par_id3150456\n"
-"67\n"
"help.text"
msgid "<variable id=\"err63\">63 Incorrect record number</variable>"
msgstr "<variable id=\"err63\">༦༣ བྱང་ཉེས་དྲན་ཐོ་ཨང་ </variable>"
@@ -817,7 +732,6 @@ msgstr "<variable id=\"err63\">༦༣ བྱང་ཉེས་དྲན་ཐོ
msgctxt ""
"00000003.xhp\n"
"par_id3146883\n"
-"68\n"
"help.text"
msgid "<variable id=\"err67\">67 Too many files</variable>"
msgstr "<variable id=\"err67\">༦༧ ཡིག་སྣོད་ཚུ་ལེ་ཤ་ </variable>"
@@ -826,7 +740,6 @@ msgstr "<variable id=\"err67\">༦༧ ཡིག་སྣོད་ཚུ་ལེ
msgctxt ""
"00000003.xhp\n"
"par_id3146818\n"
-"69\n"
"help.text"
msgid "<variable id=\"err68\">68 Device not available</variable>"
msgstr "<variable id=\"err68\">༦༨ ཐབས་འཕྲུལ་ཐོབ་མ་ཚུགསཔ </variable>"
@@ -835,7 +748,6 @@ msgstr "<variable id=\"err68\">༦༨ ཐབས་འཕྲུལ་ཐོབ་
msgctxt ""
"00000003.xhp\n"
"par_id3145225\n"
-"70\n"
"help.text"
msgid "<variable id=\"err70\">70 Access denied</variable>"
msgstr "<variable id=\"err70\">༧༠ གནང་བ་ཉན་མ་བཏུབ་ </variable>"
@@ -844,7 +756,6 @@ msgstr "<variable id=\"err70\">༧༠ གནང་བ་ཉན་མ་བཏུ
msgctxt ""
"00000003.xhp\n"
"par_id3150372\n"
-"71\n"
"help.text"
msgid "<variable id=\"err71\">71 Disk not ready</variable>"
msgstr "<variable id=\"err71\">༧༡ ཌིཀསི་གྲ་སྒྲིག་མེདཔ </variable>"
@@ -853,7 +764,6 @@ msgstr "<variable id=\"err71\">༧༡ ཌིཀསི་གྲ་སྒྲིག
msgctxt ""
"00000003.xhp\n"
"par_id3148894\n"
-"72\n"
"help.text"
msgid "<variable id=\"err73\">73 Not implemented</variable>"
msgstr "<variable id=\"err73\">༧༣ ཁྱད་རྣམ་བསྟར་སྤྱོད་མ་འབདཝ་ </variable>"
@@ -862,7 +772,6 @@ msgstr "<variable id=\"err73\">༧༣ ཁྱད་རྣམ་བསྟར་ས
msgctxt ""
"00000003.xhp\n"
"par_id3152981\n"
-"73\n"
"help.text"
msgid "<variable id=\"err74\">74 Renaming on different drives impossible</variable>"
msgstr "<variable id=\"err74\">༧༤ བསྐྱར་མིང་མེདཔ་དང་ཅིག་ཁར་འདྲེན་འཕྲུལ་སོ་སོ་ </variable>"
@@ -871,7 +780,6 @@ msgstr "<variable id=\"err74\">༧༤ བསྐྱར་མིང་མེདཔ
msgctxt ""
"00000003.xhp\n"
"par_id3149355\n"
-"74\n"
"help.text"
msgid "<variable id=\"err75\">75 Path/file access error</variable>"
msgstr "<variable id=\"err75\">༧༥ འགྲུལ་ལམ/ཡིག་སྣོད་འཛུལ་སྤྱོད་འབད་ནི་འཛོལ་བ </variable>"
@@ -880,7 +788,6 @@ msgstr "<variable id=\"err75\">༧༥ འགྲུལ་ལམ/ཡིག་ས
msgctxt ""
"00000003.xhp\n"
"par_id3150477\n"
-"75\n"
"help.text"
msgid "<variable id=\"err76\">76 Path not found</variable>"
msgstr "<variable id=\"err76\">༧༦ འགྲུལ་ལམ་འཚོལ་མ་ཐོབ </variable>"
@@ -889,7 +796,6 @@ msgstr "<variable id=\"err76\">༧༦ འགྲུལ་ལམ་འཚོལ་
msgctxt ""
"00000003.xhp\n"
"par_id3154678\n"
-"76\n"
"help.text"
msgid "<variable id=\"err91\">91 Object variable not set</variable>"
msgstr "<variable id=\"err91\">༩༡ དངོས་པོ་འགྱུར་ཅན་གཞི་སྒྲིག་མ་འབདཝ </variable>"
@@ -898,7 +804,6 @@ msgstr "<variable id=\"err91\">༩༡ དངོས་པོ་འགྱུར་
msgctxt ""
"00000003.xhp\n"
"par_id3149890\n"
-"77\n"
"help.text"
msgid "<variable id=\"err93\">93 Invalid string pattern</variable>"
msgstr "<variable id=\"err93\">༩༣ ནུས་མེད་དཔེ་གཞི་འིག་རྒྱུན་ </variable>"
@@ -907,7 +812,6 @@ msgstr "<variable id=\"err93\">༩༣ ནུས་མེད་དཔེ་གཞ
msgctxt ""
"00000003.xhp\n"
"par_id3146942\n"
-"78\n"
"help.text"
msgid "<variable id=\"err94\">94 Use of zero not permitted</variable>"
msgstr "<variable id=\"err4\">༤ འགོ་ལས་ལོག་འབད་ </variable>"
@@ -1076,7 +980,6 @@ msgstr "<variable id=\"err424\">༤༢༤ དངོས་པོ་དགོས
msgctxt ""
"00000003.xhp\n"
"par_id3150028\n"
-"79\n"
"help.text"
msgid "<variable id=\"err323\">323 Module cannot be loaded; invalid format</variable>"
msgstr "<variable id=\"err323\">༣༢༣ ཚད་གཞི་མངོན་གསལ་འབད་མ་བཏུབ་ </variable>"
@@ -1085,7 +988,6 @@ msgstr "<variable id=\"err323\">༣༢༣ ཚད་གཞི་མངོན་
msgctxt ""
"00000003.xhp\n"
"par_id3148434\n"
-"80\n"
"help.text"
msgid "<variable id=\"err341\">341 Invalid object index</variable>"
msgstr "<variable id=\"err341\">༣༤༡ ནུས་མེད་དངོས་པོ་ཟུར་ཐོ </variable>"
@@ -1094,7 +996,6 @@ msgstr "<variable id=\"err341\">༣༤༡ ནུས་མེད་དངོས
msgctxt ""
"00000003.xhp\n"
"par_id3143219\n"
-"81\n"
"help.text"
msgid "<variable id=\"err366\">366 Object is not available</variable>"
msgstr "<variable id=\"err68\">༦༨ ཐབས་འཕྲུལ་ཐོབ་མ་ཚུགསཔ </variable>"
@@ -1103,7 +1004,6 @@ msgstr "<variable id=\"err68\">༦༨ ཐབས་འཕྲུལ་ཐོབ་
msgctxt ""
"00000003.xhp\n"
"par_id3144744\n"
-"82\n"
"help.text"
msgid "<variable id=\"err380\">380 Incorrect property value</variable>"
msgstr "<variable id=\"err380\">༣༨༠ བྱང་ཉེས་རྒྱུ་དངོས་གནས་གོང་ </variable>"
@@ -1112,7 +1012,6 @@ msgstr "<variable id=\"err380\">༣༨༠ བྱང་ཉེས་རྒྱུ
msgctxt ""
"00000003.xhp\n"
"par_id3147420\n"
-"83\n"
"help.text"
msgid "<variable id=\"err382\">382 This property is read-only</variable>"
msgstr "<variable id=\"err382\">༣༨༢ རྒྱུ་དངོས་པོ་འདི་གྲ་སྒྲིག་རྐྱངམ་ཅིག </variable>"
@@ -1121,7 +1020,6 @@ msgstr "<variable id=\"err382\">༣༨༢ རྒྱུ་དངོས་པོ
msgctxt ""
"00000003.xhp\n"
"par_id3147472\n"
-"84\n"
"help.text"
msgid "<variable id=\"err394\">394 This property is write-only</variable>"
msgstr "<variable id=\"err394\">༣༩༤ རྒྱུ་དངོས་འདི་འབྲི་ནི་རྐྱངམ་ཅིག </variable>"
@@ -1130,7 +1028,6 @@ msgstr "<variable id=\"err394\">༣༩༤ རྒྱུ་དངོས་འད
msgctxt ""
"00000003.xhp\n"
"par_id3148583\n"
-"85\n"
"help.text"
msgid "<variable id=\"err420\">420 Invalid object reference</variable>"
msgstr "<variable id=\"err420\">༤༢༠ ནུས་མེད་དངོས་པོ་གཞི་མཐུན་ </variable>"
@@ -1139,7 +1036,6 @@ msgstr "<variable id=\"err420\">༤༢༠ ནུས་མེད་དངོས
msgctxt ""
"00000003.xhp\n"
"par_id3153329\n"
-"86\n"
"help.text"
msgid "<variable id=\"err423\">423 Property or method not found</variable>"
msgstr "<variable id=\"err423\">༤༢༣ རྒྱུ་དངོས་ཡང་ན་ཐབས་ལམ་འཚོལ་མ་ཐོབ་ </variable>"
@@ -1148,7 +1044,6 @@ msgstr "<variable id=\"err423\">༤༢༣ རྒྱུ་དངོས་ཡང
msgctxt ""
"00000003.xhp\n"
"par_id3148738\n"
-"87\n"
"help.text"
msgid "<variable id=\"err424\">424 Object required</variable>"
msgstr "<variable id=\"err424\">༤༢༤ དངོས་པོ་དགོས་མཁོ་ཡོདཔ་ </variable>"
@@ -1157,7 +1052,6 @@ msgstr "<variable id=\"err424\">༤༢༤ དངོས་པོ་དགོས
msgctxt ""
"00000003.xhp\n"
"par_id3159084\n"
-"88\n"
"help.text"
msgid "<variable id=\"err425\">425 Invalid use of an object</variable>"
msgstr "<variable id=\"err425\">༤༢༥ ནུས་མེད་དངོས་པོའི་ལག་ལེན་ </variable>"
@@ -1166,7 +1060,6 @@ msgstr "<variable id=\"err425\">༤༢༥ ནུས་མེད་དངོས
msgctxt ""
"00000003.xhp\n"
"par_id3146806\n"
-"89\n"
"help.text"
msgid "<variable id=\"err430\">430 OLE Automation is not supported by this object</variable>"
msgstr "<variable id=\"err440\">༤༤༠ ཨོ་ཨེལ་ཨི་འཕྲུལ་སྤྱོད་འཛོལ་བ་ </variable>"
@@ -1175,7 +1068,6 @@ msgstr "<variable id=\"err440\">༤༤༠ ཨོ་ཨེལ་ཨི་འཕ
msgctxt ""
"00000003.xhp\n"
"par_id3146130\n"
-"90\n"
"help.text"
msgid "<variable id=\"err438\">438 This property or method is not supported by the object</variable>"
msgstr "<variable id=\"err423\">༤༢༣ རྒྱུ་དངོས་ཡང་ན་ཐབས་ལམ་འཚོལ་མ་ཐོབ་ </variable>"
@@ -1184,7 +1076,6 @@ msgstr "<variable id=\"err423\">༤༢༣ རྒྱུ་དངོས་ཡང
msgctxt ""
"00000003.xhp\n"
"par_id3154374\n"
-"91\n"
"help.text"
msgid "<variable id=\"err440\">440 OLE automation error</variable>"
msgstr "<variable id=\"err440\">༤༤༠ ཨོ་ཨེལ་ཨི་འཕྲུལ་སྤྱོད་འཛོལ་བ་ </variable>"
@@ -1193,7 +1084,6 @@ msgstr "<variable id=\"err440\">༤༤༠ ཨོ་ཨེལ་ཨི་འཕ
msgctxt ""
"00000003.xhp\n"
"par_id3149685\n"
-"92\n"
"help.text"
msgid "<variable id=\"err445\">445 This action is not supported by given object</variable>"
msgstr "<variable id=\"err445\">༤༤༥ དངོས་པོ་གིས་འ་ནི་བྱ་བ་རྒྱབ་སྐྱོར་འབད་མི་བཏུབ་ </variable>"
@@ -1202,7 +1092,6 @@ msgstr "<variable id=\"err445\">༤༤༥ དངོས་པོ་གིས་
msgctxt ""
"00000003.xhp\n"
"par_id3150282\n"
-"93\n"
"help.text"
msgid "<variable id=\"err446\">446 Named arguments are not supported by given object</variable>"
msgstr "<variable id=\"err448\">༤༤༨ མིང་བཏགས་མི་སྒྲུབ་རྟགས་འཚོལ་མ་ཐོབ </variable>"
@@ -1211,7 +1100,6 @@ msgstr "<variable id=\"err448\">༤༤༨ མིང་བཏགས་མི་
msgctxt ""
"00000003.xhp\n"
"par_id3150142\n"
-"94\n"
"help.text"
msgid "<variable id=\"err447\">447 The current locale setting is not supported by the given object</variable>"
msgstr "<variable id=\"err445\">༤༤༥ དངོས་པོ་གིས་འ་ནི་བྱ་བ་རྒྱབ་སྐྱོར་འབད་མི་བཏུབ་ </variable>"
@@ -1220,7 +1108,6 @@ msgstr "<variable id=\"err445\">༤༤༥ དངོས་པོ་གིས་
msgctxt ""
"00000003.xhp\n"
"par_id3152771\n"
-"95\n"
"help.text"
msgid "<variable id=\"err448\">448 Named argument not found</variable>"
msgstr "<variable id=\"err448\">༤༤༨ མིང་བཏགས་མི་སྒྲུབ་རྟགས་འཚོལ་མ་ཐོབ </variable>"
@@ -1229,7 +1116,6 @@ msgstr "<variable id=\"err448\">༤༤༨ མིང་བཏགས་མི་
msgctxt ""
"00000003.xhp\n"
"par_id3145145\n"
-"96\n"
"help.text"
msgid "<variable id=\"err449\">449 Argument is not optional</variable>"
msgstr "<variable id=\"err449\">༤༤༩ སྒྲུབ་རྟགས་གདམ་ཁ་ཅན་མེནམ་ </variable>"
@@ -1238,7 +1124,6 @@ msgstr "<variable id=\"err449\">༤༤༩ སྒྲུབ་རྟགས་ག
msgctxt ""
"00000003.xhp\n"
"par_id3154399\n"
-"97\n"
"help.text"
msgid "<variable id=\"err450\">450 Invalid number of arguments</variable>"
msgstr "<variable id=\"err450\">༤༥༠ ཨང་གི་ཕྱི་འགྱུར་གྱི་ཨང་ </variable>"
@@ -1247,7 +1132,6 @@ msgstr "<variable id=\"err450\">༤༥༠ ཨང་གི་ཕྱི་འག
msgctxt ""
"00000003.xhp\n"
"par_id3146137\n"
-"98\n"
"help.text"
msgid "<variable id=\"err451\">451 Object is not a list</variable>"
msgstr "<variable id=\"err451\">༤༥༡ དངོས་པོ་བསྡུ་གསོག་མེནམ་ </variable>"
@@ -1256,7 +1140,6 @@ msgstr "<variable id=\"err451\">༤༥༡ དངོས་པོ་བསྡུ
msgctxt ""
"00000003.xhp\n"
"par_id3149507\n"
-"99\n"
"help.text"
msgid "<variable id=\"err452\">452 Invalid ordinal number</variable>"
msgstr "<variable id=\"err452\">༤༥༢ ནུས་མེད་གོ་རིམ་ཨང་ </variable>"
@@ -1265,7 +1148,6 @@ msgstr "<variable id=\"err452\">༤༥༢ ནུས་མེད་གོ་ར
msgctxt ""
"00000003.xhp\n"
"par_id3154566\n"
-"100\n"
"help.text"
msgid "<variable id=\"err453\">453 Specified DLL function not found</variable>"
msgstr "<variable id=\"err453\">༤༥༣ གསལ་བཀོད་འབད་མི་ ཌི་ཨེལ་ཨེལ་ ལས་འགན་འཚོལ་མ་ཐོབ་ </variable>"
@@ -1274,7 +1156,6 @@ msgstr "<variable id=\"err453\">༤༥༣ གསལ་བཀོད་འབད
msgctxt ""
"00000003.xhp\n"
"par_id3145595\n"
-"101\n"
"help.text"
msgid "<variable id=\"err460\">460 Invalid clipboard format</variable>"
msgstr "<variable id=\"err460\">༤༦༠ ནུས་མེད་འཛིན་པང་རྩ་སྒྲིག་ </variable>"
@@ -1579,7 +1460,6 @@ msgstr "$[officename] གཞི་རྟེན་ཅིག་ཁར་ལས་
msgctxt ""
"01000000.xhp\n"
"hd_id3156027\n"
-"1\n"
"help.text"
msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Programming with $[officename] Basic \">Programming with $[officename] Basic </link></variable>"
msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Programming with $[officename] Basic \"> $[officename] གཞི་རྟེན་ཅིག་ཁར་ལས་རིམ་བཟོ་དོ </link></variable>"
@@ -1588,7 +1468,6 @@ msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\
msgctxt ""
"01000000.xhp\n"
"par_id3153708\n"
-"2\n"
"help.text"
msgid "This is where you find general information about working with macros and $[officename] Basic."
msgstr "འ་ནི་ས་སྒོ་འདི་ཁྱོད་ཀྱིས་ $[officename] གཞི་རྟེན་དང་མེཀརོསི་ཅིག་ཁར་ལཱ་འབད་ནིའི་སྐོར་ལས་ཡོངས་ཁྱབ་བརྡ་དོན་འཚོལ་ས་ཨིན།"
@@ -1613,7 +1492,6 @@ msgstr "<bookmark_value>གཞི་རྟེན་ གཞི་རྩ་ཚུ
msgctxt ""
"01010210.xhp\n"
"hd_id3154927\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Basics\">Basics</link>"
msgstr "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Basics\">གཞི་རྟེན་ཚུ་</link>"
@@ -1622,7 +1500,6 @@ msgstr "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Basics\">གཞི
msgctxt ""
"01010210.xhp\n"
"par_id3156023\n"
-"14\n"
"help.text"
msgid "This section provides the fundamentals for working with $[officename] Basic."
msgstr "འ་དི་དབྱེ་ཚན་གྱིས་$[officename] གཞི་རྟེན་ཅིག་ཁར་ལཱ་འབད་ནི་དོན་ལུ་གཞི་རྩ་འདི་ཚུ་བྱིནམ་ཨིན།"
@@ -1631,7 +1508,6 @@ msgstr "འ་དི་དབྱེ་ཚན་གྱིས་$[officename] ག
msgctxt ""
"01010210.xhp\n"
"par_id3147560\n"
-"2\n"
"help.text"
msgid "$[officename] Basic code is based on subroutines and functions that are specified between <emph>sub...end sub</emph> and <emph>function...end function</emph> sections. Each Sub or Function can call other Subs and Functions. If you take care to write generic code for a Sub or Function, you can probably re-use it in other programs. See also <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedures and Functions\">Procedures and Functions</link>."
msgstr "$[officename] གཞི་རྟེན་ཨང་རྟགས་འདི་ཡན་ལག་རྒྱུན་ལས་ཚུ་དང་ལས་འགན་ཚུའི་བར་་ན་གསལ་བཀོད་ཡོད་མི་ <emph>ཡན་ལག...མཇུག་ ཡན་ལག་</emph> དང <emph>ལས་འགན...མཇུག་ ལས་འགན་</emph> དབྱེ་ཚན་ཚུ་གུ་གཞི་བཞགཔ་ཨིན། ཡན་ལག་ཡང་ན་ལས་འགན་རེ་རེ་གིས་གཞན་ཡན་ལག་ཚུ་དང་ལས་འགན་ཚུ་བོད་ཆོག ཁྱོད་ཀྱིས་ཡན་ལག་ཡང་ན་ལས་འགན་གྱི་དོན་ལུ་དབྱེ་རྟགས་ཨང་འབྲི་ནི་ལུ་བདག་འཛིན་འབད་བཞག་པ་ཅིན་གཞན་ལས་རིམ་ཚུ་ནང་ལུ་བསྐྱར་སྤྱོད་འབད་བཏུབ། ད་རུང་<link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedures and Functions\">བྱ་སྒོའི་ལམ་ལུགས་ཚུ་དང་ལས་འགན་ཚུ་་བལྟ།</link>."
@@ -1648,7 +1524,6 @@ msgstr ""
msgctxt ""
"01010210.xhp\n"
"hd_id3150398\n"
-"3\n"
"help.text"
msgid "What is a Sub?"
msgstr "ཡན་ལག་ཟེར་མི་འདི་ག་ཅི་སྨོ?"
@@ -1657,7 +1532,6 @@ msgstr "ཡན་ལག་ཟེར་མི་འདི་ག་ཅི་སྨ
msgctxt ""
"01010210.xhp\n"
"par_id3148797\n"
-"4\n"
"help.text"
msgid "<emph>Sub</emph> is the short form of <emph>subroutine</emph>, that is used to handle a certain task within a program. Subs are used to split a task into individual procedures. Splitting a program into procedures and sub-procedures enhances readability and reduces the error-proneness. A sub possibly takes some arguments as parameters but does not return any values back to the calling sub or function, for example:"
msgstr "<emph>འོག་མ་</emph> འདི་འབྲི་ཤོག་ཐུང་ཀུ་གི་ <emph>རྒྱུན་ལས་འོག་མ</emph> ལས་རིམ་ནང་འཁོད་ལས་ཀ་ལ་ལོ་ཅིག་ལེགས་སྐྱོང་འཐབ་ནི་ལུ་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན། འོག་མ་ཚུ་ལས་ཀ་བྱ་སྒོའི་ལམ་ལུགས་ཚུ་ངོ་རྐྱང་ལུ་གཤག་ནི་ལུ་ལག་ལེན་འཐབ་ཨིན། ལས་རིམ་འདི་བྱ་སྒོའི་ལམ་ལུགས་དང་་བྱ་སྒོའི་ལལམ་ལུགས་འོག་མ་ཚུ་ལུ་གཤག་མི་འདི་ཡིས་ལྷག་ཚུགསཔ་བཟོ་ནི་དང་འཛོལ་བ་ཉེན་ཁ་ཅན་ཚུ་མར་ཕབ་འབདཝ་ཨིན། འོག་མ་ཅིག་གིས་སྒྲུབ་རྟགས་ལ་ལོ་ཅིག་ཚད་བཟུང་བཟུམ་སྦེ་འབག་འོང་སྲིད་དེ་འབཐཝ་ད་གནས་གོང་ཚུ་གང་རུང་ལོག་འོག་མ་ཡང་ན་ལས་འགན་ལུ་བོད་པར་སླར་ལོག་མི་འོང་ དཔེར་ན་:"
@@ -1666,7 +1540,6 @@ msgstr "<emph>འོག་མ་</emph> འདི་འབྲི་ཤོག་
msgctxt ""
"01010210.xhp\n"
"par_id3150868\n"
-"15\n"
"help.text"
msgid "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
msgstr "གནས་གོང་ཚུ་ཅིག་ཁར་གང་རུང་འབད།(ངེའི་གནས་གོང་དང་པ,ངེའི་གནས་གོང་གཉིས་པ་)"
@@ -1675,7 +1548,6 @@ msgstr "གནས་གོང་ཚུ་ཅིག་ཁར་གང་རུང
msgctxt ""
"01010210.xhp\n"
"hd_id3156282\n"
-"5\n"
"help.text"
msgid "What is a Function?"
msgstr "ལས་འགན་ཟེར་མི་ག་ཅི་སྨོ?"
@@ -1684,7 +1556,6 @@ msgstr "ལས་འགན་ཟེར་མི་ག་ཅི་སྨོ?"
msgctxt ""
"01010210.xhp\n"
"par_id3156424\n"
-"6\n"
"help.text"
msgid "A <emph>function</emph> is essentially a sub, which returns a value. You may use a function at the right side of a variable declaration, or at other places where you normally use values, for example:"
msgstr "<emph>ལས་འགན་འདི་</emph> གནས་གོང་སླར་ལོག་མི་ངེས་པར་མཁོ་བའི་ཡན་ལག་གཅིག་ཨིན། ཁྱོད་ཀྱིས་འགྱུར་ཅན་གསལ་བསྒྲགས་ཅིག་གི་གཡས་ཁ་ཐུག་ལུ་ལས་འགན་ ་ཡང་ན་གཞན་ས་སྒོ་སྤྱིར་བཏང་ཁྱོད་ཀྱིས་ལག་ལེན་འཐབ་པའི་གནས་གོང་ཚུ་ནང་ལག་ལེན་འཐབ་འོང་ དཔེར་ན་:"
@@ -1693,7 +1564,6 @@ msgstr "<emph>ལས་འགན་འདི་</emph> གནས་གོང་
msgctxt ""
"01010210.xhp\n"
"par_id3146985\n"
-"7\n"
"help.text"
msgid "MySecondValue = myFunction(MyFirstValue)"
msgstr "ངེའི་གནས་གོང་གཉིས་པ་ = ངེའི་ལས་འགན(ངེའི་གནས་གོང་དང་པ)"
@@ -1702,7 +1572,6 @@ msgstr "ངེའི་གནས་གོང་གཉིས་པ་ = ངེའ
msgctxt ""
"01010210.xhp\n"
"hd_id3153364\n"
-"8\n"
"help.text"
msgid "Global and local variables"
msgstr "སྤྱི་ཁྱབ་དང་ཉེ་གནས་འགྱུར་ཅན་ཚུ།"
@@ -1711,7 +1580,6 @@ msgstr "སྤྱི་ཁྱབ་དང་ཉེ་གནས་འགྱུར
msgctxt ""
"01010210.xhp\n"
"par_id3151112\n"
-"9\n"
"help.text"
msgid "Global variables are valid for all subs and functions inside a module. They are declared at the beginning of a module before the first sub or function starts."
msgstr "སྤྱི་ཁྱབ་འགྱུར་ཅན་ཚུ་ཆ་མཉམ་ཡན་ལག་ཚུ་ཆ་མཉམ་དང་ཚད་གཞི་ནང་གི་ལས་འགན་ཚུ་ལུ་ནུས་ཅན་ཨིན། ཁོང་ཆ་མཉམ་ལས་འགན་འགོ་བཙུགསཔ་ཡང་ན་ཚད་གཞིའི་ཧེ་མ་ཡན་ལག་འགོ་བཙུགསཔ་ད་ལུ་གསལ་བསྒྲགས་འབད་ཡོདཔ་ཨིན།"
@@ -1720,7 +1588,6 @@ msgstr "སྤྱི་ཁྱབ་འགྱུར་ཅན་ཚུ་ཆ་མ
msgctxt ""
"01010210.xhp\n"
"par_id3154012\n"
-"10\n"
"help.text"
msgid "Variables that you declare within a sub or function are valid only inside this sub or function. These variables override global variables with the same name and local variables with the same name coming from superordinate subs or functions."
msgstr "ཁྱོད་ཀྱིས་འོག་མ་ཡང་ན་ལས་འགན་ནང་འཁོད་གསལ་བསྒྲགས་འབད་མི་འགྱུར་ཅན་ཚུ་ཆ་མཉམ་འ་ནི་འོག་མ་ཡང་ན་ལས་འགན་ནང་ན་རྐྱངམ་ཅིག་ནུས་ཅན་ཨིན། འགྱུར་ཅན་དེ་ཚུ་གིས་འོག་མ་ཚུ་ཡང་ན་ལས་འགན་ཚུ་མཐོ་ཤོས་ནང་ལས་འོང་མི་མིང་གཅིགཔ་བཅས་ཉེན་གནས་འགྱུར་ཅན་ཚུ་དང་མིང་གཅིགཔ་དང་འགྱུར་ཅན་སྤྱི་ཁྱབ་ཟུར་བཟག་འབདཝ་ཨིན།"
@@ -1729,7 +1596,6 @@ msgstr "ཁྱོད་ཀྱིས་འོག་མ་ཡང་ན་ལས་
msgctxt ""
"01010210.xhp\n"
"hd_id3150010\n"
-"11\n"
"help.text"
msgid "Structuring"
msgstr "གཞི་བཀོད་འབད་དོ།"
@@ -1738,7 +1604,6 @@ msgstr "གཞི་བཀོད་འབད་དོ།"
msgctxt ""
"01010210.xhp\n"
"par_id3153727\n"
-"12\n"
"help.text"
msgid "After separating your program into procedures and functions (Subs and Functions), you can save these procedures and functions as files for reuse in other projects. $[officename] Basic supports <link href=\"text/sbasic/shared/01020500.xhp\" name=\"Modules and Libraries\">Modules and Libraries</link>. Subs and functions are always contained in modules. You can define modules to be global or part of a document. Multiple modules can be combined to a library."
msgstr "ཁྱོད་རའི་ལས་རིམ་བྱ་སྒོའི་ལམ་ལུགས་ཚུ་དང་ལས་འགན་ཚུ་ནང་དབྱེ་སེལ་འབད་ཚར་བའི་ཤུལ་ལུ (Subs and Functions), ཁྱོད་ཀྱིས་གཞན་ལས་འགུལ་ཚུ་ནང་བསྐྱར་ལག་ལེན་འཐབ་ནི་དོན་ལུ་འ་ནི་བྱ་སྒོའི་ལམ་ལུགས་ཚུ་དང་ལས་འགན་ཚུ་སརུང་བཞག་འབད་རུང་བཏུབ། $[officename] གཞི་རིམ་གྱིས་ <link href=\"text/sbasic/shared/01020500.xhp\" name=\"Modules and Libraries\"> ཚད་བཟུང་ཚུ་དང་དཔེར་མཛོད་ཚུ་ལུ་རྒྱབ་སྐྱོར་འབདཝ་ཨིནཝ</link>. འོག་མ་ཚུ་དང་ལས་འགན་ཚུ་ཆ་མཉམ་ཨ་རྟག་ར་ཚད་བཟུང་ནང་ན་ཡོདཔ་ཨིན། ཁྱོད་ཀྱིས་ཚད་བཟུང་ཚུ་སྤྱི་ཁྱབ་ལུ་་ཡང་ན་ ཡིག་ཆ་གི་ཡན་ལག་སྦེ་ངེས་ཚིག་འབད་རུང་བཏུབ། སྣ་མང་ཚད་བཟུང་ཚུ་དཔེར་མཛོད་ལུ་མཉམ་མཐུད་འབད་བཏུབ་ཨིན།"
@@ -1747,7 +1612,6 @@ msgstr "ཁྱོད་རའི་ལས་རིམ་བྱ་སྒོའི
msgctxt ""
"01010210.xhp\n"
"par_id3152578\n"
-"13\n"
"help.text"
msgid "You can copy or move subs, functions, modules and libraries from one file to another by using the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog."
msgstr "ཁྱོད་ཀྱིས་ཡན་ལག་ཚུ་ ཚད་གཞི་ཚུ་དང་དཔེ་མཛོད་ཚུ་ཡིག་སྣོད་གཅིག་ནང་ལས་གཅིག་ནང་ལུ་ <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro\">མེཀརོ་</link> ཌའི་ལོག་ ལག་ལེན་འཐབ་འདི་འདྲ་བཤུས་ཡང་ན་སྤོ་བཏུབ།"
@@ -1764,7 +1628,6 @@ msgstr "ཚིག་སྦྱོར།"
msgctxt ""
"01020000.xhp\n"
"hd_id3148946\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Syntax\">Syntax</link>"
msgstr "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Syntax\">ཚིག་སྦྱོར་</link>"
@@ -1773,7 +1636,6 @@ msgstr "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Syntax\">ཚིག
msgctxt ""
"01020000.xhp\n"
"par_id3150793\n"
-"2\n"
"help.text"
msgid "This section describes the basic syntax elements of $[officename] Basic. For a detailed description please refer to the $[officename] Basic Guide which is available separately."
msgstr "འ་ནི་དབྱེ་ཚན་གྱིས་$[officename] གཞི་རྟེན་གྱི་རྒྱུ་རྫས་ཚུའི་ཚིག་སྦྱོར་གཞི་རྟེན་འདི་འགྲེལ་བཤད་འབདཝ་ཨིན། འགྲེལ་བཤད་རྒྱས་བཤད་ཀྱི་དོན་ལུ་ $[officename] གཞི་རྟེན་ འཁྱིད་ནི་སོ་སོ་འཕྱེལ་འཕྱེལཝ་ཐོབ་ཚུགས་མི་འདི་ནང་ལུ་གཞི་བསྟུན་འབད་ནང་།"
@@ -1787,7 +1649,6 @@ msgid "Using Variables"
msgstr "འགྱུར་ཅན་ཚུ་ལག་ལེན་འཐབ་དོ།"
#: 01020100.xhp
-#, fuzzy
msgctxt ""
"01020100.xhp\n"
"bm_id3149346\n"
@@ -2351,7 +2212,6 @@ msgstr "དངོས་པོ་ཚུ་ལག་ལེན་འཐབ་དོ
msgctxt ""
"01020200.xhp\n"
"hd_id3145645\n"
-"1\n"
"help.text"
msgid "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\">Using the Object Catalog</link></variable>"
msgstr "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\">དངོས་པོའི་ཐོ་གཞུང་ལག་ལེན་འཐབ་དོ་</link></variable>"
@@ -2360,7 +2220,6 @@ msgstr "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\"
msgctxt ""
"01020200.xhp\n"
"par_id3153707\n"
-"76\n"
"help.text"
msgid "The object catalog provides an overview of all modules and dialogs you have created in $[officename]."
msgstr "དངོས་པོའི་ཐོ་གཞུང་འདི་གིས་$[officename] ནང་གི་ཚད་གཞི་ཚུ་ཆ་མཉམ་དང་ཌའི་ལོགསི་གསར་་བསྐྲུན་འབད་བའི་སྤྱི་མཐོང་འབད་བྱིནམ་ཨིན།"
@@ -2369,7 +2228,6 @@ msgstr "དངོས་པོའི་ཐོ་གཞུང་འདི་གི
msgctxt ""
"01020200.xhp\n"
"par_id3147346\n"
-"78\n"
"help.text"
msgid "Click the <emph>Object Catalog</emph> icon <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Icon</alt></image> in the Macro toolbar to display the object catalog."
msgstr "དངོས་པོ་ཐོ་གཞུང་ <emph>ངོས་དཔར་</emph> ཨེབ་གཏང་འབད་ <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">ངོས་དཔར་</alt></image> མེཀརོ་ལག་ཆ་ཕྲ་རིང་འདི་ནང་ལུ་དངོས་པོ་ཐོ་གཞུང་བཀྲམ་བཏོན་དོན་ལུ།"
@@ -2378,7 +2236,6 @@ msgstr "དངོས་པོ་ཐོ་གཞུང་ <emph>ངོས་ད
msgctxt ""
"01020200.xhp\n"
"par_id3155114\n"
-"79\n"
"help.text"
msgid "The dialog shows a list of all existing objects in a hierarchical representation. Double-clicking a list entry opens its subordinate objects."
msgstr "ཌའི་ལོག་འདི་གིས་སྡེ་རིམ་ཁྱབ་ཚད་ནང་་ལུ་ཡོད་པའི་དངོས་པོ་ཆ་མཉམ་གྱི་ཐོ་ཚུ་སྟོནམ་ཨིན། ཐོ་ཡིག་ཐོ་བཀོད་ལོག་བལྟབ་ཨེབ་གཏང་ནི་འདི་གིས་ཁོ་རའི་འོག་མའི་དངོས་པོ་ཚུ་ཁ་ཕྱེཝ་ཨིན།"
@@ -2387,7 +2244,6 @@ msgstr "ཌའི་ལོག་འདི་གིས་སྡེ་རིམ་
msgctxt ""
"01020200.xhp\n"
"par_id3150786\n"
-"83\n"
"help.text"
msgid "To display a certain module in the Editor or to position the cursor in a selected SUB or FUNCTION, double click on the corresponding entry."
msgstr ""
@@ -2401,7 +2257,6 @@ msgid "Using Procedures and Functions"
msgstr "བྱ་སྒོའི་ལམ་ལུགས་ཚུ་དང་ལས་འགན་ཚུ་ལག་ལེན་འཐབ་དོ།"
#: 01020300.xhp
-#, fuzzy
msgctxt ""
"01020300.xhp\n"
"bm_id3149456\n"
@@ -2538,7 +2393,6 @@ msgid "Variable=FunctionName(Parameter1, Parameter2,...)"
msgstr "འགྱུར་ཅན་=ལས་འགན་མིང་(ཚད་བཟུང་ ༡ ཚད་བཟུང་ ༢...)"
#: 01020300.xhp
-#, fuzzy
msgctxt ""
"01020300.xhp\n"
"par_idN107B3\n"
@@ -2659,7 +2513,6 @@ msgid "The variable is only valid in this module."
msgstr "འགྱུར་ཅན་འདི་འ་ནི་ཚད་བཟུང་ནང་རྐྱངམ་ཅིག་ནུས་ཅན་ཨིན།"
#: 01020300.xhp
-#, fuzzy
msgctxt ""
"01020300.xhp\n"
"par_id3150886\n"
@@ -2783,7 +2636,6 @@ msgstr "དཔེ་མཛོད་ཚུ་ ཚད་བཟུང་ཚུ་
msgctxt ""
"01020500.xhp\n"
"hd_id3147317\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Libraries, Modules and Dialogs\">Libraries, Modules and Dialogs</link>"
msgstr "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Libraries, Modules and Dialogs\">དཔེ་མཛོད་ཚུ་ ཚད་བཟུང་ཚུ་དང་ཌའི་ལོགསི།</link>"
@@ -2792,7 +2644,6 @@ msgstr "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Libraries, Modules
msgctxt ""
"01020500.xhp\n"
"par_id3147427\n"
-"2\n"
"help.text"
msgid "The following describes the basic use of libraries, modules and dialogs in $[officename] Basic."
msgstr "འོག་གི་འདི་གིས་$[officename] གཞི་རྟེན་ནང་ལུ་དཔེ་མཛོད་ཚུ་ ཚད་བཟུང་ཚུ་དང་ཌའི་ལོགསི་གི་གཞི་རྟེན་ལགལེན་ཚུ་འགྲེལ་འབད་དོ།"
@@ -2801,7 +2652,6 @@ msgstr "འོག་གི་འདི་གིས་$[officename] གཞི་
msgctxt ""
"01020500.xhp\n"
"par_id3146120\n"
-"3\n"
"help.text"
msgid "$[officename] Basic provides tools to help you structuring your projects. It supports various \"units\" which enable you to group individual SUBS and FUNCTIONS in a Basic project."
msgstr "$[officename] གཞི་རིམ་གྱིས་ཁྱོད་ལུ་ཁྱོད་རའི་ལས་འགུལ་ཚུ་གཞི་བཀོད་འབད་ནི་ལུ་འགྲོགས་རམ་གྱི་ལག་ཆས་ཚུ་བྱིནམ་ཨིན། འདི་གིས་ཁྱོད་ལུ་གཞི་རིམ་ལས་འགུལ་ནང་ལུ་ ལས་འགན་ཚུ་དང་འོག་མ་ཚུ་ ངོས་རྐྱང་སྡེ་ཚན་ལྕོགས་ཅན་ \"units\" འདྲ་མིན་སྣ་ཚོགས་བཟོ་ནི་ལུ་རྒྱབ་སྐྱོར་འབདཝ་ཨིན།"
@@ -2810,7 +2660,6 @@ msgstr "$[officename] གཞི་རིམ་གྱིས་ཁྱོད་ལ
msgctxt ""
"01020500.xhp\n"
"hd_id3148575\n"
-"5\n"
"help.text"
msgid "Libraries"
msgstr "དཔེ་མཛོད་ཚུ།"
@@ -2819,7 +2668,6 @@ msgstr "དཔེ་མཛོད་ཚུ།"
msgctxt ""
"01020500.xhp\n"
"par_id3150011\n"
-"6\n"
"help.text"
msgid "Libraries serve as a tool for organizing modules, and can either be attached to a document or a template. When the document or a template is saved, all modules contained in the library are automatically saved as well."
msgstr "དཔེར་མཛོད་ཚུ་གིས་ཚད་བཟུང་ཚུ་འགོ་འདྲེན་དོན་ལུ་ལག་ཆས་སྦེ་གསོག་འབདཝ་ཨིནམ་དང་ འདི་ཡང་ཡིག་ཆ་ཡང་ན་ཊེམ་པེལེཊི་ལུ་སྦྱར་བཏུབ། ཡིག་ཆ་འདི་ཡང་ན་ཊེམ་པེལེཊི་འདི་སྲུང་བཞགཔ་ད་ དཔེར་མཛོད་འདི་ནང་ན་ཡོད་མི་ཚད་བཟུང་ཚུ་ཆ་མཉམ་རང་བཞིན་གྱིས་སྲུང་བཞགཔ་ཨིན།"
@@ -2828,7 +2676,6 @@ msgstr "དཔེར་མཛོད་ཚུ་གིས་ཚད་བཟུང
msgctxt ""
"01020500.xhp\n"
"par_id3151112\n"
-"7\n"
"help.text"
msgid "A library can contain up to 16,000 modules."
msgstr "དཔེ་མཛོད་གཅིག་ནང་ན་ཚད་བཟུང་ ༡༦༠༠༠་ཚུན་ཡོདཔ་ཨིན།"
@@ -2837,7 +2684,6 @@ msgstr "དཔེ་མཛོད་གཅིག་ནང་ན་ཚད་བཟ
msgctxt ""
"01020500.xhp\n"
"hd_id3149262\n"
-"8\n"
"help.text"
msgid "Modules"
msgstr "ཚད་གཞི་ཚུ།"
@@ -2846,7 +2692,6 @@ msgstr "ཚད་གཞི་ཚུ།"
msgctxt ""
"01020500.xhp\n"
"par_id3156441\n"
-"9\n"
"help.text"
msgid "A module contains SUBS and FUNCTIONS along with variable declarations. The length of the program that can be saved in a module is limited to 64 KB. If more space is required you can divide a $[officename] Basic project among several modules, and then save them in a single library."
msgstr "ཚད་བཟུང་གཅིག་ནང་ན་ འོག་མ་དང་ལས་འགན་ཚུ་ བདའ་སྟེ་འགྱུར་ཅན་གསལ་བསྒྲགས་ཚུ་གཅིག་ཁར་་འོངམ་ཨིན། ཚད་བཟུང་ནང་སྲུང་བཞག་ནི་ཨིན་མི་ལས་རིམ་འདི་གི་་རིང་ཚད་འདིའི་བཅད་མཚམས་ ཀེ་བི་༦༤ ལུ་ཡོདཔ་ཨིན། བར་སྟོང་ཧེང་བཀལ་དགོས་མཁོ་ཡོད་པ་ཅིན་ཁྱོད་ཀྱིས་ $[officename] གཞི་རིམ་ལས་འགུལ་ཅིག་ཚད་བཟུང་་ལེ་ཤ་ཅིག་བར་ན་བགོ་ནི་དང དཔེར་མཛོད་རྐྱང་པ་ཅིག་ནང་སྲུང་བཞག་"
@@ -2855,7 +2700,6 @@ msgstr "ཚད་བཟུང་གཅིག་ནང་ན་ འོག་མ
msgctxt ""
"01020500.xhp\n"
"hd_id3152577\n"
-"11\n"
"help.text"
msgid "Dialog Modules"
msgstr "ཌའི་ལོག་ཚད་བཟུང་ཚུ།"
@@ -2864,7 +2708,6 @@ msgstr "ཌའི་ལོག་ཚད་བཟུང་ཚུ།"
msgctxt ""
"01020500.xhp\n"
"par_id3149377\n"
-"12\n"
"help.text"
msgid "Dialog modules contain dialog definitions, including the dialog box properties, the properties of each dialog element and the events assigned. Since a dialog module can only contain a single dialog, they are often referred to as \"dialogs\"."
msgstr "ཌའི་ལོག་ཚད་བཟུང་ཚུ་ནང་ན་ཌའི་ལོག་ངེས་ཚིག་ཚུའི་གྲངས་སུ་ ཌའི་ལོག་སྒྲོམ་གྱི་རྒྱུ་དངོས་ཚུ་ ཌའི་ལོག་རེ་རེ་ཆ་ཤས་ཀྱི་རྒྱུ་དངོས་ཚུ་དང་ འགན་སྤྲོད་ཡོད་མི་འབྱུང་ལས་ཚུ་ཡོདཔ་ཨིན། ལས་ཚུར་ལས་ཌའི་ལོག་འདི་ལུ་ཌའི་ལོག་རྐྱང་པ་རྐྱངམ་ཅིག་ཤོམ་ད་ ཁོང་ཆ་ཁྱབ་འཕྲལ་ཕྲལ་\"dialogs\" ལུ་སྦེ་གཞི་བསྟུན་འབདཝ་ཨིན།"
@@ -2889,7 +2732,6 @@ msgstr "<bookmark_value>གཞི་རྟེན་ ཨའི་ཌི་ཨི
msgctxt ""
"01030000.xhp\n"
"hd_id3145090\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Integrated Development Environment (IDE)\">Integrated Development Environment (IDE)</link>"
msgstr "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Integrated Development Environment (IDE)\">གཅིག་འབྲེལ་གོང་འཕེལ་མཐའ་འཁོར་ (ཨའི་ཌི༌ཨི)</link>"
@@ -2898,7 +2740,6 @@ msgstr "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Integrated Develop
msgctxt ""
"01030000.xhp\n"
"par_id3146795\n"
-"2\n"
"help.text"
msgid "This section describes the Integrated Development Environment for $[officename] Basic."
msgstr "འ་ནི་དབྱེ་ཚན་གྱིས་ $[officename] གཞི་རྟེན་དོན་ལུ་གཅིག་འབྲེལ་གོང་འཕེལ་མཐའ་འཁོར་གྱི་འགྲེལ་བཤད་འབདཝ་ཨིན།"
@@ -2915,7 +2756,6 @@ msgstr "ཨའི་ཌི་ཨི་སྤྱི་མཐོང་།"
msgctxt ""
"01030100.xhp\n"
"hd_id3147291\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"IDE Overview\">IDE Overview</link>"
msgstr "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"IDE Overview\">ཨའི་ཌི་ཨི་སྤྱི་མཐོང་།</link>"
@@ -2924,7 +2764,6 @@ msgstr "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"IDE Overview\">ཨ
msgctxt ""
"01030100.xhp\n"
"par_id3156344\n"
-"3\n"
"help.text"
msgid "The <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\"><emph>Macro Toolbar</emph></link> in the IDE provides various icons for editing and testing programs."
msgstr "མེཀརོ་ལག་ཆས་ཕྲ་རིང་<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\"><emph></emph></link> ཨའི་ཌི་ཨི་ནང་ཡོད་མི་འདི་གིས་ཞུན་དག་དང་ལས་རིམ་ཚུ་རྟག་ཞིབ་འབད་ནིའི་དོན་ལུ་ངོས་དཔར་འདྲ་མིན་སྣ་ཚོགས་བྱིནམ་ཨིན།"
@@ -2933,7 +2772,6 @@ msgstr "མེཀརོ་ལག་ཆས་ཕྲ་རིང་<link href=\"te
msgctxt ""
"01030100.xhp\n"
"par_id3151210\n"
-"4\n"
"help.text"
msgid "In the <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor window\"><emph>Editor window</emph></link>, directly below the Macro toolbar, you can edit the Basic program code. The column on the left side is used to set breakpoints in the program code."
msgstr "ཝིན་ཌོ་ཞུན་དག་<link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor window\"><emph>འདི་ནང་</emph></link>,ཁྱོད་ཀྱིས་མེཀོ་ལག་ཆས་ཕྲ་རིང་འོག་ལུ་ཐད་ཀར་དུ་གཞི་རིམ་ལས་རིམ་ཨང་རྟགས་འདི་ཞུན་དག་འབད་བཏུབ། གཡོན་ཕྱོགས་ཁ་ཐུག་གི་ཀེར་ཐིག་འདི་གུ་ལས་རིམ་ཨང་རྟགས་འདི་ནང་བེརེ་པོ་ཡིན་ཊིསི་གཞི་སྒྲིག་ལུ་ལག་ལེན་འཐབ་ཨིན།"
@@ -2942,7 +2780,6 @@ msgstr "ཝིན་ཌོ་ཞུན་དག་<link href=\"text/sbasic/share
msgctxt ""
"01030100.xhp\n"
"par_id3154686\n"
-"5\n"
"help.text"
msgid "The <link href=\"text/sbasic/shared/01050100.xhp\" name=\"Watch\"><emph>Watch window</emph></link> (observer) is located below the Editor window at the left, and displays the contents of variables or arrays during a single step process."
msgstr "ཝིན་ཌོ་བལྟ་ཞིབ་འབད་ནི་ <link href=\"text/sbasic/shared/01050100.xhp\" name=\"Watch\"><emph>འདི་</emph></link> (observer) གཡོན་ལུ་ཝིན་ཌོ་ཞུན་དག་འདིའི་འོག་ལུ་གནས་ཡོདཔ་དང་ འགྱུར་ཅན་ཚུའི་ནང་དོན་འདི་བཀྲམ་བཏོན་་ཡང་ན་ཨེ་རེ་ཚུའི་ལས་སྦྱོར་་རིམ་པ་རྐྱང་པ་སྐབས་བཀྲམ་བཏོནམ་ཨིན།"
@@ -2951,7 +2788,6 @@ msgstr "ཝིན་ཌོ་བལྟ་ཞིབ་འབད་ནི་ <link
msgctxt ""
"01030100.xhp\n"
"par_id3145787\n"
-"8\n"
"help.text"
msgid "The <emph>Call Stack</emph> window to the right provides information about the call stack of SUBS and FUNCTIONS when a program runs."
msgstr "བརྩེགས་ཕུང་བོད་བརྡ་ <emph>ཝིན་ཌོའི་གཡས་ཀྱིས་</emph> ལས་རིམ་གཡོག་བཀོལ་སྐབས་འོག་མ་ཚུ་དང་ལས་འགན་ཚུའི་བརྩེགས་ཕུང་བོད་བརྡའི་སྐོར་ལས་བརྡ་དོན་བྱིནམ་ཨིན།"
@@ -2960,7 +2796,6 @@ msgstr "བརྩེགས་ཕུང་བོད་བརྡ་ <emph>ཝི
msgctxt ""
"01030100.xhp\n"
"par_id3147434\n"
-"6\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
msgstr "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">གཞི་རྟེན་ ཨའི་ཌི་ཨི </link>"
@@ -2985,7 +2820,6 @@ msgstr "<bookmark_value>སྲུང་བཞག་འབད་དོ། གཞ
msgctxt ""
"01030200.xhp\n"
"hd_id3147264\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">The Basic Editor</link>"
msgstr "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">གཞི་རྟེན་ཞུན་དག་པ་འདི</link>"
@@ -2994,7 +2828,6 @@ msgstr "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\"
msgctxt ""
"01030200.xhp\n"
"par_id3145069\n"
-"3\n"
"help.text"
msgid "The Basic Editor provides the standard editing functions you are familiar with when working in a text document. It supports the functions of the <emph>Edit</emph> menu (Cut, Delete, Paste), the ability to select text with the Shift key, as well as cursor positioning functions (for example, moving from word to word with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and the arrow keys)."
msgstr "གཞི་རིམ་ཞུན་དག་པ་གིས་ཁྱོད་ཚིག་ཡིག་ ཡིག་ཆ་ནང་ལཱ་འབད་བའི་་སྐབས་འབྲེལ་བ་ཡོད་པའི་ཚད་ལྡན་ཞུན་དག་ལས་འགན་ཚུ་བྱིནམ་ཨིན། འདི་གིས་<emph>ཞུན་དག་</emph> དཀར་ཆག་(བཏོག་ནི་ བཏོན་གཏང་ནི་ སྦྱར་ནི་) སོ་ལྡེ་ ལྡེ་མིག་གཅིག་ཁར་ཚིག་ཡིག་སེལ་འཐུ་འབད་ནི་ དང་གཅིག་ཁར་འོད་རྟགས་གནས་ས་བཀོད་ནི་ལས་འགན་ཚུ་ཐོབ་ཚུགསཔ་བཟོ་ནི་རྒྱབ་སྐྱོར་འབདཝ་ཨིན (དཔེར་ན་ མིང་ཚིག་་ལས་མིང་ཚིག་་ལུ་སྤོ་ནི་གཅིཁག་ཁར་ <switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ནི་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline> དང་མདའ་རྟགས་ལྡེ་མིག་ཚུ། )."
@@ -3003,7 +2836,6 @@ msgstr "གཞི་རིམ་ཞུན་དག་པ་གིས་ཁྱོ
msgctxt ""
"01030200.xhp\n"
"par_id3154686\n"
-"31\n"
"help.text"
msgid "Long lines can be split into several parts by inserting a space and an underline character _ as the last two characters of a line. This connects the line with the following line to one logical line. (If \"Option Compatible\" is used in the same Basic module, the line continuation feature is also valid for comment lines.)"
msgstr "གྱལ་རིངམོ་ཚུ་གྱལ་གྱི་མཇུག་གི་ཡིག་འབྲུ་གཉིས་སྦེ་འོག་ཐིག་ཡིག་འབྲུ་_དང་བར་སྟོང་བཙུགས་ཐོག་ལས་ཡན་ལག་ལེ་ཤ་ཅིག་ལུ་གཤག་ཚུགས། འདི་གིས་གཏན་ཚིག་ཅན་གྱི་གྱལ་གཅིག་ལུ་འོག་གི་གྱལ་གཅིག་ཁར་གྱལ་མཐུདཔ་ཨིན། (\"Option Compatible\" འདི་གཞི་རིམ་ཚད་གཞི་གཅིག་པ་ནང་ལག་ལེན་འཐབ་ཡོད་པ་ཅིན་ གྱལ་མཐུད་ཁྱད་རྣམ་འདི་ཡང་བརྡ་བཀོད་གྲལ་ཐིག་ཚུའི་དོན་ལུ་ནུས་ཅན་ཨིན།)"
@@ -3012,7 +2844,6 @@ msgstr "གྱལ་རིངམོ་ཚུ་གྱལ་གྱི་མཇུ
msgctxt ""
"01030200.xhp\n"
"par_id3151042\n"
-"32\n"
"help.text"
msgid "If you press the <emph>Run BASIC</emph> icon on the <emph>Macro</emph> bar, program execution starts at the first line of the Basic editor. The program executes the first Sub or Function and then program execution stops. The \"Sub Main\" does not take precedence on program execution."
msgstr ""
@@ -3029,7 +2860,6 @@ msgstr ""
msgctxt ""
"01030200.xhp\n"
"hd_id3125863\n"
-"4\n"
"help.text"
msgid "Navigating in a Project"
msgstr "ལས་འགུལ་ནང་་འགྲུལ་བསྐྱོད་འབད་དོ།"
@@ -3038,7 +2868,6 @@ msgstr "ལས་འགུལ་ནང་་འགྲུལ་བསྐྱོད
msgctxt ""
"01030200.xhp\n"
"hd_id3145785\n"
-"6\n"
"help.text"
msgid "The Library List"
msgstr "དཔེ་མཛོད་ཐོ་ཡིག་འདི།"
@@ -3047,7 +2876,6 @@ msgstr "དཔེ་མཛོད་ཐོ་ཡིག་འདི།"
msgctxt ""
"01030200.xhp\n"
"par_id3146120\n"
-"7\n"
"help.text"
msgid "Select a library from the <emph>Library</emph> list at the left of the toolbar to load the library in the editor. The first module of the selected library will be displayed."
msgstr "དཔེར་མཛོད་ཐོ་ཡིག་ནང་ལས<emph>ཞུན་དག་འདི་ནང་དཔེར་མཛོད་འདི་མངོན་གསལ་འབད་ནི་ལུ་ལག་ཆས་ཕྲ་རིང་འདིའི་གཡོན་འདི་ནང་ལུ་དཔེར་མཛོད་</emph> སེལ་འཐུ་འབད། སེལ་འཐུ་འབད་ཡོད་པའི་དཔེར་མཛོད་ཀྱི་ཚད་གཞི་དང་པམ་འདི་བཀྲམ་བཏོན་འབད་བཞག་འོང་།"
@@ -3056,7 +2884,6 @@ msgstr "དཔེར་མཛོད་ཐོ་ཡིག་ནང་ལས<emph>
msgctxt ""
"01030200.xhp\n"
"hd_id3153190\n"
-"8\n"
"help.text"
msgid "The Object Catalog"
msgstr "དངོས་པོ་ཐོ་གཞུང་འདི།"
@@ -3065,7 +2892,6 @@ msgstr "དངོས་པོ་ཐོ་གཞུང་འདི།"
msgctxt ""
"01030200.xhp\n"
"hd_id3148647\n"
-"15\n"
"help.text"
msgid "Saving and Loading Basic Source Code"
msgstr "གཞི་རྟེན་འབྱིང་ཁུངས་ཨང་རྟགས་སྲིངས་བཞག་དང་མངོན་གསལ་འབད་དོ།"
@@ -3074,7 +2900,6 @@ msgstr "གཞི་རྟེན་འབྱིང་ཁུངས་ཨང་ར
msgctxt ""
"01030200.xhp\n"
"par_id3154320\n"
-"16\n"
"help.text"
msgid "You can save Basic code in a text file for saving and importing in other programming systems."
msgstr "ཁྱོད་ཀྱིས་གཞན་ལས་རིམ་རིམ་ལུགས་ཚུ་ནང་སྲུངས་བཞག་དང་ནང་འདྲེན་དོན་ལུ་གཞི་རྟེན་ཨང་རྟགས་ཚིག་ཡིག་ ཡིག་སྣོད་ནང་སྲུངས་བཞག་འབད་རུང་བཏུབ།"
@@ -3083,7 +2908,6 @@ msgstr "ཁྱོད་ཀྱིས་གཞན་ལས་རིམ་རིམ
msgctxt ""
"01030200.xhp\n"
"par_id3149959\n"
-"25\n"
"help.text"
msgid "You cannot save Basic dialogs to a text file."
msgstr "ཁྱོད་ཀྱིས་གཞི་རྟེན་ཌའི་ལོགསི་ཚིག་ཡིག་ ཡིག་སྣོད་ལུ་སྲུངས་བཞག་འབད་མི་བཏུབ།"
@@ -3092,7 +2916,6 @@ msgstr "ཁྱོད་ཀྱིས་གཞི་རྟེན་ཌའི་ལ
msgctxt ""
"01030200.xhp\n"
"hd_id3149403\n"
-"17\n"
"help.text"
msgid "Saving Source Code to a Text File"
msgstr "འབྱུང་ཁུངས་ཨང་རྟགས་ཚིག་ཡིག་ ཡིག་སྣོད་ལུ་སྲུངས་བཞག་འབད་དོ།"
@@ -3101,7 +2924,6 @@ msgstr "འབྱུང་ཁུངས་ཨང་རྟགས་ཚིག་ཡ
msgctxt ""
"01030200.xhp\n"
"par_id3150327\n"
-"18\n"
"help.text"
msgid "Select the module that you want to export as text from the object catalog."
msgstr "ཁྱོད་ཀྱིས་དངོས་པོ་ཐོ་གཞུང་ནང་ལས་ཚིག་ཡིག་བཟུམ་སྦེ་ཕྱིར་འདྲེན་འབད་ནིའི་ཚད་བཟུང་འདི་སེལ་འཐུ་འབད།"
@@ -3110,7 +2932,6 @@ msgstr "ཁྱོད་ཀྱིས་དངོས་པོ་ཐོ་གཞུ
msgctxt ""
"01030200.xhp\n"
"par_id3150752\n"
-"19\n"
"help.text"
msgid "Click the <emph>Save Source As</emph> icon in the Macro toolbar."
msgstr "ངོས་དཔར་མེཀརོ་ལག་ཆས་ཕྲ་རིང་བཟུམ་སྦེ་་<emph>\\་སྲུངས་བཞག་འབྱུང་ཁུངས་ </emph> འདི་ཨེབ་གཏང་འབད།"
@@ -3119,7 +2940,6 @@ msgstr "ངོས་དཔར་མེཀརོ་ལག་ཆས་ཕྲ་ར
msgctxt ""
"01030200.xhp\n"
"par_id3154754\n"
-"20\n"
"help.text"
msgid "Select a file name and click <emph>OK</emph> to save the file."
msgstr "ཡིག་སྣོད་མིང་གཅིག་སེལ་འཐུ་འབད་དེ་ལས་<emph>བཏུབ་</emph> ཡིག་སྣོད་སྲུངས་བཞག་ལུ་ཨེབ་གཏང་འབད།"
@@ -3128,7 +2948,6 @@ msgstr "ཡིག་སྣོད་མིང་གཅིག་སེལ་འཐ
msgctxt ""
"01030200.xhp\n"
"hd_id3159264\n"
-"21\n"
"help.text"
msgid "Loading Source Code From a Text File"
msgstr "ཚིག་ཡིག་ ཡིག་སྣོད་ལས་འབྱུང་ཁུངས་ཨང་རྟགས་མངོན་གསལ་འབད་དོ།"
@@ -3137,7 +2956,6 @@ msgstr "ཚིག་ཡིག་ ཡིག་སྣོད་ལས་འབྱ
msgctxt ""
"01030200.xhp\n"
"par_id3147343\n"
-"22\n"
"help.text"
msgid "Select the module where you want to import the source code from the object catalog."
msgstr "ཁྱོད་ཀྱིས་དངོས་པོ་ཐོ་གཞུང་ལས་འབྱུང་ཁུངས་ཨང་རྟགས་འདི་ནང་འདྲེན་ག་སྟེ་འབད་ནི་ཨིན་ན་ཚད་བཟུང་འདི་སེལ་འཐུ་འབད།་"
@@ -3146,7 +2964,6 @@ msgstr "ཁྱོད་ཀྱིས་དངོས་པོ་ཐོ་གཞུ
msgctxt ""
"01030200.xhp\n"
"par_id3145230\n"
-"23\n"
"help.text"
msgid "Position the cursor where you want to insert the program code."
msgstr "ཁྱོད་ཀྱིས་ལས་རིམ་ཨང་རྟགས་འདི་བཙུགས་ནི་ཨངན་ན་འོད་རྟགས་འདི་གནས་ས་བཟོ།"
@@ -3155,7 +2972,6 @@ msgstr "ཁྱོད་ཀྱིས་ལས་རིམ་ཨང་རྟགས
msgctxt ""
"01030200.xhp\n"
"par_id3149565\n"
-"24\n"
"help.text"
msgid "Click the <emph>Insert Source Text</emph> icon in the Macro toolbar."
msgstr "འབྱུང་ཁུངས་ཚིག་ཡིག་ <emph>མེཀརོ་ལག་ཆས་ཕྲ་རིང་ནང་ངོས་དཔར་</emph> བཙུགས་འདི་ཨེབ་གཏང་འབད།"
@@ -3164,7 +2980,6 @@ msgstr "འབྱུང་ཁུངས་ཚིག་ཡིག་ <emph>མེ
msgctxt ""
"01030200.xhp\n"
"par_id3154020\n"
-"33\n"
"help.text"
msgid "Select the text file containing the source code and click <emph>OK</emph>."
msgstr "ཚིག་ཡིག་ ཡིག་སྣོད་འབྱུང་ཁུངས་ཨང་རྟགས་ཡོད་མི་འདི་སེལ་འཐུ་འབད་ དེ་ལས <emph>བཏུབ་</emph>.ཨེབ་གཏང་འབད།"
@@ -3173,7 +2988,6 @@ msgstr "ཚིག་ཡིག་ ཡིག་སྣོད་འབྱུང་
msgctxt ""
"01030200.xhp\n"
"par_id3153198\n"
-"29\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
msgstr "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">གཞི་རྟེན་ ཨའི་ཌི་ཨི </link>"
@@ -3198,7 +3012,6 @@ msgstr "<bookmark_value>གཞི་རིམ་ལས་རིམ་ཚུ་
msgctxt ""
"01030300.xhp\n"
"hd_id3153344\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01030300.xhp\">Debugging a Basic Program</link>"
msgstr "<link href=\"text/sbasic/shared/01030300.xhp\">གཞི་རྟེན་ལས་རིམ་རྐྱེན་སེལ་འབད་དོ</link>"
@@ -3207,7 +3020,6 @@ msgstr "<link href=\"text/sbasic/shared/01030300.xhp\">གཞི་རྟེན
msgctxt ""
"01030300.xhp\n"
"hd_id3159224\n"
-"4\n"
"help.text"
msgid "Breakpoints and Single Step Execution"
msgstr "བེརེཀ་པོ་ཡིནཊིསི་དང་ལག་ལེན་འཐབ་ནིའི་རིམ་པ་རྐྱང་པ།"
@@ -3216,7 +3028,6 @@ msgstr "བེརེཀ་པོ་ཡིནཊིསི་དང་ལག་ལ
msgctxt ""
"01030300.xhp\n"
"par_id3150682\n"
-"5\n"
"help.text"
msgid "You can check each line in your Basic program for errors using single step execution. Errors are easily traced since you can immediately see the result of each step. A pointer in the breakpoint column of the Editor indicates the current line. You can also set a breakpoint if you want to force the program to be interrupted at a specific position."
msgstr "ཁྱོད་ཀྱིས་ལག་ལེན་རིམ་པ་རྐྱང་པ་ལག་ལེན་འཐབ་ནི་འཛོལ་བ་ཚུའི་དོན་ལུ་ཁྱོད་རའི་གཞི་རིམ་ལས་རིམ་ནང་ལུ་གྱལ་རེ་རེ་བཞིན་ཞིབ་དཔྱད་འབད་བཏུབ། ཁྱོད་ཀྱིས་ལས་ཚུར་འགརུབ་འབྲས་ཀྱི་རིམ་པ་རེ་རེ་བཞིན་དེ་འཕྲལ་ལས་བལྟ་ཚུགསཔ་ལས་འཛོལ་བ་ཚུ་འཇམ་ཏོག་ཏོ་འབད་བཤུལ་འཚོལ་ཐོབ། ཞུན་དག་འདིའི་བེརེ་པོ་ཡིནཊི་ཀེར་ཐིག་ནང་གི་དཔག་བྱེད་གཅིག་གིས་འཕྲལ་གྱལ་འདི་བརྡ་སྟོནམ་ཨིན། ཁྱོད་ཀྱིས་ཡང་གནས་ས་གསལ་བཀོད་ལུ་ལས་རིམ་བང་བཅོང་བར་དཀྲོགས་ནི་ཨིན་པ་ཅིན་བེརེ་པོ་ཡིནཊི་གཞི་སྒྲིག་འབད་བཏུབ་ཨིན།"
@@ -3225,7 +3036,6 @@ msgstr "ཁྱོད་ཀྱིས་ལག་ལེན་རིམ་པ་ར
msgctxt ""
"01030300.xhp\n"
"par_id3147303\n"
-"7\n"
"help.text"
msgid "Double-click in the <emph>breakpoint</emph> column at the left of the Editor window to toggle a breakpoint at the corresponding line. When the program reaches a breakpoint, the program execution is interrupted."
msgstr "གྱལ་མཉམ་ཐོག་ལུ་བེརེ་པོ་ཡིནཊི་ཅིག་སོར་སྟོན་ལུ་ཝིན་ཌོ་ཞུན་དག་དི་གཡོན་ཕྱོགས་ཀེར་ཐིག་ <emph>བེརེ་པོ་ཡིནཊི་</emph>འདི་ནང་ལོག་ལྟབ་ཨེབ་གཏང་འབད། ལས་རིམ་འདི་བེརེ་པོ་ཡིནཊི་ལྷོདཔ་ད་ལུ་ ལས་རིམ་ལག་ལེན་འཐབ་ནི་འདི་བར་དཀྲོགས་ཡོདཔ་ཨིན།"
@@ -3234,7 +3044,6 @@ msgstr "གྱལ་མཉམ་ཐོག་ལུ་བེརེ་པོ་ཡ
msgctxt ""
"01030300.xhp\n"
"par_id3155805\n"
-"8\n"
"help.text"
msgid "The <emph>single step </emph>execution using the <emph>Single Step</emph> icon causes the program to branch into procedures and functions."
msgstr "རིམ་པ་རྐྱང་པ་ <emph>འདི་</emph>ལག་ལེན་འཐབ་ནི་ལག་ལེན་འཐབ་འདི་ <emph>རིམ་པ་རྐྱང་པ་</emph> ངོས་དཔར་གྱིས་ལས་རིམ་ལས་འགན་ཚུ་དང་བྱ་སྒོའི་ལམ་ལུགས་ཚུ་ཡན་ལག་་ལུ་རྒྱུ་རྐྱེན་འབདཝ་ཨིན།"
@@ -3243,7 +3052,6 @@ msgstr "རིམ་པ་རྐྱང་པ་ <emph>འདི་</emph>ལག
msgctxt ""
"01030300.xhp\n"
"par_id3151110\n"
-"25\n"
"help.text"
msgid "The procedure step execution using the <emph>Procedure Step</emph> icon causes the program to skip over procedures and functions as a single step."
msgstr "བྱ་སྒོའི་ལམ་ལུགས་རིམ་པ་ལག་ལེན་འཐབ་ནི་<emph>བྱ་སྒོའི་ལམ་ལུགས་རིམ་པ་ལག་ལེན་འཐབ་འདི</emph> དངོས་དཔར་འདི་གིས་ལས་འགན་རིམ་པ་རྐྱང་པ་སྦེ་དང་ལས་རིམ་འདི་བྱ་སྒོའི་ལམ་ལུགས་གོམ་འགྱོ་ནི་ལུ་རྒྱུ་རྐྱེན་འབདཝ་ཨིན།"
@@ -3252,7 +3060,6 @@ msgstr "བྱ་སྒོའི་ལམ་ལུགས་རིམ་པ་ལ
msgctxt ""
"01030300.xhp\n"
"hd_id3153825\n"
-"9\n"
"help.text"
msgid "Properties of a Breakpoint"
msgstr "བེརེཀ་པོ་ཡིནཊི་གི་རྒྱུ་དངོས་ཚུ།"
@@ -3261,7 +3068,6 @@ msgstr "བེརེཀ་པོ་ཡིནཊི་གི་རྒྱུ་ད
msgctxt ""
"01030300.xhp\n"
"par_id3147574\n"
-"26\n"
"help.text"
msgid "The properties of a breakpoint are available through its context menu by right-clicking the breakpoint in the breakpoint column."
msgstr "བེརེ་པོ་ཡིནཊི་གི་རྒྱུ་དངོས་འདི་ཚུ་ཆ་མཉམ་འདིའི་སྐབས་དོན་དཀར་ཆག་ནང་ལས་བེརེ་པོ་ཡིནཊི་ཀེར་ཐིག་འདི་ནང་གཡས་ཕྱོགས་ཨེབ་གཏང་འབད་འདི་ཐོབ་ཚུགསཔ་ཨིན།"
@@ -3270,7 +3076,6 @@ msgstr "བེརེ་པོ་ཡིནཊི་གི་རྒྱུ་དང
msgctxt ""
"01030300.xhp\n"
"par_id3148473\n"
-"10\n"
"help.text"
msgid "You can <emph>activate</emph> and <emph>deactivate</emph> a breakpoint by selecting <emph>Active</emph> from its context menu. When a breakpoint is deactivated, it does not interrupt the program execution."
msgstr "ཁྱོད་ཀྱིས བེརེ་པོ་ཡིནཊི་<emph>ཤུགས་ལྡན་</emph> དང་ <emph>ཤུགས་མེད་བཟོ་ནི་འདི་</emph> འདིའི་སྐབས་དོན་དཀར་ཆག་<emph>ཤུགས་ལྡན་བཟོ་ནི་</emph> སེལ་འཐུ་འབད། བེརེ་པོ་ཡིནཊི་འདི་ཤུགས་མེད་བཟོ་ཡོདཔ་ད་འདི་གིས་ལས་རིམ་ལག་ལེན་འཐབ་ནི་ལུ་བར་དཀྲོགས་མི་འབད།"
@@ -3279,7 +3084,6 @@ msgstr "ཁྱོད་ཀྱིས བེརེ་པོ་ཡིནཊི་<e
msgctxt ""
"01030300.xhp\n"
"par_id3159413\n"
-"27\n"
"help.text"
msgid "Select <emph>Properties</emph> from the context menu of a breakpoint or select <emph>Breakpoints</emph> from the context menu of the breakpoint column to call the <emph>Breakpoints</emph> dialog where you can specify other breakpoint options."
msgstr "བེརེ་པོ་ཡིནཊི་གི་སྐབས་དོན་དཀར་ཆག་འདི་ནང་ལས་ <emph>རྒྱུ་དངོས་སེལ་འཐུ་འབད</emph> ཡང་ན་བེརེ་པོ་ཡིནཊི་གི་སྐབས་དོན་དཀར་ཆག་འདི་ནང་ལས་ <emph>ཁྱོད་ཀྱིས་གཞན་བེཡེ་པོ་ཡིནཊི་གདམ་ཁ་ཚུ་གསལ་བཀོད་འབད་ནིའི་་</emph>ཌའི་ལོག་བེརེ་པེ་ཡིནཊིསི་ <emph>\\འདི་བོད་བརྡ་ལུ་</emph> བེརེ་པོ་ཡིནཊིསི་སེལ་འཐུ་འབད།"
@@ -3288,7 +3092,6 @@ msgstr "བེརེ་པོ་ཡིནཊི་གི་སྐབས་དོ
msgctxt ""
"01030300.xhp\n"
"par_id3156280\n"
-"11\n"
"help.text"
msgid "The list displays all <emph>breakpoints</emph> with the corresponding line number in the source code. You can activate or deactivate a selected breakpoint by checking or clearing the <emph>Active</emph> box."
msgstr "འ་ནི་ཐོ་ཡིག་འདི་གིས་ <emph>བེརེ་པོ་ཡིནཊིསི་</emph> དང་ཅིག་ཁར་འབྱུང་ཁུངས་ཨང་རྟགས་འདི་ནང་མཉམ་ཐོག་གྱལ་ཨང་འདི་ཛུ་ཆ་མཉམ་བཀྲམ་བཏོན་འབདཨིན། ཁྱོད་ཀྱིས་སེལ་འཐུ་འབད་ཡོད་པའི་བེརེ་པོ་ཡིནཊི་ཤུགས་ལྡན་ཡང་ན་ཤུགས་མེད་བཟོ་ནི་འདི་ ཞིབ་དཔྱད་འབད་འདི་ཡང་ན་<emph>ཤུགས་ལྡན་</emph> སྒྲོམ་འདི་གསལ་གཏང་འདི་བཏུབ་ཨིན།"
@@ -3297,7 +3100,6 @@ msgstr "འ་ནི་ཐོ་ཡིག་འདི་གིས་ <emph>བ
msgctxt ""
"01030300.xhp\n"
"par_id3158407\n"
-"12\n"
"help.text"
msgid "The <emph>Pass Count</emph> specifies the number of times the breakpoint can be passed over before the program is interrupted. If you enter 0 (default setting) the program is always interrupted as soon as a breakpoint is encountered."
msgstr "རྩིས་སྤྲོད་གྱངས་ཁ་རྐྱབས་ནི་ <emph>འདི་གིས་</emph>་བེརེཀ་པོ་ཡིནཊི་ལས་རིམ་འདི་བར་དཀྲོགས་འབད་བའི་ཧེ་མ་རྩིས་སྤྲོད་འབད་བཏུབ་པའི་ཨང་འདི་གསལ་བཀོད་འབདཝ་ཨིན། ཁྱོད་ཀྱིས་ ༠ བཙུགས་པ་ཅིན་ (སྔོན་སྒྲིག་ སྒྲིག་སྟངས) ལས་རིམ་འདི་བེརེཀ་པོ་ཡིནཊི་འདི་གདོང་ཐུག་འབྱུང་ཡོདཔ་ཅིན་ཨ་རྟག་ར་བར་དཀྲོགས་ཡོདཔ་ཨིན།"
@@ -3306,7 +3108,6 @@ msgstr "རྩིས་སྤྲོད་གྱངས་ཁ་རྐྱབས་
msgctxt ""
"01030300.xhp\n"
"par_id3153968\n"
-"13\n"
"help.text"
msgid "Click <emph>Delete</emph> to remove the breakpoint from the program."
msgstr "ལས་རིམ་ནང་ལས་བེརེཀ་པོ་ཡིནཊི་འདི་རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་ <emph>བཏོན་གཏང་</emph>་ཨེབ་གཏང་འབད།"
@@ -3315,7 +3116,6 @@ msgstr "ལས་རིམ་ནང་ལས་བེརེཀ་པོ་ཡི
msgctxt ""
"01030300.xhp\n"
"hd_id3150439\n"
-"14\n"
"help.text"
msgid "Observing the Value of Variables"
msgstr "འགྱུར་ཅན་ཚུའི་གནས་གོང་འདི་རྟག་ཞིབ་འབད་དོ།"
@@ -3324,7 +3124,6 @@ msgstr "འགྱུར་ཅན་ཚུའི་གནས་གོང་འད
msgctxt ""
"01030300.xhp\n"
"par_id3153368\n"
-"15\n"
"help.text"
msgid "You can monitor the values of a variable by adding it to the <emph>Watch</emph> window. To add a variable to the list of watched variables, type the variable name in the <emph>Watch</emph> text box and press Enter."
msgstr "ཁྱོད་ཀྱིས་འགྱུར་ཅན་གྱི་གནས་གོང་ཚུ་འདི་ <emph>བལྟ་ཞིབ་འབད་ནི་་</emph>ཝིན་ཌོ་ལུ་ཁ་སྐོང་འབད་འདི་གིས་བལྟ་རྟོག་འབད་བཏུབ་ཨིན། འགྱུར་ཅན་ཅིག་བལྟ་ཞིབ་འབད་ནི་འགྱུར་ཅན་གྱི་ཐོ་ཡིག་ནང་ལུ་ཁ་སྐོང་འབད་ནི་ལུ་ <emph>བལྟ་ཞིབ་འབད་ནི་་</emph> ཚིག་ཡིག་སྒྲོམ་ནང་ཡིག་དཔར་རྐྱབས་ནི་དང་ བཙུགས་ཨེབ།"
@@ -3333,7 +3132,6 @@ msgstr "ཁྱོད་ཀྱིས་འགྱུར་ཅན་གྱི་ག
msgctxt ""
"01030300.xhp\n"
"par_id3146986\n"
-"16\n"
"help.text"
msgid "The values of variables are only displayed if they are in scope. Variables that are not defined at the current source code location display (\"Out of Scope\") instead of a value."
msgstr "འགྱུར་ཅན་ཚུའི་གནས་གོང་དེ་་ཆ་མཉམ་འོས་སྐབས་ཡོད་པ་ཅིན་རྐྱངམ་ཅིག་བཀྲམ་བཏོན་འབདཝ་ཨིན། ད་ལྟོའི་འབྱུང་ཁུངས་ཨང་་རྟགས་གནས་ཁོངས་འདི་ནང་་ལུ་ངེས་འཛིན་མ་འབད་མི་འགྱུར་ཅན་ཚུ་གནས་གོང་གི་ཚབ་ལུ་(\"Out of Scope\") བཀྲམ་བཏོན་འབད་ཡོདཔ་ཨིན་མས།"
@@ -3342,7 +3140,6 @@ msgstr "འགྱུར་ཅན་ཚུའི་གནས་གོང་དེ
msgctxt ""
"01030300.xhp\n"
"par_id3145272\n"
-"17\n"
"help.text"
msgid "You can also include arrays in the Watch window. If you enter the name of an array variable without an index value in the Watch text box, the content of the entire array is displayed."
msgstr "ཁྱོད་ཀྱིས་བལྟ་ཞིབ་འབད་ནི་ཝིན་ཌོ་ནང་ཨོ་རེ་ཚུ་ཡང་གྲངས་སུ་བཙུགས་བཏུབ། ཁྱོད་ཀྱིས་བལྟ་ཞིབ་འབད་ནི་ཚིག་ཡིག་སྒྲོམ་ནང་ཟུར་ཐོ་གནས་གོང་མེདཔ་སྦེ་ཨེ་རེ་་འགྱུར་ཅན་གྱི་མིང་འདི་བཙུགས་པ་ཅིན་ ཨེ་རེ་ཧྲིལ་བུམ་གྱི་ནང་དོན་འདི་བཀྲམ་བཏོན་འབདཝ་ཨིན།"
@@ -3351,7 +3148,6 @@ msgstr "ཁྱོད་ཀྱིས་བལྟ་ཞིབ་འབད་ནི
msgctxt ""
"01030300.xhp\n"
"par_id3145749\n"
-"19\n"
"help.text"
msgid "If you rest the mouse over a predefined variable in the Editor at run-time, the content of the variable is displayed in a pop-up box."
msgstr "ཁྱོད་ཀྱིས་མའུསི་འདི་རཱན་ཊའིམ་ཞུན་དག་པ་ནང་སྔ་སྒོང་ངེས་འཛིན་འབད་ཡོད་པའི་འགྱུར་ཅན་གུ་ངལ་འཚོ་ཡོད་པ་ཅིན་པོཔ་ཨཔ་སྒྲོམ་ནང་འགྱུར་ཅན་གྱི་ནང་དོན་འདི་བཀྲམ་བཏོན་འབདཝ་ཨིན།"
@@ -3360,7 +3156,6 @@ msgstr "ཁྱོད་ཀྱིས་མའུསི་འདི་རཱན་
msgctxt ""
"01030300.xhp\n"
"hd_id3148618\n"
-"20\n"
"help.text"
msgid "The Call Stack Window"
msgstr "བརྩེགས་ཕུང་ཝིན་ཌོ་བོད་བརྡ་འདི།"
@@ -3369,7 +3164,6 @@ msgstr "བརྩེགས་ཕུང་ཝིན་ཌོ་བོད་བར
msgctxt ""
"01030300.xhp\n"
"par_id3154491\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">Provides an overview of the call hierarchy of procedures and functions.</ahelp> You can determine which procedures and functions called which other procedures and functions at the current point in the source code."
msgstr "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">བྱ་སྒོའི་ལམ་ལུགས་ཚུ་དང་ལས་འགན་ཚུའི་བོད་བརྡ་སྡེ་རིམ་འདིའི་སྤྱི་མཐོང་བྱིནམ་ཨིན།</ahelp> ཁྱོད་ཀྱིས་ག་བྱ་སྒོའི་ལམ་ལུགས་ཚུ་དང་ལས་འགན་ཚུ་གིས་ད་ལྟོའི་ཨང་རྟགས་འབྱུང་ཁུངས་ནང་ཡིག་ཚད་ལུ་གཞན་ག་བྱ་སྒོའི་ལམ་ལུགས་ཚུ་དང་ལས་འགན་ཚུ་ལུ་བོད་ཡོདཔ་ཨིན་ན་གཏན་འབེབས་བཟོ་བཏུབ་ཨིན།"
@@ -3378,7 +3172,6 @@ msgstr "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">བྱ་སྒོའི་
msgctxt ""
"01030300.xhp\n"
"hd_id3150594\n"
-"24\n"
"help.text"
msgid "List of Run-Time Errors"
msgstr "རཱན་ཊའིམ་འཛོལ་བའི་ཐོ་ཡིག"
@@ -3403,7 +3196,6 @@ msgstr "<bookmark_value>དཔེར་མཛོད་ འག་འདྲེན
msgctxt ""
"01030400.xhp\n"
"hd_id3148797\n"
-"1\n"
"help.text"
msgid "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\">Organizing Libraries and Modules</link></variable>"
msgstr "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\">དཔེ་མཛོད་ཚུ་དང་ཚད་བཟུང་ཚུ་འགོ་འདྲེན་འབད་དོ།</link></variable>"
@@ -3412,7 +3204,6 @@ msgstr "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\"
msgctxt ""
"01030400.xhp\n"
"hd_id3150868\n"
-"4\n"
"help.text"
msgid "Organizing Libraries"
msgstr "དཔེ་མཛོད་ཚུ་འགོ་འདྲེན་འབད་དོ།"
@@ -3421,7 +3212,6 @@ msgstr "དཔེ་མཛོད་ཚུ་འགོ་འདྲེན་འབ
msgctxt ""
"01030400.xhp\n"
"hd_id3125864\n"
-"5\n"
"help.text"
msgid "Creating a New Library"
msgstr "དཔེ་མཛོད་གསརཔ་གཅིག་གསར་བསྐྲུན་འབད་དོ།"
@@ -3430,7 +3220,6 @@ msgstr "དཔེ་མཛོད་གསརཔ་གཅིག་གསར་བ
msgctxt ""
"01030400.xhp\n"
"par_id3152576\n"
-"6\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
msgstr "ལག་ཆས་ཚུ མེཀརོསི་ མེཀརོསི་འགོ་འདྲེན་འཐབ ་%PRODUCTNAME གཞི་རྟེན་<emph> གདམ་ </emph> དང་ <emph> འགོ་འདྲེན་འཐབ་ཨེབ་གཏང་འབད </emph> ཡང་ན་ <emph> ཚད་བཟུང་སེལ་འཐུ་འབད </emph> ཨའི་ཌི་ཨི་གཞི་རྟེན་ནང་གི་ངོས་དཔར་ <emph> མེཀརོ་འགོ་འདྲེན་ཌའི་ལོག་ཁ་ཕྱེ་ནིའི་དོན་ལུ་ ཨེབ་གཏང་འབད</emph>"
@@ -3439,7 +3228,6 @@ msgstr "ལག་ཆས་ཚུ མེཀརོསི་ མེཀརོསི
msgctxt ""
"01030400.xhp\n"
"par_id3153726\n"
-"8\n"
"help.text"
msgid "Click the <emph>Libraries</emph> tab."
msgstr "དཔེ་མཛོད་ཚུ་ <emph>མཆོང་ལྡེ་འདི་</emph> ཨེབ་གཏང་འབད།"
@@ -3448,7 +3236,6 @@ msgstr "དཔེ་མཛོད་ཚུ་ <emph>མཆོང་ལྡེ་
msgctxt ""
"01030400.xhp\n"
"par_id3149664\n"
-"9\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 Macros & Dialogs འདི་སེལ་འཐུ་འབད་བ་ཅིན་ དཔེར་མཛོད་འདི་ $[officename] འཇུག་སྤྱོད་ལུ་བངམ་དང་ ཡིག་ཆ་ཚུ་ཆ་མཉམ་དོན་ལུ་ཐོབ་ཚུགས། ཁྱོད་ཀྱིས་ཡིག་ཆ་སེལ་འཐུ་འབད་བ་ཅིན་འ་ནི་ཡིག་ཆ་ལུ་མཉམ་སྦྲགས་ནི་བཞག་ནི་དང་ འ་ཕི་ནང་ལས་རྐྱངམ་ཅིག་ཐོབ་ཚུགས།"
@@ -3457,7 +3244,6 @@ msgstr "ཁྱོད་ཀྱིས་དཔེར་མཛོད་ <emph>ག
msgctxt ""
"01030400.xhp\n"
"par_id3153365\n"
-"10\n"
"help.text"
msgid "Click <emph>New</emph> and insert a name to create a new library."
msgstr "གསརཔ་<emph>ཨེབ་གཏང་</emph> དང་དཔེ་མཛོད་གསརཔ་གསར་བསྐྲུན་འབད་ནི་ལུ་མིང་བཙུགས།"
@@ -3466,7 +3252,6 @@ msgstr "གསརཔ་<emph>ཨེབ་གཏང་</emph> དང་དཔེ
msgctxt ""
"01030400.xhp\n"
"hd_id3147394\n"
-"48\n"
"help.text"
msgid "Import a Library"
msgstr ""
@@ -3475,7 +3260,6 @@ msgstr ""
msgctxt ""
"01030400.xhp\n"
"par_id3153157\n"
-"49\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
msgstr "ལག་ཆས་ཚུ མེཀརོསི་ མེཀརོསི་འགོ་འདྲེན་འཐབ ་%PRODUCTNAME གཞི་རྟེན་<emph> གདམ་ </emph> དང་ <emph> འགོ་འདྲེན་འཐབ་ཨེབ་གཏང་འབད </emph> ཡང་ན་ <emph> ཚད་བཟུང་སེལ་འཐུ་འབད </emph> ཨའི་ཌི་ཨི་གཞི་རྟེན་ནང་གི་ངོས་དཔར་ <emph> མེཀརོ་འགོ་འདྲེན་ཌའི་ལོག་ཁ་ཕྱེ་ནིའི་དོན་ལུ་ ཨེབ་གཏང་འབད</emph>"
@@ -3484,7 +3268,6 @@ msgstr "ལག་ཆས་ཚུ མེཀརོསི་ མེཀརོསི
msgctxt ""
"01030400.xhp\n"
"par_id3146972\n"
-"50\n"
"help.text"
msgid "Click the <emph>Libraries</emph> tab."
msgstr "དཔེ་མཛོད་ཚུ་ <emph>མཆོང་ལྡེ་འདི་</emph> ཨེབ་གཏང་འབད།"
@@ -3493,7 +3276,6 @@ msgstr "དཔེ་མཛོད་ཚུ་ <emph>མཆོང་ལྡེ་
msgctxt ""
"01030400.xhp\n"
"par_id3145640\n"
-"51\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 Macros & Dialogs,སེལ་འཐུ་འབད་བ་ཅིན་དཔེར་མཛོད་འདི་$[officename] ལུ་བངམ་ཨིནམ་དང་ ཡིག་ཆ་ཚུ་ཆ་མཉམ་དོན་ལུ་ཐོབ་ཚུགས། ཁྱོད་ཀྱིས་ཡིག་ཆ་སེལ་འཐུ་འབད་བ་ཅིན་འདི་ནང་ལས་རྐྱངམ་ཅིག་ཐོབ་ཚུགས།"
@@ -3502,7 +3284,6 @@ msgstr "ཁྱོད་ཀྱིས་དཔེར་མཛོད་འདི་
msgctxt ""
"01030400.xhp\n"
"par_id3154253\n"
-"52\n"
"help.text"
msgid "Click <emph>Import...</emph> and select an external library to import."
msgstr "མཇུག་བསྣོན་ <emph>ཨེབ་གཏང་དང</emph> མཇུག་བསྣོན་ལུ་ཕྱིའི་དཔེ་མཛོད་གཅིག་སེལ་འཐུ་འབད།"
@@ -3511,7 +3292,6 @@ msgstr "མཇུག་བསྣོན་ <emph>ཨེབ་གཏང་དང</
msgctxt ""
"01030400.xhp\n"
"par_id3154705\n"
-"53\n"
"help.text"
msgid "Select all libraries to be imported in the <emph>Import Libraries</emph> dialog. The dialog displays all libraries that are contained in the selected file."
msgstr "ཌའི་ལོག་<emph>མཇུག་བསྣོན་དཔེར་བརྗོད་ཚུ་ནང་ལུ་མཇུག་བསྣོན་འབད་ནི་ཨིན་མི་དཔེར་བརྗོད་ཚུ་ཆ་མཉམ་སེལ་འཐུ་འབད། </emph> ཌའི་ལོག་འདི་གིས་སེལ་འཐུ་འབད་ཡོད་པའི་ཡིག་སྣོད་འདི་ནང་ན་ཡོད་པའི་དཔེར་བརྗོད་ཚུ་ཆ་མཉམ་བཀྲམ་བཏོན་འབདཝ་ཨིན།"
@@ -3520,7 +3300,6 @@ msgstr "ཌའི་ལོག་<emph>མཇུག་བསྣོན་དཔེ
msgctxt ""
"01030400.xhp\n"
"par_id3163807\n"
-"54\n"
"help.text"
msgid "If you want to insert the library as a reference only check the <emph>Insert as reference (read-only)</emph> box. Read-only libraries are fully functional but cannot be modified in the Basic IDE."
msgstr "ཁྱོད་ཀྱིས་དཔེར་མཛོད་འདི་གཞི་བསྟིན་སྦེ་རྐྱངམ་ཅིག་བཙུགས་ནི་ཨིན་པ་ཅིན་<emph> གཞི་བསྟུན་སྒྲོམ་སྦེ་བཙུགས་(read-only)</emph> འདི་ཞིབ་དཔྱད་འབད། ལྷག་ནི་རྐྱངམ་གི་དཔེར་མཛོད་ཚུ་ཆ་མཉམ་ཆ་ཚང་ལས་འགན་ཡོདཔ་ཨིན་རུང་ཨའི་ཌི་ཨི་གཞི་རིམ་ནང་ལེགས་བཅོས་འབད་མི་བཏུབ།"
@@ -3529,7 +3308,6 @@ msgstr "ཁྱོད་ཀྱིས་དཔེར་མཛོད་འདི་
msgctxt ""
"01030400.xhp\n"
"par_id3145228\n"
-"55\n"
"help.text"
msgid "Check the <emph>Replace existing libraries</emph> box if you want existing libraries of the same name to be overwritten."
msgstr "ཚད་བཙུགས་དཔེར་མཛོད་སྒྲོམ་<emph>ཞིབ་དཔྱད་འབད་འདི་</emph> ཁྱོད་ཀྱིས་ཧེ་མ་ལས་ཡོད་པའི་དཔེར་མཛོད་མིང་ཅོག་འཐདཔ་་ཚབ་སྲུང་འབད་ཡོདཔ་སྦེ་ཨིན་པ་ཅིན།"
@@ -3538,7 +3316,6 @@ msgstr "ཚད་བཙུགས་དཔེར་མཛོད་སྒྲོམ
msgctxt ""
"01030400.xhp\n"
"par_id3147004\n"
-"56\n"
"help.text"
msgid "Click <emph>OK</emph> to import the library."
msgstr "དཔེ་མཛོད་མཇུག་བསྣོན་ལུ་ <emph>བཏུབ</emph> ཨེབ་གཏང་འབད།"
@@ -3547,7 +3324,6 @@ msgstr "དཔེ་མཛོད་མཇུག་བསྣོན་ལུ་ <e
msgctxt ""
"01030400.xhp\n"
"hd_id3159099\n"
-"17\n"
"help.text"
msgid "Export a Library"
msgstr ""
@@ -3556,7 +3332,6 @@ msgstr ""
msgctxt ""
"01030400.xhp\n"
"par_id3147005\n"
-"70\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
msgstr "ལག་ཆས་ཚུ མེཀརོསི་ མེཀརོསི་འགོ་འདྲེན་འཐབ ་%PRODUCTNAME གཞི་རྟེན་<emph> གདམ་ </emph> དང་ <emph> འགོ་འདྲེན་འཐབ་ཨེབ་གཏང་འབད </emph> ཡང་ན་ <emph> ཚད་བཟུང་སེལ་འཐུ་འབད </emph> ཨའི་ཌི་ཨི་གཞི་རྟེན་ནང་གི་ངོས་དཔར་ <emph> མེཀརོ་འགོ་འདྲེན་ཌའི་ལོག་ཁ་ཕྱེ་ནིའི་དོན་ལུ་ ཨེབ་གཏང་འབད</emph>"
@@ -3565,7 +3340,6 @@ msgstr "ལག་ཆས་ཚུ མེཀརོསི་ མེཀརོསི
msgctxt ""
"01030400.xhp\n"
"par_id3147006\n"
-"71\n"
"help.text"
msgid "Click the <emph>Libraries</emph> tab."
msgstr "དཔེ་མཛོད་ཚུ་ <emph>མཆོང་ལྡེ་འདི་</emph> ཨེབ་གཏང་འབད།"
@@ -3574,7 +3348,6 @@ msgstr "དཔེ་མཛོད་ཚུ་ <emph>མཆོང་ལྡེ་
msgctxt ""
"01030400.xhp\n"
"par_id3147007\n"
-"72\n"
"help.text"
msgid "In the <emph>Location</emph> list you specify where your library is stored. Select the library that you want to export. Note that you cannot export the <emph>Standard</emph> library."
msgstr ""
@@ -3583,7 +3356,6 @@ msgstr ""
msgctxt ""
"01030400.xhp\n"
"par_id3147008\n"
-"73\n"
"help.text"
msgid "Click <emph>Export...</emph>"
msgstr ""
@@ -3592,7 +3364,6 @@ msgstr ""
msgctxt ""
"01030400.xhp\n"
"par_id3147009\n"
-"74\n"
"help.text"
msgid "Choose whether you want to export the library as an extension or as a basic library."
msgstr ""
@@ -3601,7 +3372,6 @@ msgstr ""
msgctxt ""
"01030400.xhp\n"
"par_id3147010\n"
-"75\n"
"help.text"
msgid "Click <emph>OK</emph>."
msgstr "རྩ་བསྐྲད་གཏང་ <emph>ཨེབ་གཏང་འབད</emph>."
@@ -3610,7 +3380,6 @@ msgstr "རྩ་བསྐྲད་གཏང་ <emph>ཨེབ་གཏང་
msgctxt ""
"01030400.xhp\n"
"par_id3147011\n"
-"76\n"
"help.text"
msgid "Select where you want your library exported."
msgstr ""
@@ -3619,7 +3388,6 @@ msgstr ""
msgctxt ""
"01030400.xhp\n"
"par_id3147012\n"
-"77\n"
"help.text"
msgid "Click <emph>Save</emph> to export the library."
msgstr "དཔེ་མཛོད་མཇུག་བསྣོན་ལུ་ <emph>བཏུབ</emph> ཨེབ་གཏང་འབད།"
@@ -3628,7 +3396,6 @@ msgstr "དཔེ་མཛོད་མཇུག་བསྣོན་ལུ་ <e
msgctxt ""
"01030400.xhp\n"
"hd_id3159100\n"
-"17\n"
"help.text"
msgid "Deleting a Library"
msgstr "དཔེ་མཛོད་བཏོན་གཏང་དོ།"
@@ -3637,7 +3404,6 @@ msgstr "དཔེ་མཛོད་བཏོན་གཏང་དོ།"
msgctxt ""
"01030400.xhp\n"
"par_id3150086\n"
-"18\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
msgstr "ལག་ཆས་ཚུ མེཀརོསི་ མེཀརོསི་འགོ་འདྲེན་འཐབ ་%PRODUCTNAME གཞི་རྟེན་<emph> གདམ་ </emph> དང་ <emph> འགོ་འདྲེན་འཐབ་ཨེབ་གཏང་འབད </emph> ཡང་ན་ <emph> ཚད་བཟུང་སེལ་འཐུ་འབད </emph> ཨའི་ཌི་ཨི་གཞི་རྟེན་ནང་གི་ངོས་དཔར་ <emph> མེཀརོ་འགོ་འདྲེན་ཌའི་ལོག་ཁ་ཕྱེ་ནིའི་དོན་ལུ་ ཨེབ་གཏང་འབད</emph>"
@@ -3646,7 +3412,6 @@ msgstr "ལག་ཆས་ཚུ མེཀརོསི་ མེཀརོསི
msgctxt ""
"01030400.xhp\n"
"par_id3146808\n"
-"57\n"
"help.text"
msgid "Click the <emph>Libraries</emph> tab."
msgstr "དཔེ་མཛོད་ཚུ་ <emph>མཆོང་ལྡེ་འདི་</emph> ཨེབ་གཏང་འབད།"
@@ -3655,7 +3420,6 @@ msgstr "དཔེ་མཛོད་ཚུ་ <emph>མཆོང་ལྡེ་
msgctxt ""
"01030400.xhp\n"
"par_id3158212\n"
-"58\n"
"help.text"
msgid "Select the library to be deleted from the list."
msgstr "ཐོ་ཡིག་ནང་ལས་བཏོན་གཏང་ནིའི་དཔེ་མཛོད་འདི་སེལ་འཐུ་འབད།"
@@ -3664,7 +3428,6 @@ msgstr "ཐོ་ཡིག་ནང་ལས་བཏོན་གཏང་ནི
msgctxt ""
"01030400.xhp\n"
"par_id3150361\n"
-"20\n"
"help.text"
msgid "Click <emph>Delete</emph>."
msgstr "བཏོན་གཏང་ <emph>ཨེབ་གཏང་འབད།</emph>."
@@ -3673,7 +3436,6 @@ msgstr "བཏོན་གཏང་ <emph>ཨེབ་གཏང་འབད།</
msgctxt ""
"01030400.xhp\n"
"par_id3152986\n"
-"19\n"
"help.text"
msgid "Deleting a library permanently deletes all existing modules and corresponding procedures and functions."
msgstr "དཔེ་མཛོད་གཅིག་རྟག་གཏན་བཏོན་གཏངམ་ད་ལུ་ཡོད་བཞིན་པའི་ཚད་གཞི་ཚུ་དང་མཉམ་པའི་ཐོག་ལས་བྱ་སྒོའི་ལམ་མུགས་ཚུ་དང་ལས་འགན་ཚུ་ཆ་མཉམ་བཏོན་གཏངམ་ཨིན།"
@@ -3682,7 +3444,6 @@ msgstr "དཔེ་མཛོད་གཅིག་རྟག་གཏན་བཏ
msgctxt ""
"01030400.xhp\n"
"par_id3148868\n"
-"59\n"
"help.text"
msgid "You cannot delete the default library named \"Standard\"."
msgstr "ཁྱོད་ཀྱིས་སྔོན་སྒྲིག་དཔེ་མཛོད་\"Standard\"་མིང་བཏགས་ཡོད་མི་འདི་བཏོན་གཏང་མི་ཆོག"
@@ -3691,7 +3452,6 @@ msgstr "ཁྱོད་ཀྱིས་སྔོན་སྒྲིག་དཔེ
msgctxt ""
"01030400.xhp\n"
"par_id3146869\n"
-"60\n"
"help.text"
msgid "If you delete a library that was inserted as reference only the reference is deleted but not the library itself."
msgstr "ཁྱོད་ཀྱིས་གཞི་བསྟུན་སྦེ་བཙུགས་ཡོད་མི་དཔེར་མཛོད་འདི་རྩ་བསྐྲད་གཏང་མ་ཅིན་གཞི་བསྟུན་རྐྱངམ་ཅིག་རྩ་བསྐྲད་གཏངམ་ཨིན་དེ་འབདཝ་ད་དཔེར་མཛོད་དེ་ཉིད་མེན།"
@@ -3700,7 +3460,6 @@ msgstr "ཁྱོད་ཀྱིས་གཞི་བསྟུན་སྦེ་
msgctxt ""
"01030400.xhp\n"
"hd_id3147070\n"
-"21\n"
"help.text"
msgid "Organizing Modules and Dialogs"
msgstr "ཚད་བཟུང་ཚུ་དང་ཌའི་ལོགསི་འགོ་འདྲེན་འབད་དོ།"
@@ -3709,7 +3468,6 @@ msgstr "ཚད་བཟུང་ཚུ་དང་ཌའི་ལོགསི་
msgctxt ""
"01030400.xhp\n"
"hd_id3155265\n"
-"61\n"
"help.text"
msgid "Creating a New Module or Dialog"
msgstr "ཚད་བཟུང་ཡང་ན་ཌའི་ལོག་གསར་བསྐྲུན་འབད་དོ།"
@@ -3718,7 +3476,6 @@ msgstr "ཚད་བཟུང་ཡང་ན་ཌའི་ལོག་གསར
msgctxt ""
"01030400.xhp\n"
"par_id3154537\n"
-"62\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
msgstr "ལག་ཆས་ཚུ མེཀརོསི་ མེཀརོསི་འགོ་འདྲེན་འཐབ ་%PRODUCTNAME གཞི་རྟེན་<emph> གདམ་ </emph> དང་ <emph> འགོ་འདྲེན་འཐབ་ཨེབ་གཏང་འབད </emph> ཡང་ན་ <emph> ཚད་བཟུང་སེལ་འཐུ་འབད </emph> ཨའི་ཌི་ཨི་གཞི་རྟེན་ནང་གི་ངོས་དཔར་ <emph> མེཀརོ་འགོ་འདྲེན་ཌའི་ལོག་ཁ་ཕྱེ་ནིའི་དོན་ལུ་ ཨེབ་གཏང་འབད</emph>"
@@ -3727,7 +3484,6 @@ msgstr "ལག་ཆས་ཚུ མེཀརོསི་ མེཀརོསི
msgctxt ""
"01030400.xhp\n"
"par_id3146781\n"
-"63\n"
"help.text"
msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
msgstr "ཚད་བཟུང་ཚུ་ <emph>མཆོང་ལྡེ་</emph> ཌའི་ལོགསི་འདི་ <emph>མཆོང་ལྡེ་</emph> འདི་ཨེབ་གཏང་འབད།"
@@ -3736,7 +3492,6 @@ msgstr "ཚད་བཟུང་ཚུ་ <emph>མཆོང་ལྡེ་</emp
msgctxt ""
"01030400.xhp\n"
"par_id3159206\n"
-"64\n"
"help.text"
msgid "Select the library where the module will be inserted and click <emph>New</emph>."
msgstr "ཚད་བཟུང་འདི་ག་སྟེ་བཙུགས་དགོ་པའི་དཔེ་མཛོད་འདི་སེལ་འཐུ་འབད་ནི་དང་ གསརཔ་<emph>ཨེབ་གཏང་འབད་</emph>."
@@ -3745,7 +3500,6 @@ msgstr "ཚད་བཟུང་འདི་ག་སྟེ་བཙུགས་
msgctxt ""
"01030400.xhp\n"
"par_id3152389\n"
-"65\n"
"help.text"
msgid "Enter a name for the module or the dialog and click <emph>OK</emph>."
msgstr "ཚད་བཟུང་ཡང་ན་ཌའི་ལོག་གི་དོན་ལུ་མིང་བཙུགས་ནི་དང་ བཏུབ་ <emph>ཨེབ་གཏང་འབད</emph>."
@@ -3754,7 +3508,6 @@ msgstr "ཚད་བཟུང་ཡང་ན་ཌའི་ལོག་གི་
msgctxt ""
"01030400.xhp\n"
"hd_id3152872\n"
-"25\n"
"help.text"
msgid "Renaming a Module or Dialog"
msgstr "ཚད་བཟུང་ཡང་ན་ཌའི་ལོག་བསྐྱར་མིང་བཏགས་དོ།"
@@ -3763,7 +3516,6 @@ msgstr "ཚད་བཟུང་ཡང་ན་ཌའི་ལོག་བསྐ
msgctxt ""
"01030400.xhp\n"
"par_id3159230\n"
-"66\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
msgstr "ལག་ཆས་ཚུ མེཀརོསི་ མེཀརོསི་འགོ་འདྲེན་འཐབ ་%PRODUCTNAME གཞི་རྟེན་<emph> གདམ་ </emph> དང་ <emph> འགོ་འདྲེན་འཐབ་ཨེབ་གཏང་འབད </emph> ཡང་ན་ <emph> ཚད་བཟུང་སེལ་འཐུ་འབད </emph> ཨའི་ཌི་ཨི་གཞི་རྟེན་ནང་གི་ངོས་དཔར་ <emph> མེཀརོ་འགོ་འདྲེན་ཌའི་ལོག་ཁ་ཕྱེ་ནིའི་དོན་ལུ་ ཨེབ་གཏང་འབད</emph>"
@@ -3772,7 +3524,6 @@ msgstr "ལག་ཆས་ཚུ མེཀརོསི་ མེཀརོསི
msgctxt ""
"01030400.xhp\n"
"par_id3150046\n"
-"67\n"
"help.text"
msgid "Click the module to be renamed twice, with a pause between the clicks. Enter the new name."
msgstr "ཚད་བཟུང་འདི་ཚར་་གཉིས་བསྐྱར་མིང་བཏགས་ནི་ཨེབ་གཏང་འབད་ནི་ བཅས་ཨེབ་གཏང་ཚུའི་བར་ན་ཐེམ། མིང་གསརཔ་བཙུགས།"
@@ -3781,7 +3532,6 @@ msgstr "ཚད་བཟུང་འདི་ཚར་་གཉིས་བསྐ
msgctxt ""
"01030400.xhp\n"
"par_id3153801\n"
-"27\n"
"help.text"
msgid "In the Basic IDE, right-click the name of the module or dialog in the tabs at the bottom of the screen, choose <emph>Rename</emph> and type in the new name."
msgstr "གཞི་རྟེན་ཨའི་ཌི་ཨི་ནང་ལུ་གསལ་གཞིའི་མཇུག་གི་མཆོང་ལྡེ་ནང་་ཌའི་ལོག་ཡང་ན་ཚད་བཟུང་གི་མིང་་འདི་གཡས་ཨེབ་གཏང་འབད་ <emph>བསྐྱར་མིང་</emph> དང་མིང་གསརཔ་་དབྱེ་བ་ནང་གདམ།"
@@ -3790,7 +3540,6 @@ msgstr "གཞི་རྟེན་ཨའི་ཌི་ཨི་ནང་ལུ
msgctxt ""
"01030400.xhp\n"
"par_id3155526\n"
-"28\n"
"help.text"
msgid "Press Enter to confirm your changes."
msgstr "ཁྱོད་ཀྱི་བསྒྱུར་བཅོས་ཚུ་ངེས་དཔྱད་འབད་ནིའི་དོན་ལུ་ བཙུགས་ ཨེབ།"
@@ -3799,7 +3548,6 @@ msgstr "ཁྱོད་ཀྱི་བསྒྱུར་བཅོས་ཚུ་
msgctxt ""
"01030400.xhp\n"
"hd_id3146963\n"
-"29\n"
"help.text"
msgid "Deleting a Module or Dialog"
msgstr "ཚད་བཟུང་ཡང་ན་ཌའི་ལོག་བཏོན་གཏང་དོ།"
@@ -3808,7 +3556,6 @@ msgstr "ཚད་བཟུང་ཡང་ན་ཌའི་ལོག་བཏོ
msgctxt ""
"01030400.xhp\n"
"par_id3147547\n"
-"68\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
msgstr "ལག་ཆས་ཚུ མེཀརོསི་ མེཀརོསི་འགོ་འདྲེན་འཐབ ་%PRODUCTNAME གཞི་རྟེན་<emph> གདམ་ </emph> དང་ <emph> འགོ་འདྲེན་འཐབ་ཨེབ་གཏང་འབད </emph> ཡང་ན་ <emph> ཚད་བཟུང་སེལ་འཐུ་འབད </emph> ཨའི་ཌི་ཨི་གཞི་རྟེན་ནང་གི་ངོས་དཔར་ <emph> མེཀརོ་འགོ་འདྲེན་ཌའི་ལོག་ཁ་ཕྱེ་ནིའི་དོན་ལུ་ ཨེབ་གཏང་འབད</emph>"
@@ -3817,7 +3564,6 @@ msgstr "ལག་ཆས་ཚུ མེཀརོསི་ མེཀརོསི
msgctxt ""
"01030400.xhp\n"
"par_id3150958\n"
-"69\n"
"help.text"
msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
msgstr "ཚད་བཟུང་ཚུ་ <emph>མཆོང་ལྡེ་</emph> ཌའི་ལོགསི་འདི་ <emph>མཆོང་ལྡེ་</emph> འདི་ཨེབ་གཏང་འབད།"
@@ -3826,7 +3572,6 @@ msgstr "ཚད་བཟུང་ཚུ་ <emph>མཆོང་ལྡེ་</emp
msgctxt ""
"01030400.xhp\n"
"par_id3149870\n"
-"30\n"
"help.text"
msgid "Select the module or dialog to be deleted from the list. Double-click an entry to reveal sub-entries, if required."
msgstr "ཐོ་ཡིག་འདི་ནང་ལས་བཏོན་གཏང་ནི་ཨིན་མི་ཌའི་ལོག་ཡང་ན་ཚད་གཞི་འདི་སེལ་འཐུ་འབད། ཐོ་བཀོད་འོག་མ་ཚུ་ཕྱིར་གསལ་དགོས་མཁོ་ཨིན་པ་ཅིན་ཐོ་བཀོད་འདི་ལོག་ལྟབ་ཨེབ་གཏང་འབད།"
@@ -3835,7 +3580,6 @@ msgstr "ཐོ་ཡིག་འདི་ནང་ལས་བཏོན་གཏ
msgctxt ""
"01030400.xhp\n"
"par_id3147248\n"
-"32\n"
"help.text"
msgid "Click <emph>Delete</emph>."
msgstr "བཏོན་གཏང་ <emph>ཨེབ་གཏང་འབད།</emph>."
@@ -3844,7 +3588,6 @@ msgstr "བཏོན་གཏང་ <emph>ཨེབ་གཏང་འབད།</
msgctxt ""
"01030400.xhp\n"
"par_id3151339\n"
-"31\n"
"help.text"
msgid "Deleting a module permanently deletes all existing procedures and functions in that module."
msgstr "ཚད་གཞི་རྟག་གཏན་རྩ་བསྐྲད་གཏང་མི་གིས་ཚད་གཞི་ནང་གི་ལས་འགན་ཚུ་དང་བྱ་སྒོའི་ལམ་ལུགས་ཡོད་མི་ཚུ་ཆ་མཉམ་རྩ་བསྐྲད་གཏངམ་ཨིན།"
@@ -3853,7 +3596,6 @@ msgstr "ཚད་གཞི་རྟག་གཏན་རྩ་བསྐྲད་
msgctxt ""
"01030400.xhp\n"
"hd_id3151392\n"
-"33\n"
"help.text"
msgid "Organizing Projects among Documents or Templates"
msgstr "ཡིག་ཆ་ཚུ་ཡང་ན་ཊེམ་པེལེཊིསི་བར་ན་ལས་འགུལ་ཚུ་ཚོགས་སྡེ་བཟོ་དོ།"
@@ -3862,7 +3604,6 @@ msgstr "ཡིག་ཆ་ཚུ་ཡང་ན་ཊེམ་པེལེཊི
msgctxt ""
"01030400.xhp\n"
"hd_id3156400\n"
-"36\n"
"help.text"
msgid "Moving or copying modules between documents, templates and the application."
msgstr "འཇུག་སྤྱོད་འདི་དང་ཊེམ་པེལེཊིསི་ ཡིག་ཆ་ཚུའི་བར་ན་ཚད་གཞི་ཚུ་འདྲ་བཤུས་འབད་བའི་བསྒང་ཡང་ན་སྤོ་བཤུས་འབད་དོ།"
@@ -3871,7 +3612,6 @@ msgstr "འཇུག་སྤྱོད་འདི་དང་ཊེམ་པེ
msgctxt ""
"01030400.xhp\n"
"par_id3146819\n"
-"37\n"
"help.text"
msgid "Open all documents or templates among which you want to move or copy the modules or dialogs."
msgstr "ཁྱོད་རའི་སྤོ་བཤུས་ཡང་ན་ཚད་གཞི་ཚུ་འདྲ་བཤུས་ཡང་ན་ཌའི་ལོག་ཚུ་ཊེམ་པེལེཊི་ཚུའི་བར་ན་ཡང་ན་ཡིག་ཆ་ཚུ་ཆ་མཉམ་ཁ་ཕྱེ།"
@@ -3880,7 +3620,6 @@ msgstr "ཁྱོད་རའི་སྤོ་བཤུས་ཡང་ན་ཚ
msgctxt ""
"01030400.xhp\n"
"par_id3149319\n"
-"38\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
msgstr "ལག་ཆས་ཚུ མེཀརོསི་ མེཀརོསི་འགོ་འདྲེན་འཐབ ་%PRODUCTNAME གཞི་རྟེན་<emph> གདམ་ </emph> དང་ <emph> འགོ་འདྲེན་འཐབ་ཨེབ་གཏང་འབད </emph> ཡང་ན་ <emph> ཚད་བཟུང་སེལ་འཐུ་འབད </emph> ཨའི་ཌི་ཨི་གཞི་རྟེན་ནང་གི་ངོས་དཔར་ <emph> མེཀརོ་འགོ་འདྲེན་ཌའི་ལོག་ཁ་ཕྱེ་ནིའི་དོན་ལུ་ ཨེབ་གཏང་འབད</emph>"
@@ -3889,7 +3628,6 @@ msgstr "ལག་ཆས་ཚུ མེཀརོསི་ མེཀརོསི
msgctxt ""
"01030400.xhp\n"
"par_id3145637\n"
-"39\n"
"help.text"
msgid "To move a module or dialog to another document, click the corresponding object in the list and drag it to the desired position. A horizontal line indicates the target position of the current object while dragging. Hold the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while dragging to copy the object instead of moving it."
msgstr "ཚད་གཞི་ཡང་ན་ཌའི་ལོག་ཡིག་ཆ་གཞན་ལུ་སྤོ་ནི་ལུ་ ཐོ་ཡིག་ནང་མཉམ་པའི་ཐོག་ལས་དངོས་པོ་ནང་ཨེབ་གཏང་འབད་ནི་དང་རེ་འདུན་གནས་ས་འདི་ལུ་འདྲུད་འབད། ཐད་སྙོམས་གྱལ་གྱིསའདྲུད་པའི་སྐབས་ད་ལྟོའི་དངོས་པོ་གི་དམིགས་གཏད་གནས་ས་འདི་བརྡ་སྟོནམ་ཨིན། <switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline> ལྡེ་མིག་སྤོ་བའི་ཚབ་དངོས་པོ་འདྲ་བཤུས་ལུ་འདྲུད་པའི་སྐབས་འཆང་།"
@@ -3914,7 +3652,6 @@ msgstr "<bookmark_value>བཏོན་གཏང་དོ། བྱུང་ལ
msgctxt ""
"01040000.xhp\n"
"hd_id3147348\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Event-Driven Macros</link>"
msgstr "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">བྱུང་ལས་ཌའིབན་ མེཀརོསི</link>"
@@ -3923,7 +3660,6 @@ msgstr "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macro
msgctxt ""
"01040000.xhp\n"
"par_id3146120\n"
-"2\n"
"help.text"
msgid "This section describes how to assign Basic programs to program events."
msgstr "འ་ནི་དབྱེ་ཚན་གྱིས་ལས་རིམ་བྱུང་ལས་ཚུ་ལུ་གཞི་རྟེན་ལས་རིམ་ཚུ་ག་དེ་སྦེ་འགན་སྤྲོད་ནིའི་འགྲེལ་བཤདཔ་ཨིན།"
@@ -3932,7 +3668,6 @@ msgstr "འ་ནི་དབྱེ་ཚན་གྱིས་ལས་རིམ
msgctxt ""
"01040000.xhp\n"
"par_id3149263\n"
-"4\n"
"help.text"
msgid "You can automatically execute a macro when a specified software event occurs by assigning the desired macro to the event. The following table provides an overview of program events and at what point an assigned macro is executed."
msgstr "ཁྱོད་ཀྱིས་མེཀརོ་ཅིག་གསལ་བཀོད་འབད་ཡོད་པའི་མཉེན་ཆས་འབྱུང་ལས་འབྱུང་བའི་སྐབས་འབྱུང་ལས་ལུ་རེ་འདུན་མེཀརོ་འགན་སྤྲོད་འདི་གི་་རང་བཞིན་གྱིས་ལག་ལེན་འཐབ་བཏུབ་ཨིན། འོག་གི་ཐིག་ཁྲམ་འདི་གིས་ལས་རིམ་འབྱུང་ལས་ཚུ་དང་འགན་སྤྲོད་ཡོད་པའི་མེཀརོ་འདི་ས་ཚིགས་ག་ལུ་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན་ན་གི་སྤྱི་མཐོང་བྱིནམ་ཨིན།"
@@ -3941,7 +3676,6 @@ msgstr "ཁྱོད་ཀྱིས་མེཀརོ་ཅིག་གསལ་
msgctxt ""
"01040000.xhp\n"
"par_id3148455\n"
-"5\n"
"help.text"
msgid "Event"
msgstr "བྱུང་ལས།"
@@ -3950,7 +3684,6 @@ msgstr "བྱུང་ལས།"
msgctxt ""
"01040000.xhp\n"
"par_id3145799\n"
-"6\n"
"help.text"
msgid "An assigned macro is executed..."
msgstr "འགན་སྤྲོད་མི་མེཀརོ་འདི་ལག་ལེན་འཐབ་ཡོདཔ..."
@@ -3959,7 +3692,6 @@ msgstr "འགན་སྤྲོད་མི་མེཀརོ་འདི་ལ
msgctxt ""
"01040000.xhp\n"
"par_id3149379\n"
-"7\n"
"help.text"
msgid "Program Start"
msgstr "ལས་རིམ་འགོ་བཙུགས།"
@@ -3968,7 +3700,6 @@ msgstr "ལས་རིམ་འགོ་བཙུགས།"
msgctxt ""
"01040000.xhp\n"
"par_id3150715\n"
-"8\n"
"help.text"
msgid "... after a $[officename] application is started."
msgstr "... $[officename] གི་ཤུལ་ལས་འཇུག་སྤྱོད་འདི་འགོ་བཙུགས་ཚརཝ་ད།"
@@ -3977,7 +3708,6 @@ msgstr "... $[officename] གི་ཤུལ་ལས་འཇུག་སྤ
msgctxt ""
"01040000.xhp\n"
"par_id3146914\n"
-"9\n"
"help.text"
msgid "Program End"
msgstr "ལས་རིམ་མཇུག"
@@ -3986,7 +3716,6 @@ msgstr "ལས་རིམ་མཇུག"
msgctxt ""
"01040000.xhp\n"
"par_id3153765\n"
-"10\n"
"help.text"
msgid "...before a $[officename] application is terminated."
msgstr "... $[officename] ཧེ་མ་འཇུག་སྤྱོད་འདི་རྩ་གྲོལ་ཡོདཔ་ད།"
@@ -3995,7 +3724,6 @@ msgstr "... $[officename] ཧེ་མ་འཇུག་སྤྱོད་འད
msgctxt ""
"01040000.xhp\n"
"par_id3145150\n"
-"11\n"
"help.text"
msgid "Create Document"
msgstr "ཡིག་ཆ་གསར་བསྐྲུན་འབད།"
@@ -4004,7 +3732,6 @@ msgstr "ཡིག་ཆ་གསར་བསྐྲུན་འབད།"
msgctxt ""
"01040000.xhp\n"
"par_id3163808\n"
-"12\n"
"help.text"
msgid "...after a new document is created with <emph>File - New</emph> or with the <emph>New</emph> icon."
msgstr "...ཡིག་ཆ་གསརཔ་འདི་གསར་བསྐྲུན་འབད་ཚར་བའི་ཤུལ་དང་བཅས <emph>ཡིག་སྣོད་ - གསརཔ</emph> ཡང་ན་འདི་དང་གཅིག་ཁར <emph>ངོས་དཔར</emph> གསརཔ།"
@@ -4013,7 +3740,6 @@ msgstr "...ཡིག་ཆ་གསརཔ་འདི་གསར་བསྐྲ
msgctxt ""
"01040000.xhp\n"
"par_id3145790\n"
-"13\n"
"help.text"
msgid "Open Document"
msgstr "ཡིག་ཆ་ཁ་ཕྱེ།"
@@ -4022,7 +3748,6 @@ msgstr "ཡིག་ཆ་ཁ་ཕྱེ།"
msgctxt ""
"01040000.xhp\n"
"par_id3154572\n"
-"14\n"
"help.text"
msgid "...after a document is opened with <emph>File - Open</emph> or with the <emph>Open</emph> icon."
msgstr "...ཡིག་ཆ་འདི་ཁ་ཕྱེ་ཚར་བའི་ཤུལ་དང་གཅིག་ཁར <emph>ཡིག་སྣོད - ཁ་ཕྱེ</emph> ཡང་ན་འདི་དང་གཅིག་ཁར <emph>ངོས་དཔར</emph> ཁ་ཕྱེ།"
@@ -4031,7 +3756,6 @@ msgstr "...ཡིག་ཆ་འདི་ཁ་ཕྱེ་ཚར་བའི་
msgctxt ""
"01040000.xhp\n"
"par_id3153266\n"
-"15\n"
"help.text"
msgid "Save Document As"
msgstr "ཡིག་ཆ་བཟུམ་སྦེ་སྲུངས་བཞག"
@@ -4040,7 +3764,6 @@ msgstr "ཡིག་ཆ་བཟུམ་སྦེ་སྲུངས་བཞག
msgctxt ""
"01040000.xhp\n"
"par_id3150208\n"
-"16\n"
"help.text"
msgid "...before a document is saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or the <emph>Save</emph> icon, if a document name has not yet been specified)."
msgstr "...ཡིག་ཆ་འདི་གསལ་བཀོད་འབད་ཡོད་པའི་མིང་འོག་ལུ་ (with <emph>ཡིག་སྣོད་ སྲུང་སྦེ་ སྲུང་བཞག་པའི་ཧེ་མ</emph>, ཡང་ན་ <emph>ཡིག་སྣོད་ སྲུང་དང་གཅིག་ཁར་</emph> ཡང་ན་ <emph>ངོས་དཔར་</emph> སྲུང་འདི་ ཡིག་ཆ་མིང་འདི་གསལ་བཀོད་མ་འབདཝ་ད)."
@@ -4049,7 +3772,6 @@ msgstr "...ཡིག་ཆ་འདི་གསལ་བཀོད་འབད་
msgctxt ""
"01040000.xhp\n"
"par_id3158215\n"
-"43\n"
"help.text"
msgid "Document has been saved as"
msgstr "ཡིག་ཆ་འདི་སྲུངས་ཡོདཔ་བཟུམ་སྦེ།"
@@ -4058,7 +3780,6 @@ msgstr "ཡིག་ཆ་འདི་སྲུངས་ཡོདཔ་བཟུ
msgctxt ""
"01040000.xhp\n"
"par_id3150980\n"
-"44\n"
"help.text"
msgid "... after a document was saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or with the <emph>Save</emph> icon, if a document name has not yet been specified)."
msgstr "...ཡིག་ཆ་འདི་གསལ་བཀོད་འབད་ཡོད་པའི་མིང་འོག་ལུ་སྲུང་བཞག་པའི་ཤུལ་ལུ(with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or with the <emph>Save</emph> icon, if a document name has not yet been specified)."
@@ -4067,7 +3788,6 @@ msgstr "...ཡིག་ཆ་འདི་གསལ་བཀོད་འབད་
msgctxt ""
"01040000.xhp\n"
"par_id3150519\n"
-"17\n"
"help.text"
msgid "Save Document"
msgstr "ཡིག་ཆ་སྲུངས་བཞག"
@@ -4076,7 +3796,6 @@ msgstr "ཡིག་ཆ་སྲུངས་བཞག"
msgctxt ""
"01040000.xhp\n"
"par_id3155529\n"
-"18\n"
"help.text"
msgid "...before a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
msgstr "...ཡིག་ཆ་འདི་དང་གཅིག་ཁར་ <emph>ཡིག་སྣོད་ སྲུང་བཞག་</emph> ཡང་ན་ <emph>སྲུང་བཞག་་</emph> ངོས་དཔར་ ཡིག་ཆ་མིང་ཧེ་མ་ལས་གསལ་བཀོད་འབད་བྱིན་ཡོད་མི་སྲུང་བཞག་བའི་ཧེ་མ།"
@@ -4085,7 +3804,6 @@ msgstr "...ཡིག་ཆ་འདི་དང་གཅིག་ཁར་ <emph
msgctxt ""
"01040000.xhp\n"
"par_id3149404\n"
-"45\n"
"help.text"
msgid "Document has been saved"
msgstr "ཡིག་ཆ་སྲུངས་བཞག་ཡོདཔ།"
@@ -4094,7 +3812,6 @@ msgstr "ཡིག་ཆ་སྲུངས་བཞག་ཡོདཔ།"
msgctxt ""
"01040000.xhp\n"
"par_id3151332\n"
-"46\n"
"help.text"
msgid "...after a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
msgstr "...ཡིག་ཆ་འདི་སྲུང་བཞག་འབད་ཚར་་བའི་ཤུལ་ལུ་དང་བཅས <emph>ཡིག་སྣོད - སྲུང་བཞག</emph> ཡང་ན་ ངོས་དཔར་ <emph> འདི་</emph> ཧེ་མ་ལས་གསལ་བཀོད་འབད་ཡོད་པའི་ཡིག་ཆ་མིང་བྱིན་ཏེ་ཡོད་མི་དེ་སྲུང་བཞག་འབད།"
@@ -4103,7 +3820,6 @@ msgstr "...ཡིག་ཆ་འདི་སྲུང་བཞག་འབད་
msgctxt ""
"01040000.xhp\n"
"par_id3159171\n"
-"19\n"
"help.text"
msgid "Document is closing"
msgstr ""
@@ -4112,7 +3828,6 @@ msgstr ""
msgctxt ""
"01040000.xhp\n"
"par_id3146868\n"
-"20\n"
"help.text"
msgid "...before a document is closed."
msgstr "...ཡིག་ཆ་ཁ་བསྡམས་པའི་ཧེ་མ།"
@@ -4121,7 +3836,6 @@ msgstr "...ཡིག་ཆ་ཁ་བསྡམས་པའི་ཧེ་མ།
msgctxt ""
"01040000.xhp\n"
"par_id3159097\n"
-"47\n"
"help.text"
msgid "Document closed"
msgstr ""
@@ -4130,7 +3844,6 @@ msgstr ""
msgctxt ""
"01040000.xhp\n"
"par_id3148606\n"
-"48\n"
"help.text"
msgid "...after a document was closed. Note that the \"Save Document\" event may also occur when the document is saved before closing."
msgstr "...ཤུལ་ལས་ཡིག་ཆ་ཁ་བསྡམས་ཚར་་ཡི། དྲན་དགོཔ་འདི་ \"Save Document\" བྱུང་ལས་དོ་རུང་ཡིག་ཆ་ཁ་བསྡམས་པའི་ཧེ་མ་སྲུངས་འབད་ཚར་རུང་འབྱུང་འོང་།"
@@ -4139,7 +3852,6 @@ msgstr "...ཤུལ་ལས་ཡིག་ཆ་ཁ་བསྡམས་ཚར
msgctxt ""
"01040000.xhp\n"
"par_id3144772\n"
-"21\n"
"help.text"
msgid "Activate Document"
msgstr "ཡིག་ཆ་ཤུགས་ལྡན་བཟོ།"
@@ -4148,7 +3860,6 @@ msgstr "ཡིག་ཆ་ཤུགས་ལྡན་བཟོ།"
msgctxt ""
"01040000.xhp\n"
"par_id3149442\n"
-"22\n"
"help.text"
msgid "...after a document is brought to the foreground."
msgstr "...ཡིག་ཆ་འདི་གདོང་གཞི་ལུ་འབག་འོང་པའི་ཤུལ་ལས།"
@@ -4157,7 +3868,6 @@ msgstr "...ཡིག་ཆ་འདི་གདོང་གཞི་ལུ་འ
msgctxt ""
"01040000.xhp\n"
"par_id3150888\n"
-"23\n"
"help.text"
msgid "Deactivate Document"
msgstr "ཡིག་ཆ་ཤུགས་མེད་བཟོ།"
@@ -4166,7 +3876,6 @@ msgstr "ཡིག་ཆ་ཤུགས་མེད་བཟོ།"
msgctxt ""
"01040000.xhp\n"
"par_id3154060\n"
-"24\n"
"help.text"
msgid "...after another document is brought to the foreground."
msgstr "...ཡིག་ཆ་གཞན་འདི་གདོང་གཞི་ལུ་འབག་འོང་པའི་ཤུལ་ལུ།"
@@ -4175,7 +3884,6 @@ msgstr "...ཡིག་ཆ་གཞན་འདི་གདོང་གཞི་
msgctxt ""
"01040000.xhp\n"
"par_id3152384\n"
-"25\n"
"help.text"
msgid "Print Document"
msgstr "ཡིག་ཆ་དཔར་བསྐྲུན་འབད།"
@@ -4184,7 +3892,6 @@ msgstr "ཡིག་ཆ་དཔར་བསྐྲུན་འབད།"
msgctxt ""
"01040000.xhp\n"
"par_id3152873\n"
-"26\n"
"help.text"
msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins."
msgstr "...དཔར་བསྐྲུན་ <emph>འདིའི་ཤུལ་མ་</emph> ཌའི་ལོག་ཁ་བསྡམས་ཡོདཔ་ ཨིན་རུང་དཔར་བསྐྲུན་ལས་སྦྱོར་ངོ་མ་འགོ་བཙུགས་པའི་ཧེ་མ།"
@@ -4193,7 +3900,6 @@ msgstr "...དཔར་བསྐྲུན་ <emph>འདིའི་ཤུལ
msgctxt ""
"01040000.xhp\n"
"par_id3159227\n"
-"49\n"
"help.text"
msgid "JavaScript run-time error"
msgstr "ཇ་བ་ཡིག་ཚུགས་རཱན་ཊའིམ་འཛོལ་བ།"
@@ -4202,7 +3908,6 @@ msgstr "ཇ་བ་ཡིག་ཚུགས་རཱན་ཊའིམ་འཛ
msgctxt ""
"01040000.xhp\n"
"par_id3145362\n"
-"50\n"
"help.text"
msgid "...when a JavaScript run-time error occurs."
msgstr "...ཇ་བ་ཡིག་ཚུགས་རཱན་ཊའིམ་འཛོལ་བ་འབྱུངམ་ད་ལུ།"
@@ -4211,7 +3916,6 @@ msgstr "...ཇ་བ་ཡིག་ཚུགས་རཱན་ཊའིམ་འ
msgctxt ""
"01040000.xhp\n"
"par_id3154767\n"
-"27\n"
"help.text"
msgid "Print Mail Merge"
msgstr "དཔར་བསྐྲུན་འཕྲིན་དོན་མཉམ་བསྡོམས་འབད་ནི།"
@@ -4220,7 +3924,6 @@ msgstr "དཔར་བསྐྲུན་འཕྲིན་དོན་མཉམ
msgctxt ""
"01040000.xhp\n"
"par_id3153555\n"
-"28\n"
"help.text"
msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins. This event occurs for each copy printed."
msgstr "...དཔར་བསྐྲུན་ <emph>འདིའི་ཤུལ་ལས་</emph> ཌའི་ལོག་ཁ་བསྡམས་ཡོདཔ ཨིན་རུང་དཔར་བསྐྲུན་ལས་སྦྱོར་ངོ་མ་འགོ་བཙུགས་པའི་ཧེ་མ། དཔར་བསྐྲུན་འབད་ཡོད་པའི་འདྲ་བཤུས་རེ་རེ་དོན་ལུ་འ་ནི་བྱུང་ལས་འབྱུངམ་ཨིན།"
@@ -4229,7 +3932,6 @@ msgstr "...དཔར་བསྐྲུན་ <emph>འདིའི་ཤུལ
msgctxt ""
"01040000.xhp\n"
"par_id3156366\n"
-"51\n"
"help.text"
msgid "Change of the page count"
msgstr "ཤོག་ལེབ་གྱངས་ཁ་རྐྱབས་ནིའི་བསྒྱུར་བཅོས།"
@@ -4238,7 +3940,6 @@ msgstr "ཤོག་ལེབ་གྱངས་ཁ་རྐྱབས་ནིའ
msgctxt ""
"01040000.xhp\n"
"par_id3154627\n"
-"52\n"
"help.text"
msgid "...when the page count changes."
msgstr "...ཤོག་ལེབ་གྱངས་ཁ་རྐྱབས་ནི་བསྒྱུར་བཅོས་འབད་བའི་སྐབས།"
@@ -4247,7 +3948,6 @@ msgstr "...ཤོག་ལེབ་གྱངས་ཁ་རྐྱབས་ནི
msgctxt ""
"01040000.xhp\n"
"par_id3154737\n"
-"53\n"
"help.text"
msgid "Message received"
msgstr "འཕྲིན་དོན་ཐོབ་ཅི།"
@@ -4256,7 +3956,6 @@ msgstr "འཕྲིན་དོན་ཐོབ་ཅི།"
msgctxt ""
"01040000.xhp\n"
"par_id3150952\n"
-"54\n"
"help.text"
msgid "...if a message was received."
msgstr "...འཕྲིན་དོན་གཅིག་ཐོབ་ཡོད་པ་ཅིན།"
@@ -4265,7 +3964,6 @@ msgstr "...འཕྲིན་དོན་གཅིག་ཐོབ་ཡོད་
msgctxt ""
"01040000.xhp\n"
"hd_id3153299\n"
-"30\n"
"help.text"
msgid "Assigning a Macro to an Event"
msgstr "མེཀརོ་ལས་བྱུང་ལས་ལུ་འགན་སྤྲོད་འབད་དོ།"
@@ -4274,7 +3972,6 @@ msgstr "མེཀརོ་ལས་བྱུང་ལས་ལུ་འགན་
msgctxt ""
"01040000.xhp\n"
"par_id3147244\n"
-"31\n"
"help.text"
msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
msgstr "ལག་ཆས་ཚུ་ སྲོལ་སྒྲིག་་<emph>གདམ་</emph> དང་བྱུང་ལས་ཚུ་ <emph>མཆོང་ལྡེ་</emph> འདི་ཨེབ་གཏང་འབད།"
@@ -4283,7 +3980,6 @@ msgstr "ལག་ཆས་ཚུ་ སྲོལ་སྒྲིག་་<emph>
msgctxt ""
"01040000.xhp\n"
"par_id3146098\n"
-"55\n"
"help.text"
msgid "Select whether you want the assignment to be globally valid or just valid in the current document in the <emph>Save In</emph> listbox."
msgstr ""
@@ -4292,7 +3988,6 @@ msgstr ""
msgctxt ""
"01040000.xhp\n"
"par_id3150431\n"
-"32\n"
"help.text"
msgid "Select the event from the <emph>Event</emph> list."
msgstr "<emph>བྱུང་ལས་</emph> ཐོ་ཡིག་ ནང་ལས་བྱུང་ལས་སེལ་འཐུ་འབད།"
@@ -4301,7 +3996,6 @@ msgstr "<emph>བྱུང་ལས་</emph> ཐོ་ཡིག་ ནང་ལ
msgctxt ""
"01040000.xhp\n"
"par_id3148742\n"
-"33\n"
"help.text"
msgid "Click <emph>Macro</emph> and select the macro to be assigned to the selected event."
msgstr ""
@@ -4310,7 +4004,6 @@ msgstr ""
msgctxt ""
"01040000.xhp\n"
"par_id3146321\n"
-"35\n"
"help.text"
msgid "Click <emph>OK</emph> to assign the macro."
msgstr "དཔེ་མཛོད་མཇུག་བསྣོན་ལུ་ <emph>བཏུབ</emph> ཨེབ་གཏང་འབད།"
@@ -4319,7 +4012,6 @@ msgstr "དཔེ་མཛོད་མཇུག་བསྣོན་ལུ་ <e
msgctxt ""
"01040000.xhp\n"
"par_id3147414\n"
-"56\n"
"help.text"
msgid "Click <emph>OK</emph> to close the dialog."
msgstr "ཌའི་ལོག་ཁ་བསྡམས་ནིའི་དོན་ལུ་ བཏུབ<emph>ཨེབ་གཏང་འབད།</emph>"
@@ -4328,7 +4020,6 @@ msgstr "ཌའི་ལོག་ཁ་བསྡམས་ནིའི་དོན
msgctxt ""
"01040000.xhp\n"
"hd_id3154581\n"
-"36\n"
"help.text"
msgid "Removing the Assignment of a Macro to an Event"
msgstr "མེཀརོ་གི་འགན་ལས་བྱུང་ལས་ལུ་རྩ་བསྐྲད་གཏང་དོ།"
@@ -4337,7 +4028,6 @@ msgstr "མེཀརོ་གི་འགན་ལས་བྱུང་ལས་
msgctxt ""
"01040000.xhp\n"
"par_id3146883\n"
-"57\n"
"help.text"
msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
msgstr "ལག་ཆས་ཚུ་ སྲོལ་སྒྲིག་་<emph>གདམ་</emph> དང་བྱུང་ལས་ཚུ་ <emph>མཆོང་ལྡེ་</emph> འདི་ཨེབ་གཏང་འབད།"
@@ -4346,7 +4036,6 @@ msgstr "ལག་ཆས་ཚུ་ སྲོལ་སྒྲིག་་<emph>
msgctxt ""
"01040000.xhp\n"
"par_id3155909\n"
-"58\n"
"help.text"
msgid "Select whether you want to remove a global assignment or an assignment that is just valid in the current document by selecting the option in the <emph>Save In</emph> listbox."
msgstr "ཁྱོད་ཀྱིས་སྤྱི་ཁྱབ་ལས་འགུལ་ཡང་ན་ད་ལྟོའི་ཡིག་ཆ་ནང་ནུས་ཅན་ལས་འགུལ་འདི་ <emph>$[officename]</emph> ཡང་ན་<emph>ཡིག་ཆ་</emph> གདམ་ཁ་སེལ་འཐུ་འབད་འདི་གིས་རྩ་བསྐྲད་གཏང་ནི་ཨིན་ན་སེལ་འཐུ་འབད།"
@@ -4355,7 +4044,6 @@ msgstr "ཁྱོད་ཀྱིས་སྤྱི་ཁྱབ་ལས་འག
msgctxt ""
"01040000.xhp\n"
"par_id3159129\n"
-"59\n"
"help.text"
msgid "Select the event that contains the assignment to be removed from the <emph>Event</emph> list."
msgstr "<emph>བྱུང་ལས་</emph> ཐོ་ཡིག་ ནང་ལས་རྩ་བསྐྲད་གཏང་ནིའི་འགན་ལས་ནང་ན་ཡོད་མི་བྱུང་ལས་སེལ་འཐུ་འབད།"
@@ -4364,7 +4052,6 @@ msgstr "<emph>བྱུང་ལས་</emph> ཐོ་ཡིག་ ནང་ལ
msgctxt ""
"01040000.xhp\n"
"par_id3149143\n"
-"37\n"
"help.text"
msgid "Click <emph>Remove</emph>."
msgstr "རྩ་བསྐྲད་གཏང་ <emph>ཨེབ་གཏང་འབད</emph>."
@@ -4373,7 +4060,6 @@ msgstr "རྩ་བསྐྲད་གཏང་ <emph>ཨེབ་གཏང་
msgctxt ""
"01040000.xhp\n"
"par_id3149351\n"
-"60\n"
"help.text"
msgid "Click <emph>OK</emph> to close the dialog."
msgstr "ཌའི་ལོག་ཁ་བསྡམས་ནིའི་དོན་ལུ་ བཏུབ<emph>ཨེབ་གཏང་འབད།</emph>"
@@ -4390,7 +4076,6 @@ msgstr "$[officename] གཞི་རྟེན་ ཨའི་ཌི་ཨི།
msgctxt ""
"01050000.xhp\n"
"hd_id3154422\n"
-"1\n"
"help.text"
msgid "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\" name=\"$[officename] Basic IDE\">$[officename] Basic IDE</link></variable>"
msgstr "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\" name=\"$[officename] Basic IDE\">$[officename] གཞི་རྟེན་ ཨའི་ཌི་ཨི་</link></variable>"
@@ -4399,7 +4084,6 @@ msgstr "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\"
msgctxt ""
"01050000.xhp\n"
"par_id3153142\n"
-"2\n"
"help.text"
msgid "This section describes the structure of the Basic IDE."
msgstr "འ་ནི་དབྱེ་ཚན་གྱིས་གཞི་རྟེན་ཨའི་དི་ཨི་ གི་གཞི་བཀོད་འགྲེལ་བཤད་འབདཝ་ཨིན།"
@@ -4416,7 +4100,6 @@ msgstr "<ahelp hid=\".\" visibility=\"hidden\">གཞི་རྟེན་ཨའ
msgctxt ""
"01050000.xhp\n"
"hd_id3153188\n"
-"5\n"
"help.text"
msgid "Commands From the Context menu of the Module Tabs"
msgstr "ཚད་གཞི་མཆོང་ལྡེ་ཚུའི་དཀར་ཆག་སྐབས་དོན་ནང་ལས་བརྡ་བཀོད་ཚུ།"
@@ -4425,7 +4108,6 @@ msgstr "ཚད་གཞི་མཆོང་ལྡེ་ཚུའི་དཀར
msgctxt ""
"01050000.xhp\n"
"hd_id3154731\n"
-"6\n"
"help.text"
msgid "Insert"
msgstr "བཙུགས།"
@@ -4434,7 +4116,6 @@ msgstr "བཙུགས།"
msgctxt ""
"01050000.xhp\n"
"hd_id3151074\n"
-"8\n"
"help.text"
msgid "Module"
msgstr "ཚད་གཞི།"
@@ -4443,7 +4124,6 @@ msgstr "ཚད་གཞི།"
msgctxt ""
"01050000.xhp\n"
"par_id3149581\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\".uno:NewModule\">Inserts a new module into the current library.</ahelp>"
msgstr "<ahelp hid=\".uno:NewModule\">ཚད་གཞི་གསརཔ་འཕྲལ་གྱི་དཔེ་མཛོད་ནང་ལུ་བཙུགསཔ་ཨིན།</ahelp>"
@@ -4452,7 +4132,6 @@ msgstr "<ahelp hid=\".uno:NewModule\">ཚད་གཞི་གསརཔ་འཕ
msgctxt ""
"01050000.xhp\n"
"hd_id3147397\n"
-"10\n"
"help.text"
msgid "Dialog"
msgstr "ཌའི་ལོག"
@@ -4461,7 +4140,6 @@ msgstr "ཌའི་ལོག"
msgctxt ""
"01050000.xhp\n"
"par_id3144335\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\".uno:NewDialog\">Inserts a new dialog into the current library.</ahelp>"
msgstr "<ahelp hid=\".uno:NewDialog\">ཌའི་ལོག་གསརཔ་འཕྲལ་གྱི་དཔེ་མཛོད་ནང་ལུ་བཙུགསཔ་ཨིན།</ahelp>"
@@ -4470,7 +4148,6 @@ msgstr "<ahelp hid=\".uno:NewDialog\">ཌའི་ལོག་གསརཔ་འ
msgctxt ""
"01050000.xhp\n"
"hd_id3155602\n"
-"12\n"
"help.text"
msgid "Delete"
msgstr "བཏོན་གཏང་།"
@@ -4479,7 +4156,6 @@ msgstr "བཏོན་གཏང་།"
msgctxt ""
"01050000.xhp\n"
"par_id3155064\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\".uno:DeleteCurrent\">Deletes the selected module.</ahelp>"
msgstr "<ahelp hid=\".uno:DeleteCurrent\">ཚད་གཞི་སོལ་འཐུ་འབད་མི་འདི་བཏོན་གཏངམ་ཨིན།</ahelp>"
@@ -4488,7 +4164,6 @@ msgstr "<ahelp hid=\".uno:DeleteCurrent\">ཚད་གཞི་སོལ་འ
msgctxt ""
"01050000.xhp\n"
"hd_id3149018\n"
-"14\n"
"help.text"
msgid "Rename"
msgstr "བསྐྱར་མི་བཏགས།"
@@ -4497,7 +4172,6 @@ msgstr "བསྐྱར་མི་བཏགས།"
msgctxt ""
"01050000.xhp\n"
"par_id3154754\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\".uno:RenameCurrent\">Renames the current module in place.</ahelp>"
msgstr "<ahelp hid=\".uno:RenameCurrent\">\\ས་སྒོ་ནང་འཕྲལ་གྱི་ཚད་གཞི་བསྐྱར་མིང་བཏགསཔ་ཨིན།</ahelp>"
@@ -4506,7 +4180,6 @@ msgstr "<ahelp hid=\".uno:RenameCurrent\">\\ས་སྒོ་ནང་འཕྲ
msgctxt ""
"01050000.xhp\n"
"hd_id3150043\n"
-"16\n"
"help.text"
msgid "Hide"
msgstr "སྦ།"
@@ -4515,7 +4188,6 @@ msgstr "སྦ།"
msgctxt ""
"01050000.xhp\n"
"par_id3145147\n"
-"17\n"
"help.text"
msgid "<ahelp hid=\".uno:HideCurPage\">Hides the current module.</ahelp>"
msgstr "<ahelp hid=\".uno:HideCurPage\">འཕྲལ་གྱི་ཚད་གཞི་འདི་སྦཝ་ཨིན།</ahelp>"
@@ -4524,7 +4196,6 @@ msgstr "<ahelp hid=\".uno:HideCurPage\">འཕྲལ་གྱི་ཚད་ག
msgctxt ""
"01050000.xhp\n"
"hd_id3163805\n"
-"18\n"
"help.text"
msgid "Modules"
msgstr "ཚད་གཞི་ཚུ།"
@@ -4533,7 +4204,6 @@ msgstr "ཚད་གཞི་ཚུ།"
msgctxt ""
"01050000.xhp\n"
"par_id3153965\n"
-"19\n"
"help.text"
msgid "Opens the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog."
msgstr "མེཀརོ་འགོ་འདྲེན་པ་ <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>ཌའི་ལོག་</emph></link> འདི་ཁ་ཕྱེཝ་ཨིན།"
@@ -4550,7 +4220,6 @@ msgstr "ཝིན་དོ་བལྟ་ཞིབ་འབད་ནི།"
msgctxt ""
"01050100.xhp\n"
"hd_id3149457\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01050100.xhp\">Watch Window</link>"
msgstr "<link href=\"text/sbasic/shared/01050100.xhp\">ཝིན་དོ་བལྟ་ཞིབ་འབད་ནི་</link>"
@@ -4559,7 +4228,6 @@ msgstr "<link href=\"text/sbasic/shared/01050100.xhp\">ཝིན་དོ་བ
msgctxt ""
"01050100.xhp\n"
"par_id3154908\n"
-"9\n"
"help.text"
msgid "The Watch window allows you to observe the value of variables during the execution of a program. Define the variable in the Watch text box. Click on <link href=\"text/sbasic/shared/02/11080000.xhp\">Enable Watch</link> to add the variable to the list box and to display its values."
msgstr "ཝིན་ཌོ་བལྟ་ཞིབ་ཀྱིས་ལས་རིམ་གྱི་ལག་ལེན་འཐབ་སྐབས་འགྱུར་ཅན་ཚུའི་གནས་གོང་་བལྟ་དཔྱད་འབད་བཅུགཔ་ཨིན། བལྟ་ཞིབ་ཚིག་ཡིག་སྒྲོམ་འདི་ནང་འགྱུར་ཅན་འདི་ངོས་འཛིན་འབད། ལྕོགས་ཅན་བལྟ་ཞིབ་གུ་ <link href=\"text/sbasic/shared/02/11080000.xhp\">ཐོ་ཡིག་་སྒྲོམ་ལུ་འགྱུར་ཅན་ཁ་སྐོང་ལུ་དང་འདིའི་གནས་གོང་བཀྲམ་བཏོན་དོན་ལུ་</link> ཨེབ་གཏང་འབད།"
@@ -4568,7 +4236,6 @@ msgstr "ཝིན་ཌོ་བལྟ་ཞིབ་ཀྱིས་ལས་ར
msgctxt ""
"01050100.xhp\n"
"hd_id3145173\n"
-"4\n"
"help.text"
msgid "Watch"
msgstr "བལྟ་ཞིབ།"
@@ -4577,7 +4244,6 @@ msgstr "བལྟ་ཞིབ།"
msgctxt ""
"01050100.xhp\n"
"par_id3155132\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">Enter the name of the variable whose value is to be monitored.</ahelp>"
msgstr "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">ག་གི་གནས་གོང་འདི་བལྟ་རྟོག་འབད་ནིའི་འགྱུར་ཅན་གྱི་མིང་བཙུགས་</ahelp>"
@@ -4586,7 +4252,6 @@ msgstr "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">ག་གི་གནས་
msgctxt ""
"01050100.xhp\n"
"hd_id3148645\n"
-"6\n"
"help.text"
msgid "Remove Watch"
msgstr "བལྟ་ཞིབ་རྩ་བསྐྲད་གཏང་།"
@@ -4595,7 +4260,6 @@ msgstr "བལྟ་ཞིབ་རྩ་བསྐྲད་གཏང་།"
msgctxt ""
"01050100.xhp\n"
"par_id3148576\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\"HID_BASICIDE_REMOVEWATCH\">Removes the selected variable from the list of watched variables.</ahelp>"
msgstr "<ahelp hid=\"HID_BASICIDE_REMOVEWATCH\">འགྱུར་ཅན་ཚུ་བལྟ་ཞིབ་འབད་ཡོདཔ་པའི་ཐོ་ཡིག་འདི་ནང་ལས་སེལ་འཐུ་འབད་ཡོད་པའི་འགྱུར་ཅན་འདི་རྩ་བསྐྲད་གཏངམ་ཨིན།</ahelp>"
@@ -4612,7 +4276,6 @@ msgstr "<image id=\"img_id3152460\" src=\"res/baswatr.png\" width=\"0.25inch\" h
msgctxt ""
"01050100.xhp\n"
"par_id3154012\n"
-"8\n"
"help.text"
msgid "Remove Watch"
msgstr "བལྟ་ཞིབ་རྩ་བསྐྲད་གཏང་།"
@@ -4621,7 +4284,6 @@ msgstr "བལྟ་ཞིབ་རྩ་བསྐྲད་གཏང་།"
msgctxt ""
"01050100.xhp\n"
"hd_id3154491\n"
-"10\n"
"help.text"
msgid "Editing the Value of a Watched Variable"
msgstr "བལྟ་ཞིབ་འབད་ཡོད་པའི་འགྱུར་ཅན་གྱི་གནས་གོང་འདི་ཞུན་དག་འབད་དོ།"
@@ -4630,7 +4292,6 @@ msgstr "བལྟ་ཞིབ་འབད་ཡོད་པའི་འགྱུ
msgctxt ""
"01050100.xhp\n"
"par_id3156283\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_LIST\">Displays the list of watched variables. Click twice with a short pause in between on an entry to edit its value.</ahelp> The new value will be taken as the variable's value for the program."
msgstr "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_LIST\">བལྟ་ཞིབ་འབད་ཡོད་པའི་འགྱུར་་ཅན་ཚུ་གི་ཐོ་ཡིག་འདི་བཀྲམ་བཏོནམ་ཨིན། འདིའི་གནས་གོང་ཞུན་དག་ལུ་བཙུགས་ནི་གུའི་སྦུག་ནང་ཐེམ་ཐུང་ཀུ་གཅིག་གིས་འབད་ཚར་གཉིས་ཨེབ་གཏང་འབད།</ahelp> གནས་གོང་གསརཔ་འདི་ལས་རིམ་དོན་ལུ་འགྱུར་ཅན་གྱི་གནས་གོང་སྦེ་འབག་བཞགཔ་ཨིན།"
@@ -4647,7 +4308,6 @@ msgstr "ཝིན་ཌོ་བརྩེགས་ཕུང་བོད་བར
msgctxt ""
"01050200.xhp\n"
"hd_id3146794\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Call Stack Window (Calls)\">Call Stack Window (Calls)</link>"
msgstr "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Call Stack Window (Calls)\">བོད་བརྡ་བརྩེགས་ཕུང་ཝིན་ཌོ (བོད་བརྡ་ཚུ)</link>"
@@ -4656,7 +4316,6 @@ msgstr "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Call Stack Window
msgctxt ""
"01050200.xhp\n"
"par_id3150400\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\" visibility=\"hidden\">Displays the sequence of procedures and functions during the execution of a program.</ahelp> The <emph>Call Stack</emph> allows you to monitor the sequence of procedures and functions during the execution of a program. The procedures are functions are displayed bottom to top with the most recent function or procedure call at the top of the list."
msgstr "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\" visibility=\"hidden\">བྱ་སྒོའི་ལམ་ལུགས་ཚུ་དང་ལས་རིམ་གྱི་ལག་ལེན་འཐབ་པའི་ལས་འགན་ཚུའི་འབྱུང་རིམ་བཀྲམ་བཏོན་འབདཝ་ཨིན། </ahelp>བོད་བརྡ་བརྩེགས་ཕུང་<emph>འདི་གིས་</emph> ཁྱོད་ལུ་བྱ་སྒོའི་ལམ་ལུགས་ཚུའི་འབྱུང་རིམ་དང་ལས་རིམ་གྱི་ལག་ལེན་འཐབ་པའི་ལས་འགན་ཚུ་ལྟ་རྟོག་འབད་བཅུགཔ་ཨིན། བྱ་སྒོའི་ལམ་ལུགས་ཚུ་དང་ལས་འགན་ཚུ་ཆ་མཉམ་འཕྲལ་གྱི་ལས་འགན་མང་ཤོས་དང་གཅིག་ཁར་ཡང་ན་ཐོ་ཡིག་གི་མགོ་ལུ་བྱ་སྒའི་ལམ་ལུགས་བོད་བརྡ་མཇུག་ལས་མགོ་ལུ་ཚུན་བཀྲམ་བཏོན་འབད་ཡོདཔ་ཨིན།"
@@ -4673,7 +4332,6 @@ msgstr "འཛིན་སྐྱོང་བེརེཀ་པོ་ཡིནཊ
msgctxt ""
"01050300.xhp\n"
"hd_id3154927\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
msgstr "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints\">འཛིན་སྐྱོང་ བེརེཀ་པོ་ཡིནཊིསི</link>"
@@ -4682,7 +4340,6 @@ msgstr "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints
msgctxt ""
"01050300.xhp\n"
"par_id3148550\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/ManageBreakpointsDialog\">Specifies the options for breakpoints.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/ManageBreakpointsDialog\">བེརེཀ་པོ་ཡིནཊིསི་དོན་ལུ་གདམ་ཁ་ཚུ་གསལ་བཀོདཔ་ཨིན།</ahelp>"
@@ -4691,7 +4348,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/ManageBreakpointsDial
msgctxt ""
"01050300.xhp\n"
"hd_id3149670\n"
-"3\n"
"help.text"
msgid "Breakpoints"
msgstr "བེརེཀ་པོ་ཡིནཊིསི།"
@@ -4700,7 +4356,6 @@ msgstr "བེརེཀ་པོ་ཡིནཊིསི།"
msgctxt ""
"01050300.xhp\n"
"par_id3150398\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/entries\">Enter the line number for a new breakpoint, then click <emph>New</emph>.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/entries\">བེརེཀ་པོ་ཡིནཊིསི་གསརཔ་གི་དོན་ལུ་གྱལ་ཨང་བཙུགས་ དེ་ལས <emph>གསརཔ་</emph>.</ahelp> ཨེབ་གཏང་འབད།"
@@ -4709,7 +4364,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/entries\">བེར
msgctxt ""
"01050300.xhp\n"
"hd_id3156280\n"
-"6\n"
"help.text"
msgid "Active"
msgstr "ཤུགས་ལྡན།"
@@ -4718,7 +4372,6 @@ msgstr "ཤུགས་ལྡན།"
msgctxt ""
"01050300.xhp\n"
"par_id3154910\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/active\">Activates or deactivates the current breakpoint.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/active\">འཕྲལ་གྱི་་བེརེཀ་པོ་ཡིནཊི་ཤུགས་ལྡན་ཡང་ན་ཤུགས་མེད་བཟོ།</ahelp>"
@@ -4727,7 +4380,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/active\">འཕྲལ
msgctxt ""
"01050300.xhp\n"
"hd_id3144500\n"
-"8\n"
"help.text"
msgid "Pass Count"
msgstr "རྩིས་སྤྲོད་གྱངས་ཁ་རྐྱབས།"
@@ -4736,7 +4388,6 @@ msgstr "རྩིས་སྤྲོད་གྱངས་ཁ་རྐྱབས།
msgctxt ""
"01050300.xhp\n"
"par_id3161831\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/pass-nospin\">Specify the number of loops to perform before the breakpoint takes effect.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/pass-nospin\">བེརེཀ་པོ་ཡིནཊི་གིས་ནུས་ཅན་་ལཱ་འགན་གྲུབ་ནི་ལུ་འཕྲལ་བཀོལ་གྱི་ཨང་འདི་གསལ་བཀོད་འབད།</ahelp>"
@@ -4745,7 +4396,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/pass-nospin\">བེ
msgctxt ""
"01050300.xhp\n"
"hd_id3152579\n"
-"10\n"
"help.text"
msgid "New"
msgstr "གསརཔ།"
@@ -4754,7 +4404,6 @@ msgstr "གསརཔ།"
msgctxt ""
"01050300.xhp\n"
"par_id3148575\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/new\">Creates a breakpoint on the line number specified.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/new\">གསལ་བཀོད་འབད་མི་ཨང་གུ་བེརེཀ་པོ་ཡིནཊི་གསར་བསྐྲུན་འབདཝ་ཨིན།</ahelp>"
@@ -4763,7 +4412,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/new\">གསལ་བ
msgctxt ""
"01050300.xhp\n"
"hd_id3147319\n"
-"12\n"
"help.text"
msgid "Delete"
msgstr "བཏོན་གཏང་།"
@@ -4772,7 +4420,6 @@ msgstr "བཏོན་གཏང་།"
msgctxt ""
"01050300.xhp\n"
"par_id3153363\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/delete\">Deletes the selected breakpoint.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/delete\">གསལ་འཐུ་འབད་མི་བེརེཀ་པོ་ཡིནཊི་བཏོན་གཏངམ་ཨིན།</ahelp>"
@@ -4797,7 +4444,6 @@ msgstr "<bookmark_value>རྒྱུ་དངོས་ཚུ་ཚད་འཛ
msgctxt ""
"01170100.xhp\n"
"hd_id3153379\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Control and Dialog Properties\">Control and Dialog Properties</link>"
msgstr "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Control and Dialog Properties\">ཚད་འཛིན་དང་ཌའི་ལོག་རྒྱུ་དངོས་ཚུ་</link>"
@@ -4806,7 +4452,6 @@ msgstr "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Control and Dialog
msgctxt ""
"01170100.xhp\n"
"par_id3156280\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the properties of the selected dialog or control.</ahelp> You must be in the design mode to be able to use this command."
msgstr "<ahelp hid=\".\">སེལ་འཐུ་འབད་ཡོད་པའི་ཌའི་ལོག་ ཡང་ན་ ཚད་འཛིན་གྱི་རྒྱུ་དངོས་ཚུ་གསལ་བཀོད་འབདཝ་ཨིན།</ahelp> ཁྱོད་ཀྱིས་ཨ་ནི་བརྡ་བཀོད་ལག་ལེན་འཐབ་ཚུགས་ནི་ལུ་བཀོད་སྒྲིག་ཐབས་ལམ་ནང་ངེས་པར་འོང་དགོ།"
@@ -4815,7 +4460,6 @@ msgstr "<ahelp hid=\".\">སེལ་འཐུ་འབད་ཡོད་པའ
msgctxt ""
"01170100.xhp\n"
"hd_id3151043\n"
-"20\n"
"help.text"
msgid "Entering Data in the Properties Dialog"
msgstr "ཌའི་ལོག་རྒྱུ་དངོས་ཚུ་ནང་གནད་སྡུད་བཙུགས་དོ།"
@@ -4824,7 +4468,6 @@ msgstr "ཌའི་ལོག་རྒྱུ་དངོས་ཚུ་ནང་
msgctxt ""
"01170100.xhp\n"
"par_id3153771\n"
-"3\n"
"help.text"
msgid "The following key combinations apply to enter data in multiline fields or combo boxes of the <emph>Properties</emph> dialog:"
msgstr "འོག་གི་ལྡེ་མིག་གིས་ཌའི་ལོག་རྒྱུ་དངོས་ཚུའི་ཀོམ་བོ་སྒྲོམ་ཚུ་ཡང་ན་ཐིག་མང་ས་སྒོ་ཚུ་ནང་གནད་སྡུད་ཐོ་བཀོད་ལུ་འཇུག་སྤྱོད་འབད་ནི་མཉམ་མཐུད་འབདཝ་ཨིན། <emph></emph>"
@@ -4833,7 +4476,6 @@ msgstr "འོག་གི་ལྡེ་མིག་གིས་ཌའི་ལ
msgctxt ""
"01170100.xhp\n"
"par_id3150010\n"
-"18\n"
"help.text"
msgid "Keys"
msgstr "ལྡེ་མིག་ཚུ།"
@@ -4842,7 +4484,6 @@ msgstr "ལྡེ་མིག་ཚུ།"
msgctxt ""
"01170100.xhp\n"
"par_id3147317\n"
-"19\n"
"help.text"
msgid "Effects"
msgstr "ནུས་ཅན་ཚུ།"
@@ -4851,7 +4492,6 @@ msgstr "ནུས་ཅན་ཚུ།"
msgctxt ""
"01170100.xhp\n"
"par_id3146121\n"
-"4\n"
"help.text"
msgid "Alt+Down Arrow"
msgstr "གདམ་ལྡེ +མར་མདའ་རྟགས།"
@@ -4860,7 +4500,6 @@ msgstr "གདམ་ལྡེ +མར་མདའ་རྟགས།"
msgctxt ""
"01170100.xhp\n"
"par_id3149581\n"
-"5\n"
"help.text"
msgid "Opens a combo box"
msgstr "ཀོམ་བོ་སྒྲོམ་ཁ་ཕྱེཝ་ཨིན།"
@@ -4869,7 +4508,6 @@ msgstr "ཀོམ་བོ་སྒྲོམ་ཁ་ཕྱེཝ་ཨིན།
msgctxt ""
"01170100.xhp\n"
"par_id3147394\n"
-"6\n"
"help.text"
msgid "Alt+Up Arrow"
msgstr "གདམ་ལྡེ +ཡར་མདའ་རྟགས།"
@@ -4878,7 +4516,6 @@ msgstr "གདམ་ལྡེ +ཡར་མདའ་རྟགས།"
msgctxt ""
"01170100.xhp\n"
"par_id3148455\n"
-"7\n"
"help.text"
msgid "Closes a combo box"
msgstr "ཀོམ་བོ་སྒྲོམ་ཁ་བསྡམས།"
@@ -4887,7 +4524,6 @@ msgstr "ཀོམ་བོ་སྒྲོམ་ཁ་བསྡམས།"
msgctxt ""
"01170100.xhp\n"
"par_id3154511\n"
-"8\n"
"help.text"
msgid "Shift+Enter"
msgstr "སོར་ལྡེ +བཙུགས།"
@@ -4896,7 +4532,6 @@ msgstr "སོར་ལྡེ +བཙུགས།"
msgctxt ""
"01170100.xhp\n"
"par_id3146971\n"
-"9\n"
"help.text"
msgid "Inserts a line break in multiline fields."
msgstr "ཐིག་མང་་ས་སྒོ་ཚུ་ནང་བེརེཀ་གྱལ་བཙུགསཔ་ཨིན།"
@@ -4905,7 +4540,6 @@ msgstr "ཐིག་མང་་ས་སྒོ་ཚུ་ནང་བེརེ
msgctxt ""
"01170100.xhp\n"
"par_id3146914\n"
-"10\n"
"help.text"
msgid "(UpArrow)"
msgstr "(ཡར་་མདའ་རྟགས)"
@@ -4914,7 +4548,6 @@ msgstr "(ཡར་་མདའ་རྟགས)"
msgctxt ""
"01170100.xhp\n"
"par_id3153714\n"
-"11\n"
"help.text"
msgid "Goes to the previous line."
msgstr "ཧེ་མམ་གྱལ་འདི་ལུ་འགྱོཝ་ཨིན།"
@@ -4923,7 +4556,6 @@ msgstr "ཧེ་མམ་གྱལ་འདི་ལུ་འགྱོཝ་ཨ
msgctxt ""
"01170100.xhp\n"
"par_id3159266\n"
-"12\n"
"help.text"
msgid "(DownArrow)"
msgstr "(ཕབ་ལེན)"
@@ -4932,7 +4564,6 @@ msgstr "(ཕབ་ལེན)"
msgctxt ""
"01170100.xhp\n"
"par_id3146314\n"
-"13\n"
"help.text"
msgid "Goes to the next line."
msgstr "གྱལ་ཤུལ་མམ་འདི་ལུ་འགྱོཝ་ཨིན།"
@@ -4941,7 +4572,6 @@ msgstr "གྱལ་ཤུལ་མམ་འདི་ལུ་འགྱོཝ་
msgctxt ""
"01170100.xhp\n"
"par_id3149255\n"
-"14\n"
"help.text"
msgid "Enter"
msgstr "བཙུགས་ནི།"
@@ -4950,7 +4580,6 @@ msgstr "བཙུགས་ནི།"
msgctxt ""
"01170100.xhp\n"
"par_id3149566\n"
-"15\n"
"help.text"
msgid "Applies the changes made to a field and places the cursor into the next field."
msgstr "ས་སྒོ་ལུ་བསྒྱུར་བཅོས་འབད་ཡོད་མི་ཚུ་འཇུག་སྤྱོད་འབདཝ་དང་འོད་རྟགས་ཤུལ་མམ་གྱི་ས་སྒོ་ནང་བཞགཔ་ཨིན།"
@@ -4967,7 +4596,6 @@ msgstr "ཡོངས་ཁྱབ།"
msgctxt ""
"01170101.xhp\n"
"hd_id3147436\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01170101.xhp\" name=\"General\">General</link>"
msgstr "<link href=\"text/sbasic/shared/01170101.xhp\" name=\"General\">ཡོངས་ཁྱབ</link>"
@@ -4976,7 +4604,6 @@ msgstr "<link href=\"text/sbasic/shared/01170101.xhp\" name=\"General\">ཡོ
msgctxt ""
"01170101.xhp\n"
"par_id3155855\n"
-"2\n"
"help.text"
msgid "Define the properties for the selected control or dialog. The available properties depend on the type of control selected. The following properties therefore are not available for every type of control."
msgstr "ཌའི་ལོག་ཡང་ན་ཚད་འཛིན་སེལ་འཐུ་དོན་ལུ་རྒྱུ་དངོས་འདི་ཚུ་ངེས་འཛིན་འབད། ཐོབ་ཚུགས་པའི་རྒྱུ་དངོས་ཚུ་སེལ་འཐུ་འབད་ཡོད་པའི་ཚད་འཛིན་གྱི་དབྱེ་བ་འདི་གུ་རྟེནམ་ཨིན། དེ་འབདཝ་ལས་འོག་གི་རྒྱུ་དངོས་ཚུ་ཚད་འཛིན་གྱི་དབྱེ་བ་རེ་རེ་དོན་ལུ་ཐོབ་མི་ཚུགས།"
@@ -4985,7 +4612,6 @@ msgstr "ཌའི་ལོག་ཡང་ན་ཚད་འཛིན་སེལ
msgctxt ""
"01170101.xhp\n"
"hd_id3148647\n"
-"11\n"
"help.text"
msgid "Alignment"
msgstr "ཕྲང་སྒྲིག"
@@ -4994,7 +4620,6 @@ msgstr "ཕྲང་སྒྲིག"
msgctxt ""
"01170101.xhp\n"
"par_id3147318\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">Specify the alignment option for the selected control.</ahelp>"
msgstr "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">སེལ་འཐུ་འབད་ཡོད་པའི་ཚད་འཛིན་དོན་ལུ་ཕྲང་སྒྲིག་གདམ་ཁ་འདི་གསལ་བཀོད</ahelp>"
@@ -5003,7 +4628,6 @@ msgstr "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">སེལ་འཐུ་འབད་
msgctxt ""
"01170101.xhp\n"
"hd_id3153189\n"
-"76\n"
"help.text"
msgid "AutoFill"
msgstr "རང་བཞིན་བཀང་།"
@@ -5012,7 +4636,6 @@ msgstr "རང་བཞིན་བཀང་།"
msgctxt ""
"01170101.xhp\n"
"par_id3152460\n"
-"77\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to enable the AutoFill function for the selected control. </ahelp>"
msgstr "<ahelp hid=\".\">སེལ་འཐུ་འབད་ཡོད་པའི་ཚད་འཛིན་ལུ་རང་བཞིན་བཀང་བའི་ལས་འགན་ལྕོགས་ཅན་བཟོ་ནི་ལུ་ \"Yes\" སེལ་འཐུ་འབད།</ahelp>"
@@ -5021,7 +4644,6 @@ msgstr "<ahelp hid=\".\">སེལ་འཐུ་འབད་ཡོད་པའ
msgctxt ""
"01170101.xhp\n"
"hd_id3155307\n"
-"3\n"
"help.text"
msgid "Background color"
msgstr "རྒྱབ་གཞི་ཚོས་གཞི།"
@@ -5030,7 +4652,6 @@ msgstr "རྒྱབ་གཞི་ཚོས་གཞི།"
msgctxt ""
"01170101.xhp\n"
"par_id3145251\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the background color for the current control.</ahelp>"
msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་གྱི་དོན་ལས་རྒྱབ་གཞི་ཚད་གཞི་གསལ་བཀོད་འབད།</ahelp>"
@@ -5039,7 +4660,6 @@ msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་གྱ
msgctxt ""
"01170101.xhp\n"
"hd_id3151076\n"
-"263\n"
"help.text"
msgid "Large change"
msgstr "བསྒྱུར་བཅོས་ཆེ་བ།"
@@ -5048,7 +4668,6 @@ msgstr "བསྒྱུར་བཅོས་ཆེ་བ།"
msgctxt ""
"01170101.xhp\n"
"par_id3148457\n"
-"262\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the number of units to scroll when a user clicks in the area between the slider and the arrows on a scrollbar.</ahelp>"
msgstr "<ahelp hid=\".\">ལག་ལེན་པ་གིས་བཤུད་ཕྲ་གུ་བཤུད་བྱེད་དང་མདའ་རྟགས་ཚུའི་བར་ན་མངའ་ཁོངས་ནང་ཨེབ་གཏང་པའི་སྐབས་བཤུད་སྒྲིལ་འབད་ནི་ལུ་ཆ་ཕྲན་ཚུའི་གྲངས་གསལ་བཀོད་འབད། </ahelp>"
@@ -5057,7 +4676,6 @@ msgstr "<ahelp hid=\".\">ལག་ལེན་པ་གིས་བཤུད་
msgctxt ""
"01170101.xhp\n"
"hd_id3153876\n"
-"139\n"
"help.text"
msgid "Border"
msgstr "མཐའ་མཚམས།"
@@ -5066,7 +4684,6 @@ msgstr "མཐའ་མཚམས།"
msgctxt ""
"01170101.xhp\n"
"par_id3154017\n"
-"140\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the border type for the current control.</ahelp>"
msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་གྱི་དོན་ལས་མཐའ་མཚམས་ཀྱི་དབྱེ་བ་གསལ་བཀོད་འབད།</ahelp>"
@@ -5075,7 +4692,6 @@ msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་གྱ
msgctxt ""
"01170101.xhp\n"
"hd_id3150749\n"
-"23\n"
"help.text"
msgid "Button type"
msgstr "ཨེབ་རྟ་དབྱེ་བ།"
@@ -5084,7 +4700,6 @@ msgstr "ཨེབ་རྟ་དབྱེ་བ།"
msgctxt ""
"01170101.xhp\n"
"par_id3155064\n"
-"24\n"
"help.text"
msgid "<ahelp hid=\".\">Select a button type. Button types determine what type of action is initiated.</ahelp>"
msgstr "<ahelp hid=\".\">ཨེབ་རྟའི་དབྱེ་བ་སེལ་འཐུ་འབད། ཨེབ་རྟའི་དབྱེ་བ་ཚུ་གིས་བྱ་བ་ག་བཟུམ་ཅིག་འགོ་བརྩམ་ཡོདཔ་ཨིན་ན་གཏན་འབེབས་བཟོཝ་ཨིན།</ahelp>"
@@ -5093,7 +4708,6 @@ msgstr "<ahelp hid=\".\">ཨེབ་རྟའི་དབྱེ་བ་སེ
msgctxt ""
"01170101.xhp\n"
"hd_id3149019\n"
-"5\n"
"help.text"
msgid "Character set"
msgstr "ཡིག་འབྲུ་གཞི་སྒྲིག"
@@ -5102,7 +4716,6 @@ msgstr "ཡིག་འབྲུ་གཞི་སྒྲིག"
msgctxt ""
"01170101.xhp\n"
"par_id3148406\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\".\">Select the font to be used for displaying the contents of the current control.</ahelp>"
msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་གྱི་ནང་དོན་ཚུ་བཀྲམ་སྟོན་འབད་ནིའི་དོན་ལས་ལག་ལེན་འཐབ་ནི་ལུ་ཡིག་གཟུགས་སེལ་འཐུ་འབད།</ahelp>"
@@ -5111,7 +4724,6 @@ msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་གྱ
msgctxt ""
"01170101.xhp\n"
"hd_id3147341\n"
-"149\n"
"help.text"
msgid "Currency symbol"
msgstr "དངུལ་མདའ་མཚོན།"
@@ -5120,7 +4732,6 @@ msgstr "དངུལ་མདའ་མཚོན།"
msgctxt ""
"01170101.xhp\n"
"par_id3146315\n"
-"150\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the currency symbol to be used for currency controls.</ahelp>"
msgstr "<ahelp hid=\".\">དངུལ་གྱི་ཚད་འཛིན་ཚུའི་དོན་ལས་ལག་ལེན་འཐབ་ནི་ལུ་དངུལ་གྱི་བརྡ་མཚོན་བཙུགས།</ahelp>"
@@ -5145,7 +4756,6 @@ msgstr "<ahelp hid=\".\">ཚེས་གྲངས་ཚད་འཛིན་ན
msgctxt ""
"01170101.xhp\n"
"hd_id3153965\n"
-"82\n"
"help.text"
msgid "Date format"
msgstr "རྩ་སྒྲིག་ཚེས།"
@@ -5154,7 +4764,6 @@ msgstr "རྩ་སྒྲིག་ཚེས།"
msgctxt ""
"01170101.xhp\n"
"par_id3155334\n"
-"83\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the desired format for a date control. A date control interprets the user input depending on this format setting.</ahelp>"
msgstr "<ahelp hid=\".\">ཚེས་གྲངས་ཚད་འཛིན་གྱི་དོན་ལས་རེ་འདུན་བསྐྱེད་ཡོད་པའི་རྩ་སྒྲིག་གསལ་བཀོད་འབད། ཚེས་གྲངས་ཚད་འཛིན་འདི་གིས་ཨ་ནི་རྩ་སྒྲིག་སྒྲིག་སྟངས་གུ་བརྟེན་ཏེ་ལག་ལེན་པའི་ཨིན་པུཊི་ཁ་བསྒྱུར་འབདཝ་ཨིན།</ahelp>"
@@ -5163,7 +4772,6 @@ msgstr "<ahelp hid=\".\">ཚེས་གྲངས་ཚད་འཛིན་ག
msgctxt ""
"01170101.xhp\n"
"hd_id3154663\n"
-"121\n"
"help.text"
msgid "Date max."
msgstr "ཚེས་གྲངས་མང་མཐའ་"
@@ -5172,7 +4780,6 @@ msgstr "ཚེས་གྲངས་མང་མཐའ་"
msgctxt ""
"01170101.xhp\n"
"par_id3148485\n"
-"122\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the upper limit for a date control.</ahelp>"
msgstr "<ahelp hid=\".\">ཚེས་གྲངས་ཚད་འཛིན་གྱི་དོན་ལས་ཡར་གྱི་བཅད་མཚམས་གསལ་བཀོད་འབད།</ahelp>"
@@ -5181,7 +4788,6 @@ msgstr "<ahelp hid=\".\">ཚེས་གྲངས་ཚད་འཛིན་ག
msgctxt ""
"01170101.xhp\n"
"hd_id3152778\n"
-"131\n"
"help.text"
msgid "Date min."
msgstr "ཚེས་མིན།"
@@ -5190,7 +4796,6 @@ msgstr "ཚེས་མིན།"
msgctxt ""
"01170101.xhp\n"
"par_id3154120\n"
-"132\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the lower limit for a date control.</ahelp>"
msgstr "<ahelp hid=\".\">ཚེས་གྲངས་ཚད་འཛིན་གྱི་དོན་ལས་མར་གྱི་བཅད་མཚམས་གསལ་བཀོད་འབད།</ahelp>"
@@ -5199,7 +4804,6 @@ msgstr "<ahelp hid=\".\">ཚེས་གྲངས་ཚད་འཛིན་ག
msgctxt ""
"01170101.xhp\n"
"hd_id3154573\n"
-"137\n"
"help.text"
msgid "Decimal accuracy"
msgstr "བཅུ་ཚག་འཁྲུལ་མེད།"
@@ -5208,7 +4812,6 @@ msgstr "བཅུ་ཚག་འཁྲུལ་མེད།"
msgctxt ""
"01170101.xhp\n"
"par_id3166426\n"
-"138\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the number of decimal places displayed for a numerical or currency control.</ahelp>"
msgstr "<ahelp hid=\".\">ཨང་གྲངས་ཀྱི་ ཡང་ན་ དངུལ་གྱི་ཚད་འཛིན་གྱི་དོན་ལས་བཀྲམ་སྟོན་འབད་ཡོད་པའི་བཅུ་ཚག་ས་གནས་ཚུའི་གྲངས་གསལ་བཀོད་འབད།</ahelp>"
@@ -5217,7 +4820,6 @@ msgstr "<ahelp hid=\".\">ཨང་གྲངས་ཀྱི་ ཡང་ན་
msgctxt ""
"01170101.xhp\n"
"hd_id3159091\n"
-"144\n"
"help.text"
msgid "Default button"
msgstr "སྔོན་སྒྲིག་ཨེབ་རྟ།"
@@ -5226,7 +4828,6 @@ msgstr "སྔོན་སྒྲིག་ཨེབ་རྟ།"
msgctxt ""
"01170101.xhp\n"
"par_id3154200\n"
-"145\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to make the current button control the default selection. Pressing <emph>Return</emph> in the dialog activates the default button.</ahelp>"
msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཨེབ་རྟ་ཚད་འཛིན་འདི་སྔོན་སྒྲིག་སེལ་འཐུ་བཟོ་ནི་ལུ་ \"Yes\" སེལ་འཐུ་འབད། <emph>ཌའི་ལོག་ནང་</emph> སླར་ལོག་ཨེབ་གཏང་མི་འདི་གིས་སྔོན་སྒྲིག་ཨེབ་རྟ་ཤུགས་ལྡན་བཟོཝ་ཨིན།</ahelp>"
@@ -5251,7 +4852,6 @@ msgstr "<ahelp hid=\".\">བཤུད་ཕྲ་ཐད་རྟའི་བྱ
msgctxt ""
"01170101.xhp\n"
"hd_id3151278\n"
-"19\n"
"help.text"
msgid "Dropdown"
msgstr "གདམ་ཐོ།"
@@ -5260,7 +4860,6 @@ msgstr "གདམ་ཐོ།"
msgctxt ""
"01170101.xhp\n"
"par_id3155113\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to enable the dropdown option for list or combo box controls. A dropdown control field has an arrow button which you can click to open a list of the existing form entries.</ahelp>"
msgstr "<ahelp hid=\".\">ཐོ་ཡིག་ ཡང་ན་ བརྟག་སྒྲོམ་ཚད་འཛིན་ཚུའི་དོན་ལས་གདམ་ཐོའི་གདམ་ཁ་ལྕོགས་ཅན་བཟོ་ནི་ལུ་ \"Yes\" སེལ་འཐུ་འབད། གདམ་ཐོའི་ཚད་འཛིན་ས་སྒོ་འདི་ལུ་ཡོད་བཞིན་པའི་འབྲི་ཤོག་ཐོ་བཀོད་ཚུའི་ཐོ་ཡིག་ཁ་ཕྱེ་ནི་ལུ་ཁྱོད་ཀྱིས་ཨེབ་གཏང་ཚུགས་མི་མདའ་རྟགས་ཨེབ་རྟ་ཡོདཔ་ཨིན།</ahelp>"
@@ -5269,7 +4868,6 @@ msgstr "<ahelp hid=\".\">ཐོ་ཡིག་ ཡང་ན་ བརྟག་
msgctxt ""
"01170101.xhp\n"
"hd_id3151216\n"
-"13\n"
"help.text"
msgid "Enabled"
msgstr "ལྕོགས་ཅན་བཟོ་ཡོདཔ།"
@@ -5278,7 +4876,6 @@ msgstr "ལྕོགས་ཅན་བཟོ་ཡོདཔ།"
msgctxt ""
"01170101.xhp\n"
"par_id3150517\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to enable the control. If the control is disabled, it is grayed out in the dialog.</ahelp>"
msgstr "<ahelp hid=\".\">ཚད་འཛིན་ལྕོགས་ཅན་བཟོ་ནི་ལུ་ \"Yes\" སེལ་འཐུ་འབད། ཚད་འཛིན་འདི་ལྕོགས་མིན་ཐལ་ཡོད་པ་ཅིན་ དེ་ཌའི་ལོག་ནང་སྐྱ་ཐལ་བཟོ་ཡོདཔ་ཨིན།</ahelp>"
@@ -5287,7 +4884,6 @@ msgstr "<ahelp hid=\".\">ཚད་འཛིན་ལྕོགས་ཅན་བ
msgctxt ""
"01170101.xhp\n"
"hd_id3155379\n"
-"91\n"
"help.text"
msgid "Edit mask"
msgstr "གདོང་ཁེབས་ཞུན་དག་འབད།"
@@ -5296,7 +4892,6 @@ msgstr "གདོང་ཁེབས་ཞུན་དག་འབད།"
msgctxt ""
"01170101.xhp\n"
"par_id3155509\n"
-"92\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the edit mask for a pattern control. This is a character code that defines the input format for the control.</ahelp>"
msgstr "<ahelp hid=\".\">དཔེ་གཞིའི་ཚད་འཛིན་ལུ་ཞུན་དག་གདོང་ཁེབས་གསལ་བཀོད་འབད། ཨ་ནི་འདི་ཚད་འཛིན་གྱི་དོན་ལས་ཨིན་པུཊི་རྩ་སྒྲིག་ངེས་འཛིན་འབད་མི་ཡིག་འབྲུའི་ཨང་རྟགས་ཨིན།</ahelp>"
@@ -5305,7 +4900,6 @@ msgstr "<ahelp hid=\".\">དཔེ་གཞིའི་ཚད་འཛིན་
msgctxt ""
"01170101.xhp\n"
"par_id3154485\n"
-"184\n"
"help.text"
msgid "You need to specify a masking character for each input character of the edit mask to restrict the input to the values that are listed in the following table:"
msgstr "ཁྱོད་ཀྱིས་འོག་གི་ཐིག་ཁྲམ་ནང་ཐོ་ཡིག་བཀོད་ཡོདཔའི་གནས་གོང་ལུ་ཨིན་པུཊི་བཀག་དམ་ཅན་ལུ་ཞུན་དག་གདོང་ཁེབས་ཀྱི་ཨིན་པུཊི་ཡིག་འབྲུ་རེ་རེ་གི་དོན་ལུ་ཡིག་འབྲུ་གདོང་ཁེབས་འབད་བའི་བསྒང་གསལ་བཀོད་འབད་དགོཔ་ཨིན:"
@@ -5314,7 +4908,6 @@ msgstr "ཁྱོད་ཀྱིས་འོག་གི་ཐིག་ཁྲམ
msgctxt ""
"01170101.xhp\n"
"par_id3155809\n"
-"93\n"
"help.text"
msgid "Character"
msgstr "ཡིག་འབྲུ།"
@@ -5323,7 +4916,6 @@ msgstr "ཡིག་འབྲུ།"
msgctxt ""
"01170101.xhp\n"
"par_id3148702\n"
-"94\n"
"help.text"
msgid "Meaning"
msgstr "དོན་ལྡན།"
@@ -5332,7 +4924,6 @@ msgstr "དོན་ལྡན།"
msgctxt ""
"01170101.xhp\n"
"par_id3156199\n"
-"95\n"
"help.text"
msgid "L"
msgstr ""
@@ -5341,7 +4932,6 @@ msgstr ""
msgctxt ""
"01170101.xhp\n"
"par_id3148869\n"
-"96\n"
"help.text"
msgid "A text constant. This character cannot be modified by the user."
msgstr "ཚིག་ཡིག་ཆད་མེད་གཅིག འ་ནི་ཡིག་འབྲུ་འདི་ལག་ལེན་པ་གིས་ལེགས་བཅོས་འབད་མི་བཏུབ་པས།"
@@ -5350,7 +4940,6 @@ msgstr "ཚིག་ཡིག་ཆད་མེད་གཅིག འ་ནི
msgctxt ""
"01170101.xhp\n"
"par_id3156016\n"
-"97\n"
"help.text"
msgid "a"
msgstr ""
@@ -5359,7 +4948,6 @@ msgstr ""
msgctxt ""
"01170101.xhp\n"
"par_id3157983\n"
-"98\n"
"help.text"
msgid "The characters a-z can be entered here. If a capital letter is entered, it is automatically converted to a lowercase letter."
msgstr "ཡིག་འབྲུ་ཚུ་ ཨེ་ ཛེཌི་འདི་ནང་ལུ་བཙུགས་བཏུབ། ཚུགས་ཡིག་ ཡིག་གུ་གཅིག་བཙུགས་ཡོད་པ་ཅིན་ རང་བཞིན་གྱིས་མགྱོགས་ཡིག་ ཡིག་གུ་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན།"
@@ -5368,7 +4956,6 @@ msgstr "ཡིག་འབྲུ་ཚུ་ ཨེ་ ཛེཌི་འདི
msgctxt ""
"01170101.xhp\n"
"par_id3148607\n"
-"99\n"
"help.text"
msgid "A"
msgstr ""
@@ -5377,7 +4964,6 @@ msgstr ""
msgctxt ""
"01170101.xhp\n"
"par_id3159204\n"
-"100\n"
"help.text"
msgid "The characters A-Z can be entered here. If a lowercase letter is entered, it is automatically converted to a capital letter"
msgstr "ཡིག་འབྲུ་ཚུ་ ཨེ་ ཛེཌི་འདི་ནང་་བཙུགས་བཏུབ། མགྱོགས་ཡིག་ ཡིག་གུ་གཅིག་་བཙུགས་ཡོད་པ་ཅི་ན རང་བཞིན་གྱིས་ཚུགས་ཡིག་ ཡིག་གུ་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན།"
@@ -5386,7 +4972,6 @@ msgstr "ཡིག་འབྲུ་ཚུ་ ཨེ་ ཛེཌི་འདི
msgctxt ""
"01170101.xhp\n"
"par_id3149126\n"
-"101\n"
"help.text"
msgid "c"
msgstr ""
@@ -5395,7 +4980,6 @@ msgstr ""
msgctxt ""
"01170101.xhp\n"
"par_id3151304\n"
-"102\n"
"help.text"
msgid "The characters a-z and 0-9 can be entered here. If a capital letter is entered, it is automatically converted to a lowercase letter."
msgstr "ཡིག་འབྲུ་ཚུ་ ཨེ ཛེཌི་དང་ ༠ ༩་ འདི་ཚུ་ནང་བཙུགས་བཏུབ། ཚུགས་ཡིག་ ཡིག་གུ་གཅིག་བཙུགས་ཡོད་པ་ཅིན་ རང་བཞིན་གྱིས་མགྱོགས་ཡིག་ ཡིུག་གུ་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན།"
@@ -5404,7 +4988,6 @@ msgstr "ཡིག་འབྲུ་ཚུ་ ཨེ ཛེཌི་དང་ ༠
msgctxt ""
"01170101.xhp\n"
"par_id3152870\n"
-"103\n"
"help.text"
msgid "C"
msgstr ""
@@ -5413,7 +4996,6 @@ msgstr ""
msgctxt ""
"01170101.xhp\n"
"par_id3155071\n"
-"104\n"
"help.text"
msgid "The characters a-z and 0-9 can be entered here. If a lowercase letter is entered, it is automatically converted to a capital letter"
msgstr "ཡིག་འབྲུ་ཚུ་ ཨེ་ ཛེཌི་དང་ ༠་ ༩་ འདི་ཚུ་ནང་བཙུགས་བཏུབ། མགྱོགས་ཡིག་ ཡིག་གུ་གཅིག་བཙུགས་ཡོད་པ་ཅིན་ རང་བཞིན་གྱིས་མགྱོགས་ཡིག་ ཡིག་གུ་གཅིག་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན།"
@@ -5422,7 +5004,6 @@ msgstr "ཡིག་འབྲུ་ཚུ་ ཨེ་ ཛེཌི་དང་
msgctxt ""
"01170101.xhp\n"
"par_id3159230\n"
-"105\n"
"help.text"
msgid "N"
msgstr ""
@@ -5431,7 +5012,6 @@ msgstr ""
msgctxt ""
"01170101.xhp\n"
"par_id3154650\n"
-"106\n"
"help.text"
msgid "Only the characters 0-9 can be entered."
msgstr "༠་ལས་༩ ཡིག་འབྲུ་འདི་ཚུ་རྐྱངམ་ཅིག་བཙུགས་བཏུབ་པས།"
@@ -5440,7 +5020,6 @@ msgstr "༠་ལས་༩ ཡིག་འབྲུ་འདི་ཚུ་ར
msgctxt ""
"01170101.xhp\n"
"par_id3149383\n"
-"107\n"
"help.text"
msgid "x"
msgstr ""
@@ -5449,7 +5028,6 @@ msgstr ""
msgctxt ""
"01170101.xhp\n"
"par_id3153489\n"
-"108\n"
"help.text"
msgid "All printable characters can be entered."
msgstr "དཔར་བསྐྲུན་འབད་བཏུབ་པའི་ཡིག་འབྲུ་ཚུ་ཇ་མཉམ་བཙུགས་བཏུབ།"
@@ -5458,7 +5036,6 @@ msgstr "དཔར་བསྐྲུན་འབད་བཏུབ་པའི་
msgctxt ""
"01170101.xhp\n"
"par_id3146967\n"
-"109\n"
"help.text"
msgid "X"
msgstr ""
@@ -5467,7 +5044,6 @@ msgstr ""
msgctxt ""
"01170101.xhp\n"
"par_id3154707\n"
-"110\n"
"help.text"
msgid "All printable characters can be entered. If a lowercase letter is used, it is automatically converted to a capital letter."
msgstr "ཆ་མཉམ་དཔར་བསྐྲུན་འབད་བཏུབ་པའི་ཡིག་འབྲུ་ཚུ་བཙུགས་བཏུབ། མགྱོགས་ཡིག་ ཡིག་གུ་གཅིག་ལག་ལེན་འཐབ་ཡོད་པ་ཅིན་ རང་བཞིན་གྱིས་ཚུགས་ཡིག་གཅིག་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན།"
@@ -5500,7 +5076,6 @@ msgstr ""
msgctxt ""
"01170101.xhp\n"
"hd_id3149317\n"
-"114\n"
"help.text"
msgid "Graphics"
msgstr "ཚད་རིས་ཚུ།"
@@ -5509,7 +5084,6 @@ msgstr "ཚད་རིས་ཚུ།"
msgctxt ""
"01170101.xhp\n"
"par_id3147546\n"
-"115\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the source of the graphics for a button or an image control. Click \"...\" to select a file.</ahelp>"
msgstr "<ahelp hid=\".\">ཨེབ་རྟ་ ཡང་ན་ གཟུགས་བརྙན་ཚད་འཛིན་གྱི་དོན་ལས་ཚད་རིས་ཚུའི་འབྱུང་ཁུངས་གསལ་བཀོད་འབད། ཡིག་སནོད་སེལ་འཐུ་འབད་ནི་ལུ་ \"...\" ཨེབ་གཏང་།</ahelp>"
@@ -5518,7 +5092,6 @@ msgstr "<ahelp hid=\".\">ཨེབ་རྟ་ ཡང་ན་ གཟུགས
msgctxt ""
"01170101.xhp\n"
"hd_id3154627\n"
-"258\n"
"help.text"
msgid "Height"
msgstr "མཐོ་ཚད།"
@@ -5527,7 +5100,6 @@ msgstr "མཐོ་ཚད།"
msgctxt ""
"01170101.xhp\n"
"par_id3155754\n"
-"257\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the height of the current control or the dialog.</ahelp>"
msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་ ཡང་ན་ ཌའི་ལོག་གི་མཐོ་ཚད་གསལ་བཀོད་འབད།</ahelp>"
@@ -5536,7 +5108,6 @@ msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་ ཡང
msgctxt ""
"01170101.xhp\n"
"hd_id3153072\n"
-"208\n"
"help.text"
msgid "Help text"
msgstr "གྲོགས་རམ་ཚིག་ཡིག"
@@ -5545,7 +5116,6 @@ msgstr "གྲོགས་རམ་ཚིག་ཡིག"
msgctxt ""
"01170101.xhp\n"
"par_id3147502\n"
-"209\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a help text that is displayed as a tip (bubble help) when the mouse rests over the control.</ahelp>"
msgstr "<ahelp hid=\".\">ཚད་འཛིན་གུ་མཱའུསི་ངལ་གསོ་བའི་སྐབས་ ཕན་བསླབ་(བབ་བཱལ་གྲོགས་རམ་) སྦེ་བཀྲམ་སྟོན་འབད་ཡོད་མི་གྲོགས་རམ་ཚིག་ཡིག་བཙུགས།</ahelp>"
@@ -5554,7 +5124,6 @@ msgstr "<ahelp hid=\".\">ཚད་འཛིན་གུ་མཱའུསི་
msgctxt ""
"01170101.xhp\n"
"hd_id3154400\n"
-"212\n"
"help.text"
msgid "Help URL"
msgstr "གྲོགས་རམ་ ཡུ་ཨར་ཨེལ།"
@@ -5563,7 +5132,6 @@ msgstr "གྲོགས་རམ་ ཡུ་ཨར་ཨེལ།"
msgctxt ""
"01170101.xhp\n"
"par_id3150431\n"
-"213\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the help URL that is called when you press F1 while the focus is on a particular control. For example, use the format HID:1234 to call the Help-ID with the number 1234.</ahelp>"
msgstr "<ahelp hid=\".\">ཆེད་དམིགས་འདི་དམིགས་བསལ་གྱི་ཚད་འཛིན་གུ་ཡོད་པའི་སྐབས་ཁྱོད་ཀྱིས་ཨེཕ་༡་ཨེབ་ད་བོད་བརྡ་འབད་མི་གྲོགས་རམ་ཡུ་ཨར་ཨེལ་གསལ་བཀོད་འབད། དཔེར་ན་ ཨང་གྲངས་ ༡༢༣༤གི་ཐོག་ལས་གྲོགས་རམ་-ཨའི་ཌི་བོད་བརྡ་འབད་ནི་ལུ་ རྩ་སྒྲིག་ཨེཆ་ཨའི་ཌི་:༡༢༣༤ ལག་ལེན་འཐབ། </ahelp>"
@@ -5580,7 +5148,6 @@ msgstr ""
msgctxt ""
"01170101.xhp\n"
"hd_id3159260\n"
-"85\n"
"help.text"
msgid "Incr./decrement value"
msgstr "ཡར་འཕར./མར་འབབ་གནས་གོང་།"
@@ -5589,7 +5156,6 @@ msgstr "ཡར་འཕར./མར་འབབ་གནས་གོང་།"
msgctxt ""
"01170101.xhp\n"
"par_id3145233\n"
-"86\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the increment and decrement interval for spin button controls.</ahelp>"
msgstr "<ahelp hid=\".\">བསྒྱིར་རྟ་ཚད་འཛིན་ཚུའི་དོན་ལས་ཡར་འཕར་དང་མར་འབབ་གསལ་བཀོད་འབད།</ahelp>"
@@ -5630,7 +5196,6 @@ msgstr ""
msgctxt ""
"01170101.xhp\n"
"hd_id3150536\n"
-"7\n"
"help.text"
msgid "Label"
msgstr "ཁ་ཡིག"
@@ -5639,7 +5204,6 @@ msgstr "ཁ་ཡིག"
msgctxt ""
"01170101.xhp\n"
"par_id3146324\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the label of the current control. The label is displayed along with the control.</ahelp>"
msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་གྱི་ཁ་ཡིག་གསལ་བཀོད་འབདཝ་ཨིན། ཁ་ཡིག་འདི་ཚད་འཛིན་གཅིག་ཁར་བཀྲམ་སྟོན་འབད་ཡོདཔ་ཨིན།</ahelp>"
@@ -5648,7 +5212,6 @@ msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་གྱ
msgctxt ""
"01170101.xhp\n"
"par_id3146816\n"
-"223\n"
"help.text"
msgid "You can create multi-line <emph>labels</emph> by inserting manual line breaks in the label using <emph>Shift+Enter</emph>."
msgstr "ཁྱོད་ཀྱིས་ཐིག་མང་ <emph>ཁ་ཡིག་ཚུ་</emph> ལག་ཐོག་གྱལ་མཚམས་ཚུ་ཁ་ཡིག་ནང་ལག་ལེན་འཐབ་ <emph>སོར་སྡེ+བཙུགས བཙུགས་འདི་གསར་བསྐྲུན་འབད་བཏུབ།</emph>."
@@ -5657,7 +5220,6 @@ msgstr "ཁྱོད་ཀྱིས་ཐིག་མང་ <emph>ཁ་ཡི
msgctxt ""
"01170101.xhp\n"
"hd_id3150457\n"
-"74\n"
"help.text"
msgid "Line Count"
msgstr "གྱལ་གྱངས་ཁ་རྐྱབས།"
@@ -5666,7 +5228,6 @@ msgstr "གྱལ་གྱངས་ཁ་རྐྱབས།"
msgctxt ""
"01170101.xhp\n"
"par_id3149143\n"
-"75\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the number of lines to be displayed for a list control. For combo boxes, this setting is only active if the dropdown option is enabled. </ahelp>"
msgstr "<ahelp hid=\".\">ཐོ་ཡིག་ཚད་འཛིན་གྱི་དོན་ལས་བཀྲམ་སྟོན་འབད་ནི་ལུ་གྱལ་ཚུའི་གྲངས་བཙུགས། བརྟག་སྒྲོམ་ཚུའི་དོན་ལས་ ཨ་ནི་སྒྲིག་སྟངས་འདི་གདམ་ཐོའི་གདམ་ཁ་ལྕོགས་ཅན་ཨིན་པ་ཅིན་རྐྱངམ་གཅིག་ཤུགས་ལྡན་ཨིན། </ahelp>"
@@ -5691,7 +5252,6 @@ msgstr "ཁྱོད་ཀྱིས་ཚིག་ཡིག་སྒྲོམ་
msgctxt ""
"01170101.xhp\n"
"hd_id3153121\n"
-"256\n"
"help.text"
msgid "Small change"
msgstr "བསྒྱུར་བཅོས་ཆུང་ཀུ།"
@@ -5700,7 +5260,6 @@ msgstr "བསྒྱུར་བཅོས་ཆུང་ཀུ།"
msgctxt ""
"01170101.xhp\n"
"par_id3157875\n"
-"255\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the number of units to scroll when a user clicks an arrow on a scrollbar.</ahelp>"
msgstr "<ahelp hid=\".\">ལག་ལེན་པ་གིས་བཤུད་ཕྲ་གུ་མདའ་རྟགས་ཨེབ་གཏང་པའི་སྐབས་བཤུད་སྒྲིལ་འབད་ནི་ལུ་ཆ་ཕྲན་ཚུའི་གྲངས་གསལ་བཀོད་འབད།</ahelp>"
@@ -5709,7 +5268,6 @@ msgstr "<ahelp hid=\".\">ལག་ལེན་པ་གིས་བཤུད་
msgctxt ""
"01170101.xhp\n"
"hd_id3145221\n"
-"73\n"
"help.text"
msgid "List entries"
msgstr "ཐོ་ཡིག་ཐོ་བཀོད་ཚུ།"
@@ -5718,7 +5276,6 @@ msgstr "ཐོ་ཡིག་ཐོ་བཀོད་ཚུ།"
msgctxt ""
"01170101.xhp\n"
"par_id3154580\n"
-"120\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the entries for a list control. One line takes one list entry. Press <emph>Shift+Enter</emph> to insert a new line.</ahelp>"
msgstr "<ahelp hid=\".\">ཐོ་ཡིག་ཚད་འཛིན་གྱི་དོན་ལས་ཐོ་བཀོད་ཚུ་གསལ་བཀོད་འབད། གྱལ་གཅིག་གིས་ཐོ་ཡིག་ཐོ་བཀོད་གཅིག་འབགཔ་ཨིན། <emph>གྱལ་གསརཔ་བཙུགས་ནི་ལུ་སོར་ལྡེ་+བཙུགས་</emph> ཨེབ།</ahelp>"
@@ -5727,7 +5284,6 @@ msgstr "<ahelp hid=\".\">ཐོ་ཡིག་ཚད་འཛིན་གྱི
msgctxt ""
"01170101.xhp\n"
"hd_id3149723\n"
-"159\n"
"help.text"
msgid "Literal mask"
msgstr "ཐད་དོན་གདོང་ཁེབས།"
@@ -5736,7 +5292,6 @@ msgstr "ཐད་དོན་གདོང་ཁེབས།"
msgctxt ""
"01170101.xhp\n"
"par_id3150656\n"
-"160\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the initial values to be displayed in a pattern control. This helps the user to identify which values are allowed in a pattern control. The literal mask is restricted by the format specified by the edit mask.</ahelp>"
msgstr "<ahelp hid=\".\">དཔེ་གཞིའི་ཚད་འཛིན་ནང་བཀྲམ་སྟོན་འབད་ནི་ལུ་འགོ་ཐོག་གནས་གོང་ཚུ་གསལ་བཀོད་འབད། འདི་གིས་དཔེ་གཞིའི་ཚད་འཛིན་ནང་གནས་གོང་ཚུ་ག་འདི་འབད་ཆོགཔ་ཨིན་ན་ལག་ལེན་པ་གིས་ངོས་འཛིན་འབད་ནི་ལུ་གྲོགས་རམ་འབདཝ་ཨིན། ཐད་དོན་གདོང་ཁེབས་འདི་ཞུན་དག་གདོང་ཁེབས་ཀྱིས་གསལ་བཀོད་འབད་ཡོད་མི་རྩ་སྒྲིག་གིས་བཀག་དམ་འབད་ཡོདཔ་ཨིན།</ahelp>"
@@ -5745,7 +5300,6 @@ msgstr "<ahelp hid=\".\">དཔེ་གཞིའི་ཚད་འཛིན་
msgctxt ""
"01170101.xhp\n"
"hd_id3149015\n"
-"116\n"
"help.text"
msgid "Manual line break"
msgstr "ལག་དོབ་གྱལ་བེརེཀ།"
@@ -5754,7 +5308,6 @@ msgstr "ལག་དོབ་གྱལ་བེརེཀ།"
msgctxt ""
"01170101.xhp\n"
"par_id3149893\n"
-"117\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to allow manual line breaks inside multiline controls.</ahelp>"
msgstr "<ahelp hid=\".\">སྣ་མང་གྲལ་ཐིག་ཚད་འཛིན་ཚུ་ནང་ལག་ཐོག་གྲལ་མཚམས་ཚུ་འབད་བཅུག་ནི་ལུ་ \"Yes\" སེལ་འཐུ་འབད།</ahelp>"
@@ -5763,7 +5316,6 @@ msgstr "<ahelp hid=\".\">སྣ་མང་གྲལ་ཐིག་ཚད་འ
msgctxt ""
"01170101.xhp\n"
"hd_id3150463\n"
-"123\n"
"help.text"
msgid "Max. text length"
msgstr "ཚིག་ཡིག་རིང་ཚད་མཐོ་ཤོས།"
@@ -5772,7 +5324,6 @@ msgstr "ཚིག་ཡིག་རིང་ཚད་མཐོ་ཤོས།"
msgctxt ""
"01170101.xhp\n"
"par_id3150745\n"
-"124\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the maximum number of characters that the user can enter.</ahelp>"
msgstr "<ahelp hid=\".\">ལག་ལེན་པ་གིས་བཙུགས་ཚུགས་ནི་ཨིན་མི་ཡིག་འབྲུ་ཚུའི་མང་མཐའི་གྲངས་གསལ་བཀོད་འབད།</ahelp>"
@@ -5781,7 +5332,6 @@ msgstr "<ahelp hid=\".\">ལག་ལེན་པ་གིས་བཙུགས
msgctxt ""
"01170101.xhp\n"
"hd_id3154675\n"
-"21\n"
"help.text"
msgid "Multiline Input"
msgstr "ཐིག་མང་་ཨིན་པུཊི།"
@@ -5790,7 +5340,6 @@ msgstr "ཐིག་མང་་ཨིན་པུཊི།"
msgctxt ""
"01170101.xhp\n"
"par_id3144741\n"
-"22\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to allow the input of multiple lines in the control. Press Enter to insert a manual line break in the control.</ahelp>"
msgstr "<ahelp hid=\".\">ཚད་འཛིན་ནང་སན་མང་གྲལ་མཚམས་ཚུ་གི་ཨིན་པུཊི་འབད་བཅུག་ནི་ལུ་ \"Yes\" སེལ་འཐུ་འབད། ཚད་འཛིན་ནང་ལག་ཐོག་གྲལ་མཚམས་བཙུགས་ནི་ལུ་བཙུགས་ཨེབ།</ahelp>"
@@ -5799,7 +5348,6 @@ msgstr "<ahelp hid=\".\">ཚད་འཛིན་ནང་སན་མང་ག
msgctxt ""
"01170101.xhp\n"
"hd_id3154848\n"
-"129\n"
"help.text"
msgid "Multiselection"
msgstr "སེལ་འཐུ་མང་།"
@@ -5808,7 +5356,6 @@ msgstr "སེལ་འཐུ་མང་།"
msgctxt ""
"01170101.xhp\n"
"par_id3151235\n"
-"130\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to allow the selection of multiple entries in list controls.</ahelp>"
msgstr "<ahelp hid=\".\">ཐོ་ཡིག་ཚད་འཛིན་ཚུ་ནང་སྣ་མང་ཐོ་བཀོད་ཚུ་གི་སེལ་འཐུ་འབད་བཅུག་ནི་ལུ་ \"Yes\" སེལ་འཐུ་འབད།</ahelp>"
@@ -5817,7 +5364,6 @@ msgstr "<ahelp hid=\".\">ཐོ་ཡིག་ཚད་འཛིན་ཚུ་
msgctxt ""
"01170101.xhp\n"
"hd_id3148887\n"
-"9\n"
"help.text"
msgid "Name"
msgstr "མིང་།"
@@ -5826,7 +5372,6 @@ msgstr "མིང་།"
msgctxt ""
"01170101.xhp\n"
"par_id3154548\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\".\">Insert a name for the current control. This name is used to identify the control.</ahelp>"
msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་གྱི་དོན་ལུ་མིང་བཙུགས། ཨ་ནི་མིང་འདི་ཚད་འཛིན་ངོས་འཛིན་འབད་ནི་ལུ་ལག་ལེན་འཐབ་ཨིན།</ahelp>"
@@ -5835,7 +5380,6 @@ msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་གྱ
msgctxt ""
"01170101.xhp\n"
"hd_id3148739\n"
-"44\n"
"help.text"
msgid "Order"
msgstr "མངགས་ནི།"
@@ -5844,7 +5388,6 @@ msgstr "མངགས་ནི།"
msgctxt ""
"01170101.xhp\n"
"par_id3149252\n"
-"45\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the order in which the controls receive the focus when the Tab key is pressed in the dialog.</ahelp> On entering a dialog, the control with the lowest order (0) receives the focus. Pressing the <emph>Tab</emph> key the successively focusses the other controls as specified by their order number."
msgstr "<ahelp hid=\".\">ཌའི་ལོག་ནང་མཆོང་ལྡེ་ཨེབ་པའི་སྐབས་ཚད་འཛིན་ཚུ་གིས་ཆེད་དམིགས་ལེན་མི་ནང་གོ་རིམ་གསལ་བཀོད་འབད། </ahelp> ཌའི་ལོག་ཐོ་བཀོད་འབད་ནི་གུ་ གོ་རིམ་དམའ་ཤོས་ (0) ཡོད་མི་ཚད་འཛིན་འདི་གིས་ཆེད་དམིགས་ལེནམ་ཨིན། <emph>མཆོང་ལྡེ་ཨེབ་ཐོག་ལས་</emph> ཁོང་རའི་གོ་རིམ་གྱི་གྲངས་ཀྱིས་གསལ་བཀོད་འབད་ཡོད་མི་བཟུམ་སྦེ་བརྒྱུད་རིམ་སྦེ་ཆེད་དམིགས་འབདཝ་ཨིན།"
@@ -5853,7 +5396,6 @@ msgstr "<ahelp hid=\".\">ཌའི་ལོག་ནང་མཆོང་ལྡ
msgctxt ""
"01170101.xhp\n"
"par_id3155259\n"
-"46\n"
"help.text"
msgid "Initially, the controls receive numbers in the order they are added to the dialog. You can change the order numbers for controls. $[officename] Basic updates the order numbers automatically to avoid duplicate numbers. Controls that cannot be focused are also assigned a value but these controls are skipped when using the Tab key."
msgstr "འགོ་ཐོག་བསྒང་་ཚད་འཛིན་ཚུ་གིས་ཌའི་ལོག་ལུ་ཁ་སྐོང་འབད་ཡོད་མི་ཁོང་རའི་གོ་རིམ་ནང་ཨང་ཚུ་འཐོབ་ཨིན། ཁྱོད་ཀྱིས་ཚད་འཛིན་ཚུ་གི་དོན་ལུ་གོ་རིམ་ཨང་ཚུ་བསྒྱུར་བཅོས་འབད་བཏུབ་ཨིན། $[officename] གཞི་རིམ་གྱིས་རྫུན་མ་ཨང་ཚུ་ཟུར་ནི་ལུ་རང་བཞིན་གྱིས་གོ་རིམ་ཨང་ཚུ་དུས་མཐུན་བཟོཝ་ཨིན། ཆེད་དམིགས་འབད་མ་བཏུབ་པའི་ཚད་འཛིན་ཚུ་ཡང་གནས་གོང་ཅིག་འགན་སྤྲོད་ཡོདཔ་ཨིན་རུང་ཚད་འཛིན་དེ་ཚུ་མཆོངས་ལྡེ་ ལྡེ་མིག་དེ་ལག་ལེན་འཐབ་པའི་སྐབས་གོམ་འགྱོ་ཡོདཔ་ཨིན།"
@@ -5862,7 +5404,6 @@ msgstr "འགོ་ཐོག་བསྒང་་ཚད་འཛིན་ཚུ
msgctxt ""
"01170101.xhp\n"
"hd_id3149511\n"
-"247\n"
"help.text"
msgid "Orientation"
msgstr "ཕྱོགས།"
@@ -5871,7 +5412,6 @@ msgstr "ཕྱོགས།"
msgctxt ""
"01170101.xhp\n"
"par_id3153780\n"
-"246\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the orientation for a scrollbar control.</ahelp>"
msgstr "<ahelp hid=\".\">བཤུད་ཕྲ་ཚད་འཛིན་གྱི་དོན་ལུ་ཕྱོགས་གསལ་བཀོད་འབད།</ahelp>"
@@ -5880,7 +5420,6 @@ msgstr "<ahelp hid=\".\">བཤུད་ཕྲ་ཚད་འཛིན་གྱ
msgctxt ""
"01170101.xhp\n"
"hd_id3154374\n"
-"239\n"
"help.text"
msgid "Page (step)"
msgstr "ཤོག་ལེབ་(རིམ་པ་)"
@@ -5889,7 +5428,6 @@ msgstr "ཤོག་ལེབ་(རིམ་པ་)"
msgctxt ""
"01170101.xhp\n"
"par_id3154109\n"
-"238\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the number of the dialog page to which the current control is assigned or the page number of the dialog you want to edit.</ahelp> If a dialog has only one page set its <emph>Page (Step)</emph> value to <emph>0</emph>."
msgstr "<ahelp hid=\".\">ཁྱོད་ཀྱིས་ཞུན་དག་འབད་ནི་ཨིན་མི་ཤོག་གྲངས་ཡང་ན་ད་ལྟོའི་ཚད་འཛིན་འགན་སྤྲོད་འབད་ཡོད་མི་ལུ་ཌིའི་ལོག་ཤོག་ལེབ་ཀྱི་གྲངས་གསལ་བཀོད་འབད། </ahelp> ཌའི་ལོག་ལུ་ཤོག་ལེབ་གཅིག་རྐྱངམ་གཅིག་ཡོད་པ་ཅིན་ <emph>དེ་གི་ཤོག་ལེབ་ (རིམ་པ་)</emph> གནས་རིམ་འདི་ <emph>༠ ལུ་གཞི་སྒྲིག་འབད།</emph>."
@@ -5898,7 +5436,6 @@ msgstr "<ahelp hid=\".\">ཁྱོད་ཀྱིས་ཞུན་དག་འ
msgctxt ""
"01170101.xhp\n"
"par_id3148580\n"
-"236\n"
"help.text"
msgid "Select <emph>Page (Step)</emph> = 0 to make a control visible on every dialog page."
msgstr "ཤོག་ལེབ <emph>༠ (Step)</emph>= ཌའི་ལོག་ཤོག་ལེབ་ག་ར་གུ་ཚད་འཛིན་མཐོང་ཚུགསཔ་བཟོ་ནིའི་དོན་ལུ་སེལ་འཐུ་འབད།"
@@ -5907,7 +5444,6 @@ msgstr "ཤོག་ལེབ <emph>༠ (Step)</emph>= ཌའི་ལོག་
msgctxt ""
"01170101.xhp\n"
"par_id3146144\n"
-"235\n"
"help.text"
msgid "To switch between dialog pages at run time, you need to create a macro that changes the value of <emph>Page (Step)</emph>."
msgstr "སདའི་ལོག་ཤོག་ལེབ་ཚུ་ རཱན་ཊའིམ་སྦུག་ལུ་སོར་བསྒྱུར་་འབད་ནི་ལུ་ ཁྱོད་ཀྱིས་ <emph>ཤོག་ལེབ་ (Step)</emph>ཀྱི་གནས་གོང་འདི་བསྒྱུར་བཏུབ་པའི་མེཀརོ་གསར་བསྐྲུན་འབད་དགོཔ་ཨིན།"
@@ -5916,7 +5452,6 @@ msgstr "སདའི་ལོག་ཤོག་ལེབ་ཚུ་ རཱན
msgctxt ""
"01170101.xhp\n"
"hd_id3154558\n"
-"156\n"
"help.text"
msgid "Password characters"
msgstr "ཆོག་ཡིག་ཡིག་འབྲུ་་ཚུ།"
@@ -5925,7 +5460,6 @@ msgstr "ཆོག་ཡིག་ཡིག་འབྲུ་་ཚུ།"
msgctxt ""
"01170101.xhp\n"
"par_id3152787\n"
-"157\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a character to be displayed instead of the characters that are typed. This can be used for entering passwords in text controls.</ahelp>"
msgstr "<ahelp hid=\".\">ཡིག་དཔར་རྐྱབས་ཡོད་མི་ཡིག་འབྲུ་ཚུའི་ཚབ་ལུ་བཀྲམ་སྟོན་འབད་ནི་ལུ་ཡིག་འབྲུ་བཙུགས། ཨ་ནི་འདི་ཚིག་ཡིག་ཚད་འཛིན་ཚུ་ནང་ཆོག་ཡིག་ཚུ་བཙུགས་ནིའི་དོན་ལས་ལག་ལེན་འཐབ་ཚུགས། </ahelp>"
@@ -5934,7 +5468,6 @@ msgstr "<ahelp hid=\".\">ཡིག་དཔར་རྐྱབས་ཡོད་
msgctxt ""
"01170101.xhp\n"
"hd_id3148750\n"
-"245\n"
"help.text"
msgid "PositionX"
msgstr "གནས་ས་ ཨེགསི།"
@@ -5943,7 +5476,6 @@ msgstr "གནས་ས་ ཨེགསི།"
msgctxt ""
"01170101.xhp\n"
"par_id3154517\n"
-"244\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the distance of the current control from the left side of the dialog.</ahelp>"
msgstr "<ahelp hid=\".\">ཌའི་ལོག་གི་ཟུར་གཡོན་ལས་ད་ལྟོའི་ཚད་འཛིན་གྱི་གྱང་ཚད་གསལ་བཀོད་འབད།</ahelp>"
@@ -5952,7 +5484,6 @@ msgstr "<ahelp hid=\".\">ཌའི་ལོག་གི་ཟུར་གཡོ
msgctxt ""
"01170101.xhp\n"
"hd_id3152767\n"
-"243\n"
"help.text"
msgid "PositionY"
msgstr "གནས་ས་ ཝའི།"
@@ -5961,7 +5492,6 @@ msgstr "གནས་ས་ ཝའི།"
msgctxt ""
"01170101.xhp\n"
"par_id3159082\n"
-"242\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the distance of the current control from the top of the dialog.</ahelp>"
msgstr "<ahelp hid=\".\">ཌའི་ལོག་གི་མགོ་ལས་ད་ལྟོའི་ཚད་འཛིན་གྱི་གྱང་ཚད་གསལ་བཀོད་འབད།</ahelp>"
@@ -5970,7 +5500,6 @@ msgstr "<ahelp hid=\".\">ཌའི་ལོག་གི་མགོ་ལས་
msgctxt ""
"01170101.xhp\n"
"hd_id3159213\n"
-"221\n"
"help.text"
msgid "Prefix symbol"
msgstr "སྔོན་ཚིག་ མདའ་མཚོན།"
@@ -5979,7 +5508,6 @@ msgstr "སྔོན་ཚིག་ མདའ་མཚོན།"
msgctxt ""
"01170101.xhp\n"
"par_id3149688\n"
-"222\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to display the currency symbol prefix in currency controls when a number was entered.</ahelp>"
msgstr "<ahelp hid=\".\">ཨང་གྲངས་ཐོ་བཀོད་འབད་ཡོད་པའི་སྐབས་དངུལ་གྱི་ཚད་འཛིན་ཚུ་ནང་དངུལ་གྱི་བརྡ་མཚོན་སྔོན་ཚིག་བཀྲམ་སྟོན་འབད་ནི་ལུ་ \"Yes\" སེལ་འཐུ་འབད།</ahelp>"
@@ -5988,7 +5516,6 @@ msgstr "<ahelp hid=\".\">ཨང་གྲངས་ཐོ་བཀོད་འབ
msgctxt ""
"01170101.xhp\n"
"hd_id3149728\n"
-"89\n"
"help.text"
msgid "Print"
msgstr "དཔར་བསྐྲུན།"
@@ -5997,7 +5524,6 @@ msgstr "དཔར་བསྐྲུན།"
msgctxt ""
"01170101.xhp\n"
"par_id3150001\n"
-"90\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to include the current control in a document's printout.</ahelp>"
msgstr "<ahelp hid=\".\">ཡིག་ཆ་གི་དཔར་བསྐྲུན་ནང་ད་ལྟོའི་ཚད་འཛིན་གྲངས་སུ་བཙུགས་ནི་ལུ་ \"Yes\" སེལ་འཐུ་འབད།</ahelp>"
@@ -6006,7 +5532,6 @@ msgstr "<ahelp hid=\".\">ཡིག་ཆ་གི་དཔར་བསྐྲུ
msgctxt ""
"01170101.xhp\n"
"hd_id3154671\n"
-"261\n"
"help.text"
msgid "Progress value"
msgstr "གནས་གོང་ཡར་འཕར།"
@@ -6015,7 +5540,6 @@ msgstr "གནས་གོང་ཡར་འཕར།"
msgctxt ""
"01170101.xhp\n"
"par_id3146849\n"
-"260\n"
"help.text"
msgid "<ahelp hid=\".\">Specify a progress value for a progress bar control.</ahelp>"
msgstr "<ahelp hid=\".\">ཡར་འཕེལ་ཕྲ་རིང་ཚད་འཛིན་གྱི་དོན་ལུ་ཡར་འཕེལ་གནས་གོང་གསལ་བཀོད་འབད།</ahelp>"
@@ -6024,7 +5548,6 @@ msgstr "<ahelp hid=\".\">ཡར་འཕེལ་ཕྲ་རིང་ཚད་
msgctxt ""
"01170101.xhp\n"
"hd_id3153112\n"
-"254\n"
"help.text"
msgid "Progress value max."
msgstr "གནས་གོང་ཡར་འཕར་མཐོ་ཤོས།"
@@ -6033,7 +5556,6 @@ msgstr "གནས་གོང་ཡར་འཕར་མཐོ་ཤོས།"
msgctxt ""
"01170101.xhp\n"
"par_id3145167\n"
-"253\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the maximum value of a progress bar control.</ahelp>"
msgstr "<ahelp hid=\".\">ཡར་འཕེལ་ཕྲ་རིང་ཚད་འཛིན་གྱི་མང་མཐའི་གནས་གོང་གསལ་བཀོད་འབད།</ahelp>"
@@ -6042,7 +5564,6 @@ msgstr "<ahelp hid=\".\">ཡར་འཕེལ་ཕྲ་རིང་ཚད་
msgctxt ""
"01170101.xhp\n"
"hd_id3153569\n"
-"249\n"
"help.text"
msgid "Progress value min."
msgstr "གནས་གོང་ཡར་འཕར་ཉུང་ཤོས།"
@@ -6051,7 +5572,6 @@ msgstr "གནས་གོང་ཡར་འཕར་ཉུང་ཤོས།"
msgctxt ""
"01170101.xhp\n"
"par_id3154506\n"
-"248\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the minimum value of a progress bar control.</ahelp>"
msgstr "<ahelp hid=\".\">ཡར་འཕེལ་ཕྲ་རིང་ཚད་འཛིན་གྱི་ཉུང་མཐའི་གནས་གོང་གསལ་བཀོད་འབད།</ahelp>"
@@ -6060,7 +5580,6 @@ msgstr "<ahelp hid=\".\">ཡར་འཕེལ་ཕྲ་རིང་ཚད་
msgctxt ""
"01170101.xhp\n"
"hd_id3150134\n"
-"42\n"
"help.text"
msgid "Read-only"
msgstr "ལྷག་ རྐྱངམ་ཅིག"
@@ -6069,7 +5588,6 @@ msgstr "ལྷག་ རྐྱངམ་ཅིག"
msgctxt ""
"01170101.xhp\n"
"par_id3155930\n"
-"43\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to prevent the user from editing the value of the current control. The control is enabled and can be focussed but not modified.</ahelp>"
msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་གྱི་གནས་གོང་ཞུན་དག་འབད་ནི་ལས་ལག་ལེན་པ་སྔོན་བཀག་འབད་ནི་ལུ་ \"Yes\" སེལ་འཐུ་འབད། ཚད་འཛིན་འདི་ལྕོགས་ཅན་ཨིནམ་དང་ཆེད་དམིགས་འབད་ཚུགས་དེ་འབདཝ་ད་ལེགས་བཅོས་བཟོ་འདི་མེད།</ahelp>"
@@ -6158,7 +5676,6 @@ msgstr ""
msgctxt ""
"01170101.xhp\n"
"hd_id3148761\n"
-"264\n"
"help.text"
msgid "Scale"
msgstr "ཚད་ཤིང་།"
@@ -6167,7 +5684,6 @@ msgstr "ཚད་ཤིང་།"
msgctxt ""
"01170101.xhp\n"
"par_id3159134\n"
-"265\n"
"help.text"
msgid "<ahelp hid=\".\">Scales the image to fit the control size.</ahelp>"
msgstr "<ahelp hid=\".\">ཚད་འཛིན་གྱི་ཚད་ཚུད་སྒྲིག་འབད་ནི་ལུ་གཟུགས་བརྙན་ཚད་འཇལཝ་ཨིན།</ahelp>"
@@ -6192,7 +5708,6 @@ msgstr "<ahelp hid=\".\">ཁྱོད་ཀྱིས་ཚིག་ཡིག་
msgctxt ""
"01170101.xhp\n"
"hd_id3147370\n"
-"241\n"
"help.text"
msgid "Scroll value"
msgstr "གནས་གོང་བཤུད་སྒྲིལ།"
@@ -6201,7 +5716,6 @@ msgstr "གནས་གོང་བཤུད་སྒྲིལ།"
msgctxt ""
"01170101.xhp\n"
"par_id3159622\n"
-"240\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the initial value of a scrollbar control. This determines the position of the scrollbar slider.</ahelp>"
msgstr "<ahelp hid=\".\">བཤུད་ཕྲ་ཚད་འཛིན་གྱི་མིང་རྟགས་བསྡུས་པའི་གནས་གོང་གསལ་བཀོད་འབད། འདི་གིས་བཤུད་ཕྲ་བཤུད་བྱེད་ཀྱི་གནས་ས་གཏན་འབེབས་བཟོཝ་ཨིན།</ahelp>"
@@ -6210,7 +5724,6 @@ msgstr "<ahelp hid=\".\">བཤུད་ཕྲ་ཚད་འཛིན་གྱ
msgctxt ""
"01170101.xhp\n"
"hd_id3155440\n"
-"252\n"
"help.text"
msgid "Scroll value max."
msgstr "བཤུད་བསྒྲིལ་གནས་གོང་མཐོ་ཤོས།"
@@ -6219,7 +5732,6 @@ msgstr "བཤུད་བསྒྲིལ་གནས་གོང་མཐོ་
msgctxt ""
"01170101.xhp\n"
"par_id3148877\n"
-"251\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the maximum value of a scrollbar control.</ahelp>"
msgstr "<ahelp hid=\".\">བཤུད་ཕྲ་ཚད་འཛིན་ལུ་མང་མཐའི་གནས་གོང་གསལ་བཀོད་འབད།</ahelp>"
@@ -6348,7 +5860,6 @@ msgstr ""
msgctxt ""
"01170101.xhp\n"
"hd_id3154193\n"
-"87\n"
"help.text"
msgid "Spin Button"
msgstr "ཨེབ་རྟ་བསྒིར།"
@@ -6357,7 +5868,6 @@ msgstr "ཨེབ་རྟ་བསྒིར།"
msgctxt ""
"01170101.xhp\n"
"par_id3145298\n"
-"88\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to add spin buttons to a numerical, currency, date, or time control to allow increasing and decreasing the input value using arrow buttons.</ahelp>"
msgstr "<ahelp hid=\".\">མདའ་རྟགས་ཨེབ་རྟ་ཚུ་ལག་ལེན་འཐབ་ཐོག་ལས་ཨིན་པུཊི་གནས་གོང་ཡར་འཕར་འབད་ནི་དང་མར་ཕབ་འབད་བཅུག་ནི་ལུ་ཨང་གྲངས་ཀྱི་དང་དངུལ་དེ་ལས་ཚེས་གྲངས་ཡང་ན་ཆུ་ཚོད་ཚད་འཛིན་ལུ་བསྒྱིར་རྟ་ཚུ་ཁ་སྐོང་འབད་ནི་ལུ་ \"Yes\" སེལ་འཐུ་འབད།</ahelp>"
@@ -6366,7 +5876,6 @@ msgstr "<ahelp hid=\".\">མདའ་རྟགས་ཨེབ་རྟ་ཚུ
msgctxt ""
"01170101.xhp\n"
"hd_id3156267\n"
-"232\n"
"help.text"
msgid "State"
msgstr "མངའ་སྡེ།"
@@ -6375,7 +5884,6 @@ msgstr "མངའ་སྡེ།"
msgctxt ""
"01170101.xhp\n"
"par_id3150928\n"
-"231\n"
"help.text"
msgid "<ahelp hid=\".\">Select the selection state of the current control.</ahelp>"
msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་གྱི་སེལ་འཐུའི་མངའ་སྡེ་སེལ་འཐུ་འབད།</ahelp>"
@@ -6384,7 +5892,6 @@ msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་གྱ
msgctxt ""
"01170101.xhp\n"
"hd_id3148396\n"
-"112\n"
"help.text"
msgid "Strict format"
msgstr "རྩ་སྒྲིག་དམ་དྲགས།"
@@ -6393,7 +5900,6 @@ msgstr "རྩ་སྒྲིག་དམ་དྲགས།"
msgctxt ""
"01170101.xhp\n"
"par_id3153042\n"
-"113\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to only allow valid characters to be entered in a numerical, currency, date, or time control.</ahelp>"
msgstr "<ahelp hid=\".\">ཨང་གྲངས་ཀྱི་དང་དངུལ་དེ་ལས་ཚེས་གྲངས་ཡང་ན་ཆུ་ཚོད་ཚད་འཛིན་ནང་ནུས་ཅན་ཡིག་འབྲུ་ཚུ་རྐྱངམ་གཅིག་བཙུགས་ཆོག་ནི་ལུ་ \"Yes\" སེལ་འཐུ་འབད།</ahelp>"
@@ -6402,7 +5908,6 @@ msgstr "<ahelp hid=\".\">ཨང་གྲངས་ཀྱི་དང་དངུ
msgctxt ""
"01170101.xhp\n"
"hd_id3149538\n"
-"48\n"
"help.text"
msgid "Tabstop"
msgstr "མཆོང་ལྡེ་བཀག"
@@ -6411,7 +5916,6 @@ msgstr "མཆོང་ལྡེ་བཀག"
msgctxt ""
"01170101.xhp\n"
"par_id3148543\n"
-"49\n"
"help.text"
msgid "<ahelp hid=\".\">Select the focus behavior of the current control when using the <emph>Tab</emph> key.</ahelp>"
msgstr "<ahelp hid=\".\">མཆོང་ལྡེ་ལག་ལེན་འཐབ་པའི་སྐབས་ <emph>ད་ལྟོའི་ཚན་འཛིན་གྱི་</emph> ཆེད་དམིགས་སྤྱོད་ལམ་སེལ་འཐུ་འབད།</ahelp>"
@@ -6420,7 +5924,6 @@ msgstr "<ahelp hid=\".\">མཆོང་ལྡེ་ལག་ལེན་འཐ
msgctxt ""
"01170101.xhp\n"
"par_id3148776\n"
-"178\n"
"help.text"
msgid "Default"
msgstr "སྔོན་སྒྲིག"
@@ -6429,7 +5932,6 @@ msgstr "སྔོན་སྒྲིག"
msgctxt ""
"01170101.xhp\n"
"par_id3153547\n"
-"179\n"
"help.text"
msgid "Only input controls receive the focus when using the <emph>Tab</emph> key. Controls without input like caption controls are omitted."
msgstr ""
@@ -6438,7 +5940,6 @@ msgstr ""
msgctxt ""
"01170101.xhp\n"
"par_id3154632\n"
-"52\n"
"help.text"
msgid "No"
msgstr "མེན།"
@@ -6447,7 +5948,6 @@ msgstr "མེན།"
msgctxt ""
"01170101.xhp\n"
"par_id3150475\n"
-"53\n"
"help.text"
msgid "When using the tab key focusing skips the control."
msgstr "མཆོང་ལྡེ་ ལྡེ་མིག་འདི་ལག་ལེན་འཐབ་ད་ཆེད་མིག་གིས་ཚད་འཛིན་གོམ་འགྱོཝ་ཨིན།"
@@ -6456,7 +5956,6 @@ msgstr "མཆོང་ལྡེ་ ལྡེ་མིག་འདི་ལག
msgctxt ""
"01170101.xhp\n"
"par_id3150690\n"
-"50\n"
"help.text"
msgid "Yes"
msgstr "ཨིན།"
@@ -6465,7 +5964,6 @@ msgstr "ཨིན།"
msgctxt ""
"01170101.xhp\n"
"par_id3159106\n"
-"51\n"
"help.text"
msgid "The control can be selected with the Tab key."
msgstr "ཚད་འཛིན་འདི་མཆོག་ལྡེ་ ལྡེ་མིག་དང་གཅིག་ཁར་སེལ་འཐུ་འབད་བཏུབ་ཨིན།"
@@ -6474,7 +5972,6 @@ msgstr "ཚད་འཛིན་འདི་མཆོག་ལྡེ་ ལྡ
msgctxt ""
"01170101.xhp\n"
"hd_id3145152\n"
-"147\n"
"help.text"
msgid "Thousands Separator"
msgstr "དབྱེ་སེལ་བ་སྟོང་ཕྲ་ཚུ།"
@@ -6483,7 +5980,6 @@ msgstr "དབྱེ་སེལ་བ་སྟོང་ཕྲ་ཚུ།"
msgctxt ""
"01170101.xhp\n"
"par_id3155085\n"
-"148\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to display thousands separator characters in numerical and currency controls.</ahelp>"
msgstr "<ahelp hid=\".\">ཨང་གྲངས་ཀྱི་དང་དངུལ་གྱི་ཚད་འཛིན་ཚུ་ནང་སྟོང་ཕྲག་ཚུའི་དབྱེ་བྱེད་ཡིག་འབྲུ་ཚུ་བཀྲམ་སྟོན་འབད་ནི་ལུ་ \"Yes\" སེལ་འཐུ་འབད།</ahelp>"
@@ -6492,7 +5988,6 @@ msgstr "<ahelp hid=\".\">ཨང་གྲངས་ཀྱི་དང་དངུ
msgctxt ""
"01170101.xhp\n"
"hd_id3152816\n"
-"168\n"
"help.text"
msgid "Time Format"
msgstr "དུས་ཚོད་རྩ་སྒྲིག"
@@ -6501,7 +5996,6 @@ msgstr "དུས་ཚོད་རྩ་སྒྲིག"
msgctxt ""
"01170101.xhp\n"
"par_id3145263\n"
-"169\n"
"help.text"
msgid "<ahelp hid=\".\">Select the format to be used for time controls.</ahelp>"
msgstr "<ahelp hid=\".\">ཆུ་ཚོད་ཚད་འཛིན་ཚུའི་དོན་ལས་ལག་ལེན་འཐབ་ནི་ལུ་རྩ་སྒྲིག་སེལ་འཐུ་འབད།</ahelp>"
@@ -6510,7 +6004,6 @@ msgstr "<ahelp hid=\".\">ཆུ་ཚོད་ཚད་འཛིན་ཚུའ
msgctxt ""
"01170101.xhp\n"
"hd_id3153920\n"
-"127\n"
"help.text"
msgid "Time max."
msgstr "དུས་ཚོད་མཐོ་ཤོས།"
@@ -6519,7 +6012,6 @@ msgstr "དུས་ཚོད་མཐོ་ཤོས།"
msgctxt ""
"01170101.xhp\n"
"par_id3155401\n"
-"128\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the maximum time value for a time control.</ahelp>"
msgstr "<ahelp hid=\".\">ཆུ་ཚོད་ཚད་འཛིན་ལུ་མང་མཐའི་ཆུ་ཚོད་གནས་གོང་གསལ་བཀོད་འབད།</ahelp>"
@@ -6528,7 +6020,6 @@ msgstr "<ahelp hid=\".\">ཆུ་ཚོད་ཚད་འཛིན་ལུ་
msgctxt ""
"01170101.xhp\n"
"hd_id3163818\n"
-"135\n"
"help.text"
msgid "Time min."
msgstr "དུས་ཚོད་ཉུང་ཤོས།"
@@ -6537,7 +6028,6 @@ msgstr "དུས་ཚོད་ཉུང་ཤོས།"
msgctxt ""
"01170101.xhp\n"
"par_id3156262\n"
-"136\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the minimum time value for a time control.</ahelp>"
msgstr "<ahelp hid=\".\">ཆུ་ཚོད་ཚད་འཛིན་ལུ་ཉུག་མཐའི་ཆུ་ཚོད་གནས་གོང་གསལ་བཀོད་འབད།</ahelp>"
@@ -6546,7 +6036,6 @@ msgstr "<ahelp hid=\".\">ཆུ་ཚོད་ཚད་འཛིན་ལུ་
msgctxt ""
"01170101.xhp\n"
"hd_id3148638\n"
-"266\n"
"help.text"
msgid "Title"
msgstr "མངོ་མིང་།"
@@ -6555,7 +6044,6 @@ msgstr "མངོ་མིང་།"
msgctxt ""
"01170101.xhp\n"
"par_id3147169\n"
-"267\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the title of the dialog. Click the border of the dialog to select the dialog.</ahelp>"
msgstr "<ahelp hid=\".\">ཌའི་ལོག་གི་མགོ་མིང་གསལ་བཀོད་འབད། ཌའི་ལོག་སེལ་འཐུ་འབད་ནི་ལུ་ཌའི་ལོག་གི་མཐའ་མཚམས་ཨེབ་གཏང་།</ahelp>"
@@ -6564,7 +6052,6 @@ msgstr "<ahelp hid=\".\">ཌའི་ལོག་གི་མགོ་མིང
msgctxt ""
"01170101.xhp\n"
"par_id3153716\n"
-"55\n"
"help.text"
msgid "<emph>Titles</emph> are only used for labeling a dialog and can only contain one line. Please note that if you work with macros, controls are only called through their <emph>Name</emph> property."
msgstr "<emph>མགོ་མིང་ཚུ་</emph> ཆ་མཉམ་ཌའི་ལོག་ཁ་ཡིག་བཏགས་ནི་རྐྱངམ་ཅིག་གི་དོན་ལུ་ལག་ལེན་འཐབ་ཡོདཔ་དང་འདི་གིས་གྱལ་གཅིག་རྐྱངམ་ཅིག་ཤོམ་ཨིན། དྲན་ཚིག་་ཁྱོད་ཀྱིས་ལཱ་མེཀརོསི་་ཅིག་ཁར་འབད་བ་ཅིན་ ཚད་འཛིན་ཚུ་ཆ་མཉམ་རྐྱངམ་ཅིག་ <emph>མིང་</emph> རྒྱུ་དངོས་བརྒྱུདཔ་ཨིན།"
@@ -6573,7 +6060,6 @@ msgstr "<emph>མགོ་མིང་ཚུ་</emph> ཆ་མཉམ་ཌའ
msgctxt ""
"01170101.xhp\n"
"hd_id3152594\n"
-"173\n"
"help.text"
msgid "Tristate"
msgstr "ཊི་ཨར་ཨའི་མངའ་སྡེ།"
@@ -6582,7 +6068,6 @@ msgstr "ཊི་ཨར་ཨའི་མངའ་སྡེ།"
msgctxt ""
"01170101.xhp\n"
"par_id3149825\n"
-"174\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to allow a check box to have three states (checked, unchecked, and grayed out) instead of two (checked and unchecked).</ahelp>"
msgstr "<ahelp hid=\".\">དཔྱད་སྒྲོམ་ལུ་Select \"Yes\" to allow a check box to have three states (checked, unchecked, and grayed out) instead of two (ཨིན་རྟགས་བཀལ་ཡོད་མི་དང་ཨིན་རྟགས་བཏོན་གཏང་ཡོད་མི་) གཉིས་ཀྱི་ཚབ་ལུ་(ཨིན་རྟགས་བཀལ་ཡོད་མི་དང་ཨིན་རྟགས་བཏོན་གཏང་ཡོད་མི་དེ་ལས་སྐྱ་ཐལ་སོང་ཡོད་མི་) གནས་ལུགས་གསུམ་ཐོབ་བཅུག་ནི་ལུ་ \"Yes\" སེལ་འཐུ་འབད།</ahelp>"
@@ -6591,7 +6076,6 @@ msgstr "<ahelp hid=\".\">དཔྱད་སྒྲོམ་ལུ་Select \"Yes\
msgctxt ""
"01170101.xhp\n"
"hd_id3150614\n"
-"268\n"
"help.text"
msgid "Value"
msgstr "གནས་གོང་།"
@@ -6600,7 +6084,6 @@ msgstr "གནས་གོང་།"
msgctxt ""
"01170101.xhp\n"
"par_id3154315\n"
-"269\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the value for the current control.</ahelp>"
msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་ལུ་གནས་གོང་སེལ་འཐུ་འབད།</ahelp>"
@@ -6609,7 +6092,6 @@ msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་ལུ
msgctxt ""
"01170101.xhp\n"
"hd_id3152480\n"
-"125\n"
"help.text"
msgid "Value max."
msgstr "གནས་གོང་མཐོ་ཤོས།"
@@ -6618,7 +6100,6 @@ msgstr "གནས་གོང་མཐོ་ཤོས།"
msgctxt ""
"01170101.xhp\n"
"par_id3163823\n"
-"126\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the maximum value for the current control.</ahelp>"
msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་ལུ་མང་མཐའི་གནས་གོང་གསལ་བཀོད་འབད།</ahelp>"
@@ -6627,7 +6108,6 @@ msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་ལུ
msgctxt ""
"01170101.xhp\n"
"hd_id3149276\n"
-"133\n"
"help.text"
msgid "Value min."
msgstr "གནས་གོང་ཉུང་ཤོས།"
@@ -6636,7 +6116,6 @@ msgstr "གནས་གོང་ཉུང་ཤོས།"
msgctxt ""
"01170101.xhp\n"
"par_id3145088\n"
-"134\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the minimum value for the current control.</ahelp>"
msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་ལུ་ཉུང་མཐའི་གནས་གོང་གསལ་བཀོད་འབད།</ahelp>"
@@ -6645,7 +6124,6 @@ msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་ལུ
msgctxt ""
"01170101.xhp\n"
"hd_id3149712\n"
-"234\n"
"help.text"
msgid "Visible size"
msgstr "ཚད་མཐོང་ཚུགསཔ།"
@@ -6654,7 +6132,6 @@ msgstr "ཚད་མཐོང་ཚུགསཔ།"
msgctxt ""
"01170101.xhp\n"
"par_id3149445\n"
-"233\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the length of the slider of a scrollbar control.</ahelp>"
msgstr "<ahelp hid=\".\">བཤུད་ཕྲ་ཚད་འཛིན་གྱི་བཤུད་བྱེད་ཀྱི་རིང་ཚད་གསལ་བཀོད་འབད།</ahelp>"
@@ -6663,7 +6140,6 @@ msgstr "<ahelp hid=\".\">བཤུད་ཕྲ་ཚད་འཛིན་གྱ
msgctxt ""
"01170101.xhp\n"
"hd_id3152472\n"
-"142\n"
"help.text"
msgid "Width"
msgstr "རྒྱ་ཚད།"
@@ -6672,7 +6148,6 @@ msgstr "རྒྱ་ཚད།"
msgctxt ""
"01170101.xhp\n"
"par_id3157963\n"
-"143\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the width of the current control or dialog.</ahelp>"
msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་ ཡང་ན་ ཌའི་ལོག་གི་རྒྱ་ཚད་གསལ་བཀོད་འབད།</ahelp>"
@@ -6689,7 +6164,6 @@ msgstr "བྱུང་ལས།"
msgctxt ""
"01170103.xhp\n"
"hd_id3155506\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">Events</link>"
msgstr "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">བྱུང་ལས་ཚུ་</link>"
@@ -6698,7 +6172,6 @@ msgstr "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">བྱུ
msgctxt ""
"01170103.xhp\n"
"par_id3146114\n"
-"2\n"
"help.text"
msgid "Define event assignments for the selected control or dialog. The available events depend on the type of control selected."
msgstr "ཌའི་ལོག་ཡང་ན་སེལ་འཐུ་འབད་ཡོད་པའི་ཚད་འཛིན་དོན་ལུ་འབྱུང་ལས་འགན་སྤྲོད་ཚུ་ངེས་འཛིན་འབད། འབྱུང་ལས་ཐོབ་ཚུགས་མི་འདི་ཚུ་སེལ་འཐུ་འབད་ཡོད་པའི་ཚད་འཛིན་གྱི་དབྱེ་བ་འདི་གུ་རྟེནམ་ཨིན།"
@@ -6707,7 +6180,6 @@ msgstr "ཌའི་ལོག་ཡང་ན་སེལ་འཐུ་འབད
msgctxt ""
"01170103.xhp\n"
"hd_id3145387\n"
-"16\n"
"help.text"
msgid "When receiving focus"
msgstr "ཆེད་མེད་ལེན་པའི་སྐབས།"
@@ -6716,7 +6188,6 @@ msgstr "ཆེད་མེད་ལེན་པའི་སྐབས།"
msgctxt ""
"01170103.xhp\n"
"par_id3155090\n"
-"17\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_FOCUSGAINED\">This event takes place if a control receives the focus.</ahelp>"
msgstr "<ahelp hid=\"HID_EVT_FOCUSGAINED\">ཚད་འཛིན་གྱིས་ཆེད་དམིགས་ལེན་པ་ཅིན་ཨ་ནི་བྱུང་ལས་འདི་འབྱུངམ་ཨིན།</ahelp>"
@@ -6725,7 +6196,6 @@ msgstr "<ahelp hid=\"HID_EVT_FOCUSGAINED\">ཚད་འཛིན་གྱིས
msgctxt ""
"01170103.xhp\n"
"hd_id3152892\n"
-"18\n"
"help.text"
msgid "When losing focus"
msgstr "ཆེད་མེད་བྱང་སྟོར་ཤོར་་བའི་སྐབས།"
@@ -6734,7 +6204,6 @@ msgstr "ཆེད་མེད་བྱང་སྟོར་ཤོར་་བའ
msgctxt ""
"01170103.xhp\n"
"par_id3153305\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_FOCUSLOST\">This event takes place if a control loses the focus.</ahelp>"
msgstr "<ahelp hid=\"HID_EVT_FOCUSLOST\">ཚད་འཛིན་གྱིས་ཆེད་དམིགས་བྱང་སྟོར་ཤོར་བ་ཅིན་ཨ་ནི་བྱུང་ལས་འདི་འབྱུངམ་ཨིན།</ahelp>"
@@ -6743,7 +6212,6 @@ msgstr "<ahelp hid=\"HID_EVT_FOCUSLOST\">ཚད་འཛིན་གྱིས་
msgctxt ""
"01170103.xhp\n"
"hd_id3152896\n"
-"20\n"
"help.text"
msgid "Key pressed"
msgstr "ལྡེ་མིག་ཨེབ།"
@@ -6752,7 +6220,6 @@ msgstr "ལྡེ་མིག་ཨེབ།"
msgctxt ""
"01170103.xhp\n"
"par_id3148837\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_KEYTYPED\">This event occurs when the user presses any key while the control has the focus.</ahelp>"
msgstr "<ahelp hid=\"HID_EVT_KEYTYPED\">ཚད་འཛིན་ལུ་ཆེད་དམིགས་ཡོད་པའི་སྐབས་ལག་ལེན་པ་གིས་ལྡེ་མིག་གང་རུང་ཅིག་ཨེབ་ད་ཨ་ནི་བྱུང་ལས་འདི་འབྱུངམ་ཨིན།</ahelp>"
@@ -6761,7 +6228,6 @@ msgstr "<ahelp hid=\"HID_EVT_KEYTYPED\">ཚད་འཛིན་ལུ་ཆེ
msgctxt ""
"01170103.xhp\n"
"hd_id3146869\n"
-"43\n"
"help.text"
msgid "Key released"
msgstr "ལྡེ་མིག་འཛིན་གྲོལ་ཡོདཔ།"
@@ -6770,7 +6236,6 @@ msgstr "ལྡེ་མིག་འཛིན་གྲོལ་ཡོདཔ།"
msgctxt ""
"01170103.xhp\n"
"par_id3155267\n"
-"44\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_KEYUP\">This event occurs when the user releases a key while the control has the focus.</ahelp>"
msgstr "<ahelp hid=\"HID_EVT_KEYUP\">ཚད་འཛིན་ལུ་ཆེད་དམིགས་ཡོད་པའི་སྐབས་ལག་ལེན་པ་གིས་ལྡེ་མིག་འཛིན་གྲོལ་འབདཝ་ད་ཨ་ནི་བྱུང་ལས་འདི་འབྱུངམ་ཨིན།</ahelp>"
@@ -6779,7 +6244,6 @@ msgstr "<ahelp hid=\"HID_EVT_KEYUP\">ཚད་འཛིན་ལུ་ཆེད
msgctxt ""
"01170103.xhp\n"
"hd_id3159096\n"
-"41\n"
"help.text"
msgid "Modified"
msgstr "ལེགས་བཅོས་འབད་ཡོདཔ།"
@@ -6788,7 +6252,6 @@ msgstr "ལེགས་བཅོས་འབད་ཡོདཔ།"
msgctxt ""
"01170103.xhp\n"
"par_id3156019\n"
-"42\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_CHANGED\">This event takes place, when the control loses the focus and the contents of the control were changed since it lost the focus.</ahelp>"
msgstr "<ahelp hid=\"HID_EVT_CHANGED\">ཚད་འཛིན་གྱིས་ཆེད་དམིགས་བྱང་སྟོར་ཤོར་བའི་སྐབས་དང་ དེ་གིས་ཆེད་དམིགས་བྱང་སྟོར་ཤོར་ཡོད་མི་ལས་ཚུར་ཚད་འཛིན་གྱི་ནང་དོན་ཚུ་བསྒྱུར་བཅོས་འབད་ཡོད་པའི་སྐབས་ ཨ་ནི་བྱུང་ལས་འདི་འབྱུངམ་ཨིན།</ahelp>"
@@ -6797,7 +6260,6 @@ msgstr "<ahelp hid=\"HID_EVT_CHANGED\">ཚད་འཛིན་གྱིས་
msgctxt ""
"01170103.xhp\n"
"hd_id3144508\n"
-"10\n"
"help.text"
msgid "Text modified"
msgstr "ཚིག་ཡིག་ལེགས་བཅོས་འབད་ཡོདཔ།"
@@ -6806,7 +6268,6 @@ msgstr "ཚིག་ཡིག་ལེགས་བཅོས་འབད་ཡོ
msgctxt ""
"01170103.xhp\n"
"par_id3148608\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_TEXTCHANGED\">This event takes place if you enter or modify a text in an input field.</ahelp>"
msgstr "<ahelp hid=\"HID_EVT_TEXTCHANGED\">ཁྱོད་ཀྱིས་ཨིན་པུཊི་ས་སྒོ་ནང་ཚིག་ཡིག་བཙུགས་ནི་ ཡང་ན་ ལེགས་བཅོས་འབད་བ་ཅིན་ཨ་ནི་བྱུང་ལས་འདི་འབྱུངམ་ཨིན།</ahelp>"
@@ -6815,7 +6276,6 @@ msgstr "<ahelp hid=\"HID_EVT_TEXTCHANGED\">ཁྱོད་ཀྱིས་ཨི
msgctxt ""
"01170103.xhp\n"
"hd_id3159207\n"
-"8\n"
"help.text"
msgid "Item status changed"
msgstr "གནས་ཚད་རྣམ་གྲངས་བསྒྱུར་བཅོས་འབད་ཡོདཔ།"
@@ -6824,7 +6284,6 @@ msgstr "གནས་ཚད་རྣམ་གྲངས་བསྒྱུར་བ
msgctxt ""
"01170103.xhp\n"
"par_id3155097\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">This event takes place if the status of the control field is changed, for example, from checked to unchecked.</ahelp>"
msgstr "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">ཚད་འཛིན་ས་སྒོ་གི་གནས་ཚད་ཚུ་བསྒྱུར་བཅོས་འབད་ཡོད་པ་ཅིན་ཨ་ནི་བྱུང་ལས་འདི་འབྱུངམ་ཨིན་ དཔེར་ན་ ཞིབ་དཔྱད་འབད་ཡོད་མི་ལས་ཞིབ་དཔྱད་མ་འབད་མི་ལུ་བཟུམ།</ahelp>"
@@ -6833,7 +6292,6 @@ msgstr "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">ཚད་འཛིན་ས་
msgctxt ""
"01170103.xhp\n"
"hd_id3151304\n"
-"26\n"
"help.text"
msgid "Mouse inside"
msgstr "མཱའུསི་ནང་ན།"
@@ -6842,7 +6300,6 @@ msgstr "མཱའུསི་ནང་ན།"
msgctxt ""
"01170103.xhp\n"
"par_id3152871\n"
-"27\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSEENTERED\">This event takes place when the mouse enters the control.</ahelp>"
msgstr "<ahelp hid=\"HID_EVT_MOUSEENTERED\">མཱའུསི་གིས་ཚད་འཛིན་བཙུགས་པའི་སྐབས་ཨ་ནི་བྱུང་ལས་འདི་འབྱུངམ་ཨིན།</ahelp>"
@@ -6851,7 +6308,6 @@ msgstr "<ahelp hid=\"HID_EVT_MOUSEENTERED\">མཱའུསི་གིས་ཚ
msgctxt ""
"01170103.xhp\n"
"hd_id3146778\n"
-"30\n"
"help.text"
msgid "Mouse moved while key pressed"
msgstr "ལྡེ་མིག་ཨེབ་ད་མའུསི་སྤོ་ཡོདཔ།"
@@ -6860,7 +6316,6 @@ msgstr "ལྡེ་མིག་ཨེབ་ད་མའུསི་སྤོ་
msgctxt ""
"01170103.xhp\n"
"par_id3150403\n"
-"31\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">This event takes place when the mouse is dragged while a key is pressed.</ahelp>"
msgstr "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">ལྡེ་མིག་ཨེབ་བཞག་ཡོད་པའི་སྐབས་མཱའུསི་འདྲུདཔ་ད་ཨ་ནི་བྱུང་ལས་འདི་འབྱུངམ་ཨིན།</ahelp>"
@@ -6869,7 +6324,6 @@ msgstr "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">ལྡེ་མིག་ཨེབ་
msgctxt ""
"01170103.xhp\n"
"hd_id3150210\n"
-"32\n"
"help.text"
msgid "Mouse moved"
msgstr "མཱའུསི་སྤོ་ཡོདཔ།"
@@ -6878,7 +6332,6 @@ msgstr "མཱའུསི་སྤོ་ཡོདཔ།"
msgctxt ""
"01170103.xhp\n"
"par_id3149697\n"
-"33\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSEMOVED\">This event takes place when the mouse moves over the control.</ahelp>"
msgstr "<ahelp hid=\"HID_EVT_MOUSEMOVED\">ཚད་འཛིན་གུ་མཱའུསི་སྤོ་བཤུད་འབད་བའི་སྐབས་ཨ་ནི་བྱུང་ལས་འདི་འབྱུངམ་ཨིན།</ahelp>"
@@ -6887,7 +6340,6 @@ msgstr "<ahelp hid=\"HID_EVT_MOUSEMOVED\">ཚད་འཛིན་གུ་མ
msgctxt ""
"01170103.xhp\n"
"hd_id3145216\n"
-"22\n"
"help.text"
msgid "Mouse button pressed"
msgstr "མཱའུསི་ཨེབ་རྟ་ཨེབ་ཡོདཔ།"
@@ -6896,7 +6348,6 @@ msgstr "མཱའུསི་ཨེབ་རྟ་ཨེབ་ཡོདཔ།"
msgctxt ""
"01170103.xhp\n"
"par_id3155914\n"
-"23\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">This event takes place when the mouse button is pressed while the mouse pointer is on the control.</ahelp>"
msgstr "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">མཱའུསི་དཔག་བྱེད་འདི་ཚད་འཛིན་གུ་ཡོད་པའི་སྐབས་མཱའུསི་ཨེབ་རྟ་ཨེབ་ད་ཨ་ནི་བྱུང་ལས་འདི་འབྱུངམ་ཨིན།</ahelp>"
@@ -6905,7 +6356,6 @@ msgstr "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">མཱའུསི་དཔག་བ
msgctxt ""
"01170103.xhp\n"
"hd_id3148899\n"
-"24\n"
"help.text"
msgid "Mouse button released"
msgstr "མའའུསི་ཨེབ་རྟ་འཛིན་གྲོལ་ཡོདཔ།"
@@ -6914,7 +6364,6 @@ msgstr "མའའུསི་ཨེབ་རྟ་འཛིན་གྲོལ་
msgctxt ""
"01170103.xhp\n"
"par_id3153812\n"
-"25\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSERELEASED\">This event takes place when the mouse button is released while the mouse pointer is on the control.</ahelp>"
msgstr "<ahelp hid=\"HID_EVT_MOUSERELEASED\">མཱའུསི་དཔག་བྱེད་འདི་ཚད་འཛིན་གུ་ཡོད་པའི་སྐབས་མཱའུསི་ཨེབ་རྟ་འཛིན་གྲོལ་འབདཝ་ད་ཨ་ནི་བྱུང་ལས་འདི་འབྱུངམ་ཨིན།</ahelp>"
@@ -6923,7 +6372,6 @@ msgstr "<ahelp hid=\"HID_EVT_MOUSERELEASED\">མཱའུསི་དཔག་
msgctxt ""
"01170103.xhp\n"
"hd_id3153556\n"
-"28\n"
"help.text"
msgid "Mouse outside"
msgstr "མཱའུསི་ཕྱི་ཁར།"
@@ -6932,7 +6380,6 @@ msgstr "མཱའུསི་ཕྱི་ཁར།"
msgctxt ""
"01170103.xhp\n"
"par_id3153013\n"
-"29\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when the mouse leaves the control.</ahelp>"
msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">མཱའུསི་གིས་ཚད་འཛིན་བཞག་པའི་སྐབས་ཨ་ནི་བྱུང་ལས་འདི་འབྱུངམ་ཨིན།</ahelp>"
@@ -6941,7 +6388,6 @@ msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">མཱའུསི་གིས་ཚ
msgctxt ""
"01170103.xhp\n"
"hd_id3155759\n"
-"45\n"
"help.text"
msgid "While adjusting"
msgstr "བདེ་སྒྲིག་འབད་བའི་བསྒང་།"
@@ -6950,7 +6396,6 @@ msgstr "བདེ་སྒྲིག་འབད་བའི་བསྒང་།
msgctxt ""
"01170103.xhp\n"
"par_id3156364\n"
-"46\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when a scrollbar is being dragged.</ahelp>"
msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">བཤུད་ཕྲ་འདྲུད་པའི་སྐབས་ཨ་ནི་བྱུང་ལས་འདི་འདི་འབཡུངམ་ཨིན།་</ahelp>"
@@ -6967,7 +6412,6 @@ msgstr "རཱན་ཊའིམ་ལས་འགན་ཚུ།"
msgctxt ""
"03000000.xhp\n"
"hd_id3152895\n"
-"1\n"
"help.text"
msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">Run-Time Functions</link></variable>"
msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">རཱན་ཊའིམ་ལས་འགན་ཚུ་</link></variable>"
@@ -6976,7 +6420,6 @@ msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\
msgctxt ""
"03000000.xhp\n"
"par_id3148983\n"
-"2\n"
"help.text"
msgid "This section describes the Runtime Functions of <item type=\"productname\">%PRODUCTNAME</item> Basic."
msgstr "འ་ནི་དབྱེ་ཚན་གྱིས་རཱན་ཊའིམ་ལས་འགན་ཚུའི་འགྲལ་བཤད་འབདཝ་ཨིན། <item type=\"productname\">%PRODUCTNAME</item> གཞི་རྟེན།"
@@ -6993,7 +6436,6 @@ msgstr "གསལ་གཞི་ I/O ལས་འགན་ཚུ།"
msgctxt ""
"03010000.xhp\n"
"hd_id3156280\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Screen I/O Functions</link>"
msgstr "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">གསལ་གཞི་ I/O ལས་འགན་ཚུ</link>"
@@ -7002,7 +6444,6 @@ msgstr "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functio
msgctxt ""
"03010000.xhp\n"
"par_id3153770\n"
-"2\n"
"help.text"
msgid "This section describes the Runtime Functions used to call dialogs for the input and output of user entries."
msgstr "འ་ནི་དབྱེ་ཚན་གྱིས་ལག་ལེན་པ་ཐོ་བཀོད་ཚུ་གི་ཨའུཊི་པུཊི་དང་ཨིན་པུཊི་འདིའི་དོན་ལུ་ཌའི་ལོགསི་་བོད་བརྡ་ལུ་རཱན་ཊའིམ་ལས་འགན་ཚུ་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན།"
@@ -7019,7 +6460,6 @@ msgstr "ལས་འགན་ཚུ་བཀྲམ་བཏོན་འབད།
msgctxt ""
"03010100.xhp\n"
"hd_id3151384\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Display Functions\">Display Functions</link>"
msgstr "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Display Functions\">ལས་འགན་ཚུ་བཀྲམ་བཏོན་འབད</link>"
@@ -7028,7 +6468,6 @@ msgstr "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Display Functions\
msgctxt ""
"03010100.xhp\n"
"par_id3149346\n"
-"2\n"
"help.text"
msgid "This section describes Runtime functions used to output information to the screen display."
msgstr "འ་ནི་དབྱེ་ཚན་གྱིས་གསལ་གཞི་བཀྲམ་བཏོན་འདི་ལུ་ཨའུཊི་པུཊི་བརྡ་དོན་ལུ་རཱན་ཊའིམ་ལས་འགན་ཚུ་ལག་ལེན་འཐབ་ཡོད་པའི་གསལ་བཤད་འབདཝ་ཨིན།"
@@ -7693,7 +7132,6 @@ msgstr "གསལ་གཞི་ཨིན་པུཊི་དོན་ལུ་
msgctxt ""
"03010200.xhp\n"
"hd_id3149456\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Functions for Screen Input\">Functions for Screen Input</link>"
msgstr "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Functions for Screen Input\">གསལ་གཞི་ཨིན་པུཊི་དོན་ལུ་ལས་འགན་ཚུ</link>"
@@ -7702,7 +7140,6 @@ msgstr "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Functions for Scre
msgctxt ""
"03010200.xhp\n"
"par_id3150398\n"
-"2\n"
"help.text"
msgid "This section describes Runtime functions used to control screen input."
msgstr "འ་ནི་དབྱེ་ཚན་གྱིས་ཨིན་པུཊི་གསལ་གཞི་ཚད་འཛིན་ལུ་ལག་ལེན་འཐབ་ཡོད་པའི་རཱན་ཊའིམ་ལས་འགན་ཚུ་གསལ་བརྗོད་འབདཝ་ཨིན།"
@@ -7871,7 +7308,6 @@ msgstr "ཚོས་གཞི་ལས་འགན་ཚུ།"
msgctxt ""
"03010300.xhp\n"
"hd_id3157896\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Color Functions\">Color Functions</link>"
msgstr "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Color Functions\">ཚོས་གཞི་ལས་འགན་ཚུ</link>"
@@ -7880,7 +7316,6 @@ msgstr "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Color Functions\">
msgctxt ""
"03010300.xhp\n"
"par_id3155555\n"
-"2\n"
"help.text"
msgid "This section describes Runtime functions used to define colors."
msgstr "འ་ནི་དབྱེ་ཚན་གྱིས་ངེས་ཚིག་ཚོས་གཞི་ཚུ་ལུ་ལག་ལེན་འཐབ་ཡོད་པའི་རཱན་ཊའིམ་ལས་འགན་ཚུ་གསལ་བཤད་འབདཝ་ཨིན།"
@@ -8617,7 +8052,6 @@ msgstr "ཡིག་སྣོད ༡/༠ ལས་འགན་ཚུ།"
msgctxt ""
"03020000.xhp\n"
"hd_id3156344\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"File I/O Functions\">File I/O Functions</link>"
msgstr "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"File I/O Functions\">ཡིག་སྣོད་ ༡/༠ ལས་འགན་ཚུ</link>"
@@ -8626,7 +8060,6 @@ msgstr "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"File I/O Functions
msgctxt ""
"03020000.xhp\n"
"par_id3153360\n"
-"2\n"
"help.text"
msgid "Use File I/O functions to create and manage user-defined (data) files."
msgstr "ཡིག་སྣོད་ ༡/༠ ལས་འགན་ཚུ་ལག་ལེན་པ་འཛིན་སྐྱོང་ངེས་ཚིག་ཡབད་ཡོདཔ (data) ཡིག་སྣོད་ཚུ་དང་གསར་བསྐྲུན་ལུ་ལག་ལེན་འཐབ།"
@@ -8635,7 +8068,6 @@ msgstr "ཡིག་སྣོད་ ༡/༠ ལས་འགན་ཚུ་ལག
msgctxt ""
"03020000.xhp\n"
"par_id3150398\n"
-"3\n"
"help.text"
msgid "You can use these functions to support the creation of \"relative\" files, so that you can save and reload certain records by specifying their record number. File I/O functions can also help you manage your files by providing you with information such as file size, current path settings, or the creation date of a file or a directory."
msgstr "ཁྱོད་ཀྱིས་ལས་འགན་དེ་ཚུ་\"relative\" ཡིག་སྣོད་ཚུ་གི་གསར་བསྐྲུན་རྒྱབ་སྐྱོར་ལུ་ལག་ལེན་འཐབ་དེ་ ཁྱོད་ཀྱིས་ངེས་ཅན་དྲན་ཐོ་ཚུ་ཁོང་རའི་དྲན་ཐོ་ཨང་གསལ་བཀོད་འབད་དེ་གིས་སྦེ་བསྐྱར་ལོག་མངོན་གསལ་འབད་ནི་དང་སྲུང་བཞག་འབད་བཏུབ་ཨིན། ཡིག་སྣོད་ I/O ལས་འགན་ཚུ་གིས་ཡང་་ཁྱོད་ལུ་ཡིག་སྣོད་ཚུ་གི་བརྡ་དོན་དེ་བཟུམ་སྦེ་ཡིག་སྣོད་ཚད་བྱིན་ནི་གཅིག་ཁར་་ད་ལྟོའི་འགྲུལ་ལམ་སྒྲིག་སྟངས་ཚུ་ ཡང་ན་ཡིག་སྣོད་ཡང་ན་སྣོད་ཐོ་གི་ཚེས་གསར་བསྐྲུན་འབད་ནིའི་འཛིན་སྐྱོང་འབད་ནི་གྲོགས་རམ་འབདཝ་ཨིན།"
@@ -8652,7 +8084,6 @@ msgstr "ཡིག་སྣོད་ཚུ་ཁ་ཕྱེ་ཐངས་དང
msgctxt ""
"03020100.xhp\n"
"hd_id3152924\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Opening and Closing Files\">Opening and Closing Files</link>"
msgstr "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Opening and Closing Files\">ཡིག་སྣོད་ཚུ་ཁ་ཕྱེ་ཐངས་དང་ཁ་བསྡམས་ཐངས</link>"
@@ -8842,7 +8273,6 @@ msgid "Print #iNumber, \"Another line of text\""
msgstr "དཔར་བསུཔ་ #ཨའི་ཨང་། \"Another line of text\""
#: 03020103.xhp
-#, fuzzy
msgctxt ""
"03020103.xhp\n"
"tit\n"
@@ -8859,7 +8289,6 @@ msgid "<bookmark_value>Open statement</bookmark_value>"
msgstr "<bookmark_value>གསལ་བཤད་ཁ་ཕྱེ་</bookmark_value>"
#: 03020103.xhp
-#, fuzzy
msgctxt ""
"03020103.xhp\n"
"hd_id3150791\n"
@@ -9055,7 +8484,6 @@ msgstr "ཡིག་སྣོད ཨིན་པུཊི /ཨའུཊི་པ
msgctxt ""
"03020200.xhp\n"
"hd_id3150791\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"File Input/Output Functions\">File Input/Output Functions</link>"
msgstr "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"File Input/Output Functions\">ཡིག་སྣོད་་ཨིན་པུཊི/ཨའུཊི་པུཊི་ ལས་འགན་ཚུ༌</link>"
@@ -9888,7 +9316,6 @@ msgstr "<bookmark_value>ལོཀ་ ལས་འགན</bookmark_value>"
msgctxt ""
"03020302.xhp\n"
"hd_id3148663\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc Function [Runtime]\">Loc Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc Function [Runtime]\">ལོཀ་ ལས་འགན [Runtime]</link>"
@@ -9897,7 +9324,6 @@ msgstr "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc Function [Runt
msgctxt ""
"03020302.xhp\n"
"par_id3154138\n"
-"2\n"
"help.text"
msgid "Returns the current position in an open file."
msgstr "ཡིག་སྣོད་ཀུན་ནང་ད་ལྟོའི་གནས་ས་འདི་སླར་ལོགཔ་ཨིན།"
@@ -9906,7 +9332,6 @@ msgstr "ཡིག་སྣོད་ཀུན་ནང་ད་ལྟོའི་
msgctxt ""
"03020302.xhp\n"
"hd_id3156422\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -9915,7 +9340,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03020302.xhp\n"
"par_id3150768\n"
-"4\n"
"help.text"
msgid "Loc(FileNumber)"
msgstr "ལོཀ(FileNumber)"
@@ -9924,7 +9348,6 @@ msgstr "ལོཀ(FileNumber)"
msgctxt ""
"03020302.xhp\n"
"hd_id3150440\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -9933,7 +9356,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03020302.xhp\n"
"par_id3152578\n"
-"6\n"
"help.text"
msgid "Long"
msgstr "རིངམོ།"
@@ -9942,7 +9364,6 @@ msgstr "རིངམོ།"
msgctxt ""
"03020302.xhp\n"
"hd_id3152462\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -9951,7 +9372,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03020302.xhp\n"
"par_id3153363\n"
-"8\n"
"help.text"
msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is set by the Open statement for the respective file."
msgstr "<emph>ཡིག་སྣོད་ཨང་:</emph> ཨང་གྲངས་ཀྱི་གསལ་བརྗོད་གང་རུང་ཡིག་སྣོད་སོ་སོ་དོན་ལུ་གསལ་བཤད་ཀུན་གྱི་གཞི་བསྒྲིག་འབད་བའི་ཡིག་སྣོད་ཨང་འདི་ནང་ན་ཡོདཔ་ཨིན།"
@@ -9960,7 +9380,6 @@ msgstr "<emph>ཡིག་སྣོད་ཨང་:</emph> ཨང་གྲངས
msgctxt ""
"03020302.xhp\n"
"par_id3154320\n"
-"9\n"
"help.text"
msgid "If the Loc function is used for an open random access file, it returns the number of the last record that was last read or written."
msgstr "ཨེལ་ཨོ་སི་་ལས་འགན་དེ་གང་འབྱུང་འཛུལ་སྤྱོད་འབད་ནི་ཡིག་སྣོད་ཁ་ཕྱེ་ནི་དོན་ལུ་ལག་ལེན་འཐབ་ཡོད་པ་ཅིན་ དེ་གིས་མཇུག་ལྷག་་ནི་ཡང་ན་འབྲི་ཡོད་མི་དྲན་ཐོ་མཇུག་གི་ཨང་དེ་སླར་ལོགཔ་ཨིན།"
@@ -9969,7 +9388,6 @@ msgstr "ཨེལ་ཨོ་སི་་ལས་འགན་དེ་གང་
msgctxt ""
"03020302.xhp\n"
"par_id3151115\n"
-"10\n"
"help.text"
msgid "For a sequential file, the Loc function returns the position in a file divided by 128. For binary files, the position of the last read or written byte is returned."
msgstr "ཡིག་སྣོད་འབྱུང་རིམ་དོན་ལུ་ ཨེལ་ཨོ་སི་ཡིག་སྣོད་ཀྱིས་ ༡༢༨ ཀྱིས་བགོ་ཡོད་པའི་ཡིག་སྣོད་ནང་གནས་ས་དེ་སླར་ལོགཔ་ཨིན། ཟུང་ལྡན་ཡིག་སྣོད་ཚུ་གི་དོན་ལུ་ མཇུག་གི་ལྷག་ནི་ཡང་ན་འབྲི་ཡོད་མི་བཱའིཊི་གི་གནས་ས་དེ་སླར་ལོག་ཡོདཔ་ཨིན།"
@@ -9994,7 +9412,6 @@ msgstr "<bookmark_value>ཨེལ་གྱི་ལས་འགན</bookmark_val
msgctxt ""
"03020303.xhp\n"
"hd_id3156024\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function [Runtime]\">Lof Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function [Runtime]\">ཨེལ་གྱི་ལས་འགན [Runtime]</link>"
@@ -10003,7 +9420,6 @@ msgstr "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function [Runt
msgctxt ""
"03020303.xhp\n"
"par_id3146794\n"
-"2\n"
"help.text"
msgid "Returns the size of an open file in bytes."
msgstr "བཱའིཊིསི་ནང་ཡིག་སྣོད་ཀུན་གྱི་ཚད་འདི་སླར་ལོགཔ་ཨིན།"
@@ -10012,7 +9428,6 @@ msgstr "བཱའིཊིསི་ནང་ཡིག་སྣོད་ཀུན
msgctxt ""
"03020303.xhp\n"
"hd_id3153380\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -10021,7 +9436,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03020303.xhp\n"
"par_id3150359\n"
-"4\n"
"help.text"
msgid "Lof (FileNumber)"
msgstr "ཨེལ་གྱི་ (FileNumber)"
@@ -10030,7 +9444,6 @@ msgstr "ཨེལ་གྱི་ (FileNumber)"
msgctxt ""
"03020303.xhp\n"
"hd_id3154141\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -10039,7 +9452,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03020303.xhp\n"
"par_id3147230\n"
-"6\n"
"help.text"
msgid "Long"
msgstr "རིངམོ།"
@@ -10048,7 +9460,6 @@ msgstr "རིངམོ།"
msgctxt ""
"03020303.xhp\n"
"hd_id3156281\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -10057,7 +9468,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03020303.xhp\n"
"par_id3150869\n"
-"8\n"
"help.text"
msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is specified in the Open statement."
msgstr "གསལ་བཤད་ཁ་ཕྱེ།"
@@ -10066,7 +9476,6 @@ msgstr "གསལ་བཤད་ཁ་ཕྱེ།"
msgctxt ""
"03020303.xhp\n"
"par_id3147349\n"
-"9\n"
"help.text"
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "ཡིག་སྣོད་ཀྱི་རིང་ཚད་འདི་ལེན་ནི་ལུ་ཁ་མ་ཕྱེ་བ་ཅིན་ <emph>ཡིག་སྣོད་ལིན</emph> ལས་འགན་ལག་ལེན་འཐབ།"
@@ -10075,7 +9484,6 @@ msgstr "ཡིག་སྣོད་ཀྱི་རིང་ཚད་འདི་
msgctxt ""
"03020303.xhp\n"
"hd_id3155415\n"
-"10\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -10084,7 +9492,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03020303.xhp\n"
"par_id3154730\n"
-"13\n"
"help.text"
msgid "Dim sText As Variant REM must be a Variant"
msgstr "མདངས་གྲིབ་ཨེསི་ཚིག་ཡིག་མི་མཐུན་པ་བཟུམ་སྦེ་ཨར་ཨི་ཨེམ་དེ་མི་མཐུན་པ་དགོཔ་ཨིན།"
@@ -10093,7 +9500,6 @@ msgstr "མདངས་གྲིབ་ཨེསི་ཚིག་ཡིག་མ
msgctxt ""
"03020303.xhp\n"
"par_id3156276\n"
-"19\n"
"help.text"
msgid "Seek #iNumber,1 REM Position at start"
msgstr "#ཨའི་ཨང་ ༡་ རིམ་གནས་ས་འགོ་བཙུགས་ལུ།"
@@ -10102,7 +9508,6 @@ msgstr "#ཨའི་ཨང་ ༡་ རིམ་གནས་ས་འགོ་
msgctxt ""
"03020303.xhp\n"
"par_id3148405\n"
-"20\n"
"help.text"
msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
msgstr "#ཨའི་ཨང་བཙུགས \"This is the first line of text\" REM Fill with text"
@@ -10111,7 +9516,6 @@ msgstr "#ཨའི་ཨང་བཙུགས \"This is the first line of text\"
msgctxt ""
"03020303.xhp\n"
"par_id3154756\n"
-"21\n"
"help.text"
msgid "Put #iNumber,, \"This is the second line of text\""
msgstr "བཙུགས#ཨའི་ཨང་ \"This is the second line of text\""
@@ -10120,7 +9524,6 @@ msgstr "བཙུགས#ཨའི་ཨང་ \"This is the second line of text\
msgctxt ""
"03020303.xhp\n"
"par_id3145643\n"
-"22\n"
"help.text"
msgid "Put #iNumber,, \"This is the third line of text\""
msgstr "བཙུགས #ཨའི་ཨང་ \"This is the third line of text\""
@@ -10129,7 +9532,6 @@ msgstr "བཙུགས #ཨའི་ཨང་ \"This is the third line of text\
msgctxt ""
"03020303.xhp\n"
"par_id3150299\n"
-"31\n"
"help.text"
msgid "Put #iNumber,,\"This is a new line of text\""
msgstr "#ཨའི་ཨང་བཙུགས\"This is a new line of text\""
@@ -10138,7 +9540,6 @@ msgstr "#ཨའི་ཨང་བཙུགས\"This is a new line of text\""
msgctxt ""
"03020303.xhp\n"
"par_id3166425\n"
-"34\n"
"help.text"
msgid "Put #iNumber,20,\"This is the text in record 20\""
msgstr "བཙུགས#ཨའི་ཨང་ ༢༠ \"This is the text in record 20\""
@@ -10163,7 +9564,6 @@ msgstr "<bookmark_value>ལས་འགན་འཚོལ</bookmark_value>"
msgctxt ""
"03020304.xhp\n"
"hd_id3154367\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function [Runtime]\">Seek Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function [Runtime]\">ལས་འགན་འཛོལ [རཱན་ཊའིམ]</link>"
@@ -10172,7 +9572,6 @@ msgstr "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function [Run
msgctxt ""
"03020304.xhp\n"
"par_id3156280\n"
-"2\n"
"help.text"
msgid "Returns the position for the next writing or reading in a file that was opened with the open statement."
msgstr "ཁ་ཕྱེ་གསལ་བཤད་ཀྱི་ཐོག་ལས་ཁ་ཕྱེ་ཡོད་མི་ཡིག་སྣོད་ནང་ཤུལ་མམ་འབྲི་ནི་ ཡང་ན་ ལྷག་ནི་ལུ་གནས་ས་སླར་ལོག་འབདཝ་ཨིན།"
@@ -10181,7 +9580,6 @@ msgstr "ཁ་ཕྱེ་གསལ་བཤད་ཀྱི་ཐོག་ལས
msgctxt ""
"03020304.xhp\n"
"par_id3153194\n"
-"3\n"
"help.text"
msgid "For random access files, the Seek function returns the number of the next record to be read."
msgstr "གང་འབྱུང་འཛུལ་སྤྱོད་ཡིག་སྣོད་ཚུའི་དོན་ལུ་ ་ལས་འགན་འཚོལ་འདི་་་ ཤུལ་མའི་དྲན་ཐོ་ལྷག་ནི་ཨིན་མི་གི་ཨང་འདི་སླར་་ལོགཔ་ཨིན།"
@@ -10190,7 +9588,6 @@ msgstr "གང་འབྱུང་འཛུལ་སྤྱོད་ཡིག་
msgctxt ""
"03020304.xhp\n"
"par_id3161831\n"
-"4\n"
"help.text"
msgid "For all other files, the function returns the byte position at which the next operation is to occur."
msgstr "ཡིག་སནོད་གཞན་ཆ་མཉམ་ལུ་ ལས་འགན་འདི་གིས་ཤུལ་མམ་གྱི་བཀོལ་སྤྱོད་འབཡུང་ནི་ཨིན་མི་ལུ་བཱའིཊི་གི་གནས་ས་སླར་ལོག་འབདཝ་ཨིན།"
@@ -10199,7 +9596,6 @@ msgstr "ཡིག་སནོད་གཞན་ཆ་མཉམ་ལུ་ ལ
msgctxt ""
"03020304.xhp\n"
"par_id3155854\n"
-"5\n"
"help.text"
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Seek</link>."
msgstr "བལྟ་ཡང་: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">ཁ་ཕྱེ་</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">འཚོལ</link>."
@@ -10208,7 +9604,6 @@ msgstr "བལྟ་ཡང་: <link href=\"text/sbasic/shared/03020103.xhp\" na
msgctxt ""
"03020304.xhp\n"
"hd_id3152460\n"
-"6\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -10217,7 +9612,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03020304.xhp\n"
"par_id3145365\n"
-"7\n"
"help.text"
msgid "Seek (FileNumber)"
msgstr "འཚོལ (ཡིག་སྣོད་ཨང་)"
@@ -10226,7 +9620,6 @@ msgstr "འཚོལ (ཡིག་སྣོད་ཨང་)"
msgctxt ""
"03020304.xhp\n"
"hd_id3148575\n"
-"8\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -10235,7 +9628,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03020304.xhp\n"
"par_id3159156\n"
-"9\n"
"help.text"
msgid "Long"
msgstr "རིངམོ།"
@@ -10244,7 +9636,6 @@ msgstr "རིངམོ།"
msgctxt ""
"03020304.xhp\n"
"hd_id3149665\n"
-"10\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -10253,7 +9644,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03020304.xhp\n"
"par_id3148645\n"
-"11\n"
"help.text"
msgid "<emph>FileNumber:</emph> The data channel number used in the Open statement."
msgstr "<emph>ཡིག་སྣོད་ཀྱི་གྲངས་:</emph> ཁ་ཕྱེ་གསལ་བཤད་ནང་ལག་ལེན་འཐབ་ཡོད་མི་གནད་སྡུད་རྒྱུ་ལམ་གྱི་ཨང་གྲངས།"
@@ -10278,7 +9668,6 @@ msgstr "<bookmark_value>གསལ་བཤད་འཚོལ་</bookmark_value>
msgctxt ""
"03020305.xhp\n"
"hd_id3159413\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Runtime]\">Seek Statement [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Runtime]\">གསལ་བཤད་འཚོལ [རཱན་ཊའིམ]</link>"
@@ -10287,7 +9676,6 @@ msgstr "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Ru
msgctxt ""
"03020305.xhp\n"
"par_id3153381\n"
-"2\n"
"help.text"
msgid "Sets the position for the next writing or reading in a file that was opened with the Open statement."
msgstr "ཁ་ཕྱེ་གསལ་བཤད་ཀྱི་ཐོག་ལས་ཁ་ཕྱེ་ཡོད་མི་ཡིག་སྣོད་ནང་ཤུལ་མ་འབྲི་ནི་ ཡང་ན་ ལྷག་ནིའི་དོན་ལུ་གནས་ས་གཞི་སྒྲིག་འབདཝ་ཨིན།"
@@ -10312,7 +9700,6 @@ msgstr "གཞན་ཡིག་སྣོད་ཆ་མཉམ་ལུ་ འ
msgctxt ""
"03020305.xhp\n"
"par_id3156280\n"
-"5\n"
"help.text"
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
msgstr "བལྟ་ཡང་: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">ཁ་ཕྱེ</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">འཚོལ</link>."
@@ -10321,7 +9708,6 @@ msgstr "བལྟ་ཡང་: <link href=\"text/sbasic/shared/03020103.xhp\" na
msgctxt ""
"03020305.xhp\n"
"hd_id3145785\n"
-"6\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -10330,7 +9716,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03020305.xhp\n"
"par_id3145273\n"
-"7\n"
"help.text"
msgid "Seek[#FileNumber], Position (As Long)"
msgstr "[#FileNumber] འཚོལ་ གནས་ས་ (རིངམོ་)"
@@ -10339,7 +9724,6 @@ msgstr "[#FileNumber] འཚོལ་ གནས་ས་ (རིངམོ་)"
msgctxt ""
"03020305.xhp\n"
"hd_id3154321\n"
-"8\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -10348,7 +9732,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03020305.xhp\n"
"par_id3153952\n"
-"9\n"
"help.text"
msgid "<emph>FileNumber: </emph>The data channel number used in the Open statement."
msgstr "<emph>ཡིག་སྣོད་ཀྱི་ཨང་: </emph>ཨོ་པཱན་གསལ་བཤད་ནང་ལག་ལེན་འཐབ་ཡོད་མི་གནད་སྡུད་རྒྱུ་ལམ་གྱི་ཨང་གརངས།"
@@ -10357,7 +9740,6 @@ msgstr "<emph>ཡིག་སྣོད་ཀྱི་ཨང་: </emph>ཨོ་
msgctxt ""
"03020305.xhp\n"
"par_id3145366\n"
-"10\n"
"help.text"
msgid "<emph>Position: </emph>Position for the next writing or reading. Position can be a number between 1 and 2,147,483,647. According to the file type, the position indicates the number of the record (files in the Random mode) or the byte position (files in the Binary, Output, Append or Input mode). The first byte in a file is position 1, the second byte is position 2, and so on."
msgstr "<emph>གནས་ས་: </emph>ཤུལ་མ་འབྲི་ནི་ལྷག་ནི་དོན་ལུ་གནས་ས། གནས་ས་དེ་ཨང་ ༡ དང་ ༢ ༡༤༧ ༤༨༣ ༦༤༧ བར་ན་འོངམ་ཨིན། ཡིག་སྣོད་དབྱེ་དེ་ལུ་འཁྲིལཝ་ད་ དྲན་ཐོ་གི་ཨང་དེ་་ (གང་འབྱུང་ཐབས་ལམ་ནང་ཡིག་སྣོད་ཚུ་) ཡང་ན་བཱའིཊིསི་གནས་ས་དེ་བརྡ་སྟོནམ་ཨིན (ཟུང་ལྡན་ནང་ཡིག་སྣོད་ཚུ་ ཨའུཊི་པུཊི་ མཇུག་བསྣོན་ཡང་ན་་ཨིན་པུཊི་ཐབས་ལམ)། ཡིག་སྣོད་ནང་བཱའིཊི་དང་པམམ་དེ་གནས་ས་ ༡ བཱའིཊི་གཉིས་པམ་དེ་གནས་ས་་༢ དང་་དེ་བཟུམ་ལེ་ཤ་ར།"
@@ -10374,7 +9756,6 @@ msgstr "ཡིག་སྣོད་ཚུ་འཛིན་སྐྱོང་འ
msgctxt ""
"03020400.xhp\n"
"hd_id3145136\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Managing Files\">Managing Files</link>"
msgstr "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Managing Files\">ཡིག་སྣོད་ཚུ་འཛིན་སྐྱོང་འབད་དོ</link>"
@@ -10383,7 +9764,6 @@ msgstr "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Managing Files\">
msgctxt ""
"03020400.xhp\n"
"par_id3147264\n"
-"2\n"
"help.text"
msgid "The functions and statements for managing files are described here."
msgstr "ཡིག་སྣོད་ཚུ་འཛིན་སྐྱོང་དོན་ལུ་ལས་འགན་ཚུ་དང་གསལ་བཤད་ཚུ་ཆ་མཉམ་ན་འགྲེལ་བཤད་འབད་ཡོདཔ་ཨིན།"
@@ -10837,7 +10217,6 @@ msgid "' Get the directories"
msgstr "ཨར་ཨི་ཨེམ་་ལེན་སྣོད་ཐོ་འདི་ཚུ།"
#: 03020405.xhp
-#, fuzzy
msgctxt ""
"03020405.xhp\n"
"tit\n"
@@ -10854,7 +10233,6 @@ msgid "<bookmark_value>FileAttr function</bookmark_value>"
msgstr "<bookmark_value>ཡིག་སྣོད་ཨེཊར་ལས་འགན</bookmark_value>"
#: 03020405.xhp
-#, fuzzy
msgctxt ""
"03020405.xhp\n"
"hd_id3153380\n"
@@ -11207,7 +10585,6 @@ msgid "Example:"
msgstr "དཔེར་བརྗོད:"
#: 03020408.xhp
-#, fuzzy
msgctxt ""
"03020408.xhp\n"
"tit\n"
@@ -11224,7 +10601,6 @@ msgid "<bookmark_value>FileLen function</bookmark_value>"
msgstr "<bookmark_value>ཡིག་སྣོད་ལིན་ ལས་འགན</bookmark_value>"
#: 03020408.xhp
-#, fuzzy
msgctxt ""
"03020408.xhp\n"
"hd_id3153126\n"
@@ -12132,7 +11508,6 @@ msgstr "ཚེས་དང་དུས་ཚོད་ལས་འགན་ཚུ
msgctxt ""
"03030000.xhp\n"
"hd_id3150502\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Date and Time Functions\">Date and Time Functions</link>"
msgstr "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Date and Time Functions\">ཚེས་དང་དུས་ཚོད་ལས་འགན་ཚུ</link>"
@@ -12141,7 +11516,6 @@ msgstr "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Date and Time Func
msgctxt ""
"03030000.xhp\n"
"par_id3153255\n"
-"2\n"
"help.text"
msgid "Use the statements and functions described here to perform date and time calculations."
msgstr "ན་ལུ་འགྲེལ་བཤད་འབད་ཡོད་མི་གསལ་བཤད་ཚུ་ཡང་ན་ལས་འགན་ཚུ་ཚེས་དང་དུས་ཚོད་རྩིས་སྟོན་ནི་ལཱ་འགན་འགྲུབ་ནི་ལུ་ལག་ལེན་འཐབ་བཏུབ།"
@@ -12150,7 +11524,6 @@ msgstr "ན་ལུ་འགྲེལ་བཤད་འབད་ཡོད་མ
msgctxt ""
"03030000.xhp\n"
"par_id3152363\n"
-"3\n"
"help.text"
msgid "<item type=\"productname\">%PRODUCTNAME</item> Basic lets you calculate time or date differences by converting the time and date values to continuous numeric values. After the difference is calculated, special functions are used to reconvert the values to the standard time or date formats."
msgstr "<item type=\"productname\">%PRODUCTNAME</item> གཞི་རིམ་གྱིས་ཁྱོད་ལུ་དུས་ཚོད་ཡང་ན་ཚེས་སོ་སོ་འཕྲོ་མཐུད་ཅན་ཨང་གྲངས་ཀྱི་གནས་གོང་ལུ་ཚེས་དང་ཚེས་གནས་གོང་དེ་གཞི་བསྒྱུར་འབད་དེ་གིས་འབད་རྩིས་སྟོན་བཅུག་འོང་། སོ་སོ་རྩིས་སྟོན་འབད་ཚར་བའི་ཤུལ་ལུ་ དམིགས་བསལ་ལས་འགན་ཚུ་ཆ་མཉམ་ཚད་ལྡན་དུས་ཚོད་ཡང་ན་ཚོས་རྩ་སྒྲིག་ཚུ་ལུ་གནས་གོང་ཚུ་ཡང་བསྐྱར་གཞི་བསྒྱུར་འབད་ནི་ལུ་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན།"
@@ -12159,7 +11532,6 @@ msgstr "<item type=\"productname\">%PRODUCTNAME</item> གཞི་རིམ་
msgctxt ""
"03030000.xhp\n"
"par_id3151054\n"
-"4\n"
"help.text"
msgid "You can combine date and time values into a single floating-decimal number. Dates are converted to integers, and times to decimal values. <item type=\"productname\">%PRODUCTNAME</item> Basic also supports the variable type Date, which can contain a time specification consisting of both a date and time."
msgstr "ཁྱོད་ཀྱིས་ཚེས་དང་དུས་ཚོད་གནས་གོང་ཚུ་འཕུར་ལྡིང་བཅུ་ཚག་ཨང་རྐྱང་པ་ནང་ལུ་མཉམ་མཐུད་འབད་བཏུབ། ཚེས་ཚུ་ཆ་མཉམ་ཧྲིལ་ཨང་ཚུ་ལུ་དང་ དུས་ཚོད་ཚུ་བཅུ་ཚག་གནས་གོང་ཚུ་ལུ་གཞི་བསྒྱུར་འབད་ཡོདཔ་ཨིན་། <item type=\"productname\">%PRODUCTNAME</item> གཞི་རིམ་གྱིས་ཡང་འགྱུར་ཅན་དབྱེ་བ་ཚེས་ དུས་ཚོད་གསལ་བཀོད་ཚུས་དང་དུས་ཚོད་གཉིས་ཆ་ར་རིམ་མཐུན་ཡོདཔ་ཚུ་རྒྱབ་སྐྱོར་འབདཝ་ཨིན།"
@@ -12176,7 +11548,6 @@ msgstr "ཚེས་གནས་གོང་ཚུ་གཞི་བསྒྱུ
msgctxt ""
"03030100.xhp\n"
"hd_id3147573\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Converting Date Values\">Converting Date Values</link>"
msgstr "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Converting Date Values\">ཚེས་གནས་གོང་ཚུ་གཞི་བསྒྱུར་འབད་དོ</link>"
@@ -12185,7 +11556,6 @@ msgstr "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Converting Date Va
msgctxt ""
"03030100.xhp\n"
"par_id3154760\n"
-"2\n"
"help.text"
msgid "The following functions convert date values to calculable numbers and back."
msgstr "འོག་གི་ལས་འགན་ཚུ་གིས་ཚེས་གནས་གོང་ཚུ་སྩིས་སྟོན་བཏུབ་ཨང་ཚུ་དང་་ལོག་ལུ་གཞི་བསྒྱུར་འབད།"
@@ -12210,7 +11580,6 @@ msgstr "<bookmark_value>ཚེས་ཨང་རིམ་ལས་འགན</boo
msgctxt ""
"03030101.xhp\n"
"hd_id3157896\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function [Runtime]\">DateSerial Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function [Runtime]\">ཚེས་ཨང་རིམ་ལས་འགན [Runtime]</link>"
@@ -12219,7 +11588,6 @@ msgstr "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Functio
msgctxt ""
"03030101.xhp\n"
"par_id3143267\n"
-"2\n"
"help.text"
msgid "Returns a <emph>Date</emph> value for a specified year, month, or day."
msgstr "ཚེས་<emph>གནས་གོང་</emph> གསལ་བཀོད་འབད་ཡོད་མི་ལོ་ ཟླ་ ཡང་ན་ཉིནམ་དོན་ལུ་སླར་ལོགཔ་ཨིན།"
@@ -12228,7 +11596,6 @@ msgstr "ཚེས་<emph>གནས་གོང་</emph> གསལ་བཀོ
msgctxt ""
"03030101.xhp\n"
"hd_id3147264\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -12237,7 +11604,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03030101.xhp\n"
"par_id3149670\n"
-"4\n"
"help.text"
msgid "DateSerial (year, month, day)"
msgstr "ཚེས་ཨང་རིམ (year, month, day)"
@@ -12246,7 +11612,6 @@ msgstr "ཚེས་ཨང་རིམ (year, month, day)"
msgctxt ""
"03030101.xhp\n"
"hd_id3150792\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -12255,7 +11620,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03030101.xhp\n"
"par_id3150398\n"
-"6\n"
"help.text"
msgid "Date"
msgstr "ཚེས་གྲངས་"
@@ -12264,7 +11628,6 @@ msgstr "ཚེས་གྲངས་"
msgctxt ""
"03030101.xhp\n"
"hd_id3154141\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -12273,7 +11636,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03030101.xhp\n"
"par_id3147229\n"
-"8\n"
"help.text"
msgid "<emph>Year:</emph> Integer expression that indicates a year. All values between 0 and 99 are interpreted as the years 1900-1999. For years that fall outside this range, you must enter all four digits."
msgstr "<emph>ལོ་:</emph> ཧྲིལ་ཨང་་གསལ་བརྗོད་དེ་ལོ་ཅིག་བརྡ་སྟོནམ་ཨིན། གནས་གོང་་ ༠ དང་ ༩༩ ཚུའི་བར་ན་ཆ་མཉམ་ ༡༩༠༠ ༡༩༩༩ ལོ་ཚུ་སྦེ་ཁ་སྒྱུར་འབད་ཡོདཔ་ཨིན། འ་ནི་ཁྱབ་ཚད་ཀྱི་ཕྱི་ཁ་ཕོག་མི་ལོ་ཚུའི་དོན་ལུ་ ཁྱོད་ཀྱིས་ཨང་ཡིག་ཚུ་བཞི་ཆ་མཉམ་བཙུགས་དགོ།"
@@ -12282,7 +11644,6 @@ msgstr "<emph>ལོ་:</emph> ཧྲིལ་ཨང་་གསལ་བརྗ
msgctxt ""
"03030101.xhp\n"
"par_id3156280\n"
-"9\n"
"help.text"
msgid "<emph>Month:</emph> Integer expression that indicates the month of the specified year. The accepted range is from 1-12."
msgstr "<emph>ཟླ:</emph> ཧྲིལ་ཨང་གསལ་བརྗོད་འདི་གསལ་བཀོད་འབད་ཡོད་མི་ལོའི་ཟླ་འདི་བརྡ་སྟོནམ་ཨིན། དང་ལེན་འབད་ཡོད་པའི་ཁྱབ་ཚད་འདི་ ༡ ལས་ ༡༢"
@@ -12291,7 +11652,6 @@ msgstr "<emph>ཟླ:</emph> ཧྲིལ་ཨང་གསལ་བརྗོད
msgctxt ""
"03030101.xhp\n"
"par_id3151043\n"
-"10\n"
"help.text"
msgid "<emph>Day:</emph> Integer expression that indicates the day of the specified month. The accepted range is from 1-31. No error is returned when you enter a non-existing day for a month shorter than 31 days."
msgstr ""
@@ -12300,7 +11660,6 @@ msgstr ""
msgctxt ""
"03030101.xhp\n"
"par_id3161832\n"
-"11\n"
"help.text"
msgid "The <emph>DateSerial function</emph> returns the number of days between December 30,1899 and the given date. You can use this function to calculate the difference between two dates."
msgstr "ཚེས་རིམ་ལུགས་ལས་འགན <emph>དེ་གིས་</emph> སྤྱི་ཟླ་བཅུ་གཉིས་པ་ ༣༠ ༡༨༩༩ དང་ གྲ་སྒྲིག་ཚེས་བར་ན་ཉིནམ་ཚུ་གི་ཨང་དེ་སླར་ལོགཔ་ཨིན། ཁྱོད་ཀྱིས་འ་ནི་ལས་འགན་དེ་ཚེས་གཉིས་ཀྱི་བར་ན་སོ་སོ་ཁ་ཕྱེལ་རྩིས་སྟོན་ནི་ལུ་ལག་ལེན་འཐབ་བཏུབ་ཨིན།"
@@ -12309,7 +11668,6 @@ msgstr "ཚེས་རིམ་ལུགས་ལས་འགན <emph>དེ
msgctxt ""
"03030101.xhp\n"
"par_id3155306\n"
-"12\n"
"help.text"
msgid "The <emph>DateSerial function</emph> returns the data type Variant with VarType 7 (Date). Internally, this value is stored as a Double value, so that when the given date is 1.1.1900, the returned value is 2. Negative values correspond to dates before December 30, 1899 (not inclusive)."
msgstr "ཚེས་རིམ་ཨང་ལས་འགན་ <emph>དེ་གིས་</emph> གནད་སྡུད་དབྱེ་བ་མི་མཐུན་པ་དང་གཅིག་ཁར་ ཝར་དབྱེ་བ་ ༧་ (ཚེས་)དེ་སླར་ལོགཔ་ཨིན། ནང་འཁོད་ འ་ནི་གནས་གོང་དེ་གནས་གོང་གཉིས་ལྡན་བསཻ་གསོག་འཇོག་འབད་ཡོདཔ་ ད་གྲ་སྒྲིག་ཚེས་སྐབས་ ༡་༡་༡་༡༩༠༠ སླར་ལོག་ཡོད་མི་གནས་གོང་དེ་ ༢། མེད་ཆ་གནས་གོང་ཚུ་ སྤྱི་ཟླ་བཅུ་གཉིས་པ་ ༣༠ ༡༨༩༩ ཧེ་མམ་གྱི་ཚེས་ཚུ་ལུ་ (གྲངས་སུ་མ་བརྩིསཔ)ཆ་མཉམ་ཨིན།"
@@ -12318,7 +11676,6 @@ msgstr "ཚེས་རིམ་ཨང་ལས་འགན་ <emph>དེ་
msgctxt ""
"03030101.xhp\n"
"par_id3152576\n"
-"13\n"
"help.text"
msgid "If a date is defined that lies outside of the accepted range, $[officename] Basic returns an error message."
msgstr "དང་ལེན་འབད་ཡོད་པའི་ཁྱབ་ཚད་ཀྱི་ཕྱི་ཁ་ཡོད་མི་ངེས་འཛིན་འབད་ཡོད་པའི་ཚེས་དེ་ $[officename] གཞི་རིམ་ཅིག་འཕྲིན་དོན་འཛོལ་བ་སླར་ལོགཔ་ཨིན།"
@@ -12327,7 +11684,6 @@ msgstr "དང་ལེན་འབད་ཡོད་པའི་ཁྱབ་ཚ
msgctxt ""
"03030101.xhp\n"
"par_id3149481\n"
-"14\n"
"help.text"
msgid "Whereas you define the <emph>DateValue function</emph> as a string that contains the date, the <emph>DateSerial function</emph> evaluates each of the parameters (year, month, day) as separate numeric expressions."
msgstr "ཁྱོད་ཀྱིས་ <emph>ཚེས་གནས་གོང་ལས་འགན་དེ་</emph> ཡིག་རྒྱུན་བཟུམ་དེ་ནང་ཡོད་མི་ཚེས་ <emph>ཚེས་རིམ་ཨང་ལས་འགན་རེ་རེ་བཞིན་བརྟག་ཞིབ་ཀྱི་ཚད་བཟུང་ཚུ་</emph> (ལོ་ ཟླཝ་ ཉིནམ) ཨང་གྲངས་ཀྱི་གསལ་བརྗོད་ཚུ་དབྱེ་སེལ་་བཟུམ་ངེས་འཛིན་འབད།"
@@ -12336,7 +11692,6 @@ msgstr "ཁྱོད་ཀྱིས་ <emph>ཚེས་གནས་གོང
msgctxt ""
"03030101.xhp\n"
"hd_id3155411\n"
-"15\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -12377,7 +11732,6 @@ msgstr "<bookmark_value>ཚེས་གནས་གོང་ལས་འགན</
msgctxt ""
"03030102.xhp\n"
"hd_id3156344\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function [Runtime]\">DateValue Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function [Runtime]\">ཚེས་གནས་གོང་ལས་འགན [རཱན་ཊའིམ]</link>"
@@ -12386,7 +11740,6 @@ msgstr "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function
msgctxt ""
"03030102.xhp\n"
"par_id3150542\n"
-"2\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 "ཚེས་གྲངས་ཡིག་རྒྱུན་ལས་ཚེས་གྲངས་གནས་གོང་སླར་ལོག་འབདཝ་ཨིན། ཚེས་གྲངས་ཡིག་རྒྱུན་འདི་ཨང་གྲངས་ཀྱི་གནས་གོང་རྐྱང་པ་ནང་ཚེས་གྲངས་ཆ་ཚང་ཨིན། ཡང་ཁྱོད་ཀྱིས་ཨ་ནི་ཨང་རིམ་འདི་ཚེས་གྲངས་གཉིས་ཀྱི་བར་ན་སོ་སོ་གཏན་འབེབས་བཟོ་ནི་ལུ་ལག་ལེན་འཐབ་ཚུགས།"
@@ -12395,7 +11748,6 @@ msgstr "ཚེས་གྲངས་ཡིག་རྒྱུན་ལས་ཚེ
msgctxt ""
"03030102.xhp\n"
"hd_id3148799\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -12404,7 +11756,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03030102.xhp\n"
"par_id3154910\n"
-"4\n"
"help.text"
msgid "DateValue [(date)]"
msgstr "ཚེས་གནས་གོང་། [(date)]"
@@ -12413,7 +11764,6 @@ msgstr "ཚེས་གནས་གོང་། [(date)]"
msgctxt ""
"03030102.xhp\n"
"hd_id3150870\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -12422,7 +11772,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03030102.xhp\n"
"par_id3153194\n"
-"6\n"
"help.text"
msgid "Date"
msgstr "ཚེས་གྲངས་"
@@ -12431,7 +11780,6 @@ msgstr "ཚེས་གྲངས་"
msgctxt ""
"03030102.xhp\n"
"hd_id3153969\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -12440,7 +11788,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03030102.xhp\n"
"par_id3153770\n"
-"8\n"
"help.text"
msgid "<emph>Date:</emph> String expression that contains the date that you want to calculate. The date can be specified in almost any format."
msgstr "<emph>ཚེས་:</emph> ཡིག་རྒྱུན་གསལ་བརྗོད་འདི་ཁྱོད་ཀྱིས་རྩིས་སྟོན་ནི་ཨིན་མི་ཚེས་འདི་ནང་ན་ཡོདཔ་ཨིན། ཚེས་འདི་རྩ་སྒྲིག་གང་རུང་ག་ར་ནང་གསལ་བཀོད་འབད་བཏུབ་ཨིན།"
@@ -12449,7 +11796,6 @@ msgstr "<emph>ཚེས་:</emph> ཡིག་རྒྱུན་གསལ་བ
msgctxt ""
"03030102.xhp\n"
"par_id3153189\n"
-"22\n"
"help.text"
msgid "You can use this function to convert a date that occurs between December 1, 1582 and December 31, 9999 into a single integer value. You can then use this value to calculate the difference between two dates. If the date argument lies outside the acceptable range, $[officename] Basic returns an error message."
msgstr "ཁྱོད་ཀྱིས་འ་ནི་ལས་འགན་དེ་ཧྲིལ་ཨང་གནས་གོང་རྐྱང་པ་ནང་ སྤྱི་ཟླ་བཅུ་གཉིས་པ་ ༡ ༡༥༨༢ དང་ སྤྱི་ཟླ་ ༣༡ ༩༩༩༩ བར་ནང་འབྱུང་མི་ཚེས་གཞི་བསྒྱུར་འབད་ནི་ལུ་ལག་ལེན་འཐབ། ཁྱོད་ཀྱིས་འ་ནི་གནས་གོང་དེ་ཚེས་གཉིས་བར་ན་སོ་སོ་ཁྱད་པར་རྩིས་སྟོན་ནི་དོན་ལུ་ལག་ལེན་འཐབ་བཏུབ། ཚེས་སྒྲུབ་རྟགས་དེ་དང་ལེན་འབད་བཏུབ་པའི་ཁྱབ་ཚད་དེ་གི་ཕྱི་ཁ་ཡོད་པ་ཅིན་ $[officename] གཞི་རིམ་གྱིས་འཕྲིན་དོན་འཛོལ་བ་འབྱུངམ་ཨིན།"
@@ -12458,7 +11804,6 @@ msgstr "ཁྱོད་ཀྱིས་འ་ནི་ལས་འགན་དེ
msgctxt ""
"03030102.xhp\n"
"par_id3146974\n"
-"23\n"
"help.text"
msgid "In contrast to the DateSerial function that passes years, months, and days as separate numeric values, the DateValue function passes the date using the format \"month.[,]day.[,]year\"."
msgstr "ཚེས་རིམ་ཨང་ལས་འགན་དེ་ལོ་ཚུ་ ཟླ་བ་ཚུ་་ དང་ཉིནམ་ཚུ་ཨང་གྲངས་ཀྱི་གནས་གོང་ཚུ་དབྱེ་སེལ་བཟུམ་སྦེ་རྩིས་སྤྲོད་མི་ཚོན་མདངས་ནང་ ཚེས་གནས་གོང་ལས་འགན་གྱིས་ཚེས་དེ་ \"month.[,]day.[,]year\"རྩ་སྒྲིག་དེ་ལག་ལེན་འཐབ་དེ་རྩིས་སྤྲོད་འབདཝ་ཨིན།"
@@ -12467,7 +11812,6 @@ msgstr "ཚེས་རིམ་ཨང་ལས་འགན་དེ་ལོ་
msgctxt ""
"03030102.xhp\n"
"hd_id3153142\n"
-"24\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -12492,7 +11836,6 @@ msgstr "<bookmark_value>ཉི་མ་གི་ལས་འགན</bookmark_val
msgctxt ""
"03030103.xhp\n"
"hd_id3153345\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function [Runtime]\">Day Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function [Runtime]\">ཉི་མ་གི་ལས་འགན [རཱན་ཊའིམ]</link>"
@@ -12501,7 +11844,6 @@ msgstr "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function [Runt
msgctxt ""
"03030103.xhp\n"
"par_id3147560\n"
-"2\n"
"help.text"
msgid "Returns a value that represents the day of the month based on a serial date number generated by <emph>DateSerial</emph> or <emph>DateValue</emph>."
msgstr "<emph>ཚེས་རིམ་ཨང་</emph> ཡང་ན་ <emph>ཚེས་གནས་གོང་</emph>གིས་འབད་བཟོ་བཏོན་འབད་ཡོད་མི་རིམ་ཨང་ཚེས་ཨང་གུ་གཞི་བཞག་ཟླཝ་གི་ཉིནམ་ཁྱད་ཚད་འབད་མི་གནས་གོང་སླར་ལོགཔ་ཨིན།"
@@ -12510,7 +11852,6 @@ msgstr "<emph>ཚེས་རིམ་ཨང་</emph> ཡང་ན་ <emph>ཚ
msgctxt ""
"03030103.xhp\n"
"hd_id3149456\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -12519,7 +11860,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03030103.xhp\n"
"par_id3150358\n"
-"4\n"
"help.text"
msgid "Day (Number)"
msgstr "ཉི་མ(ཨང་)"
@@ -12528,7 +11868,6 @@ msgstr "ཉི་མ(ཨང་)"
msgctxt ""
"03030103.xhp\n"
"hd_id3148798\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -12537,7 +11876,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03030103.xhp\n"
"par_id3125865\n"
-"6\n"
"help.text"
msgid "Integer"
msgstr "ཧྲིལ་ཨང་།"
@@ -12546,7 +11884,6 @@ msgstr "ཧྲིལ་ཨང་།"
msgctxt ""
"03030103.xhp\n"
"hd_id3150448\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -12555,7 +11892,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03030103.xhp\n"
"par_id3156423\n"
-"8\n"
"help.text"
msgid "<emph>Number:</emph> A numeric expression that contains a serial date number from which you can determine the day of the month."
msgstr "<emph>ཨང་:</emph> ཨང་གྲངས་ཀྱི་གསལ་བརྗོད་འདི་ནང་ཁྱོད་ཀྱིས་ཟླའི་ཉིནམ་གཏན་འབེབས་བཟོ་ནི་ཚེས་ཨང་རིམ་པ་ཡོདཔ་ཨིན།"
@@ -12564,7 +11900,6 @@ msgstr "<emph>ཨང་:</emph> ཨང་གྲངས་ཀྱི་གསལ་
msgctxt ""
"03030103.xhp\n"
"par_id3145786\n"
-"9\n"
"help.text"
msgid "This function is basically the opposite of the DateSerial function, returning the day of the month from a serial date number generated by the <emph>DateSerial</emph> or the <emph>DateValue</emph> function. For example, the expression"
msgstr "ལས་འགན་གྱི་གཞི་རིམ་དེ་ཚེས་རིམ་ཨང་ལས་འགན་གྱི་རྒྱབ་འགལ་ <emph>ཚེས་རིམ་ཨང་</emph> ཡང་ན་ <emph>ཚེས་་གནས་གོང་</emph> ལས་འགན་གྱིས་འབད་བཟོ་བཏོན་འབད་ཡོད་མི་རིམ་ཨང་ཚེས་ཨང་ལས་ཟླ་བའི་ཉིནམ་སླར་ལོག་མི་དེ། དཔེར་ན་ གསལ་བརྗོད།"
@@ -12573,7 +11908,6 @@ msgstr "ལས་འགན་གྱི་གཞི་རིམ་དེ་ཚེ
msgctxt ""
"03030103.xhp\n"
"par_id3153190\n"
-"11\n"
"help.text"
msgid "returns the value 20."
msgstr "༢༠ གནས་གོང་འདི་སླར་ལོགཔ་ཨིན།"
@@ -12582,7 +11916,6 @@ msgstr "༢༠ གནས་གོང་འདི་སླར་ལོགཔ་
msgctxt ""
"03030103.xhp\n"
"hd_id3149481\n"
-"12\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -12591,7 +11924,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03030103.xhp\n"
"par_id3149260\n"
-"14\n"
"help.text"
msgid "Print \"Day \" & Day(DateSerial(1994, 12, 20)) & \" of the month\""
msgstr "དཔར་བསྐྲུན་འབད \"Day \" & Day(DateSerial(1994, 12, 20)) & \" of the month\""
@@ -12616,7 +11948,6 @@ msgstr "<bookmark_value>ཟླའི་ལས་འགན</bookmark_value>"
msgctxt ""
"03030104.xhp\n"
"hd_id3153127\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function [Runtime]\">Month Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function [Runtime]\">ཟླའི་ལས་འགན [རཱན་ཊའིམ]</link>"
@@ -12625,7 +11956,6 @@ msgstr "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function [Ru
msgctxt ""
"03030104.xhp\n"
"par_id3148550\n"
-"2\n"
"help.text"
msgid "Returns the month of a year from a serial date that is generated by the DateSerial or the DateValue function."
msgstr "ཚེས་རིམ་ཨང་ཡང་ན་ཚེས་གནས་གོང་ལས་འགན་གྱིས་འབད་བཟོ་བཏོན་འབད་ཡོད་མི་རིམ་ཨང་ཚེས་ལས་ལོ་གི་ཟླཝ་དེ་སླར་ལོགཔ་ཨིན།"
@@ -12634,7 +11964,6 @@ msgstr "ཚེས་རིམ་ཨང་ཡང་ན་ཚེས་གནས་
msgctxt ""
"03030104.xhp\n"
"hd_id3145068\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -12643,7 +11972,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03030104.xhp\n"
"par_id3150398\n"
-"4\n"
"help.text"
msgid "Month (Number)"
msgstr "ཟླ (Number)"
@@ -12652,7 +11980,6 @@ msgstr "ཟླ (Number)"
msgctxt ""
"03030104.xhp\n"
"hd_id3154366\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -12661,7 +11988,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03030104.xhp\n"
"par_id3154125\n"
-"6\n"
"help.text"
msgid "Integer"
msgstr "ཧྲིལ་ཨང་།"
@@ -12670,7 +11996,6 @@ msgstr "ཧྲིལ་ཨང་།"
msgctxt ""
"03030104.xhp\n"
"hd_id3150768\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -12679,7 +12004,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03030104.xhp\n"
"par_id3156423\n"
-"8\n"
"help.text"
msgid "<emph>Number:</emph> Numeric expression that contains the serial date number that is used to determine the month of the year."
msgstr "<emph>ཨང་:</emph> ཨང་གྲངས་ཀྱི་གསལ་བརྗོད་ནང་ན་ལོའི་་ཟླ་འདི་གཏན་འབེབས་བཟོ་ནི་ལུ་ལག་ལེན་འཐབ་ཡོད་མི་ཚེས་ཨང་རིམ་པ་འདི་ཡོདཔ་ཨིན།"
@@ -12688,7 +12012,6 @@ msgstr "<emph>ཨང་:</emph> ཨང་གྲངས་ཀྱི་གསལ་
msgctxt ""
"03030104.xhp\n"
"par_id3153770\n"
-"9\n"
"help.text"
msgid "This function is the opposite of the <emph>DateSerial </emph>function. It returns the month in the year that corresponds to the serial date that is generated by <emph>DateSerial</emph> or <emph>DateValue</emph>. For example, the expression"
msgstr "འ་ནི་ལས་འགན་འདི་ <emph>ཚེས་རིམ་པ་ </emph>ལས་འགན་གྱི་རྒྱབ་འགལ་ཨིན། དེ་གིས་ <emph>ཚེས་རིམ་པ་</emph> ཡང་ན་ <emph>ཚེས་གནས་གོང་</emph>གིས་བཟོ་བཏོན་འབད་ཡོད་པའི་ཚེས་རིམ་ལུ་ཆ་མཉམ་པའི་ལོ་ནང་དི་ཟླཝ་འདི་སླར་ལོགཔ་ཨིན། དཔེར་ན་ གསལ་བརྗོད།"
@@ -12697,7 +12020,6 @@ msgstr "འ་ནི་ལས་འགན་འདི་ <emph>ཚེས་ར
msgctxt ""
"03030104.xhp\n"
"par_id3145366\n"
-"11\n"
"help.text"
msgid "returns the value 12."
msgstr "༡༢་གནས་གོང་འདི་སླར་ལོགཔ་ཨིན།"
@@ -12706,7 +12028,6 @@ msgstr "༡༢་གནས་གོང་འདི་སླར་ལོགཔ་
msgctxt ""
"03030104.xhp\n"
"hd_id3146923\n"
-"12\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -12715,7 +12036,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03030104.xhp\n"
"par_id3149664\n"
-"14\n"
"help.text"
msgid "MsgBox \"\" & Month(Now) ,64,\"The current month\""
msgstr "འཕྲིན་དོན་སྒྲོམ \"\" & Month(Now) ,64,\"The current month\""
@@ -12740,7 +12060,6 @@ msgstr "<bookmark_value>བདུན་ཕྲག་ཉིནམ་ལས་འ
msgctxt ""
"03030105.xhp\n"
"hd_id3153127\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function [Runtime]\">WeekDay Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function [Runtime]\">བདུན་ཕྲག་ཉིནམ་ལས་འགན [རཱན་ཊའིམ]</link>"
@@ -12749,7 +12068,6 @@ msgstr "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function [
msgctxt ""
"03030105.xhp\n"
"par_id3146795\n"
-"2\n"
"help.text"
msgid "Returns the number corresponding to the weekday represented by a serial date number that is generated by the DateSerial or the DateValue function."
msgstr "ཚེས་རིམ་ཨང་ཡང་ན་ཚེས་གནས་གོང་ལས་འགན་གྱིས་བཟོ་བཏོན་འབད་ཡོད་མི་རིམ་ཨང་ཚེས་ཨང་གིས་བདུན་ཕྲག་ཉིནམ་ཁྱད་ཚབ་ཡོད་མི་ལུ་ཆ་མཉམ་པའི་ཨང་དེ་སླར་ལོགཔ་ཨིན།"
@@ -12758,7 +12076,6 @@ msgstr "ཚེས་རིམ་ཨང་ཡང་ན་ཚེས་གནས་
msgctxt ""
"03030105.xhp\n"
"hd_id3145068\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -12767,7 +12084,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03030105.xhp\n"
"par_id3149655\n"
-"4\n"
"help.text"
msgid "WeekDay (Number)"
msgstr "བདུན་ཕྲག་ཉིནམ (Number)"
@@ -12776,7 +12092,6 @@ msgstr "བདུན་ཕྲག་ཉིནམ (Number)"
msgctxt ""
"03030105.xhp\n"
"hd_id3148799\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -12785,7 +12100,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03030105.xhp\n"
"par_id3154125\n"
-"6\n"
"help.text"
msgid "Integer"
msgstr "ཧྲིལ་ཨང་།"
@@ -12794,7 +12108,6 @@ msgstr "ཧྲིལ་ཨང་།"
msgctxt ""
"03030105.xhp\n"
"hd_id3150768\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -12803,7 +12116,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03030105.xhp\n"
"par_id3151042\n"
-"8\n"
"help.text"
msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the day of the week (1-7)."
msgstr "<emph>ཨང་:</emph> ཧྲིལ་ཨང་གསལ་བརྗོད་འདི་ནང་བདུན་ཕྲག་(༡-༧)གི་ཉིནམ་རྩིས་སྟོན་ལུ་ལག་ལེན་འཐབ་ཡོད་མི་ཚེས་ཨང་རིམ་པ་འདི་ཡོདཔ་ཨིན། (༡-༧)."
@@ -12812,7 +12124,6 @@ msgstr "<emph>ཨང་:</emph> ཧྲིལ་ཨང་གསལ་བརྗོ
msgctxt ""
"03030105.xhp\n"
"par_id3159254\n"
-"9\n"
"help.text"
msgid "The following example determines the day of the week using the WeekDay function when you enter a date."
msgstr "འོག་གི་དཔེར་བརྗོད་ཀྱིས་ཁྱོད་ཀྱིས་ཚེས་བཙུགས་པའི་སྐབས་བདུན་ཕྲག་ཉིནམ་ལས་འགན་དེ་ལག་ལེན་འཐབ་བདུན་ཕྲག་གི་་ཉིནམ་དེ་གཏན་འབེབས་བཟོཝ་ཨིན།"
@@ -12821,7 +12132,6 @@ msgstr "འོག་གི་དཔེར་བརྗོད་ཀྱིས་ཁ
msgctxt ""
"03030105.xhp\n"
"hd_id3148616\n"
-"10\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -12830,7 +12140,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03030105.xhp\n"
"par_id3148576\n"
-"13\n"
"help.text"
msgid "' Return And display the day of the week"
msgstr "ཨར་ཨི་ཨེམ་ བདུན་ཕྲག་གི་་ཉིནམ་བཀྲམ་བཏོན་དང་སླར་ལོགཔ་ཨིན།"
@@ -12839,7 +12148,6 @@ msgstr "ཨར་ཨི་ཨེམ་ བདུན་ཕྲག་གི་་
msgctxt ""
"03030105.xhp\n"
"par_id3151117\n"
-"16\n"
"help.text"
msgid "sDay=\"Sunday\""
msgstr "ཨེསི་ཉིནམ=\"Sunday\""
@@ -12848,7 +12156,6 @@ msgstr "ཨེསི་ཉིནམ=\"Sunday\""
msgctxt ""
"03030105.xhp\n"
"par_id3153952\n"
-"18\n"
"help.text"
msgid "sDay=\"Monday\""
msgstr "ཨེསི་ཉིནམ=\"Monday\""
@@ -12857,7 +12164,6 @@ msgstr "ཨེསི་ཉིནམ=\"Monday\""
msgctxt ""
"03030105.xhp\n"
"par_id3153157\n"
-"20\n"
"help.text"
msgid "sDay=\"Tuesday\""
msgstr "ཨེསི་ཉིནམ=\"Tuesday\""
@@ -12866,7 +12172,6 @@ msgstr "ཨེསི་ཉིནམ=\"Tuesday\""
msgctxt ""
"03030105.xhp\n"
"par_id3154942\n"
-"22\n"
"help.text"
msgid "sDay=\"Wednesday\""
msgstr "ཨེསི་ཉིནམ=\"Wednesday\""
@@ -12875,7 +12180,6 @@ msgstr "ཨེསི་ཉིནམ=\"Wednesday\""
msgctxt ""
"03030105.xhp\n"
"par_id3155416\n"
-"24\n"
"help.text"
msgid "sDay=\"Thursday\""
msgstr "ཨེསི་ཉིནམ=\"Thursday\""
@@ -12884,7 +12188,6 @@ msgstr "ཨེསི་ཉིནམ=\"Thursday\""
msgctxt ""
"03030105.xhp\n"
"par_id3154015\n"
-"26\n"
"help.text"
msgid "sDay=\"Friday\""
msgstr "ཨེསི་ཉིནམ=\"Friday\""
@@ -12893,7 +12196,6 @@ msgstr "ཨེསི་ཉིནམ=\"Friday\""
msgctxt ""
"03030105.xhp\n"
"par_id3153707\n"
-"28\n"
"help.text"
msgid "sDay=\"Saturday\""
msgstr "ཨེསི་ཉིནམ=\"Saturday\""
@@ -12902,7 +12204,6 @@ msgstr "ཨེསི་ཉིནམ=\"Saturday\""
msgctxt ""
"03030105.xhp\n"
"par_id3148993\n"
-"30\n"
"help.text"
msgid "MsgBox \"\" + sDay,64,\"Today Is\""
msgstr "འཕྲིན་དོན་སྒྲོམ \"\" + sDay,64,\"Today is\""
@@ -12927,7 +12228,6 @@ msgstr "<bookmark_value>ལོ་ལས་འགན</bookmark_value>"
msgctxt ""
"03030106.xhp\n"
"hd_id3148664\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Year Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">ལོ་ལས་འགན [རཱན་ཊའིམ]</link>"
@@ -12936,7 +12236,6 @@ msgstr "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Run
msgctxt ""
"03030106.xhp\n"
"par_id3149655\n"
-"2\n"
"help.text"
msgid "Returns the year from a serial date number that is generated by the DateSerial or the DateValue function."
msgstr "ཚེས་རིམ་ཨང་ཡང་ན་ཚེས་གནས་གོང་ལས་འགན་གྱི་བཟོ་བཏོན་འབད་ཡོད་མི་རིམ་ཨང་ཚེས་ཨང་་ལས་ལོ་དེ་སླར་ལོགཔ་ཨིན།"
@@ -12945,7 +12244,6 @@ msgstr "ཚེས་རིམ་ཨང་ཡང་ན་ཚེས་གནས་
msgctxt ""
"03030106.xhp\n"
"hd_id3154125\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -12954,7 +12252,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03030106.xhp\n"
"par_id3147229\n"
-"4\n"
"help.text"
msgid "Year (Number)"
msgstr "ལོ (ཨང་།)"
@@ -12963,7 +12260,6 @@ msgstr "ལོ (ཨང་།)"
msgctxt ""
"03030106.xhp\n"
"hd_id3154685\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -12972,7 +12268,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03030106.xhp\n"
"par_id3153970\n"
-"6\n"
"help.text"
msgid "Integer"
msgstr "ཧྲིལ་ཨང་།"
@@ -12981,7 +12276,6 @@ msgstr "ཧྲིལ་ཨང་།"
msgctxt ""
"03030106.xhp\n"
"hd_id3150440\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -12990,7 +12284,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03030106.xhp\n"
"par_id3163712\n"
-"8\n"
"help.text"
msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the year."
msgstr "<emph>ཨང་:</emph> ཧྲིལ་ཨང་གསལ་བརྗོད་འདི་ནང་ཉིནམ་རྩིས་སྟོན་ལུ་ལག་ལེན་འཐབ་ཡོད་པའི་ཚེས་ཨང་རིམ་པ་ཡོདཔ་ཨིན།"
@@ -12999,7 +12292,6 @@ msgstr "<emph>ཨང་:</emph> ཧྲིལ་ཨང་གསལ་བརྗོ
msgctxt ""
"03030106.xhp\n"
"par_id3152596\n"
-"9\n"
"help.text"
msgid "This function is the opposite of the <emph>DateSerial </emph>function, and returns the year of a serial date. For example, the expression:"
msgstr "འ་ནི་ལས་འགན་དེ་ <emph>ཚེས་རིམ་ཨང་ </emph>ལས་འགན་གྱི་རྒྱབ་འགལ་ཨིནམ་དང་ རིམ་ཨང་ཚེས་ཀྱི་ལོ་དེ་སླར་ལོགཔ་ཨིན། དཔེར་ན་ གསལ་བརྗོད:"
@@ -13008,7 +12300,6 @@ msgstr "འ་ནི་ལས་འགན་དེ་ <emph>ཚེས་རི
msgctxt ""
"03030106.xhp\n"
"par_id3149483\n"
-"11\n"
"help.text"
msgid "returns the value 1994."
msgstr "༡༩༩༤་གནས་གོང་འདི་སླར་ལོགཔ་ཨིན།"
@@ -13017,7 +12308,6 @@ msgstr "༡༩༩༤་གནས་གོང་འདི་སླར་ལོག
msgctxt ""
"03030106.xhp\n"
"hd_id3146985\n"
-"12\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -13026,7 +12316,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03030106.xhp\n"
"par_id3153363\n"
-"14\n"
"help.text"
msgid "MsgBox \"\" & Year(Now) ,64,\"Current year\""
msgstr "འཕྲིན་དོན་སྒྲོམ \"\" & Year(Now) ,64,\"Current year\""
@@ -13060,8 +12349,24 @@ msgctxt ""
"03030107.xhp\n"
"par_id3151097\n"
"help.text"
-msgid "Returns the date in ISO format from a serial date number that is generated by the DateSerial or the DateValue function."
-msgstr "ཚེས་རིམ་ཨང་ཡང་ན་ཚེས་གནས་གོང་ལས་འགན་གྱི་བཟོ་བཏོན་འབད་ཡོད་མི་རིམ་ཨང་ཚེས་ཨང་ལས་ཨའི་ཨེསི་ཨོ་རྩ་སྒྲིག་ནང་ཚེས་དེ་སླར་ལོགཔ་ཨིན།"
+msgid "Returns the date in ISO format without separators (YYYYMMDD) from a serial date number that is generated by the DateSerial or the DateValue or the CDateFromIso function."
+msgstr ""
+
+#: 03030107.xhp
+msgctxt ""
+"03030107.xhp\n"
+"par_id3151098\n"
+"help.text"
+msgid "The year part consists of at least four digits, with leading zeros if the absolute value is less than 1000, it can be negative with a leading minus sign if the date passed denotes a year before the common era (BCE) and it can have more than four digits if the absolute value is greater than 9999. The formatted string returned can be in the range \"-327680101\" to \"327671231\"."
+msgstr ""
+
+#: 03030107.xhp
+msgctxt ""
+"03030107.xhp\n"
+"par_id3151099\n"
+"help.text"
+msgid "Years less than 100 and greater than 9999 are supported since %PRODUCTNAME 5.4"
+msgstr ""
#: 03030107.xhp
msgctxt ""
@@ -13147,7 +12452,6 @@ msgstr "<bookmark_value>སི་ཚེས་ལས་ཨེལ་སོ་ལ
msgctxt ""
"03030108.xhp\n"
"hd_id3153127\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso Function [Runtime]\">CDateFromIso Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso Function [Runtime]\">སི་ཚེས་ལས་ཨེལ་སོ་ལས་འགན [Runtime]</link>"
@@ -13156,16 +12460,46 @@ msgstr "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso Funct
msgctxt ""
"03030108.xhp\n"
"par_id3148550\n"
-"2\n"
"help.text"
-msgid "Returns the internal date number from a string that contains a date in ISO format."
-msgstr "ཨའི་ཨེསི་ཨོ་རྩ་སྒྲིག་ནང་ན་ཡོད་པའི་ཚེས་ཡིག་རྒྱུན་ལས་ནང་འཁོད་ཚེས་ཨང་དེ་སླར་ལོགཔ་ཨིན།"
+msgid "Returns the internal date number from a string that contains a date in ISO format (YYYYMMDD or YYYY-MM-DD)."
+msgstr ""
+
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"par_id3148551\n"
+"help.text"
+msgid "The year part must consist of either two (supported only in YYMMDD format without separators for compatibility) or at least four digits. With four digits leading zeros must be given if the absolute value is less than 1000, it can be negative with a leading minus sign if the date passed denotes a year before the common era (BCE) and it can have more than four digits if the absolute value is greater than 9999. The formatted string can be in the range \"-327680101\" to \"327671231\", or \"-32768-01-01\" to \"32767-12-31\"."
+msgstr ""
+
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"par_id3148552\n"
+"help.text"
+msgid "An invalid date results in an error. Year 0 is not accepted, the last day BCE is -0001-12-31 and the next day CE is 0001-01-01. Dates before 1582-10-15 are in the proleptic Gregorian calendar."
+msgstr ""
+
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"par_id3148553\n"
+"help.text"
+msgid "When converting a date serial number to a printable string, for example for the Print or MsgBox command, the locale's default calendar is used and at that 1582-10-15 cutover date may switch to the Julian calendar, which can result in a different date being displayed than expected. Use the <link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">CDateToIso Function [Runtime]</link> to convert such date number to a string representation in the proleptic Gregorian calendar."
+msgstr ""
+
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
+"par_id3148554\n"
+"help.text"
+msgid "The YYYY-MM-DD format with separators is supported since %PRODUCTNAME 5.3.4. Years less than 100 or greater than 9999 are accepted since %PRODUCTNAME 5.4 if not in VBA compatibility mode."
+msgstr ""
#: 03030108.xhp
msgctxt ""
"03030108.xhp\n"
"hd_id3148947\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -13174,7 +12508,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03030108.xhp\n"
"par_id3150400\n"
-"4\n"
"help.text"
msgid "CDateFromIso(String)"
msgstr "སི་ཚེས་ལས་ཨེལ་སོ་(ཡིག་རྒྱུན)"
@@ -13183,7 +12516,6 @@ msgstr "སི་ཚེས་ལས་ཨེལ་སོ་(ཡིག་རྒ
msgctxt ""
"03030108.xhp\n"
"hd_id3154367\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -13192,7 +12524,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03030108.xhp\n"
"par_id3156212\n"
-"6\n"
"help.text"
msgid "Internal date number"
msgstr "ནང་འཁོད་ཚེས་ཨང་།"
@@ -13201,7 +12532,6 @@ msgstr "ནང་འཁོད་ཚེས་ཨང་།"
msgctxt ""
"03030108.xhp\n"
"hd_id3125864\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -13210,16 +12540,14 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03030108.xhp\n"
"par_id3154685\n"
-"8\n"
"help.text"
-msgid "<emph>String:</emph> A string that contains a date in ISO format. The year may have two or four digits."
-msgstr "<emph>ཡིག་རྒྱུན་:</emph> ཡིག་རྒྱུན་འདི་ནང་ཨའི་ཨེསི་ཨོ་རྩ་སྒྲིག་ནང་ཚེས་ཡོདཔ་ཨིན། ལོ་འདི་ལུ་ཨང་ཡིག་གཉིས་ཡང་ན་བཞི་ཡོདཔ་ཨིན།"
+msgid "<emph>String:</emph> A string that contains a date in ISO format."
+msgstr ""
#: 03030108.xhp
msgctxt ""
"03030108.xhp\n"
"hd_id3150439\n"
-"9\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -13228,7 +12556,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03030108.xhp\n"
"par_id3147318\n"
-"10\n"
"help.text"
msgid "dateval = CDateFromIso(\"20021231\")"
msgstr "ཚེས་བལ་ = སི་ཚེས་ལས་ཨེལ་སོ་(\"20021231\")"
@@ -13236,11 +12563,18 @@ msgstr "ཚེས་བལ་ = སི་ཚེས་ལས་ཨེལ་སོ
#: 03030108.xhp
msgctxt ""
"03030108.xhp\n"
+"par_id3147319\n"
+"help.text"
+msgid "dateval = CDateFromIso(\"2002-12-31\")"
+msgstr ""
+
+#: 03030108.xhp
+msgctxt ""
+"03030108.xhp\n"
"par_id3146921\n"
-"11\n"
"help.text"
-msgid "returns 12/31/2002 in the date format of your system"
-msgstr "ཁྱོད་ཀྱི་རིམ་ལུགས་ཚེས་རྩ་སྒྲིག་ནང་ལས་ ༡༢/༣༡/༢༠༠༢ སླར་ལོགཔ་ཨིན།"
+msgid "return both 12/31/2002 in the date format of your system"
+msgstr ""
#: 03030110.xhp
msgctxt ""
@@ -13523,7 +12857,6 @@ msgid "Example:"
msgstr "དཔེར་བརྗོད:"
#: 03030111.xhp
-#, fuzzy
msgctxt ""
"03030111.xhp\n"
"tit\n"
@@ -13532,7 +12865,6 @@ msgid "CDateToUnoDate Function [Runtime]"
msgstr "སི་ཚེས་ཊོལ་སོ་ ལས་འགན་ [Runtime]"
#: 03030111.xhp
-#, fuzzy
msgctxt ""
"03030111.xhp\n"
"bm_id3150620\n"
@@ -13541,7 +12873,6 @@ msgid "<bookmark_value>CDateToUnoDate function</bookmark_value>"
msgstr "<bookmark_value>སི་ཚེས་ཊོལ་སོ་ ལས་འགན</bookmark_value>"
#: 03030111.xhp
-#, fuzzy
msgctxt ""
"03030111.xhp\n"
"hd_id3150620\n"
@@ -13614,7 +12945,6 @@ msgid "Example:"
msgstr "དཔེར་བརྗོད:"
#: 03030112.xhp
-#, fuzzy
msgctxt ""
"03030112.xhp\n"
"tit\n"
@@ -13623,7 +12953,6 @@ msgid "CDateFromUnoDate Function [Runtime]"
msgstr "སི་ཚེས་ལས་ཨེལ་སོ་ལས་འགན [Runtime]"
#: 03030112.xhp
-#, fuzzy
msgctxt ""
"03030112.xhp\n"
"bm_id3150620\n"
@@ -13632,7 +12961,6 @@ msgid "<bookmark_value>CDateFromUnoDate function</bookmark_value>"
msgstr "<bookmark_value>སི་ཚེས་ལས་ཨེལ་སོ་ལས་འགན</bookmark_value>"
#: 03030112.xhp
-#, fuzzy
msgctxt ""
"03030112.xhp\n"
"hd_id3150620\n"
@@ -13705,7 +13033,6 @@ msgid "Example:"
msgstr "དཔེར་བརྗོད:"
#: 03030113.xhp
-#, fuzzy
msgctxt ""
"03030113.xhp\n"
"tit\n"
@@ -13714,7 +13041,6 @@ msgid "CDateToUnoTime Function [Runtime]"
msgstr "སི་ཚེས་ཊོལ་སོ་ ལས་འགན་ [Runtime]"
#: 03030113.xhp
-#, fuzzy
msgctxt ""
"03030113.xhp\n"
"bm_id3150620\n"
@@ -13723,7 +13049,6 @@ msgid "<bookmark_value>CDateToUnoTime function</bookmark_value>"
msgstr "<bookmark_value>སི་ཚེས་ཊོལ་སོ་ ལས་འགན</bookmark_value>"
#: 03030113.xhp
-#, fuzzy
msgctxt ""
"03030113.xhp\n"
"hd_id3150620\n"
@@ -13796,7 +13121,6 @@ msgid "Example:"
msgstr "དཔེར་བརྗོད:"
#: 03030114.xhp
-#, fuzzy
msgctxt ""
"03030114.xhp\n"
"tit\n"
@@ -13805,7 +13129,6 @@ msgid "CDateFromUnoTime Function [Runtime]"
msgstr "སི་ཚེས་ལས་ཨེལ་སོ་ལས་འགན [Runtime]"
#: 03030114.xhp
-#, fuzzy
msgctxt ""
"03030114.xhp\n"
"bm_id3150620\n"
@@ -13814,7 +13137,6 @@ msgid "<bookmark_value>CDateFromUnoTime function</bookmark_value>"
msgstr "<bookmark_value>སི་ཚེས་ལས་ཨེལ་སོ་ལས་འགན</bookmark_value>"
#: 03030114.xhp
-#, fuzzy
msgctxt ""
"03030114.xhp\n"
"hd_id3150620\n"
@@ -13887,7 +13209,6 @@ msgid "Example:"
msgstr "དཔེར་བརྗོད:"
#: 03030115.xhp
-#, fuzzy
msgctxt ""
"03030115.xhp\n"
"tit\n"
@@ -13896,7 +13217,6 @@ msgid "CDateToUnoDateTime Function [Runtime]"
msgstr "ཡིག་སྣོད་ཚེས་དུས་ཚོད་ལས་འགན [Runtime]"
#: 03030115.xhp
-#, fuzzy
msgctxt ""
"03030115.xhp\n"
"bm_id3150620\n"
@@ -13905,7 +13225,6 @@ msgid "<bookmark_value>CDateToUnoDateTime function</bookmark_value>"
msgstr "<bookmark_value>ཡིག་སྣོད་ཚེས་དུས་ཚོད་ལས་འགན</bookmark_value>"
#: 03030115.xhp
-#, fuzzy
msgctxt ""
"03030115.xhp\n"
"hd_id3150620\n"
@@ -13978,7 +13297,6 @@ msgid "Example:"
msgstr "དཔེར་བརྗོད:"
#: 03030116.xhp
-#, fuzzy
msgctxt ""
"03030116.xhp\n"
"tit\n"
@@ -13987,7 +13305,6 @@ msgid "CDateFromUnoDateTime Function [Runtime]"
msgstr "ཡིག་སྣོད་ཚེས་དུས་ཚོད་ལས་འགན [Runtime]"
#: 03030116.xhp
-#, fuzzy
msgctxt ""
"03030116.xhp\n"
"bm_id3150620\n"
@@ -13996,7 +13313,6 @@ msgid "<bookmark_value>CDateFromUnoDateTime function</bookmark_value>"
msgstr "<bookmark_value>ཡིག་སྣོད་ཚེས་དུས་ཚོད་ལས་འགན</bookmark_value>"
#: 03030116.xhp
-#, fuzzy
msgctxt ""
"03030116.xhp\n"
"hd_id3150620\n"
@@ -14512,7 +13828,6 @@ msgstr "ཚེས་གནས་གོང་ཚུ་གཞི་བསྒྱུ
msgctxt ""
"03030200.xhp\n"
"hd_id3147226\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Converting Time Values\">Converting Time Values</link>"
msgstr "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Converting Time Values\">ཚེས་གནས་གོང་ཚུ་གཞི་བསྒྱུར་འབད་དོ</link>"
@@ -14521,7 +13836,6 @@ msgstr "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Converting Time Va
msgctxt ""
"03030200.xhp\n"
"par_id3149415\n"
-"2\n"
"help.text"
msgid "The following functions convert time values to calculable numbers."
msgstr "འོག་གི་ལས་འགན་ཚུ་གིས་ཚེས་གནས་གོང་ཚུ་རྩིས་སྟོན་བཏུབ་པའི་ཨང་ཚུ་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན།"
@@ -14546,7 +13860,6 @@ msgstr "<bookmark_value>ཆུ་ཚོད་ལས་འགན</bookmark_value>
msgctxt ""
"03030201.xhp\n"
"hd_id3156042\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function [Runtime]\">Hour Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function [Runtime]\">ཆུ་ཚོད་ལས་འགན [རཱན་ཊའིམ]</link>"
@@ -14555,7 +13868,6 @@ msgstr "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function [Run
msgctxt ""
"03030201.xhp\n"
"par_id3149346\n"
-"2\n"
"help.text"
msgid "Returns the hour from a time value that is generated by the TimeSerial or the TimeValue function."
msgstr "དུས་་ཚོད་རིམ་ཨང་ཡང་ན་ཚོས་གནས་གོང་ལས་འགན་གྱིས་འབད་བཟོ་བཏོན་འབད་ཡོད་པའི་དུས་་ཚོད་གནས་གོང་ལས་ཆུ་ཚོད་དེ་སླར་ལོགཔ་ཨིན།"
@@ -14564,7 +13876,6 @@ msgstr "དུས་་ཚོད་རིམ་ཨང་ཡང་ན་ཚོས
msgctxt ""
"03030201.xhp\n"
"hd_id3147574\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -14573,7 +13884,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03030201.xhp\n"
"par_id3147264\n"
-"4\n"
"help.text"
msgid "Hour (Number)"
msgstr "ཚུ་ཚོད (ཨང་)"
@@ -14582,7 +13892,6 @@ msgstr "ཚུ་ཚོད (ཨང་)"
msgctxt ""
"03030201.xhp\n"
"hd_id3145069\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -14591,7 +13900,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03030201.xhp\n"
"par_id3149670\n"
-"6\n"
"help.text"
msgid "Integer"
msgstr "ཧྲིལ་ཨང་།"
@@ -14600,7 +13908,6 @@ msgstr "ཧྲིལ་ཨང་།"
msgctxt ""
"03030201.xhp\n"
"hd_id3150359\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -14609,7 +13916,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03030201.xhp\n"
"par_id3154366\n"
-"8\n"
"help.text"
msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the hour value."
msgstr "<emph>ཨང་:</emph>ཨང་གྲངས་ཀྱི་གསལ་བརྗོད་འདི་ནང་ཆུ་ཚོད་གནས་གོང་སླར་ལོག་ལུ་ལག་ལེན་འཐབ་ཡོད་མི་དུས་ཚོད་གནས་གོང་རིམ་པ་འདི་ཡོདཔ་ཨིན།"
@@ -14618,7 +13924,6 @@ msgstr "<emph>ཨང་:</emph>ཨང་གྲངས་ཀྱི་གསལ་
msgctxt ""
"03030201.xhp\n"
"par_id3154909\n"
-"9\n"
"help.text"
msgid "This function is the opposite of the <emph>TimeSerial</emph> function. It returns an integer value that represents the hour from a time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression"
msgstr "ལས་འགན་དེ་<emph>དུས་ཚོད་རིམ་ཨང་</emph>ལས་འགན་གྱི་རྒྱབ་འགལ་ཨིན། དེ་གིས་<emph>དུས་ཚོད་རིམ་ཨང་</emph> ཡང་ན <emph>དུས་ཚོད་གནས་གོང་ </emph>ལས་འགན་གྱིས་བཟོ་བཏོན་འབད་ཡོད་མི་ཚེས་གནས་གོང་ལས་ཆུ་ཚོད་ཁྱད་ཚབ་འབད་མི་ཧྲིལ་ཨང་གནས་གོང་དེ་སླར་ལོགཔ་ཨིན། དཔེར་ན་ གསལ་བརྗོད།"
@@ -14627,7 +13932,6 @@ msgstr "ལས་འགན་དེ་<emph>དུས་ཚོད་རིམ་
msgctxt ""
"03030201.xhp\n"
"par_id3163798\n"
-"10\n"
"help.text"
msgid "Print Hour(TimeSerial(12,30,41))"
msgstr "ཆུ་ཚོད་དཔར་བསྐྲུན་འབད(TimeSerial(12:30:41))"
@@ -14636,7 +13940,6 @@ msgstr "ཆུ་ཚོད་དཔར་བསྐྲུན་འབད(TimeSeri
msgctxt ""
"03030201.xhp\n"
"par_id3155132\n"
-"11\n"
"help.text"
msgid "returns the value 12."
msgstr "༡༢་གནས་གོང་འདི་སླར་ལོགཔ་ཨིན།"
@@ -14645,7 +13948,6 @@ msgstr "༡༢་གནས་གོང་འདི་སླར་ལོགཔ་
msgctxt ""
"03030201.xhp\n"
"hd_id3147348\n"
-"12\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -14654,7 +13956,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03030201.xhp\n"
"par_id3146985\n"
-"13\n"
"help.text"
msgid "Sub ExampleHour"
msgstr "ཆུ་ཚོད་དཔེར་བརྗོད་འོག་མ།"
@@ -14663,7 +13964,6 @@ msgstr "ཆུ་ཚོད་དཔེར་བརྗོད་འོག་མ།
msgctxt ""
"03030201.xhp\n"
"par_id3156441\n"
-"14\n"
"help.text"
msgid "Print \"The current hour is \" & Hour( Now )"
msgstr "དཔར་བསྐྲུན་འབད \"The current hour is \" & Hour( Now )"
@@ -14672,7 +13972,6 @@ msgstr "དཔར་བསྐྲུན་འབད \"The current hour is \" & Ho
msgctxt ""
"03030201.xhp\n"
"par_id3153145\n"
-"15\n"
"help.text"
msgid "End Sub"
msgstr "མཇུག་འོག་མ།"
@@ -14697,7 +13996,6 @@ msgstr "<bookmark_value>སྐར་མ་ལས་འགན</bookmark_value>"
msgctxt ""
"03030202.xhp\n"
"hd_id3155419\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function [Runtime]\">Minute Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function [Runtime]\">སྐར་མ་ལས་འགན [Runtime]</link>"
@@ -14706,7 +14004,6 @@ msgstr "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function [R
msgctxt ""
"03030202.xhp\n"
"par_id3156344\n"
-"2\n"
"help.text"
msgid "Returns the minute of the hour that corresponds to the serial time value that is generated by the TimeSerial or the TimeValue function."
msgstr "དུས་ཚོད་རིམ་ཨང་ཡང་ན་དུས་ཚོད་གནས་གོང་ལས་འགན་གྱིས་བཟོ་བཏོན་འབད་ཡོད་མི་རིམ་ཨང་དུས་ཚོད་གནས་གོང་ལུ་ཆ་མཉམ་མི་ཆུ་ཚོད་ཀྱི་སྐར་མ་དེ་སླར་ལོགཔ་ཨིན།"
@@ -14715,7 +14012,6 @@ msgstr "དུས་ཚོད་རིམ་ཨང་ཡང་ན་དུས་
msgctxt ""
"03030202.xhp\n"
"hd_id3154758\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -14724,7 +14020,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03030202.xhp\n"
"par_id3149656\n"
-"4\n"
"help.text"
msgid "Minute (Number)"
msgstr "སྐར་མ(Number)"
@@ -14733,7 +14028,6 @@ msgstr "སྐར་མ(Number)"
msgctxt ""
"03030202.xhp\n"
"hd_id3148798\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -14742,7 +14036,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03030202.xhp\n"
"par_id3150449\n"
-"6\n"
"help.text"
msgid "Integer"
msgstr "ཧྲིལ་ཨང་།"
@@ -14751,7 +14044,6 @@ msgstr "ཧྲིལ་ཨང་།"
msgctxt ""
"03030202.xhp\n"
"hd_id3153193\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -14760,7 +14052,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03030202.xhp\n"
"par_id3153969\n"
-"8\n"
"help.text"
msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the minute value."
msgstr "<emph>ཨང་:</emph> ཨང་གྲངས་ཀྱི་གསལ་བརྗོད་འདི་ནང་སྐར་ཆག་གནས་གོང་སླར་ལོག་ལུ་ལག་ལེན་འཐབ་ཡོད་མི་དུས་ཚོད་གནས་གོང་རིམ་པ་འདི་ཡོདཔ་ཨིན།"
@@ -14769,7 +14060,6 @@ msgstr "<emph>ཨང་:</emph> ཨང་གྲངས་ཀྱི་གསལ་
msgctxt ""
"03030202.xhp\n"
"par_id3150869\n"
-"9\n"
"help.text"
msgid "This function is the opposite of the <emph>TimeSerial </emph>function. It returns the minute of the serial time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression:"
msgstr "འ་ནི་ལས་འགན་དེ་ <emph>དུས་ཚོད་རིམ་ཨང་ </emph>ལས་འགན་གྱི་རྒྱབ་འགལ་ཨིན། དེ་གིས་ <emph>དུས་ཚོད་རིམ་ཨང་</emph> ཡང་ན་ <emph>དུས་ཚོད་གནས་གོང་ </emph>ལས་འགན་གྱིས་བཟོ་བཏོན་འབད་ཡོད་མི་རིམ་ཨང་དུས་ཚོད་གནས་གོང་གི་སྐར་མ་དེ་སླར་ལོགཔ་ཨིན། དཔེར་ན་ གསལ་བརྗོད:"
@@ -14778,7 +14068,6 @@ msgstr "འ་ནི་ལས་འགན་དེ་ <emph>དུས་ཚོ
msgctxt ""
"03030202.xhp\n"
"par_id3149262\n"
-"10\n"
"help.text"
msgid "Print Minute(TimeSerial(12,30,41))"
msgstr "སྐར་མ་དཔར་བསྐྲུན་འབད(TimeSerial(12:30:41))"
@@ -14787,7 +14076,6 @@ msgstr "སྐར་མ་དཔར་བསྐྲུན་འབད(TimeSerial(
msgctxt ""
"03030202.xhp\n"
"par_id3148576\n"
-"11\n"
"help.text"
msgid "returns the value 30."
msgstr "༣༠ གནས་གོང་འདི་སླར་ལོགཔ་ཨིན།"
@@ -14796,7 +14084,6 @@ msgstr "༣༠ གནས་གོང་འདི་སླར་ལོགཔ་
msgctxt ""
"03030202.xhp\n"
"hd_id3150010\n"
-"12\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -14805,7 +14092,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03030202.xhp\n"
"par_id3159154\n"
-"13\n"
"help.text"
msgid "Sub ExampleMinute"
msgstr "སྐར་མ་དཔེར་བརྗོད་འོག་མ།"
@@ -14814,7 +14100,6 @@ msgstr "སྐར་མ་དཔེར་བརྗོད་འོག་མ།"
msgctxt ""
"03030202.xhp\n"
"par_id3146119\n"
-"14\n"
"help.text"
msgid "MsgBox \"The current minute is \"& Minute(Now)& \".\""
msgstr "འཕྲིན་དོན་སྒྲོམ \"The current minute is \"& Minute(Now)& \".\""
@@ -14823,7 +14108,6 @@ msgstr "འཕྲིན་དོན་སྒྲོམ \"The current minute is \"
msgctxt ""
"03030202.xhp\n"
"par_id3153726\n"
-"15\n"
"help.text"
msgid "end sub"
msgstr "མཇུག་འོག་མ།"
@@ -15368,7 +14652,6 @@ msgstr "དུས་ཚོད་དང་ཚེས་རིམ་ལུགས།
msgctxt ""
"03030300.xhp\n"
"hd_id3154923\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"System Date and Time\">System Date and Time</link>"
msgstr "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"System Date and Time\">དུས་ཚོད་དང་ཚེས་རིམ་ལུགས</link>"
@@ -15377,7 +14660,6 @@ msgstr "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"System Date and Ti
msgctxt ""
"03030300.xhp\n"
"par_id3149457\n"
-"2\n"
"help.text"
msgid "The following functions and statements set or return the system date and time."
msgstr "འོག་གི་ལས་འགན་ཚུ་དང་གསལ་བཤད་ཚུ་གཞི་སྒྲིག་ཡང་ན་ཚེས་་རིམ་ལུགས་དང་དུས་ཚོད་སླར་ལོག་འོང་།"
@@ -15650,7 +14932,6 @@ msgstr "ལས་འགན་ཚུ་ལེགས་སྐྱོང་འཐབ
msgctxt ""
"03050000.xhp\n"
"hd_id3143271\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Error-Handling Functions\">Error-Handling Functions</link>"
msgstr "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Error-Handling Functions\">ལས་འགན་ཚུ་ལེགས་སྐྱོང་འཐབ་པ་འཛོལ་བ</link>"
@@ -15659,7 +14940,6 @@ msgstr "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Error-Handling Fun
msgctxt ""
"03050000.xhp\n"
"par_id3145068\n"
-"2\n"
"help.text"
msgid "Use the following statements and functions to define the way $[officename] Basic reacts to run-time errors."
msgstr "འོག་གི་གསལ་བཤད་ཚུ་དང་ལས་འགན་ཚུ་$[officename] གཞི་རིམ་རཱན་ཊའིམ་འཛོལ་བ་ཚུ་ལུ་བྱ་ལོགཔ་ངེས་འཛིན་ཐབས་ལམ་ལུ་ལག་ལེན་འཐབ།"
@@ -15668,7 +14948,6 @@ msgstr "འོག་གི་གསལ་བཤད་ཚུ་དང་ལས་
msgctxt ""
"03050000.xhp\n"
"par_id3148946\n"
-"3\n"
"help.text"
msgid "$[officename] Basic offers several methods to prevent the termination of a program when a run-time error occurs."
msgstr "$[officename] གཞི་རིམ་གྱིས་རཱན་ཊའིམ་འཛོལ་བ་འབྱུང་མི་ཚུ་སྐབས་ལས་རིམ་གྱི་རྩ་འགྲོལ་སྔོན་བཀག་ལུ་ཐབས་ལམ་ཚུ་ལེ་ཤ་བྱིནམ་ཨིན།"
@@ -15805,7 +15084,6 @@ msgstr "<bookmark_value>འཛོལ་བ་ལས་འགན</bookmark_value>
msgctxt ""
"03050200.xhp\n"
"hd_id3156343\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function [Runtime]\">Err Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function [Runtime]\">འཛོལ་བ་ལས་འགན [Runtime]</link>"
@@ -15814,7 +15092,6 @@ msgstr "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function [Runt
msgctxt ""
"03050200.xhp\n"
"par_id3150541\n"
-"2\n"
"help.text"
msgid "Returns an error code that identifies the error that occurred during program execution."
msgstr "ལས་རིམ་ལག་ལེན་འཐབ་ནི་ཧྐབས་འབྱུང་ཡོད་པའི་འཛོལ་བ་ངོས་འཛིན་འབད་ནིའི་འཛོལ་བ་ཨང་རྟགས་ཅིག་སླར་་ལོགཔ་ཨིན།"
@@ -15823,7 +15100,6 @@ msgstr "ལས་རིམ་ལག་ལེན་འཐབ་ནི་ཧྐབ
msgctxt ""
"03050200.xhp\n"
"hd_id3149656\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -15832,7 +15108,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03050200.xhp\n"
"par_id3154123\n"
-"4\n"
"help.text"
msgid "Err"
msgstr "འཛོལ་བ།"
@@ -15841,7 +15116,6 @@ msgstr "འཛོལ་བ།"
msgctxt ""
"03050200.xhp\n"
"hd_id3147229\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -15850,7 +15124,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03050200.xhp\n"
"par_id3150869\n"
-"6\n"
"help.text"
msgid "Integer"
msgstr "ཧྲིལ་ཨང་།"
@@ -15859,7 +15132,6 @@ msgstr "ཧྲིལ་ཨང་།"
msgctxt ""
"03050200.xhp\n"
"hd_id3153193\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -15868,7 +15140,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03050200.xhp\n"
"par_id3149561\n"
-"8\n"
"help.text"
msgid "The Err function is used in error-handling routines to determine the error and the corrective action."
msgstr "འཛེོལ་བ་ལས་འགན་དེ་འཛོལ་བ་ལེགས་བཅོས་པ་རྒྱུན་ལས་ཚུ་འཛོལ་བ་་དང་ ངེས་བདེན་བྱ་བ་བ་གཏན་འབེབས་བཟོ་ནི་ལུ་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན།"
@@ -15877,7 +15148,6 @@ msgstr "འཛེོལ་བ་ལས་འགན་དེ་འཛོལ་བ
msgctxt ""
"03050200.xhp\n"
"hd_id3147317\n"
-"9\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -15886,7 +15156,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03050200.xhp\n"
"par_id3147426\n"
-"11\n"
"help.text"
msgid "On Error Goto ErrorHandler REM Set up error handler"
msgstr "འཛོལ་བ་གུ་འཛོལ་བ་ལེགས་སྐྱོང་པ་ རིམ་གཞི་སྒྲིག་འཛོལ་བ་ལེགས་སྐྱོང་པ་ལུ་འགྱོ།"
@@ -15895,7 +15164,6 @@ msgstr "འཛོལ་བ་གུ་འཛོལ་བ་ལེགས་སྐ
msgctxt ""
"03050200.xhp\n"
"par_id3149481\n"
-"14\n"
"help.text"
msgid "REM Error occurs due to non-existent file"
msgstr "གནས་པ་མེན་པའི་ཡིག་སྣོད་ལུ་རན་པ་ཨར་ཨི་ཨེམ་འཛོལ་བ་འབྱུམ་ཨིན།"
@@ -15904,7 +15172,6 @@ msgstr "གནས་པ་མེན་པའི་ཡིག་སྣོད་ལ
msgctxt ""
"03050200.xhp\n"
"par_id3145646\n"
-"21\n"
"help.text"
msgid "MsgBox \"Error \" & Err & \": \" & Error$ + chr(13) + \"At line : \" + Erl + chr(13) + Now , 16 ,\"an error occurred\""
msgstr "འཕྲིན་དོན་སྒྲོམ \"Error \" & Err & \": \" & Error$ + chr(13) + \"At line : \" + Erl + chr(13) + Now , 16 ,\"an error occurred\""
@@ -15929,7 +15196,6 @@ msgstr "<bookmark_value>ལས་འགན་འཛོལ་བ</bookmark_value>
msgctxt ""
"03050300.xhp\n"
"hd_id3159413\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error Function [Runtime]\">Error Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error Function [Runtime]\">ལས་འགན་འཛོལ་བ [Runtime]</link>"
@@ -15938,7 +15204,6 @@ msgstr "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error Function [Ru
msgctxt ""
"03050300.xhp\n"
"par_id3148663\n"
-"2\n"
"help.text"
msgid "Returns the error message that corresponds to a given error code."
msgstr "གྲ་སྒྲིག་འཛོལ་བ་ཨང་རྟགས་ལུ་ཆ་མཉམ་པའི་འཕྲིན་དོན་འཛོལ་བ་དེ་སླར་ལོགཔ་ཨིན།"
@@ -15947,7 +15212,6 @@ msgstr "གྲ་སྒྲིག་འཛོལ་བ་ཨང་རྟགས་
msgctxt ""
"03050300.xhp\n"
"hd_id3153379\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -15956,7 +15220,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03050300.xhp\n"
"par_id3154366\n"
-"4\n"
"help.text"
msgid "Error (Expression)"
msgstr "འཛོལ་བ (Expression)"
@@ -15965,7 +15228,6 @@ msgstr "འཛོལ་བ (Expression)"
msgctxt ""
"03050300.xhp\n"
"hd_id3145173\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -15974,7 +15236,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03050300.xhp\n"
"par_id3154125\n"
-"6\n"
"help.text"
msgid "String"
msgstr "ཡིག་རྒྱུན།"
@@ -15983,7 +15244,6 @@ msgstr "ཡིག་རྒྱུན།"
msgctxt ""
"03050300.xhp\n"
"hd_id3150869\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -15992,7 +15252,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03050300.xhp\n"
"par_id3153193\n"
-"8\n"
"help.text"
msgid "<emph>Expression:</emph> Any numeric expression that contains the error code of the error message that you want to return."
msgstr "<emph>གསལ་བརྗོད་:</emph> ཨང་གྲངས་ཀྱི་གསལ་བརྗོད་འདི་ཁྱོད་ཀྱི་སླར་ལོག་ནི་འཕྲིན་དོན་འཛོལ་བ་གི་ཨང་རྟགས་འཛོལ་བ་ཡོདཔ་ཨིན།"
@@ -16001,7 +15260,6 @@ msgstr "<emph>གསལ་བརྗོད་:</emph> ཨང་གྲངས་ཀ
msgctxt ""
"03050300.xhp\n"
"par_id3159254\n"
-"9\n"
"help.text"
msgid "If no parameters are passed, the Error function returns the error message of the most recent error that occurred during program execution."
msgstr "ཚད་བཟུང་ཚུ་རྩིས་སྤྲོད་མ་འབད་བ་ཅིན་ འཛོལ་བ་ལས་འགན་དེ་གིས་ ལས་རིམ་ལག་ལེན་འཐབ་ནི་སྐབས་འབྱུང་མི་འཕྲལ་གྱི་འཛོལ་བ་མང་ཤོས་ཀྱི་འཕྲིན་དོན་འཛོལ་བ་དེ་སླར་ལོགཔ་ཨིན།"
@@ -16015,7 +15273,6 @@ msgid "On Error GoTo ... Resume Statement [Runtime]"
msgstr "འཛོལ་བ་གུ་ ... གསལ་བཤད་བསྐྱར་ལོག་ལུ་འགྱོ [Runtime]"
#: 03050500.xhp
-#, fuzzy
msgctxt ""
"03050500.xhp\n"
"bm_id3146795\n"
@@ -16139,7 +15396,6 @@ msgstr "གཏན་ཚིག་ཅན་བཀོལ་སྤྱོད་པ་
msgctxt ""
"03060000.xhp\n"
"hd_id3147559\n"
-"1\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 Operators\">གཏན་ཚིག་ཅན་བཀོལ་སྤྱོད་པ་ཚུ</link>"
@@ -16148,7 +15404,6 @@ msgstr "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\
msgctxt ""
"03060000.xhp\n"
"par_id3153379\n"
-"2\n"
"help.text"
msgid "The following logical operators are supported by $[officename] Basic."
msgstr "འོག་གི་གཏན་ཚིག་ཅན་བཀོལ་སྤྱོད་པ་ཚུ་ཆ་མཉམ$[officename] གཞི་རིམ་གྱིས་རྒྱབ་སྐྱོར་འབད་ཡོདཔ་ཨིན།་"
@@ -16157,7 +15412,6 @@ msgstr "འོག་གི་གཏན་ཚིག་ཅན་བཀོལ་ས
msgctxt ""
"03060000.xhp\n"
"par_id3154138\n"
-"3\n"
"help.text"
msgid "Logical operators combine (bitwise) the contents of two expressions or variables, for example, to test if specific bits are set or not."
msgstr "གཏན་ཚིག་ཅན་བཀོལ་སྤྱོད་པ་ཚུ་གིས་(བིཊི་དང་འཁྲིལ)གསལ་བརྗོད་གཉིས་ཡང་ན་འགྱུར་ཅན་ཚུ་གི་ནང་དོན་ཚུ་མཉམ་མཐུདཔ་ཨིན། དཔེར་ན་ གསལ་བཀོད་བིཊི་ཚུ་གཞི་སྒྲིག་འབད་ཡི་ག་མ་འབདཝ་ཨིན་ན་བརྟག་ཞིབ་འབད་ནི་ལུ།"
@@ -16950,7 +16204,6 @@ msgstr "ཨང་རྩིས་བཀོལ་སྤྱོད་པ་ཚུ།
msgctxt ""
"03070000.xhp\n"
"hd_id3149234\n"
-"1\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>"
@@ -16959,7 +16212,6 @@ msgstr "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Opera
msgctxt ""
"03070000.xhp\n"
"par_id3145068\n"
-"2\n"
"help.text"
msgid "The following mathematical operators are supported in $[officename] Basic."
msgstr "འོག་གི་ཨང་རྩིས་བཀོལ་སྤྱོད་པ་ཚུ་ཆ་མཉམ་$[officename] གཞི་རིམ་ནང་རྒྱབ་སྐྱོར་འབད་ཡོདཔ་ཨིན།"
@@ -16968,7 +16220,6 @@ msgstr "འོག་གི་ཨང་རྩིས་བཀོལ་སྤྱོ
msgctxt ""
"03070000.xhp\n"
"par_id3148552\n"
-"3\n"
"help.text"
msgid "This chapter provides a short overview of all of the arithmetical operators that you may need for calculations within a program."
msgstr "འ་ནི་ལེའུ་གིས་ལས་རིམ་ནང་འཁོད་རྩིས་སྟོན་ཚུའི་དོན་ལུ་དགོ་ནི་ཨར་ཐི་མེཊི་ཀལ་བཀོལ་སྤྱོད་པ་ཚུ་ཆ་མཉམ་གྱི་སྤྱི་མཐོང་ཐུང་ཀུ་བྱིནམ་ཨིན།"
@@ -17545,7 +16796,6 @@ msgstr "ཨང་གྲངས་ཀྱི་ལས་འགན་ཚུ།"
msgctxt ""
"03080000.xhp\n"
"hd_id3153127\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Numeric Functions\">Numeric Functions</link>"
msgstr "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Numeric Functions\">ཨང་གྲངས་ཀྱི་ལས་འགན་ཚུ</link>"
@@ -17554,7 +16804,6 @@ msgstr "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Numeric Functions\
msgctxt ""
"03080000.xhp\n"
"par_id3148550\n"
-"2\n"
"help.text"
msgid "The following numeric functions perform calculations. Mathematical and Boolean operators are described in a separate section. Functions differ from operators in that functions pass arguments and return a result, instead of operators that return a result by combining two numeric expressions."
msgstr "འོག་གི་ཨང་གྲངས་ཀྱི་ལས་འགན་གྱིས་རྩིས་སྟོན་ནི་ལཱ་འགན་འགྲུབ་ཨིན། ཨང་རྩིས་དང་ བུ་ལིན་བཀོལ་སྤྱོད་པ་ཚུ་ཆ་མཉམ་སོ་སོ་ཁ་ཕྱེལ་ཕྱེལཝ་དབྱེ་ཚན་ནང་འགྲེལ་བཤད་འབད་ཡོདཔ་ཨིན། ལས་འགན་ཚུ་ལས་འགན་རྩིས་སྤྲོད་སྒྲུབ་རྟགས་ཚུ་དང་ཨང་གྲངས་ཀྱི་གསལ་བརྗོད་གཉིས་མཉམ་མཐུད་ཀྱིས་འབད་འགྲུབ་འབྲས་ཅིག་སླར་ལོག་མི་བཀོལ་སྤྱོད་ཚུ་གི་ཚབ་ལུ་འགྲུབ་འབྲས་ཅིག་སླར་ལོག་མི་བཀོལ་སྤྱོད་པ་ལས་སོ་སོ་འགྱུར་ནི་ཨིན།"
@@ -17571,7 +16820,6 @@ msgstr "ཊིར་གོ་ནོ་མེ་ཊིཀ་ལས་འགན་
msgctxt ""
"03080100.xhp\n"
"hd_id3159201\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometric Functions\">Trigonometric Functions</link>"
msgstr "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometric Functions\">ཊིར་གོ་ནོ་མེ་ཊིཀ་ལས་འགན་ཚུ</link>"
@@ -17580,7 +16828,6 @@ msgstr "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometric Func
msgctxt ""
"03080100.xhp\n"
"par_id3149180\n"
-"2\n"
"help.text"
msgid "The following are the trigonometric functions that are supported in $[officename] Basic."
msgstr "འོག་གི་ཆ་མཉམ་ཊིར་གོ་ནོ་མེ་ཊིཀ་ལས་འགན་ཚུ་ཆ་མཉམ་$[officename] གཞི་རིམ་ནང་རྒྱབ་སྐྱོར་འབད་ཡོད་མི།"
@@ -17930,7 +17177,6 @@ msgid "' rounded Pi = 3.14159"
msgstr "ཨར་ཨི་ཨེམ་ སྐོར་ཐེངས་འབད་ཡོདཔ པི་ཨའི= ༣་༡༤༡༥༩"
#: 03080102.xhp
-#, fuzzy
msgctxt ""
"03080102.xhp\n"
"par_id3144764\n"
@@ -18334,7 +17580,6 @@ msgstr "བསྒྱུར་གྱངས་དང་མཉམ་གྱངས་
msgctxt ""
"03080200.xhp\n"
"hd_id3154758\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Exponential and Logarithmic Functions\">Exponential and Logarithmic Functions</link>"
msgstr "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Exponential and Logarithmic Functions\">བསྒྱུར་གྲངས་དང་མཉམ་གྲངས་ལས་འགན</link>"
@@ -18343,7 +17588,6 @@ msgstr "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Exponential and Lo
msgctxt ""
"03080200.xhp\n"
"par_id3148550\n"
-"2\n"
"help.text"
msgid "$[officename] Basic supports the following exponential and logarithmic functions."
msgstr "$[officename] གཞི་རིམ་འདི་གིས་འོག་གི་བསྒྱུར་གྲངས་དང་མཉམ་གྲངས་ལས་འགན་ཚུ་རྒྱབ་སྐྱོར་འབདཝ་ཨིན།"
@@ -18584,7 +17828,6 @@ msgstr "ཨང་ཚུ་གང་འབྲུང་བཟོ་བཏོན་
msgctxt ""
"03080300.xhp\n"
"hd_id3143270\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generating Random Numbers\">Generating Random Numbers</link>"
msgstr "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generating Random Numbers\">ཨང་ཚུ་གང་འབྱུང་བཟོ་བཏོན་འབད་དོ</link>"
@@ -18593,7 +17836,6 @@ msgstr "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generating Random
msgctxt ""
"03080300.xhp\n"
"par_id3154347\n"
-"2\n"
"help.text"
msgid "The following statements and functions generate random numbers."
msgstr "འོག་གི་གསལ་བཤད་ཚུ་དང་ལས་འགན་ཚུ་གིས་ཨང་ཚུ་གང་འབྱུང་བཟོ་བཏོན་འབདཝ་ཨིན།"
@@ -18687,7 +17929,6 @@ msgid "Example:"
msgstr "དཔེར་བརྗོད:"
#: 03080301.xhp
-#, fuzzy
msgctxt ""
"03080301.xhp\n"
"par_id3147288\n"
@@ -18843,7 +18084,6 @@ msgstr "གྲུ་བཞི་རྩ་བ་རྩིས་སྟོན་ན
msgctxt ""
"03080400.xhp\n"
"hd_id3148946\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Square Root Calculation\">Square Root Calculation</link>"
msgstr "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Square Root Calculation\">གྲུ་བཞི་རྩ་བ་རྩིས་སྟོན་ནི</link>"
@@ -18852,7 +18092,6 @@ msgstr "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Square Root Calcul
msgctxt ""
"03080400.xhp\n"
"par_id3159414\n"
-"2\n"
"help.text"
msgid "Use this function to calculate square roots."
msgstr "འ་ནི་ལས་འགན་འདི་གྲུ་བཞི་རྩ་བ་རྩིས་སྟོན་ནི་ལུ་ལག་ལེན་འཐབ།"
@@ -18965,7 +18204,6 @@ msgstr "ཧྲིལ་ཨང་།"
msgctxt ""
"03080500.xhp\n"
"hd_id3153345\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Integers</link>"
msgstr "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">ཧྲིལ་ཨང་</link>"
@@ -18974,7 +18212,6 @@ msgstr "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">ཧྲ
msgctxt ""
"03080500.xhp\n"
"par_id3156152\n"
-"2\n"
"help.text"
msgid "The following functions round values to integers."
msgstr "འོག་གི་ལས་འགན་ཚུ་ཧྲིལ་ཨང་ཚུ་ལུ་གནས་གོང་སྐོར་ཐེངས་འབད་་ཨིན།"
@@ -19215,7 +18452,6 @@ msgstr "ཡང་་དག་གནས་གོང་ཚུ།"
msgctxt ""
"03080600.xhp\n"
"hd_id3146958\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Absolute Values\">Absolute Values</link>"
msgstr "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Absolute Values\">ཡང་དག་གནས་གོང་ཚུ</link>"
@@ -19224,7 +18460,6 @@ msgstr "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Absolute Values\">
msgctxt ""
"03080600.xhp\n"
"par_id3150771\n"
-"2\n"
"help.text"
msgid "This function returns absolute values."
msgstr "འ་ནི་ལས་འགན་གྱིས་ཡང་དག་གནས་གོང་ཚུ་སླར་ལོགཔ་ཨིན།"
@@ -19361,7 +18596,6 @@ msgstr "གསལ་བརྗོད་བརྡ་རྟགས་ཚུ།"
msgctxt ""
"03080700.xhp\n"
"hd_id3150702\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Expression Signs\">Expression Signs</link>"
msgstr "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Expression Signs\">གསལ་བརྗོད་བརྡ་རྟགས་ཚུ</link>"
@@ -19370,7 +18604,6 @@ msgstr "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Expression Signs\"
msgctxt ""
"03080700.xhp\n"
"par_id3148668\n"
-"2\n"
"help.text"
msgid "This function returns the algebraic sign of a numeric expression."
msgstr "འ་ནི་ལས་འགན་གྱིས་ཨང་གྲངས་ཀྱི་གསལ་བརྗོད་ཀྱི་གྲངས་ཚབ་རྩིས་རིག་རྟགས་འདི་སླར་ལོགཔ་ཨིན།"
@@ -19555,7 +18788,6 @@ msgstr "ཨང་ཚུ་གཞི་བསྒྱུར་འབད་དོ།
msgctxt ""
"03080800.xhp\n"
"hd_id3145315\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Converting Numbers\">Converting Numbers</link>"
msgstr "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Converting Numbers\">ཨང་ཚུ་གཞི་བསྒྱུར་འབད་དོ</link>"
@@ -19564,7 +18796,6 @@ msgstr "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Converting Numbers
msgctxt ""
"03080800.xhp\n"
"par_id3154760\n"
-"2\n"
"help.text"
msgid "The following functions convert numbers from one number format to another."
msgstr "འོག་གི་ལས་འགན་ཚུ་གིས་ཨང་ཚུ་ཨང་རྩ་སྒྲིག་གཅིག་ལས་གཞན་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན།"
@@ -19781,7 +19012,6 @@ msgstr "ལས་རིམ་ལག་ལེན་འཐབ་ནི་ཚད་
msgctxt ""
"03090000.xhp\n"
"hd_id3145136\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Controlling Program Execution\">Controlling Program Execution</link>"
msgstr "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Controlling Program Execution\">ལས་རིམ་ལག་ལེན་འཐབ་ནིཚད་འཛིན་དོ</link>"
@@ -19790,7 +19020,6 @@ msgstr "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Controlling Progra
msgctxt ""
"03090000.xhp\n"
"par_id3143268\n"
-"2\n"
"help.text"
msgid "The following statements control the execution of a program."
msgstr "འོག་གི་གསལ་བཤད་ཚུ་གིས་ལས་རིམ་གྱི་ལག་ལེན་འཐབ་ནི་ཚད་འཛིན་འབདཝ་ཨིན།"
@@ -19799,7 +19028,6 @@ msgstr "འོག་གི་གསལ་བཤད་ཚུ་གིས་ལས
msgctxt ""
"03090000.xhp\n"
"par_id3156152\n"
-"3\n"
"help.text"
msgid "A program generally executes from the first line of code to the last line of code. You can also execute certain procedures within the program according to specific conditions, or repeat a section of the program within a sub-procedure or function. You can use loops to repeat parts of a program as many times as necessary, or until a certain condition is met. These type of control statements are classified as Condition, Loop, or Jump statements."
msgstr "ལས་རིམ་ཅིག་ཡོངས་ཁྱབ་ལུ་ཨང་རྟགས་ཀྱི་གྱལ་མཇུག་ལུ་ཨང་རྟགས་ཀྱི་གྱལ་དང་པམ་དེ་ལས་ལག་ལེན་འཐབ་ཨིན། ཁྱོད་ཀྱིས་ཡང་བྱ་སྒོའི་ལམ་ལུགས་ངེས་ཅན་ཚུ་གནས་སྟངས་ཚུ་གསལ་བཀོད་་ལས་རིམ་དང་འཁྲིལ་པའི་ནང་འཁོད་་ཡང་ན་ ལས་རིམ་གྱི་དབྱེ་་ཚན་བྱ་སྒོའི་ལམ་ལུགས་ཡང་ན་ལས་འགན་ནང་འཁོད་བསྐྱར་ལོག་འབད་ནི་ལུ་ལག་ལེན་འཐབ་བཏུབ། ཁྱོད་ཀྱིས་ལས་རིམ་གྱི་ཡན་ལག་ཚུ་དགོས་མཁོ་དང་བསྟུན་བསྐྱར་ལོག་འབད་ནི་ལུ་ ཡང་ན་ངེས་ཅན་གྱི་གནས་སྐངས་དེ་མ་ཕྱད་ཚུན་ཚོད་ལུ་འཕྲལ་བཀོལ་ཚུ་ལག་ལེན་འཐབ་བཏུབ། དེ་བཟུམ་མའི་ཚད་འཛིན་གསལ་བཤད་ཚུའི་དབྱེ་བ་དེ་ གནས་སྟངས་ འཕྲལ་བཀོལ་ ཡང་ན་མཆོང་གསལ་བཤད་ཚུ་སྦེ་དབྱེ་བ་བཟོ་ཡོདཔ་ཨིན།"
@@ -19816,7 +19044,6 @@ msgstr "གསལ་བཤད་ཚུ་གནས་སྟངས།"
msgctxt ""
"03090100.xhp\n"
"hd_id3154422\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Condition Statements\">Condition Statements</link>"
msgstr "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Condition Statements\">གསལ་བཤད་ཚུ་གནས་སྟངས</link>"
@@ -19825,7 +19052,6 @@ msgstr "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Condition Statemen
msgctxt ""
"03090100.xhp\n"
"par_id3153750\n"
-"2\n"
"help.text"
msgid "The following statements are based on conditions."
msgstr "འོག་གི་གསལ་བཤད་ཚུ་ཆ་མཉམ་གནས་སྟངས་ཚུ་གུ་གཞི་བཞག་ཡོདཔ་ཨིན།"
@@ -19983,7 +19209,6 @@ msgid "Select...Case Statement [Runtime]"
msgstr "གནད་དོན་གསལ་བཤད...སེལ་འཐུ་འབད [Runtime]"
#: 03090102.xhp
-#, fuzzy
msgctxt ""
"03090102.xhp\n"
"bm_id3149416\n"
@@ -20107,7 +19332,6 @@ msgstr "<bookmark_value>ཨའི་ཨིན་པ་ཅིན་ གསལ་
msgctxt ""
"03090103.xhp\n"
"hd_id3155420\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Statement [Runtime]\">IIf Statement [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Statement [Runtime]\">ཨའི་ཨིན་པ་ཅིན་ གསལ་བཤད [Runtime]</link>"
@@ -20116,7 +19340,6 @@ msgstr "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Statement [Run
msgctxt ""
"03090103.xhp\n"
"par_id3145610\n"
-"2\n"
"help.text"
msgid "Returns one of two possible function results, depending on the logical value of the evaluated expression."
msgstr "ཚུགས་པའི་ལས་འགན་འགྲུབ་འབྲས་ཚུ་གཉིས་ཀྱི་གཅིག་ བརྟག་ཞིབ་འབད་ཡོད་པའི་གསལ་བརྗོད་ཀྱི་གནས་གོང་གཏན་ཚིག་ཅན་གུ་རྟེན་དེ་སླར་ལོགཔ་ཨིན།"
@@ -20125,7 +19348,6 @@ msgstr "ཚུགས་པའི་ལས་འགན་འགྲུབ་འབ
msgctxt ""
"03090103.xhp\n"
"hd_id3159413\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -20134,7 +19356,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03090103.xhp\n"
"par_id3147560\n"
-"4\n"
"help.text"
msgid "IIf (Expression, ExpressionTrue, ExpressionFalse)"
msgstr "ཨའི་ཨིན་པ་ཅིན (གསལ་བརྗོད་ གསལ་བརྗོད་བདེན་པ་ གསལ་བརྗོད་རྫུན་མ)"
@@ -20143,7 +19364,6 @@ msgstr "ཨའི་ཨིན་པ་ཅིན (གསལ་བརྗོད་
msgctxt ""
"03090103.xhp\n"
"hd_id3150541\n"
-"5\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -20152,7 +19372,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03090103.xhp\n"
"par_id3153381\n"
-"6\n"
"help.text"
msgid "<emph>Expression:</emph> Any expression that you want to evaluate. If the expression evaluates to <emph>True</emph>, the function returns the result of ExpressionTrue, otherwise it returns the result of ExpressionFalse."
msgstr "<emph>གསལ་བརྗོད་:</emph> གསལ་བརྗོད་གང་རུང་དེ་ཁྱོད་ཀྱིས་བརྟག་ཞིབ་འབད་ནི་ཨིན་མི། གསལ་བརྗོད་དེ་<emph>བདེན་པ་ལུ་བརྟག་ཞིབ་འབད་བ་ཅིན་</emph>ལས་འགན་དེ་གསལ་བརྗོད་བཏོད་པ་གི་འགྲུབ་འབྲས་དེ་སླར་ལོགཔ་ཨིནམ་ལས་ དེ་མེན་མ་གཞན་གསལ་བརྗོད་རྫུན་མ་གི་འགྲུབ་འབྲས་དེ་སླར་ལོགཔ་ཨིན།"
@@ -20161,7 +19380,6 @@ msgstr "<emph>གསལ་བརྗོད་:</emph> གསལ་བརྗོད
msgctxt ""
"03090103.xhp\n"
"par_id3150870\n"
-"7\n"
"help.text"
msgid "<emph>ExpressionTrue, ExpressionFalse:</emph> Any expression, one of which will be returned as the function result, depending on the logical evaluation."
msgstr "<emph>གསལ་བརྗོད་བདེན་པ་ གསལ་བརྗོད་རྫུན་མ་:</emph> གསལ་བརྗོད་གང་རུང་ ལས་འགན་འགྲུབ་འབྲས་སྦེ་ བརྟག་ཞིབ་གཏན་ཚིག་ཅན་གུ་རྟེན་གཅིག་སླར་ལོག་ཡོདཔ་ཨིན།"
@@ -20178,7 +19396,6 @@ msgstr "འཕྲལ་བཀོལ་ཚུ།"
msgctxt ""
"03090200.xhp\n"
"hd_id3153990\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">Loops</link>"
msgstr "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">འཕྲལ་བཀོལ་ཚུ</link>"
@@ -20187,7 +19404,6 @@ msgstr "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">འཕྲ
msgctxt ""
"03090200.xhp\n"
"par_id3147226\n"
-"2\n"
"help.text"
msgid "The following statements execute loops."
msgstr "འོག་གི་གསལ་བཤད་ཚུ་འཕྲལ་བཀོལ་ཚུ་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན།"
@@ -20201,7 +19417,6 @@ msgid "Do...Loop Statement [Runtime]"
msgstr "འབད...འཕྲལ་བཀོལ་གསལ་བཤད་ [Runtime]"
#: 03090201.xhp
-#, fuzzy
msgctxt ""
"03090201.xhp\n"
"bm_id3156116\n"
@@ -20554,7 +19769,6 @@ msgid "For...Next Statement [Runtime]"
msgstr "...གསལ་བཤད་ [རཱན་ཊའིམ] ཤུལ་མམ་དོན་ལུ།"
#: 03090202.xhp
-#, fuzzy
msgctxt ""
"03090202.xhp\n"
"bm_id3149205\n"
@@ -20878,7 +20092,6 @@ msgstr "<bookmark_value>ཝིནཌ་འཕྲལ་བཀོལ...སྐབ
msgctxt ""
"03090203.xhp\n"
"hd_id3150400\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">ཝིནཌི་གསལ་བཤད་...སྐབས་[Runtime]</link>"
@@ -20887,7 +20100,6 @@ msgstr "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend State
msgctxt ""
"03090203.xhp\n"
"par_id3151211\n"
-"2\n"
"help.text"
msgid "When a program encounters a While statement, it tests the condition. If the condition is False, the program continues directly following the Wend statement. If the condition is True, the loop is executed until the program finds Wend and then jumps back to the<emph> While </emph>statement. If the condition is still True, the loop is executed again."
msgstr "ལས་རིམ་ཅིག་གིས་གནས་སྐབས་གསལ་བཤད་ཅིག་གདོང་ཐུག་འབྱུངམ་ད་ དེ་གིས་གནས་སྟངས་དེ་བརྟག་ཞིབ་འབདཝ་ཨིན། གནས་སྟངས་དེ་རྫུན་མ་ཅིན་ལས་རིམ་དེ་གིས་་ཐད་ཀར་དུ་ཝིནཌི་གསལ་བཤད་རྗེས་སུ་གྲངས་ནི་འཕྲོ་མཐུདཔ་ཨིན། གནས་སྟངས་དེ་བདེན་པ་ཅིན་ འཕྲལ་བཀོལ་དེ་ལས་རིམ་གྱིས་ཝིནཌི་མ་ཐོབ་ཚུན་ཚོད་ལག་ལེན་འཐབ་ཡོདཔ་དང་ དེ་ལས་ལོག་<emph> གནས་སྐབས་</emph>གསལ་བཤད་ལུ་མཆོངམ་ཨིན། གནས་སྟངས་དེ་ད་ལྟོ་ཡང་བདེན་པ་ཅིན་ འཕྲལ་བཀོལ་དེ་ལོག་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན།"
@@ -20896,7 +20108,6 @@ msgstr "ལས་རིམ་ཅིག་གིས་གནས་སྐབས་
msgctxt ""
"03090203.xhp\n"
"par_id3151041\n"
-"3\n"
"help.text"
msgid "Unlike the <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link> statement, you cannot cancel a <emph>While...Wend</emph> loop with <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>. Never exit a While...Wend loop with <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, since this can cause a run-time error."
msgstr "འདྲ་བཤོལ་ <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">འབད་...འཕྲལ་བཀོལ་</link> གསལ་བཤད་དེ་ ཁྱོད་ཀྱིས་ <emph>གནས་སྐབས་...ཝིནཌི་</emph> འཕྲལ་བཀོལ་གཅིག་ཁར་ <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">ཕྱིར་ཐོན་ཆ་མེད་གཏང་ནི་མི་འོང་།</link>. ནམ་རང་འབད་རུང་གནས་སྐབས་...ཝིནཌི་འཕྲལ་བཀོལ་གཅིག་ཁར་ <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">འགྱོ་ལུ་</link>ཕྱིར་ཐོན་འབད་ནི་མི་འོང་ འ་ནི་རྒྱ་རྐྱེན་གྱིས་རཱན་ཊའིམ་འཛོལ་བ་འབྱུང་སྲིད།"
@@ -20905,7 +20116,6 @@ msgstr "འདྲ་བཤོལ་ <link href=\"text/sbasic/shared/03090201.xhp
msgctxt ""
"03090203.xhp\n"
"par_id3145172\n"
-"4\n"
"help.text"
msgid "A Do...Loop is more flexible than a While...Wend."
msgstr "འཕྲལ་བཀོལ་......འབད་དེ་ཝིནཌ...སྐབས་ལས་ལྷགཔ་བྱ་སྟབས་བདེ་ཏོག་ཏོ་ཡོདཔ་ཨིན།"
@@ -20914,7 +20124,6 @@ msgstr "འཕྲལ་བཀོལ་......འབད་དེ་ཝིནཌ...
msgctxt ""
"03090203.xhp\n"
"hd_id3155133\n"
-"5\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -20923,7 +20132,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03090203.xhp\n"
"par_id3147288\n"
-"6\n"
"help.text"
msgid "While Condition [Statement] Wend"
msgstr "གནས་སྟངས་ཝིནཌ་ [Statement] སྐབས།"
@@ -20932,7 +20140,6 @@ msgstr "གནས་སྟངས་ཝིནཌ་ [Statement] སྐབས།"
msgctxt ""
"03090203.xhp\n"
"hd_id3153139\n"
-"7\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -20941,7 +20148,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03090203.xhp\n"
"par_id3159153\n"
-"8\n"
"help.text"
msgid "Sub ExampleWhileWend"
msgstr "འོག་མ་ དཔེར་བརྗོད་ཝཱའིལ་ཝིནཌ།"
@@ -20950,7 +20156,6 @@ msgstr "འོག་མ་ དཔེར་བརྗོད་ཝཱའིལ་
msgctxt ""
"03090203.xhp\n"
"par_id3151114\n"
-"9\n"
"help.text"
msgid "Dim stext As String"
msgstr "མདངས་གྲིབ་ཨེསི་ཚིག་ཡིག་ ཡིག་རྒྱུན་བཟུམ་སྦེ།"
@@ -20959,7 +20164,6 @@ msgstr "མདངས་གྲིབ་ཨེསི་ཚིག་ཡིག་
msgctxt ""
"03090203.xhp\n"
"par_id3153143\n"
-"10\n"
"help.text"
msgid "Dim iRun As Integer"
msgstr "མདངས་གྲིབ་ཨའི་རཱན་ཧྲིལ་ཨང་བཟུམ་སྦེ།"
@@ -20968,7 +20172,6 @@ msgstr "མདངས་གྲིབ་ཨའི་རཱན་ཧྲིལ་ཨ
msgctxt ""
"03090203.xhp\n"
"par_id3155306\n"
-"11\n"
"help.text"
msgid "sText =\"This Is a short text\""
msgstr "ཨེསི་ཚིག་ཡིག =\"This is a short text\""
@@ -20977,7 +20180,6 @@ msgstr "ཨེསི་ཚིག་ཡིག =\"This is a short text\""
msgctxt ""
"03090203.xhp\n"
"par_id3154011\n"
-"12\n"
"help.text"
msgid "iRun = 1"
msgstr "ཨའི་རཱན = ༡"
@@ -20986,7 +20188,6 @@ msgstr "ཨའི་རཱན = ༡"
msgctxt ""
"03090203.xhp\n"
"par_id3147215\n"
-"13\n"
"help.text"
msgid "While iRun < Len(sText)"
msgstr "སྐབས་ལུ་ཨའི་རཱན་ < ལིན་(ཨེསི་ཚིག་ཡིག)"
@@ -20995,7 +20196,6 @@ msgstr "སྐབས་ལུ་ཨའི་རཱན་ < ལིན་(ཨེ
msgctxt ""
"03090203.xhp\n"
"par_id3147427\n"
-"14\n"
"help.text"
msgid "If Mid(sText,iRun,1 )<> \" \" Then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
msgstr "འབྲིང་མ་ཨིན་པ་ཅིན་(sText,iRun,1 )<> \" \" དེ་ལས་འབྲིང་མ( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
@@ -21004,7 +20204,6 @@ msgstr "འབྲིང་མ་ཨིན་པ་ཅིན་(sText,iRun,1 )<>
msgctxt ""
"03090203.xhp\n"
"par_id3149665\n"
-"15\n"
"help.text"
msgid "iRun = iRun + 1"
msgstr "ཨའི་རཱན་ = ཨའི་རཱན + ༡"
@@ -21013,7 +20212,6 @@ msgstr "ཨའི་རཱན་ = ཨའི་རཱན + ༡"
msgctxt ""
"03090203.xhp\n"
"par_id3152939\n"
-"16\n"
"help.text"
msgid "Wend"
msgstr "ཝིནཌི།"
@@ -21022,7 +20220,6 @@ msgstr "ཝིནཌི།"
msgctxt ""
"03090203.xhp\n"
"par_id3153189\n"
-"17\n"
"help.text"
msgid "MsgBox sText,0,\"Text encoded\""
msgstr "འཕྲིན་དོན་སྒྲོམ་ཨེསི་ཚིག་ཡིག་ ༠ \"Text encoded\""
@@ -21031,7 +20228,6 @@ msgstr "འཕྲིན་དོན་སྒྲོམ་ཨེསི་ཚིག
msgctxt ""
"03090203.xhp\n"
"par_id3145251\n"
-"18\n"
"help.text"
msgid "End Sub"
msgstr "མཇུག་འོག་མ།"
@@ -21048,7 +20244,6 @@ msgstr "མཆོངམ་ཨིན།"
msgctxt ""
"03090300.xhp\n"
"hd_id3151262\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">Jumps</link>"
msgstr "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">མཆོངམ་ཨིན</link>"
@@ -21057,7 +20252,6 @@ msgstr "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">མཆོ
msgctxt ""
"03090300.xhp\n"
"par_id3148983\n"
-"2\n"
"help.text"
msgid "The following statements execute jumps."
msgstr "འོག་གི་གསལ་བཤད་ལག་ལེན་འཐབ་ནི་མཆོངསམ་ཨིན།"
@@ -21282,7 +20476,6 @@ msgstr "<bookmark_value>གསལ་བཤད་ལུ་འགྱོ</bookmark_
msgctxt ""
"03090302.xhp\n"
"hd_id3159413\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement [Runtime]\">GoTo Statement [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement [Runtime]\">གསལ་བཤད་ལུ་འགྱོ [རཱན་ཊའིམ]</link>"
@@ -21291,7 +20484,6 @@ msgstr "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement [Ru
msgctxt ""
"03090302.xhp\n"
"par_id3153379\n"
-"2\n"
"help.text"
msgid "Continues program execution within a Sub or Function at the procedure line indicated by a label."
msgstr "ཁ་ཡིག་གིས་བརྡ་སྟོན་འབད་ཡོད་མི་བྱ་སྒོའི་ལམ་ལུགས་གྱལ་དེ་ལུ་འོག་མ་ཡང་ན་ལས་འགན་ནང་འཁོད་ལས་རིམ་ལག་ལེན་འཐབ་ནི་འཕྲོ་མཐུདཔ་ཨིན།"
@@ -21300,7 +20492,6 @@ msgstr "ཁ་ཡིག་གིས་བརྡ་སྟོན་འབད་ཡ
msgctxt ""
"03090302.xhp\n"
"hd_id3149656\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -21309,7 +20500,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03090302.xhp\n"
"par_id3154367\n"
-"4\n"
"help.text"
msgid "see Parameters"
msgstr "ཚད་བཟུང་ཚུ་བལྟ།"
@@ -21318,7 +20508,6 @@ msgstr "ཚད་བཟུང་ཚུ་བལྟ།"
msgctxt ""
"03090302.xhp\n"
"hd_id3150870\n"
-"5\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -21327,7 +20516,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03090302.xhp\n"
"par_id3156214\n"
-"6\n"
"help.text"
msgid "Sub/Function"
msgstr "འོག་མ/ལས་འགན།"
@@ -21336,7 +20524,6 @@ msgstr "འོག་མ/ལས་འགན།"
msgctxt ""
"03090302.xhp\n"
"par_id3156424\n"
-"7\n"
"help.text"
msgid "statement block"
msgstr "གསལ་བཤད་འགག་ནི།"
@@ -21345,7 +20532,6 @@ msgstr "གསལ་བཤད་འགག་ནི།"
msgctxt ""
"03090302.xhp\n"
"par_id3154685\n"
-"8\n"
"help.text"
msgid "Label1"
msgstr "ཁ་ཡིག་ ༡"
@@ -21354,7 +20540,6 @@ msgstr "ཁ་ཡིག་ ༡"
msgctxt ""
"03090302.xhp\n"
"par_id3145786\n"
-"9\n"
"help.text"
msgid "<emph>Label2:</emph>"
msgstr "<emph>ཁ་ཡིག་ ༢:</emph>"
@@ -21363,7 +20548,6 @@ msgstr "<emph>ཁ་ཡིག་ ༢:</emph>"
msgctxt ""
"03090302.xhp\n"
"par_id3161832\n"
-"10\n"
"help.text"
msgid "statement block"
msgstr "གསལ་བཤད་འགག་ནི།"
@@ -21372,7 +20556,6 @@ msgstr "གསལ་བཤད་འགག་ནི།"
msgctxt ""
"03090302.xhp\n"
"par_id3146120\n"
-"11\n"
"help.text"
msgid "Exit Sub"
msgstr "ཕྱིར་འཐོན་འོག་མ།"
@@ -21381,7 +20564,6 @@ msgstr "ཕྱིར་འཐོན་འོག་མ།"
msgctxt ""
"03090302.xhp\n"
"par_id3150010\n"
-"12\n"
"help.text"
msgid "<emph>Label1:</emph>"
msgstr "<emph>ཁ་ཡིག་ ༡:</emph>"
@@ -21390,7 +20572,6 @@ msgstr "<emph>ཁ་ཡིག་ ༡:</emph>"
msgctxt ""
"03090302.xhp\n"
"par_id3152462\n"
-"13\n"
"help.text"
msgid "statement block"
msgstr "གསལ་བཤད་འགག་ནི།"
@@ -21399,7 +20580,6 @@ msgstr "གསལ་བཤད་འགག་ནི།"
msgctxt ""
"03090302.xhp\n"
"par_id3149664\n"
-"14\n"
"help.text"
msgid "GoTo Label2"
msgstr "ཁ་ཡིག་ ༢་ ལུ་འགྱོ།"
@@ -21408,7 +20588,6 @@ msgstr "ཁ་ཡིག་ ༢་ ལུ་འགྱོ།"
msgctxt ""
"03090302.xhp\n"
"par_id3152886\n"
-"15\n"
"help.text"
msgid "End Sub/Function"
msgstr "མཇུག་འོག་མ/ལས་འགན།"
@@ -21417,7 +20596,6 @@ msgstr "མཇུག་འོག་མ/ལས་འགན།"
msgctxt ""
"03090302.xhp\n"
"par_id3152596\n"
-"16\n"
"help.text"
msgid "Use the GoTo statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and then and end it with a colon (\":\")."
msgstr "$[officename] གཞི་རིམ་བྱ་སྒོའི་ལམ་ལུགས་ནང་འཁོད་ས་གནས་གཞན་ལུ་ལས་རིམ་འཕྲོ་མཐུད་ལག་ལེན་འཐབ་ནི་བསླབ་སྟོན་འབད་ནི་ལུ་ལུ་འགྱོ་གསལ་བཤད་དེ་ལག་ལེན་འཐབ། གནས་ས་དེ་ཁ་ཡིག་གིས་འབད་བརྡོ་སྟོན་འབད་དགོཔ་ཨིན། ཁ་ཡིག་ཅིག་ མིང་འགན་སྤྲོད་ནི་་དང་དེ་ལས་ཀོ་ལཱོན་གཅིག་ཁར་མཇུག་བསྡུ་ནི་གཞི་སྒྲིག་འབད་ནི་ལུ་(\":\")།"
@@ -21426,7 +20604,6 @@ msgstr "$[officename] གཞི་རིམ་བྱ་སྒོའི་ལམ
msgctxt ""
"03090302.xhp\n"
"par_id3155416\n"
-"17\n"
"help.text"
msgid "You cannot use the GoTo statement to jump out of a Sub or Function."
msgstr "ཁྱོད་ཀྱིས་་ལས་འགན་འགན་ཡང་ན་འོག་གི་ཕྱི་ཁ་མཆོངས་ལུ་གསལ་བཤད་ལུ་འགྱོ་དེ་ལག་ལེན་འཐབ་མི་བཏུབ།"
@@ -21435,7 +20612,6 @@ msgstr "ཁྱོད་ཀྱིས་་ལས་འགན་འགན་ཡང
msgctxt ""
"03090302.xhp\n"
"hd_id3154731\n"
-"19\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -21457,7 +20633,6 @@ msgid "On...GoSub Statement; On...GoTo Statement [Runtime]"
msgstr "འགྱོ་འོག་མ་ གསལ་བཤད་...གུ་་ གུ་...འགྱོ་འོག་མ་གསལ་བཤད [Runtime]"
#: 03090303.xhp
-#, fuzzy
msgctxt ""
"03090303.xhp\n"
"bm_id3153897\n"
@@ -21589,7 +20764,6 @@ msgstr "ཐེབས་གསལ་བཤད་ཚུ།"
msgctxt ""
"03090400.xhp\n"
"hd_id3145316\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Further Statements</link>"
msgstr "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">ཐེབས་གསལ་བཤད་ཚུ</link>"
@@ -21598,7 +20772,6 @@ msgstr "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements
msgctxt ""
"03090400.xhp\n"
"par_id3154923\n"
-"2\n"
"help.text"
msgid "Statements that do not belong to any of the other runtime categories are described here."
msgstr "གསལ་བཤད་ཚུ་གཞན་རཱན་ཊའིམ་དབྱེ་རིམ་ཚུ་གི་གང་རུང་མ་བང་མི་ཚུ་ཆ་མཉམ་ན་ལུ་འགྲེལ་བཤད་འབད་ཡོདཔ་ཨིན།"
@@ -21623,7 +20796,6 @@ msgstr "<bookmark_value>གསལ་བཤད་བོད་བརྡ</bookmark_
msgctxt ""
"03090401.xhp\n"
"hd_id3154422\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement [Runtime]\">Call Statement [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement [Runtime]\">གསལ་བཤད་བོད་བརྡ [རཱན་ཊའིམ]</link>"
@@ -21632,7 +20804,6 @@ msgstr "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement [Ru
msgctxt ""
"03090401.xhp\n"
"par_id3153394\n"
-"2\n"
"help.text"
msgid "Transfers the control of the program to a subroutine, a function, or a DLL procedure."
msgstr "རྒྱུན་ལས་ལུ་ལས་རིམ་གྱི་ཚད་འཛིན་ ཡང་ན་ལས་འགན་ ཡང་ན་ཌི་ཨེལ་ཨེལ་བྱ་སྒོའི་ལམ་་ལུགས་དེ་གནས་སོར་འབདཝ་ཨིན།"
@@ -21641,7 +20812,6 @@ msgstr "རྒྱུན་ལས་ལུ་ལས་རིམ་གྱི་ཚ
msgctxt ""
"03090401.xhp\n"
"hd_id3153345\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -21650,7 +20820,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03090401.xhp\n"
"par_id3150984\n"
-"4\n"
"help.text"
msgid "[Call] Name [Parameter]"
msgstr "[Call] མིང་ [Parameter]"
@@ -21659,7 +20828,6 @@ msgstr "[Call] མིང་ [Parameter]"
msgctxt ""
"03090401.xhp\n"
"hd_id3150771\n"
-"5\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -21668,7 +20836,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03090401.xhp\n"
"par_id3148473\n"
-"6\n"
"help.text"
msgid "<emph>Name:</emph> Name of the subroutine, the function, or the DLL that you want to call"
msgstr "<emph>མིང་:</emph> ཁྱོད་ཀྱིས་བོད་ནི་ཨིན་མི་ རྒྱུན་ལས་འོག་མ་ ལས་འགན་ ཡང་ན་ཌི་ཨེལ་ཨེལ་གྱི་མིང་།"
@@ -21677,7 +20844,6 @@ msgstr "<emph>མིང་:</emph> ཁྱོད་ཀྱིས་བོད་ན
msgctxt ""
"03090401.xhp\n"
"par_id3148946\n"
-"7\n"
"help.text"
msgid "<emph>Parameter:</emph> Parameters to pass to the procedure. The type and number of parameters is dependent on the routine that is executing."
msgstr "<emph>ཚད་བཟུང་:</emph>ཚད་བཟུང་ཚུ་བྱ་སྒོའི་ལམ་ལུགས་ལུ་རྩིས་སྤྲོད། དབྱེ་བ་དང་ཚད་བཟུང་ཚུའི་ཨང་དེ་ལག་ལེན་འཐབ་ནིའི་རྒྱུན་ལས་གུ་རྟེནམ་ཨིན།"
@@ -21686,7 +20852,6 @@ msgstr "<emph>ཚད་བཟུང་:</emph>ཚད་བཟུང་ཚུ་
msgctxt ""
"03090401.xhp\n"
"par_id3154216\n"
-"8\n"
"help.text"
msgid "A keyword is optional when you call a procedure. If a function is executed as an expression, the parameters must be enclosed by brackets in the statement. If a DLL is called, it must first be specified in the <emph>Declare-Statement</emph>."
msgstr "ཁྱོད་ཀྱིས་བྱ་སྒོའི་ལམ་ལུགས་བོདཔ་ད་གཙོ་ཚིག་ཅིག་གདམ་ཁ་ཅན་ཨིན། ལས་འགན་ཅིག་གསལ་བརྗོད་སྦེ་ལག་ལེན་འཐབ་ཡོད་པ་ཅིན་ ཚད་བཟུང་དེ་ཚུ་གསལ་བཤད་ནང་གུག་ཤད་ཚུའི་ནང་ན་ཚུན་དགོཔ་ཨིན། ཌི་ཨེལ་ཨེལ་ དེ་བོད་ཡོད་པ་ཅིན་ དེ་ཧེ་མ་རང་ <emph>གསལ་བསྒྲགས་གསལ་བཤད་ནང་</emph>གསལ་བཀོད་འབད་དགོཔ་ཨིན།"
@@ -21695,7 +20860,6 @@ msgstr "ཁྱོད་ཀྱིས་བྱ་སྒོའི་ལམ་ལུ
msgctxt ""
"03090401.xhp\n"
"hd_id3125865\n"
-"9\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -22357,7 +21521,6 @@ msgid "Rem Statement [Runtime]"
msgstr "རིམ་གསལ་བཤད་ [Runtime]"
#: 03090407.xhp
-#, fuzzy
msgctxt ""
"03090407.xhp\n"
"bm_id3154347\n"
@@ -22729,7 +21892,6 @@ msgstr "<bookmark_value>གསལ་བཤད་བཅས</bookmark_value>"
msgctxt ""
"03090411.xhp\n"
"hd_id3153311\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement [Runtime]\">With Statement [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement [Runtime]\">གསལ་བཤད་བཅས [རཱན་ཊའིམ]</link>"
@@ -22738,7 +21900,6 @@ msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement [Ru
msgctxt ""
"03090411.xhp\n"
"par_id3159158\n"
-"2\n"
"help.text"
msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
msgstr "དངོས་པོ་ཅིག་སྔོན་སྒྲིག་དངོས་པོ་སྦེ་གཞི་སྒྲིག་འབདཝ་ཨིན། གཞན་དངོས་པོ་མིང་གསལ་བསྒྲགས་མ་འབད་ཚུན་ཚོད་ རྒྱུ་དངོས་ཚུ་དང་ཐབས་ལམ་ཚུ་ སྔོན་སྒྲིག་དངོས་པོ་ལུ་ མཇུག་བསྡུ་གཅིག་ཁར་གསལ་བཤད་དེ་མ་ལྷོད་ཚུན་ཚོད་འབྲེལ་བ་འཐབ་ཨིན།"
@@ -22747,7 +21908,6 @@ msgstr "དངོས་པོ་ཅིག་སྔོན་སྒྲིག་ད
msgctxt ""
"03090411.xhp\n"
"hd_id3156153\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -22756,7 +21916,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03090411.xhp\n"
"par_id3145609\n"
-"4\n"
"help.text"
msgid "With Object Statement block End With"
msgstr "གཅིག་ཁར་ དངོས་པོ་ གསལ་བཤད་ བཀག་དམ་ མཇུག་གཅིག་ཁར།"
@@ -22765,7 +21924,6 @@ msgstr "གཅིག་ཁར་ དངོས་པོ་ གསལ་བཤད
msgctxt ""
"03090411.xhp\n"
"hd_id3154924\n"
-"5\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -22774,7 +21932,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03090411.xhp\n"
"par_id3147560\n"
-"6\n"
"help.text"
msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
msgstr "གཅིག་ཁར་ <emph>དང་</emph> མཇུག་བསྡུ་གཅིག་ཁར་<emph>ཁྱོད་ལུ་རྒྱུ་དངོས་ཚུ་ལེ་ཤ་ཡང་ན་</emph> དངོས་པོ་རྐྱང་པ་དོན་ལུ་ཐབས་ལམ་ཡོད་པ་ཅིན་ལག་ལེན་འཐབ།"
@@ -22959,7 +22116,6 @@ msgstr "འགྱུར་ཅན་ཚུ།"
msgctxt ""
"03100000.xhp\n"
"hd_id3149669\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">Variables</link>"
msgstr "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">འགྱུར་ཅན་ཚུ</link>"
@@ -22968,7 +22124,6 @@ msgstr "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">འག
msgctxt ""
"03100000.xhp\n"
"par_id3147265\n"
-"2\n"
"help.text"
msgid "The following statements and functions are for working with variables. You can use these functions to declare or define variables, convert variables from one type to another, or determine the variable type."
msgstr "འོག་གི་གསལ་བཤད་ཚུ་དང་ལས་འགན་ཚུ་ཆ་མཉམ་འགྱུར་ཅན་གཅིག་ལཱ་འབད་ནི་དོན་ལུ་ཨིན། ཁྱོད་ཀྱིས་ལས་འགན་དེ་ཚུ་གསལ་བསྒྲགས་འབད་ནི་ ཡང་ན་འགྱུར་ཅན་ཚུ་ངེས་འཛིན་འབད་ནི་་འགྱུར་ཅན་ཚུ་དབྱེ་བ་གཅིག་ལས་གཞན་ལུ་གཞི་བསྒྱུར་འབད་ནི་ ཡང་ན་ འགྱུར་ཅན་དབྱེ་བ་གཏན་འབེབས་བཟོ་ནི་ལུ་ལག་ལེན་འཐབ།"
@@ -25233,7 +24388,6 @@ msgstr "<bookmark_value>ཌིཕ་དངོས་པོ་གསལ་བཤ
msgctxt ""
"03101700.xhp\n"
"hd_id3149811\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement [Runtime]\">DefObj Statement [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement [Runtime]\">ཌིཕ་དངོས་པོ་གསལ་བཤད [Runtime]</link>"
@@ -25242,7 +24396,6 @@ msgstr "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement [
msgctxt ""
"03101700.xhp\n"
"par_id3147573\n"
-"2\n"
"help.text"
msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
msgstr "དབྱེ་བ་གསལ་བསྒྲགས་ཡང་ན་གཙོ་ཚིག་དེ་གསལ་བཀོད་མ་འབད་བ་ཅིན་ ཡི་གུ་ཁྱབ་ཚད་དང་འཁྲིལ་་སྔོན་སྒྲིག་འགྱུར་ཅན་དེ་་གཞི་སྒྲིག་འབདཝ་ཨིན།"
@@ -25251,7 +24404,6 @@ msgstr "དབྱེ་བ་གསལ་བསྒྲགས་ཡང་ན་ག
msgctxt ""
"03101700.xhp\n"
"hd_id3150504\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -25260,7 +24412,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03101700.xhp\n"
"par_id3147530\n"
-"4\n"
"help.text"
msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
msgstr "ཌིཕxxx ཡིག་འབྲུ་ཁྱབ་ཚད་ ༡[, Characterrange2[,...]]"
@@ -25269,7 +24420,6 @@ msgstr "ཌིཕxxx ཡིག་འབྲུ་ཁྱབ་ཚད་ ༡[, Char
msgctxt ""
"03101700.xhp\n"
"hd_id3153896\n"
-"5\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -25278,7 +24428,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03101700.xhp\n"
"par_id3148552\n"
-"6\n"
"help.text"
msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
msgstr "<emph>ཡིག་འབྲུ་ཁྱབ་ཚད་:</emph> ཡིག་གུ་དེ་ཚུ་འགྱུར་ཅན་གྱི་ཁྱབ་ཚད་ཁྱོད་ཀྱིས་གཞི་སྒྲིག་སྔོན་སྒྲིག་གནད་སྡུད་དབྱེ་བ་དོན་ལུ་འབད་ནི་ཨིན་མི་གསལ་བཀོད་འབད།"
@@ -25287,7 +24436,6 @@ msgstr "<emph>ཡིག་འབྲུ་ཁྱབ་ཚད་:</emph> ཡིག
msgctxt ""
"03101700.xhp\n"
"par_id3150358\n"
-"7\n"
"help.text"
msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
msgstr "<emph>xxx:</emph> གཙོ་ཚིག་དེ་སྔོན་སྒྲིག་འགྱུར་ཅན་དབྱེ་བ་དེ་ངེས་འཛིན་འབདཝ་ཨིན:"
@@ -25296,7 +24444,6 @@ msgstr "<emph>xxx:</emph> གཙོ་ཚིག་དེ་སྔོན་སྒ
msgctxt ""
"03101700.xhp\n"
"par_id3148798\n"
-"8\n"
"help.text"
msgid "<emph>Keyword: </emph>Default variable type"
msgstr "<emph>གཙོ་ཚིག: </emph>སྔོན་་སྒྲིག་འགྱུར་ཅན་དབྱེ་བ།"
@@ -25305,7 +24452,6 @@ msgstr "<emph>གཙོ་ཚིག: </emph>སྔོན་་སྒྲིག་
msgctxt ""
"03101700.xhp\n"
"par_id3150769\n"
-"9\n"
"help.text"
msgid "<emph>DefObj:</emph> Object"
msgstr "<emph>ཌིཕ་དངོས་པོ་:</emph> དངོས་པོ།"
@@ -25314,7 +24460,6 @@ msgstr "<emph>ཌིཕ་དངོས་པོ་:</emph> དངོས་པོ
msgctxt ""
"03101700.xhp\n"
"hd_id3156212\n"
-"10\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -25323,7 +24468,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03101700.xhp\n"
"par_id3153969\n"
-"12\n"
"help.text"
msgid "REM Prefix definitions for variable types:"
msgstr "ཨར་ཨི་ཨེམ་ འགྱུར་ཅན་དབྱེ་བ་ཚུ་གི་དོན་ལུ་སྔོན་ཚིག་ངེས་ཚིག་ཚུ་:"
@@ -25332,7 +24476,6 @@ msgstr "ཨར་ཨི་ཨེམ་ འགྱུར་ཅན་དབྱེ
msgctxt ""
"03101700.xhp\n"
"par_id3156424\n"
-"13\n"
"help.text"
msgid "DefBool b"
msgstr "ཌིཕ་བུལ་ བི།"
@@ -25341,7 +24484,6 @@ msgstr "ཌིཕ་བུལ་ བི།"
msgctxt ""
"03101700.xhp\n"
"par_id3159254\n"
-"14\n"
"help.text"
msgid "DefDate t"
msgstr "ཌིཕ་ཚེས་ ཊི།"
@@ -25350,7 +24492,6 @@ msgstr "ཌིཕ་ཚེས་ ཊི།"
msgctxt ""
"03101700.xhp\n"
"par_id3150440\n"
-"15\n"
"help.text"
msgid "DefDbL d"
msgstr "ཌིཕ་ཌི་བི་ཨེལ་ ཌི།"
@@ -25359,7 +24500,6 @@ msgstr "ཌིཕ་ཌི་བི་ཨེལ་ ཌི།"
msgctxt ""
"03101700.xhp\n"
"par_id3161832\n"
-"16\n"
"help.text"
msgid "DefInt i"
msgstr "ཌིཕ་ཨིན་ཊི་ ཨའི།"
@@ -25368,7 +24508,6 @@ msgstr "ཌིཕ་ཨིན་ཊི་ ཨའི།"
msgctxt ""
"03101700.xhp\n"
"par_id3145365\n"
-"17\n"
"help.text"
msgid "DefLng l"
msgstr "ཌིཕ་ཡིངམ་ ཨེལ།"
@@ -25377,7 +24516,6 @@ msgstr "ཌིཕ་ཡིངམ་ ཨེལ།"
msgctxt ""
"03101700.xhp\n"
"par_id3149481\n"
-"18\n"
"help.text"
msgid "DefObj o"
msgstr "ཌིཕ་དངོས་པོ་ ཨོ།"
@@ -25386,7 +24524,6 @@ msgstr "ཌིཕ་དངོས་པོ་ ཨོ།"
msgctxt ""
"03101700.xhp\n"
"par_id3152886\n"
-"19\n"
"help.text"
msgid "DefVar v"
msgstr "ཌིཕ་ཝར་ ཝི།"
@@ -25520,7 +24657,6 @@ msgid "Dim Statement [Runtime]"
msgstr "མདངས་གྲིབ་གསལ་བཤད [Runtime]"
#: 03102100.xhp
-#, fuzzy
msgctxt ""
"03102100.xhp\n"
"bm_id3149812\n"
@@ -26441,7 +25577,6 @@ msgid "IsNull Function [Runtime]"
msgstr "ཨའི་ཨེསི་སྟོང་ཆ་ལས་འགན [Runtime]"
#: 03102600.xhp
-#, fuzzy
msgctxt ""
"03102600.xhp\n"
"bm_id3155555\n"
@@ -26653,7 +25788,6 @@ msgstr "<bookmark_value>ཨའི་ཨེསི་དངོས་པོ་ལ
msgctxt ""
"03102800.xhp\n"
"hd_id3149346\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function [Runtime]\">IsObject Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function [Runtime]\">ཨའི་ཨེསི་དངོས་པོ་ལས་འགན [Runtime]</link>"
@@ -26662,7 +25796,6 @@ msgstr "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function
msgctxt ""
"03102800.xhp\n"
"par_id3148538\n"
-"2\n"
"help.text"
msgid "Tests if an object variable is an OLE object. The function returns True if the variable is an OLE object, otherwise it returns False."
msgstr "དངོས་པོ་འགྱུར་ཅན་དེ་ཨོ་ཨེལ་ཨི་དངོས་པོ་ཨིན་པ་ཅིན་བརྟག་ཞིབ་འབདཝ་ཨིན། ལས་འགན་དེ་འི་འགྱུར་ཅན་ཨོ་ཨེལ་ཨི་དངོས་པོ་ཨིན་པ་ཅིན་བདེན་པ་སླར་ལོགཔ་ དེ་མེན་པ་ཅིན་ རྫུན་མ་སླར་ལོགཔ་ཨིན།"
@@ -26671,7 +25804,6 @@ msgstr "དངོས་པོ་འགྱུར་ཅན་དེ་ཨོ་ཨ
msgctxt ""
"03102800.xhp\n"
"hd_id3149234\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -26680,7 +25812,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03102800.xhp\n"
"par_id3154285\n"
-"4\n"
"help.text"
msgid "IsObject (ObjectVar)"
msgstr "ཨའི་ཨེསི་དངོས་པོ (ObjectVar)"
@@ -26689,7 +25820,6 @@ msgstr "ཨའི་ཨེསི་དངོས་པོ (ObjectVar)"
msgctxt ""
"03102800.xhp\n"
"hd_id3148685\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -26698,7 +25828,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03102800.xhp\n"
"par_id3156024\n"
-"6\n"
"help.text"
msgid "Bool"
msgstr "བུལ།"
@@ -26707,7 +25836,6 @@ msgstr "བུལ།"
msgctxt ""
"03102800.xhp\n"
"hd_id3148947\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -26716,7 +25844,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03102800.xhp\n"
"par_id3148552\n"
-"8\n"
"help.text"
msgid "<emph>ObjectVar:</emph> Any variable that you want to test. If the Object variable contains an OLE object, the function returns True."
msgstr "<emph>དངོས་པོ་ཝར་:</emph> འགྱུར་ཅན་གང་རུང་ཁྱོད་ཀྱིས་བརྟག་ཞིབ་འབད་ནི་ཨིན་མི། དངོས་པོ་འགྱུར་ཅན་ནང་ན་ཨོ་ཨེལ་ཨི་་དངོས་པོ་ཡོད་པ་ཅིན་ལས་འགན་དེ་བདེན་པ་སླར་ལོགཔ་ཨིན།"
@@ -27434,7 +26561,6 @@ msgid "TypeName Function; VarType Function[Runtime]"
msgstr "དབྱེ་བ་མིང་ ལས་འགན་ ཝར་དབྱེ་བ་ལས་འགན[Runtime]"
#: 03103600.xhp
-#, fuzzy
msgctxt ""
"03103600.xhp\n"
"bm_id3143267\n"
@@ -27731,7 +26857,6 @@ msgid "Set Statement[Runtime]"
msgstr "གསལ་བཤད་གཞི་སྒྲིག་འབད[རཱན་ཊའིམ]"
#: 03103700.xhp
-#, fuzzy
msgctxt ""
"03103700.xhp\n"
"bm_id3154422\n"
@@ -27831,7 +26956,6 @@ msgstr "<bookmark_value>དངོས་པོ་འཚོལ་ལས་འག
msgctxt ""
"03103800.xhp\n"
"hd_id3145136\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function [Runtime]\">FindObject Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function [Runtime]\">དངོས་པོ་འཚོལ་ལས་འགན [Runtime]</link>"
@@ -27840,7 +26964,6 @@ msgstr "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Functio
msgctxt ""
"03103800.xhp\n"
"par_id3155341\n"
-"2\n"
"help.text"
msgid "Enables an object to be addressed at run-time as a string parameter through the object name."
msgstr "དངོས་པོ་ཅིག་ཁ་བྱང་བཏགས་ནི་ལུ་དངོས་པོ་མིང་ལས་བརྒྱུད་པེ་ཡིག་རྒྱུན་ཚད་བཟུང་སྦེ་ལྕོགས་ཅན་བཟོཝ་ཨིན།"
@@ -27849,7 +26972,6 @@ msgstr "དངོས་པོ་ཅིག་ཁ་བྱང་བཏགས་ན
msgctxt ""
"03103800.xhp\n"
"par_id3150669\n"
-"3\n"
"help.text"
msgid "For example, the following command:"
msgstr "དཔེར་ན་ འོག་གི་བརྡ་བཀོད་:"
@@ -27858,7 +26980,6 @@ msgstr "དཔེར་ན་ འོག་གི་བརྡ་བཀོད་:"
msgctxt ""
"03103800.xhp\n"
"par_id3148473\n"
-"4\n"
"help.text"
msgid "MyObj.Prop1.Command = 5"
msgstr "མའི་དངོས་པོ་ པོ་རོབ་ ༡ བརྡ་བཀོད་= ༥"
@@ -27867,7 +26988,6 @@ msgstr "མའི་དངོས་པོ་ པོ་རོབ་ ༡ བརྡ
msgctxt ""
"03103800.xhp\n"
"par_id3156023\n"
-"5\n"
"help.text"
msgid "corresponds to the command block:"
msgstr "བརྡ་བཀོད་བཀག་དམ་ལུ་ཆ་མཉམ་ཨིན:"
@@ -27876,7 +26996,6 @@ msgstr "བརྡ་བཀོད་བཀག་དམ་ལུ་ཆ་མཉམ
msgctxt ""
"03103800.xhp\n"
"par_id3153896\n"
-"6\n"
"help.text"
msgid "Dim ObjVar as Object"
msgstr "མདངས་གྲིབ་དངོས་པོ་ཝར་ དངོས་པོ་བཟུམ་སྦེ།"
@@ -27885,7 +27004,6 @@ msgstr "མདངས་གྲིབ་དངོས་པོ་ཝར་ དང
msgctxt ""
"03103800.xhp\n"
"par_id3154760\n"
-"7\n"
"help.text"
msgid "Dim ObjProp as Object"
msgstr "མདངས་གྲིབ་དངོས་པོ་པོ་རོབ་དངོས་པོ་བཟུམ་སྦེ།"
@@ -27894,7 +27012,6 @@ msgstr "མདངས་གྲིབ་དངོས་པོ་པོ་རོབ
msgctxt ""
"03103800.xhp\n"
"par_id3145069\n"
-"8\n"
"help.text"
msgid "ObjName As String = \"MyObj\""
msgstr "དངོས་པོ་མིང་ཡིག་རྒྱུན་བཟུམ་སྦེ = \"MyObj\""
@@ -27903,7 +27020,6 @@ msgstr "དངོས་པོ་མིང་ཡིག་རྒྱུན་བཟ
msgctxt ""
"03103800.xhp\n"
"par_id3154939\n"
-"9\n"
"help.text"
msgid "ObjVar = FindObject( ObjName As String )"
msgstr "དངོས་པོ་ཝར་ = འཚོལ་དངོས་པོ( ObjName As String )"
@@ -27912,7 +27028,6 @@ msgstr "དངོས་པོ་ཝར་ = འཚོལ་དངོས་པོ
msgctxt ""
"03103800.xhp\n"
"par_id3150793\n"
-"10\n"
"help.text"
msgid "PropName As String = \"Prop1\""
msgstr "པོ་རོབ་མིང་ཡིག་རྒྱུན་བཟུམ་སྦེ་= \"Prop1\""
@@ -27921,7 +27036,6 @@ msgstr "པོ་རོབ་མིང་ཡིག་རྒྱུན་བཟུ
msgctxt ""
"03103800.xhp\n"
"par_id3154141\n"
-"11\n"
"help.text"
msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
msgstr "དངོས་པོ་པོ་རོབ = འཚོལ་རྒྱུ་དངོས་ དངོས་པོ( ObjVar, PropName As String )"
@@ -27930,7 +27044,6 @@ msgstr "དངོས་པོ་པོ་རོབ = འཚོལ་རྒྱུ
msgctxt ""
"03103800.xhp\n"
"par_id3156424\n"
-"12\n"
"help.text"
msgid "ObjProp.Command = 5"
msgstr "དངོས་པོ་པོ་རོབ་ བརྡ་བཀོད་ = ༥"
@@ -27939,7 +27052,6 @@ msgstr "དངོས་པོ་པོ་རོབ་ བརྡ་བཀོད
msgctxt ""
"03103800.xhp\n"
"par_id3145420\n"
-"13\n"
"help.text"
msgid "This allows names to be dynamically created at run-time. For example:"
msgstr "འ་ནི་མིང་ཚུ་རཱན་ཊའིམ་ལུ་ནུས་ཅན་ཐོག་ལས་བཟོ་ནི་ཨིན། དཔེར་ན་:"
@@ -27948,7 +27060,6 @@ msgstr "འ་ནི་མིང་ཚུ་རཱན་ཊའིམ་ལུ་
msgctxt ""
"03103800.xhp\n"
"par_id3153104\n"
-"14\n"
"help.text"
msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five control names."
msgstr "\"TextEdit1\" to TextEdit5\" ལུང་ཐག་ནང་ཚད་འཛིན་མིང་ལྔ་གསལ་བསྐྲུན་འབད་ནི་ལུ།"
@@ -27957,7 +27068,6 @@ msgstr "\"TextEdit1\" to TextEdit5\" ལུང་ཐག་ནང་ཚད་འ
msgctxt ""
"03103800.xhp\n"
"par_id3150767\n"
-"15\n"
"help.text"
msgid "See also: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
msgstr "བལྟ་ཡང་: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">འཚོལ་རྒྱུ་དངོས་ དངོས་པོ</link>"
@@ -27966,7 +27076,6 @@ msgstr "བལྟ་ཡང་: <link href=\"text/sbasic/shared/03103900.xhp\" na
msgctxt ""
"03103800.xhp\n"
"hd_id3150868\n"
-"16\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -27975,7 +27084,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03103800.xhp\n"
"par_id3151042\n"
-"17\n"
"help.text"
msgid "FindObject( ObjName As String )"
msgstr "དངོས་པོ་འཚོལ( ObjName As String )"
@@ -27984,7 +27092,6 @@ msgstr "དངོས་པོ་འཚོལ( ObjName As String )"
msgctxt ""
"03103800.xhp\n"
"hd_id3159254\n"
-"18\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -27993,7 +27100,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03103800.xhp\n"
"par_id3150439\n"
-"19\n"
"help.text"
msgid "<emph>ObjName: </emph>String that specifies the name of the object that you want to address at run-time."
msgstr "<emph>དངོས་པོ་མིང་: </emph>ཡིག་རྒྱུན་དེ་གིས་ཁྱོད་ཀྱིས་རཱན་ཊའིམ་ལུ་ཁ་བྱང་བཏགས་ནི་ཨིན་མི་དངོས་པོ་གི་མིང་དེ་གསལ་བཀོད་འབདཝ་ཨིན།"
@@ -28018,7 +27124,6 @@ msgstr "<bookmark_value>འཚོལ་རྒྱུ་དངོས་ དངོ
msgctxt ""
"03103900.xhp\n"
"hd_id3146958\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject Function [Runtime]\">FindPropertyObject Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject Function [Runtime]\">འཚོལ་རྒྱུ་དངོས་ དངོས་པོ་ལས་འགན [Runtime]</link>"
@@ -28027,7 +27132,6 @@ msgstr "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject
msgctxt ""
"03103900.xhp\n"
"par_id3154285\n"
-"2\n"
"help.text"
msgid "Enables objects to be addressed at run-time as a string parameter using the object name."
msgstr "དངོས་པོ་ཚུ་རཱན་ཊའིམ་ཡིག་རྒྱུན་ཚད་བཟུང་སྦེ་དངོས་པོ་མིང་ལག་ལེན་འཐབ་དེ་ཁ་བྱང་བཏགས་ནི་ཨིན་མི་ལྕོགས་ཅན་བཟོཝ་ཨིན།"
@@ -28036,7 +27140,6 @@ msgstr "དངོས་པོ་ཚུ་རཱན་ཊའིམ་ཡིག་
msgctxt ""
"03103900.xhp\n"
"par_id3147573\n"
-"3\n"
"help.text"
msgid "For instance, the command:"
msgstr "དཔེར་ན་ བརྡ་བཀོད་དེ་:"
@@ -28045,7 +27148,6 @@ msgstr "དཔེར་ན་ བརྡ་བཀོད་དེ་:"
msgctxt ""
"03103900.xhp\n"
"par_id3145610\n"
-"4\n"
"help.text"
msgid "MyObj.Prop1.Command = 5"
msgstr "མའི་དངོས་པོ་ པོ་རོབ་ ༡ བརྡ་བཀོད་= ༥"
@@ -28054,7 +27156,6 @@ msgstr "མའི་དངོས་པོ་ པོ་རོབ་ ༡ བརྡ
msgctxt ""
"03103900.xhp\n"
"par_id3147265\n"
-"5\n"
"help.text"
msgid "corresponds to the following command block:"
msgstr "འོག་གི་བརྡ་བཀོད་བཀག་དམ་ལུ་ཆ་མཉམ་ཨིན:"
@@ -28063,7 +27164,6 @@ msgstr "འོག་གི་བརྡ་བཀོད་བཀག་དམ་ལ
msgctxt ""
"03103900.xhp\n"
"par_id3153896\n"
-"6\n"
"help.text"
msgid "Dim ObjVar as Object"
msgstr "མདངས་གྲིབ་དངོས་པོ་ཝར་ དངོས་པོ་བཟུམ་སྦེ།"
@@ -28072,7 +27172,6 @@ msgstr "མདངས་གྲིབ་དངོས་པོ་ཝར་ དང
msgctxt ""
"03103900.xhp\n"
"par_id3148664\n"
-"7\n"
"help.text"
msgid "Dim ObjProp as Object"
msgstr "མདངས་གྲིབ་དངོས་པོ་པོ་རོབ་དངོས་པོ་བཟུམ་སྦེ།"
@@ -28081,7 +27180,6 @@ msgstr "མདངས་གྲིབ་དངོས་པོ་པོ་རོབ
msgctxt ""
"03103900.xhp\n"
"par_id3150792\n"
-"8\n"
"help.text"
msgid "ObjName As String = \"MyObj\""
msgstr "དངོས་པོ་མིང་ཡིག་རྒྱུན་བཟུམ་སྦེ = \"MyObj\""
@@ -28090,7 +27188,6 @@ msgstr "དངོས་པོ་མིང་ཡིག་རྒྱུན་བཟ
msgctxt ""
"03103900.xhp\n"
"par_id3154365\n"
-"9\n"
"help.text"
msgid "ObjVar = FindObject( ObjName As String )"
msgstr "དངོས་པོ་ཝར་ = འཚོལ་དངོས་པོ( ObjName As String )"
@@ -28099,7 +27196,6 @@ msgstr "དངོས་པོ་ཝར་ = འཚོལ་དངོས་པོ
msgctxt ""
"03103900.xhp\n"
"par_id3148453\n"
-"10\n"
"help.text"
msgid "PropName As String = \"Prop1\""
msgstr "པོ་རོབ་མིང་ཡིག་རྒྱུན་བཟུམ་སྦེ་= \"Prop1\""
@@ -28108,7 +27204,6 @@ msgstr "པོ་རོབ་མིང་ཡིག་རྒྱུན་བཟུ
msgctxt ""
"03103900.xhp\n"
"par_id3150449\n"
-"11\n"
"help.text"
msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
msgstr "དངོས་པོ་པོ་རོབ = འཚོལ་རྒྱུ་དངོས་ དངོས་པོ( ObjVar, PropName As String )"
@@ -28117,7 +27212,6 @@ msgstr "དངོས་པོ་པོ་རོབ = འཚོལ་རྒྱུ
msgctxt ""
"03103900.xhp\n"
"par_id3159152\n"
-"12\n"
"help.text"
msgid "ObjProp.Command = 5"
msgstr "དངོས་པོ་པོ་རོབ་ བརྡ་བཀོད་ = ༥"
@@ -28126,7 +27220,6 @@ msgstr "དངོས་པོ་པོ་རོབ་ བརྡ་བཀོད
msgctxt ""
"03103900.xhp\n"
"par_id3156214\n"
-"13\n"
"help.text"
msgid "To dynamically create Names at run-time, use:"
msgstr "ནུས་ཅན་ཐོག་ལས་རཱན་ཊའིམ་ལུ་ལག་ལེན་འཐབ་ནི་མིང་གསར་བསྐྲུན་འབད་ནི་ཨིན་མི་:"
@@ -28135,7 +27228,6 @@ msgstr "ནུས་ཅན་ཐོག་ལས་རཱན་ཊའིམ་ལ
msgctxt ""
"03103900.xhp\n"
"par_id3154686\n"
-"14\n"
"help.text"
msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five names."
msgstr "\"TextEdit1\" to TextEdit5\" ལུང་ཐག་ནང་མིང་ལྔ་གསལ་བསྐྲུན་འབད་ནི་ལུ།"
@@ -28144,7 +27236,6 @@ msgstr "\"TextEdit1\" to TextEdit5\" ལུང་ཐག་ནང་མིང་
msgctxt ""
"03103900.xhp\n"
"par_id3150868\n"
-"15\n"
"help.text"
msgid "See also: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
msgstr "བལྟ་ཡང་ན: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">དངོས་པོ་འཚོལ་</link>"
@@ -28153,7 +27244,6 @@ msgstr "བལྟ་ཡང་ན: <link href=\"text/sbasic/shared/03103800.xhp\"
msgctxt ""
"03103900.xhp\n"
"hd_id3147287\n"
-"16\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -28162,7 +27252,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03103900.xhp\n"
"par_id3149560\n"
-"17\n"
"help.text"
msgid "FindPropertyObject( ObjVar, PropName As String )"
msgstr "དངོས་པོ་རྒྱུ་དངོས་འཚོལ( ObjVar, PropName As String )"
@@ -28171,7 +27260,6 @@ msgstr "དངོས་པོ་རྒྱུ་དངོས་འཚོལ( ObjV
msgctxt ""
"03103900.xhp\n"
"hd_id3150012\n"
-"18\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -28180,7 +27268,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03103900.xhp\n"
"par_id3109839\n"
-"19\n"
"help.text"
msgid "<emph>ObjVar:</emph> Object variable that you want to dynamically define at run-time."
msgstr "<emph>དངོས་པོ་ཝར་:</emph> དངོས་པོ་འགྱུར་ཅན་དེ་ཁྱོད་ཀྱིས་ནུས་ཅན་ཐོག་ལས་རཱན་ཊའིམ་ལུ་ངེས་འཛིན་འབད་ནི་ཨིན་མི།"
@@ -28189,7 +27276,6 @@ msgstr "<emph>དངོས་པོ་ཝར་:</emph> དངོས་པོ་
msgctxt ""
"03103900.xhp\n"
"par_id3153363\n"
-"20\n"
"help.text"
msgid "<emph>PropName:</emph> String that specifies the name of the property that you want to address at run-time."
msgstr "<emph>པོ་རོབ་མིང་:</emph> ཡིག་རྒྱུན་དེ་གིས་ཁྱོད་ཀྱིས་རཱན་ཊའིམ་ལུ་ཁ་བྱང་འབད་ནི་ཨིན་མི་རྒྱུ་དངོས་ཀྱི་མིང་དེགསལ་བཀོད་འབདཝ་ཨིན།"
@@ -28214,7 +27300,6 @@ msgstr "<bookmark_value>ཨའི་ཨེསི་བརླག་སྟོར
msgctxt ""
"03104000.xhp\n"
"hd_id3153527\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">ཨའི་ཨེསི་བརླག་སྟོར་ཞུགས་པའི་ལས་འགན [Runtime]</link>"
@@ -28223,7 +27308,6 @@ msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function
msgctxt ""
"03104000.xhp\n"
"par_id3153825\n"
-"2\n"
"help.text"
msgid "Tests if a function is called with an optional parameter."
msgstr "ལས་འགན་དང་གཅིག་ཁར་གདམ་ཁ་ཅད་ཚད་བཟུང་བོད་ཡོད་པ་ཅིན་ཞིབ་དཔྱད་འབདཝ་ཨིན།"
@@ -28232,7 +27316,6 @@ msgstr "ལས་འགན་དང་གཅིག་ཁར་གདམ་ཁ་
msgctxt ""
"03104000.xhp\n"
"par_id3150669\n"
-"3\n"
"help.text"
msgid "See also: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
msgstr "བལྟ་ཡང་: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">གདམ་ཁ་ཅན</link>"
@@ -28241,7 +27324,6 @@ msgstr "བལྟ་ཡང་: <link href=\"text/sbasic/shared/03104100.xhp\" na
msgctxt ""
"03104000.xhp\n"
"hd_id3145611\n"
-"4\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -28250,7 +27332,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03104000.xhp\n"
"par_id3154924\n"
-"5\n"
"help.text"
msgid "IsMissing( ArgumentName )"
msgstr "ཨའི་ཨེསི་བརླག་སྟོར་ཞུགས་པ( ArgumentName )"
@@ -28259,7 +27340,6 @@ msgstr "ཨའི་ཨེསི་བརླག་སྟོར་ཞུགས་
msgctxt ""
"03104000.xhp\n"
"hd_id3145069\n"
-"6\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -28268,7 +27348,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03104000.xhp\n"
"par_id3149457\n"
-"7\n"
"help.text"
msgid "<emph>ArgumentName:</emph> the name of an optional argument."
msgstr "<emph>སྒྲུབ་རྟགས་མིང་:</emph> གདམ་ཁ་ཅན་སྒྲུབ་རྟགས་ཀྱི་མིང་དེ།"
@@ -28277,7 +27356,6 @@ msgstr "<emph>སྒྲུབ་རྟགས་མིང་:</emph> གདམ་
msgctxt ""
"03104000.xhp\n"
"par_id3150398\n"
-"8\n"
"help.text"
msgid "If the IsMissing function is called by the ArgumentName, then True is returned."
msgstr "ཨའི་ཨེསི་བརླག་སྟོར་ལས་འགན་དེ་སྒྲིབ་རྟགས་མིང་གིས་བོད་ཡོད་པ་ཅིན་ དེ་ལས་བདེན་པ་སླར་ལོག་ཡོདཔ་ཨིན།"
@@ -28286,7 +27364,6 @@ msgstr "ཨའི་ཨེསི་བརླག་སྟོར་ལས་འག
msgctxt ""
"03104000.xhp\n"
"par_id3148798\n"
-"9\n"
"help.text"
msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
msgstr "བལྟ་ཡང་་ <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">དཔེར་བརྗོད་ཚུ་</link>."
@@ -28311,7 +27388,6 @@ msgstr "<bookmark_value>གདམ་ཁ་ཅན་གྱི་ལས་འག
msgctxt ""
"03104100.xhp\n"
"hd_id3149205\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement) [Runtime]\">Optional (in Function Statement) [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement) [Runtime]\">གདམ་ཁ་ཅན་ (in Function Statement) [Runtime]</link>"
@@ -28320,7 +27396,6 @@ msgstr "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Funct
msgctxt ""
"03104100.xhp\n"
"par_id3143267\n"
-"2\n"
"help.text"
msgid "Allows you to define parameters that are passed to a function as optional."
msgstr "ཁྱོད་ལུ་ལས་འགན་གདམ་ཁ་ཅན་བཟུམ་སྦེ་རྩིས་སྤྲོད་ཡོད་མི་ཚད་བཟུང་ཚུ་ངེས་འཛིན་འབད་བཅིགཔ་ཨིན།"
@@ -28329,7 +27404,6 @@ msgstr "ཁྱོད་ལུ་ལས་འགན་གདམ་ཁ་ཅན་
msgctxt ""
"03104100.xhp\n"
"par_id3155419\n"
-"3\n"
"help.text"
msgid "See also: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
msgstr "བལྟ་ཡང་: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">ཨའི་བརླག་སྟོར་ཞུགས་པ་</link>"
@@ -28338,7 +27412,6 @@ msgstr "བལྟ་ཡང་: <link href=\"text/sbasic/shared/03104000.xhp\" na
msgctxt ""
"03104100.xhp\n"
"hd_id3153824\n"
-"4\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -28347,7 +27420,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03104100.xhp\n"
"par_id3159157\n"
-"5\n"
"help.text"
msgid "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
msgstr "ལས་འགན་ མའི་ལས་འགན(Text1 As String, Optional Arg2, Optional Arg3)"
@@ -28356,7 +27428,6 @@ msgstr "ལས་འགན་ མའི་ལས་འགན(Text1 As String, Op
msgctxt ""
"03104100.xhp\n"
"hd_id3145610\n"
-"7\n"
"help.text"
msgid "Examples:"
msgstr "དཔེར་བརྗོད་ཚུ:"
@@ -28365,7 +27436,6 @@ msgstr "དཔེར་བརྗོད་ཚུ:"
msgctxt ""
"03104100.xhp\n"
"par_id3154347\n"
-"8\n"
"help.text"
msgid "Result = MyFunction(\"Here\", 1, \"There\") ' all arguments are passed."
msgstr "འགྲུབ་འབྲས་ = མའི་ལས་འགན་(\"Here\", 1, \"There\") ' སྒྲུབ་རྟགས་ཚུ་ཆ་མཉམ་རྩིས་སྤྲོད་ཡོདཔ་ཨིན།"
@@ -28374,7 +27444,6 @@ msgstr "འགྲུབ་འབྲས་ = མའི་ལས་འགན་(\"
msgctxt ""
"03104100.xhp\n"
"par_id3146795\n"
-"9\n"
"help.text"
msgid "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
msgstr "འགྲུབ་འབྲས = མའི་ལས་འགན་(\"Test\", ,1) ' སྒྲུབ་རྟགས་གཉིས་པམ་དེ་བརླག་སྟོར་ཞུགས་ཡོདཔ།"
@@ -28383,7 +27452,6 @@ msgstr "འགྲུབ་འབྲས = མའི་ལས་འགན་(\"Tes
msgctxt ""
"03104100.xhp\n"
"par_id3153897\n"
-"10\n"
"help.text"
msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
msgstr "བལྟ་ཡང་་ <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">དཔེར་བརྗོད་ཚུ་</link>."
@@ -28408,7 +27476,6 @@ msgstr "<bookmark_value>ཨེ་རེ་ལས་འགན</bookmark_value>"
msgctxt ""
"03104200.xhp\n"
"hd_id3150499\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function [Runtime]\">Array Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function [Runtime]\">ཨེ་རེ་ལས་འགན [Runtime]</link>"
@@ -28417,7 +27484,6 @@ msgstr "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function [Ru
msgctxt ""
"03104200.xhp\n"
"par_id3155555\n"
-"2\n"
"help.text"
msgid "Returns the type Variant with a data field."
msgstr "མི་མཐུན་དབྱེ་བ་གཅིག་ཁར་གནད་སྡུད་ས་སྒོ་སླར་ལོགཔ་ཨིན།"
@@ -28426,7 +27492,6 @@ msgstr "མི་མཐུན་དབྱེ་བ་གཅིག་ཁར་ག
msgctxt ""
"03104200.xhp\n"
"hd_id3148538\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -28435,7 +27500,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03104200.xhp\n"
"par_id3153126\n"
-"4\n"
"help.text"
msgid "Array ( Argument list)"
msgstr "ཨེ་རེ ( Argument list)"
@@ -28444,7 +27508,6 @@ msgstr "ཨེ་རེ ( Argument list)"
msgctxt ""
"03104200.xhp\n"
"par_id3155419\n"
-"5\n"
"help.text"
msgid "See also <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
msgstr "བལྟ་ཡང་ <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">མདངས་གྲིབ་ཨེ་རེ</link>"
@@ -28453,7 +27516,6 @@ msgstr "བལྟ་ཡང་ <link href=\"text/sbasic/shared/03104300.xhp\" nam
msgctxt ""
"03104200.xhp\n"
"hd_id3150669\n"
-"6\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -28462,7 +27524,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03104200.xhp\n"
"par_id3145609\n"
-"7\n"
"help.text"
msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
msgstr "<emph>སྒྲུབ་རྟགས་ཐོ་ཡིག་:</emph> ལྷོད་རྟགས་ཀྱིས་འབད་སོ་སོ་ཁ་ཕྱེལ་ཡོད་པའི་སྒྲུབ་རྟགས་ཚུ་གི་ཨང་གང་རུང་གི་ཐོ་ཡིག"
@@ -28471,7 +27532,6 @@ msgstr "<emph>སྒྲུབ་རྟགས་ཐོ་ཡིག་:</emph> ལ
msgctxt ""
"03104200.xhp\n"
"hd_id3156343\n"
-"8\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -28480,7 +27540,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03104200.xhp\n"
"par_id3153897\n"
-"9\n"
"help.text"
msgid "Dim A As Variant"
msgstr "མདངས་གྲིབ་ཨེ་མི་མཐུན་པ་བཟུམ་སྦེ།"
@@ -28489,7 +27548,6 @@ msgstr "མདངས་གྲིབ་ཨེ་མི་མཐུན་པ་བ
msgctxt ""
"03104200.xhp\n"
"par_id3153525\n"
-"10\n"
"help.text"
msgid "A = Array(\"Fred\",\"Tom\",\"Bill\")"
msgstr "ཨེ་ = ཨེ་རེ་(\"Fred\",\"Tom\",\"Bill\")"
@@ -28498,7 +27556,6 @@ msgstr "ཨེ་ = ཨེ་རེ་(\"Fred\",\"Tom\",\"Bill\")"
msgctxt ""
"03104200.xhp\n"
"par_id3150792\n"
-"11\n"
"help.text"
msgid "Msgbox A(2)"
msgstr "འཕྲིན་དོན་སྒྲོམ་ཨེ(2)"
@@ -28523,7 +27580,6 @@ msgstr "<bookmark_value>མདངས་གྲིབ་ཨེ་རེ་ལས
msgctxt ""
"03104300.xhp\n"
"hd_id3150616\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function [Runtime]\">DimArray Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function [Runtime]\">མདངས་གྲིབ་ཨེ་རེ་ལས་འགན [Runtime]</link>"
@@ -28532,7 +27588,6 @@ msgstr "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function
msgctxt ""
"03104300.xhp\n"
"par_id3153527\n"
-"2\n"
"help.text"
msgid "Returns a Variant array."
msgstr "ཨེ་རེ་མི་མཐུད་པ་ཅིག་སླར་ལོགཔ་ཨིན།"
@@ -28541,7 +27596,6 @@ msgstr "ཨེ་རེ་མི་མཐུད་པ་ཅིག་སླར་
msgctxt ""
"03104300.xhp\n"
"hd_id3149762\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -28550,7 +27604,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03104300.xhp\n"
"par_id3148473\n"
-"4\n"
"help.text"
msgid "DimArray ( Argument list)"
msgstr "མདངས་གྲིབ་ཨེ་རེ ( Argument list)"
@@ -28559,7 +27612,6 @@ msgstr "མདངས་གྲིབ་ཨེ་རེ ( Argument list)"
msgctxt ""
"03104300.xhp\n"
"par_id3154142\n"
-"5\n"
"help.text"
msgid "See also <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
msgstr "བལྟ་ཡང་ <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">ཨེ་རེ</link>"
@@ -28568,7 +27620,6 @@ msgstr "བལྟ་ཡང་ <link href=\"text/sbasic/shared/03104200.xhp\" nam
msgctxt ""
"03104300.xhp\n"
"par_id3156023\n"
-"6\n"
"help.text"
msgid "If no parameters are passed, an empty array is created (like Dim A() that is the same as a sequence of length 0 in Uno). If parameters are specified, a dimension is created for each parameter."
msgstr "ཚད་བཟུང་ཚུ་རྩིས་སྤྲོད་མ་འབད་བ་ཅིན་ཨེ་རེ་སྟོངམ་ཅིག་གསར་བསྐྲུན་འབད་ཡོདཔ་ཨིན (like Dim A() Uno)ནང་ ༠ གི་འབྱུང་རིམ་ཅོག་འཐདཔ། ཚད་བཟུང་ཚུ་ཆ་མཉམ་གསལ་བཀོད་འབད་ཡོད་པ་ཅིན་ ཚད་བཟུང་རེ་རེ་དོན་ལུ་མཚོན་གྲངས་ཅིག་གསར་བསྐྲུན་འབད་ཡོདཔ་ཨིན།"
@@ -28577,7 +27628,6 @@ msgstr "ཚད་བཟུང་ཚུ་རྩིས་སྤྲོད་མ་
msgctxt ""
"03104300.xhp\n"
"hd_id3154760\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -28586,7 +27636,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03104300.xhp\n"
"par_id3159414\n"
-"8\n"
"help.text"
msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
msgstr "<emph>སྒྲུབ་རྟགས་ཐོ་ཡིག་:</emph> ལྷོད་རྟགས་ཀྱིས་འབད་སོ་སོ་ཁ་ཕྱེལ་ཡོད་པའི་སྒྲུབ་རྟགས་ཚུ་གི་ཨང་གང་རུང་གི་ཐོ་ཡིག"
@@ -28595,7 +27644,6 @@ msgstr "<emph>སྒྲུབ་རྟགས་ཐོ་ཡིག་:</emph> ལ
msgctxt ""
"03104300.xhp\n"
"hd_id3150358\n"
-"9\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -28604,10 +27652,9 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03104300.xhp\n"
"par_id3154939\n"
-"10\n"
"help.text"
-msgid "DimArray( 2, 2, 4 ) is the same as DIM a( 2, 2, 4 )"
-msgstr "ཌི་ཨའི་ཨེམ་ཨེ་རེ་( ༢ ༢ ༤ ) དེ་( ༢ ༢ ༤ )ཌི་ཨའི་ཨེམ་ཅིག་དང་ཅོག་འཐདཔ་ཨིན།"
+msgid "a = DimArray( 2, 2, 4 ) is the same as DIM a( 2, 2, 4 )"
+msgstr ""
#: 03104400.xhp
msgctxt ""
@@ -28629,7 +27676,6 @@ msgstr "<bookmark_value>འདུག་ཡུ་ཨེན་ཨོ་ངོས
msgctxt ""
"03104400.xhp\n"
"hd_id3149987\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces Function [Runtime]\">HasUnoInterfaces Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces Function [Runtime]\">འདུག་ཡུ་ཨེན་ཨོ་ངོས་འདྲ་བ་ལས་འགན [Runtime]</link>"
@@ -28638,7 +27684,6 @@ msgstr "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces F
msgctxt ""
"03104400.xhp\n"
"par_id3151262\n"
-"2\n"
"help.text"
msgid "Tests if a Basic Uno object supports certain Uno interfaces."
msgstr "གཞི་རིམ་ཡུ་ཨེན་ཨོ་དངོས་པོ་གིས་ངེས་ཅན་ཡུ་ཨེན་ཨོ་ངོས་འདྲ་བ་ཚུ་རྒྱབ་སྐྱོར་འབདཝ་་ཨིན་ན་བརྟག་ཞིབ་འབདཝ་ཨིན།"
@@ -28647,7 +27692,6 @@ msgstr "གཞི་རིམ་ཡུ་ཨེན་ཨོ་དངོས་པ
msgctxt ""
"03104400.xhp\n"
"par_id3154232\n"
-"3\n"
"help.text"
msgid "Returns True, if <emph>all</emph> stated Uno interfaces are supported, otherwise False is returned."
msgstr "བདེན་པ་སླར་ལོགཔ་ཨིན་ <emph>ཡུ་ཨེན་ཨོ་ངོས་འདྲ་བ་</emph> ཆ་མཉམ་རྒྱབ་སྐྱོར་འབད་ཡོད་པ་ཅིན་དང་ དེ་མེན་པ་ཅིན་རྫུན་མ་སླར་ལོགཔ་ཨིན།"
@@ -28656,7 +27700,6 @@ msgstr "བདེན་པ་སླར་ལོགཔ་ཨིན་ <emph>ཡ
msgctxt ""
"03104400.xhp\n"
"hd_id3150040\n"
-"4\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -28665,7 +27708,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03104400.xhp\n"
"par_id3155555\n"
-"5\n"
"help.text"
msgid "HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
msgstr "འདུག་ཡུ་ཨེན་ཨོ་་ངོས་འདྲ་བ་ཚུ་( ཨོ་བརྟག་ཞིབ་ ཡུ་ཨེན་ཨོ་ངོས་འདྲ་བ་ མིང་ ༡ [, ཡུ་ཨེན་ཨོ་་ངོས་འདྲ་བ་མིང་ ༢ ...])"
@@ -28674,7 +27716,6 @@ msgstr "འདུག་ཡུ་ཨེན་ཨོ་་ངོས་འདྲ་
msgctxt ""
"03104400.xhp\n"
"hd_id3153345\n"
-"6\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -28683,7 +27724,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03104400.xhp\n"
"par_id3148538\n"
-"7\n"
"help.text"
msgid "Bool"
msgstr "བུལ།"
@@ -28692,7 +27732,6 @@ msgstr "བུལ།"
msgctxt ""
"03104400.xhp\n"
"hd_id3159157\n"
-"8\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -28701,7 +27740,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03104400.xhp\n"
"par_id3155419\n"
-"9\n"
"help.text"
msgid "<emph>oTest:</emph> the Basic Uno object that you want to test."
msgstr "<emph>ཨོ་ཚིག་ཡིག:</emph> གཞི་རིམ་ཡུ་ཨེན་ཨོ་དངོས་པོ་ཁྱོད་ཀྱིས་བརྟག་ཞིབ་འབད་ནི་ཨིན་མི།"
@@ -28710,7 +27748,6 @@ msgstr "<emph>ཨོ་ཚིག་ཡིག:</emph> གཞི་རིམ་ཡ
msgctxt ""
"03104400.xhp\n"
"par_id3149236\n"
-"10\n"
"help.text"
msgid "<emph>Uno-Interface-Name:</emph> list of Uno interface names."
msgstr "<emph>ཡུ་ཨེན་ཨོ་ ངོས་འདྲ་བ་ མིང་:</emph> ཡུ་ཨེན་ཨོ་ ངོས་འདྲ་བ་མིང་ཚུ་གི་ཐོ་ཡིག"
@@ -28719,7 +27756,6 @@ msgstr "<emph>ཡུ་ཨེན་ཨོ་ ངོས་འདྲ་བ་ མ
msgctxt ""
"03104400.xhp\n"
"hd_id3147574\n"
-"11\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -28728,7 +27764,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03104400.xhp\n"
"par_id3149580\n"
-"12\n"
"help.text"
msgid "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
msgstr "བི་འདུག = འདུག་ཡུ་ཨེན་ཨོ་ངོས་འདྲ་བ་ཚུ་( ཨོ་བརྟག་ཞིབ \"com.sun.star.beans.XIntrospection\" )"
@@ -28881,7 +27916,6 @@ msgstr "<bookmark_value>ཆ་མཉམ་པ་ཡུ་ཨེན་ཨོ་
msgctxt ""
"03104600.xhp\n"
"hd_id3149205\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function [Runtime]\">EqualUnoObjects Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function [Runtime]\">ཆ་མཉམ་པ་ཡུ་ཨེན་ཨོ་དངོས་པོ་ཚུའི་ལས་འགན [Runtime]</link>"
@@ -28890,7 +27924,6 @@ msgstr "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Fu
msgctxt ""
"03104600.xhp\n"
"par_id3145090\n"
-"2\n"
"help.text"
msgid "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
msgstr "གསལ་བཀོད་འབད་ཡོད་མི་གཞི་རིམ་ཡུ་ཨེན་ཨོ་དངོས་པོ་གཉིས་ ཡུ་ཨེན་ཨོ་དངོས་པོ་དུས་སྐབས་ཅོག་འཐདཔ་ཁྱད་ཚབ་འབད་མི་ཨིན་པ་ཅིན་བདེན་པ་སླར་ལོགཔ་ཨིན།"
@@ -28899,7 +27932,6 @@ msgstr "གསལ་བཀོད་འབད་ཡོད་མི་གཞི་
msgctxt ""
"03104600.xhp\n"
"hd_id3148538\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -28908,7 +27940,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03104600.xhp\n"
"par_id3150669\n"
-"4\n"
"help.text"
msgid "EqualUnoObjects( oObj1, oObj2 )"
msgstr "ཆ་མཉམ་པ་ཡུ་ཨེན་ཨོ་དངོས་པོ་ཚུ་( oObj1, oObj2 )"
@@ -28917,7 +27948,6 @@ msgstr "ཆ་མཉམ་པ་ཡུ་ཨེན་ཨོ་དངོས་པ
msgctxt ""
"03104600.xhp\n"
"hd_id3150984\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -28926,7 +27956,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03104600.xhp\n"
"par_id3154285\n"
-"6\n"
"help.text"
msgid "Bool"
msgstr "བུལ།"
@@ -28935,7 +27964,6 @@ msgstr "བུལ།"
msgctxt ""
"03104600.xhp\n"
"hd_id3145315\n"
-"7\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -28944,7 +27972,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03104600.xhp\n"
"par_id3156024\n"
-"8\n"
"help.text"
msgid "// Copy of objects -> same instance"
msgstr "// Copy of objects -> དཔེར་ན་ཅོག་འཐདཔ།"
@@ -28953,7 +27980,6 @@ msgstr "// Copy of objects -> དཔེར་ན་ཅོག་འཐདཔ།"
msgctxt ""
"03104600.xhp\n"
"par_id3154923\n"
-"9\n"
"help.text"
msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
msgstr "ཨོ་བསམ་དཔྱད་ = གསར་བསྐྲུན་ཡུ་ཨེན་ཨོ་ཞབསཏོག་( \"com.sun.star.beans.Introspection\" )"
@@ -28962,7 +27988,6 @@ msgstr "ཨོ་བསམ་དཔྱད་ = གསར་བསྐྲུན་
msgctxt ""
"03104600.xhp\n"
"par_id3147559\n"
-"10\n"
"help.text"
msgid "oIntro2 = oIntrospection"
msgstr "ཨོ་བསམ་དཔྱད་ ༢ =བསམ་དཔྱད།"
@@ -28971,7 +27996,6 @@ msgstr "ཨོ་བསམ་དཔྱད་ ༢ =བསམ་དཔྱད།"
msgctxt ""
"03104600.xhp\n"
"par_id3150541\n"
-"11\n"
"help.text"
msgid "print EqualUnoObjects( oIntrospection, oIntro2 )"
msgstr "ཆ་མཉམ་པ་ཡུ་ཨེན་ཨོ་དངོས་པོ་ཚུ་དཔར་བསྐྲུན་( oIntrospection, oIntro2 )"
@@ -28980,7 +28004,6 @@ msgstr "ཆ་མཉམ་པ་ཡུ་ཨེན་ཨོ་དངོས་པ
msgctxt ""
"03104600.xhp\n"
"par_id3153525\n"
-"12\n"
"help.text"
msgid "// Copy of structs as value -> new instance"
msgstr "// Copy of structs as value -> དཔེར་ན་གསརཔ།"
@@ -28989,7 +28012,6 @@ msgstr "// Copy of structs as value -> དཔེར་ན་གསརཔ།"
msgctxt ""
"03104600.xhp\n"
"par_id3154366\n"
-"13\n"
"help.text"
msgid "Dim Struct1 as new com.sun.star.beans.Property"
msgstr "ཌི་ཨའི་ཨེམ་གཞི་བཀོད་ ༡ གསརཔ་ com.sun.star.beans.རྒྱུ་དངོས་པོ་སྦེ།"
@@ -28998,7 +28020,6 @@ msgstr "ཌི་ཨའི་ཨེམ་གཞི་བཀོད་ ༡ གས
msgctxt ""
"03104600.xhp\n"
"par_id3154348\n"
-"14\n"
"help.text"
msgid "Struct2 = Struct1"
msgstr "གཞི་བཀོད་ ༢ = གཞི་བཀོད་ ༡།"
@@ -29007,7 +28028,6 @@ msgstr "གཞི་བཀོད་ ༢ = གཞི་བཀོད་ ༡།"
msgctxt ""
"03104600.xhp\n"
"par_id3154125\n"
-"15\n"
"help.text"
msgid "print EqualUnoObjects( Struct1, Struct2 )"
msgstr "ཆ་མཉམ་པ་ཡུ་ཨེན་ཨོ་དངོས་པོ་ཚུ་དཔར་བསྐྲུན་( Struct1, Struct2 )"
@@ -29088,7 +28108,6 @@ msgstr "ག་བསྡུར་བཀོལ་སྤྱོདཔ་ཚུ།"
msgctxt ""
"03110000.xhp\n"
"hd_id3155555\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">ག་བསྡུར་བཀོལ་སྤྱོདཔ་ཚུ</link>"
@@ -29097,7 +28116,6 @@ msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operato
msgctxt ""
"03110000.xhp\n"
"par_id3153528\n"
-"2\n"
"help.text"
msgid "The available comparison operators are described here."
msgstr "ཐོབ་ཚུགས་པའི་ག་བསྡུར་བཀོལ་སྤྱོད་པ་ཚུ་ན་ལུ་འགྲེལ་བཤད་རྐྱབས་ཡོདཔ་ཨིན།"
@@ -29111,7 +28129,6 @@ msgid "Comparison Operators [Runtime]"
msgstr "ག་བསྡུར་བཀོལ་སྤྱོདཔ་ཚུ [Runtime]"
#: 03110100.xhp
-#, fuzzy
msgctxt ""
"03110100.xhp\n"
"bm_id3150682\n"
@@ -29259,7 +28276,6 @@ msgstr "ཡིག་རྒྱུན་ཚུ།"
msgctxt ""
"03120000.xhp\n"
"hd_id3156153\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">Strings</link>"
msgstr "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">ཡིག་རྒྱུན་ཚུ</link>"
@@ -29268,7 +28284,6 @@ msgstr "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">ཡི
msgctxt ""
"03120000.xhp\n"
"par_id3159176\n"
-"2\n"
"help.text"
msgid "The following functions and statements validate and return strings."
msgstr "འོག་གི་ལས་འགན་ཚུ་དང་གསལ་བཤད་ཚུ་དུས་མཐུན་དང་ཡིག་རྒྱུན་ཚུ་སླར་ལོགཔ་ཨིན།"
@@ -29277,7 +28292,6 @@ msgstr "འོག་གི་ལས་འགན་ཚུ་དང་གསལ་
msgctxt ""
"03120000.xhp\n"
"par_id3154285\n"
-"3\n"
"help.text"
msgid "You can use strings to edit text within $[officename] Basic programs."
msgstr "ཁྱོད་ཀྱིས་ཡིག་རྒྱུན་ཚུ་ཚིག་ཡིག་$[officename]གཞི་རིམ་ལས་རིམ་ཚུའི་ནང་འཁོད་ཞུན་དག་འབད་ནི་ལུ་ལག་ལེན་འཐབ་བཏུབ།"
@@ -29294,7 +28308,6 @@ msgstr "ཨེ་ཨེསི་སི་ཨའི་ཨའི་/ཨེ་ཨ
msgctxt ""
"03120100.xhp\n"
"hd_id3147443\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI Conversion in Strings\">ASCII/ANSI Conversion in Strings</link>"
msgstr "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI Conversion in Strings\">ཨེ་ཨེསི་སི་ཨའི་ཨའི་/ཨེ་ཨེན་ཨེསི་ཨའི་ ཡིག་རྒྱུན་ནང་གཞི་བསྒྱུར་འབད</link>"
@@ -29303,7 +28316,6 @@ msgstr "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI Convers
msgctxt ""
"03120100.xhp\n"
"par_id3159201\n"
-"2\n"
"help.text"
msgid "The following functions convert strings to and from ASCII or ANSI code."
msgstr "འོག་གི་ལས་འགན་ཚུ་གིས་ཡིག་རྒྱུན་ལུ་དང་ཨེ་ཨེསི་སི་ཨའི་ཨའི་ཡང་ན་ཨེ་ཨེན་ཨེསི་ཨའི་ཨང་རྟགས་ལས་གཞི་བསྒྱུར་འབདཝ་ཨིན།"
@@ -29776,7 +28788,6 @@ msgstr "<bookmark_value>སི་བཱའིཊི་ལས་འགན</bookma
msgctxt ""
"03120105.xhp\n"
"hd_id3156027\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function [Runtime]\">CByte Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function [Runtime]\">སི་བཱའིཊི་ལས་འགན [Runtime]</link>"
@@ -29785,7 +28796,6 @@ msgstr "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function [Ru
msgctxt ""
"03120105.xhp\n"
"par_id3143267\n"
-"2\n"
"help.text"
msgid "Converts a string or a numeric expression to the type Byte."
msgstr "ཡིག་རྒྱུན་ཡང་ན་ཨང་གྲངས་ཀྱི་གསལ་བརྗོད་དེ་བཱའིཊི་དབྱེ་བ་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན།"
@@ -29794,7 +28804,6 @@ msgstr "ཡིག་རྒྱུན་ཡང་ན་ཨང་གྲངས་ཀ
msgctxt ""
"03120105.xhp\n"
"hd_id3149811\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -29803,7 +28812,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03120105.xhp\n"
"par_id3147573\n"
-"4\n"
"help.text"
msgid "Cbyte( expression )"
msgstr "སི་བཱའིཊི( expression )"
@@ -29812,7 +28820,6 @@ msgstr "སི་བཱའིཊི( expression )"
msgctxt ""
"03120105.xhp\n"
"hd_id3145315\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -29821,7 +28828,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03120105.xhp\n"
"par_id3148473\n"
-"6\n"
"help.text"
msgid "Byte"
msgstr "བཱའིཊི།"
@@ -29830,7 +28836,6 @@ msgstr "བཱའིཊི།"
msgctxt ""
"03120105.xhp\n"
"hd_id3147530\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -29839,7 +28844,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03120105.xhp\n"
"par_id3145068\n"
-"8\n"
"help.text"
msgid "<emph>Expression:</emph> A string or a numeric expression."
msgstr "<emph>གསལ་བརྗོད:</emph> ཡིག་རྒྱུན་ཅིག་ཡང་ན་ཨང་གྲངས་ཀྱི་གསལ་བརྗོད།"
@@ -29856,7 +28860,6 @@ msgstr "ནང་དོན་ཚུ་ཡང་བསྐྱར་འབད་ད
msgctxt ""
"03120200.xhp\n"
"hd_id3152363\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120200.xhp\" name=\"Repeating Contents\">Repeating Contents</link>"
msgstr "<link href=\"text/sbasic/shared/03120200.xhp\" name=\"Repeating Contents\">ནང་དོན་ཚུ་ཡང་བསྐྱར་འབད་དོ</link>"
@@ -29865,7 +28868,6 @@ msgstr "<link href=\"text/sbasic/shared/03120200.xhp\" name=\"Repeating Contents
msgctxt ""
"03120200.xhp\n"
"par_id3150178\n"
-"2\n"
"help.text"
msgid "The following functions repeat the contents of strings."
msgstr "འོག་གི་ལས་འགན་ཚི་གིས་ཡིག་རྒྱུན་ཚི་གི་ནང་དོན་ཚུ་བསྐྱར་ལོག་འབདཝ་ཨིན།"
@@ -30090,7 +29092,6 @@ msgstr ""
msgctxt ""
"03120300.xhp\n"
"hd_id3153894\n"
-"1\n"
"help.text"
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>"
@@ -30099,7 +29100,6 @@ msgstr "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Editing String Con
msgctxt ""
"03120300.xhp\n"
"par_id3149178\n"
-"2\n"
"help.text"
msgid "The following functions edit, format, and align the contents of strings. Use the & operator to concatenate strings."
msgstr "འོག་གི་ལས་འགན་ཚི་གིས་ཞུན་དག་ རྩ་སྒྲིག་འབད་ནི་དང་ཡིག་རྒྱུན་ཚུ་གི་ནང་དོན་ཚུ་འཕྲངམ་ཨིན། ཡིག་རྒྱུན་ རྒྱུན་མཐུད་འབད་ནི་ལུ་བཀོལ་སྤྱོད་པ་དེ་ལག་ལེན་འཐབ། (&o)"
@@ -30905,7 +29905,6 @@ msgid "Mid Function, Mid Statement [Runtime]"
msgstr "མིཌི་ལས་འགན མིཌི་གསལ་བཤད [Runtime]"
#: 03120306.xhp
-#, fuzzy
msgctxt ""
"03120306.xhp\n"
"bm_id3143268\n"
@@ -31613,7 +30612,6 @@ msgstr "<bookmark_value>ཡུ་ཨར་ཨེལ་ལས་འགན་ལ
msgctxt ""
"03120312.xhp\n"
"hd_id3152801\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL Function [Runtime]\">ConvertToURL Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL Function [Runtime]\">ཡུ་ཨར་ཨེལ་ལས་འགན་ལུགཞི་བསྒྱུར་འབད་ [Runtime]</link>"
@@ -31622,7 +30620,6 @@ msgstr "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL Funct
msgctxt ""
"03120312.xhp\n"
"par_id3148538\n"
-"2\n"
"help.text"
msgid "Converts a system file name to a file URL."
msgstr "རིམ་ལུགས་ཡིག་སྣོད་མིང་དེ་ཡུ་ཨར་ཨེལ་ཡིག་སྣོད་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན།"
@@ -31631,7 +30628,6 @@ msgstr "རིམ་ལུགས་ཡིག་སྣོད་མིང་དེ
msgctxt ""
"03120312.xhp\n"
"hd_id3150669\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -31640,7 +30636,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03120312.xhp\n"
"par_id3154285\n"
-"4\n"
"help.text"
msgid "ConvertToURL(filename)"
msgstr "ཡུ་ཨར་ཨེལ་ལུ་གཞི་བསྒྱུར་འབད(filename)"
@@ -31649,7 +30644,6 @@ msgstr "ཡུ་ཨར་ཨེལ་ལུ་གཞི་བསྒྱུར་
msgctxt ""
"03120312.xhp\n"
"hd_id3150984\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -31658,7 +30652,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03120312.xhp\n"
"par_id3147530\n"
-"6\n"
"help.text"
msgid "String"
msgstr "ཡིག་རྒྱུན།"
@@ -31667,7 +30660,6 @@ msgstr "ཡིག་རྒྱུན།"
msgctxt ""
"03120312.xhp\n"
"hd_id3148550\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -31676,7 +30668,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03120312.xhp\n"
"par_id3148947\n"
-"8\n"
"help.text"
msgid "<emph>Filename:</emph> A file name as string."
msgstr "<emph>ཡིག་སྣོད་མིང:</emph> ཡིག་སྣོད་གཅིག་མིང་ཡིག་རྒྱུན་སྦེ།"
@@ -31685,7 +30676,6 @@ msgstr "<emph>ཡིག་སྣོད་མིང:</emph> ཡིག་སྣོ
msgctxt ""
"03120312.xhp\n"
"hd_id3153361\n"
-"9\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -31694,7 +30684,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03120312.xhp\n"
"par_id3150792\n"
-"10\n"
"help.text"
msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
msgstr "ཡིག་སྣོད་རིམ་ལུགས$ = \"c:\\folder\\mytext.txt\""
@@ -31703,7 +30692,6 @@ msgstr "ཡིག་སྣོད་རིམ་ལུགས$ = \"c:\\folder\\myt
msgctxt ""
"03120312.xhp\n"
"par_id3154365\n"
-"11\n"
"help.text"
msgid "url$ = ConvertToURL( systemFile$ )"
msgstr ")"
@@ -31712,7 +30700,6 @@ msgstr ")"
msgctxt ""
"03120312.xhp\n"
"par_id3151042\n"
-"12\n"
"help.text"
msgid "print url$"
msgstr "དཔར་བསྐྲུན་ཡུ་ཨར་ཨེལ $"
@@ -31721,7 +30708,6 @@ msgstr "དཔར་བསྐྲུན་ཡུ་ཨར་ཨེལ $"
msgctxt ""
"03120312.xhp\n"
"par_id3154909\n"
-"13\n"
"help.text"
msgid "systemFileAgain$ = ConvertFromURL( url$ )"
msgstr "རིམ་ལུགས་ཡིག་ཕྲང་$ = ཡུ་ཨར་ཨེལ(ཡུ་ཨར་ཨེལ་$)ལས་གཞི་བསྒྱུར་འབད།"
@@ -31730,7 +30716,6 @@ msgstr "རིམ་ལུགས་ཡིག་ཕྲང་$ = ཡུ་ཨར
msgctxt ""
"03120312.xhp\n"
"par_id3144762\n"
-"14\n"
"help.text"
msgid "print systemFileAgain$"
msgstr "དཔར་བསྐྲུན་རིམ་ལུགས་ཡིག་སྣོད་ཕྲང་$"
@@ -31755,7 +30740,6 @@ msgstr "<bookmark_value>ཡུ་ཨར་ཨེལ་ལས་འགན་ལ
msgctxt ""
"03120313.xhp\n"
"hd_id3153894\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Function [Runtime]\">ConvertFromURL Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Function [Runtime]\">ཡུ་ཨར་ཨེལ་ལས་འགན་ལས་གཞི་བསྒྱུར་འབད [Runtime]</link>"
@@ -31764,7 +30748,6 @@ msgstr "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Fun
msgctxt ""
"03120313.xhp\n"
"par_id3147226\n"
-"2\n"
"help.text"
msgid "Converts a file URL to a system file name."
msgstr "ཡིག་སྣོད་ཡུ་ཨར་ཨེལ་དེ་རིམ་ལུགས་ཡིག་སྣོད་མིང་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན།"
@@ -31773,7 +30756,6 @@ msgstr "ཡིག་སྣོད་ཡུ་ཨར་ཨེལ་དེ་རི
msgctxt ""
"03120313.xhp\n"
"hd_id3143267\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -31782,7 +30764,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03120313.xhp\n"
"par_id3154142\n"
-"4\n"
"help.text"
msgid "ConvertFromURL(filename)"
msgstr "ཡུ་ཨར་ཨེལ་ལས་གཞི་བསྒྱུར་འབད(filename)"
@@ -31791,7 +30772,6 @@ msgstr "ཡུ་ཨར་ཨེལ་ལས་གཞི་བསྒྱུར་
msgctxt ""
"03120313.xhp\n"
"hd_id3159157\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -31800,7 +30780,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03120313.xhp\n"
"par_id3150669\n"
-"6\n"
"help.text"
msgid "String"
msgstr "ཡིག་རྒྱུན།"
@@ -31809,7 +30788,6 @@ msgstr "ཡིག་རྒྱུན།"
msgctxt ""
"03120313.xhp\n"
"hd_id3143270\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -31818,7 +30796,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03120313.xhp\n"
"par_id3156023\n"
-"8\n"
"help.text"
msgid "<emph>Filename:</emph> A file name as a string."
msgstr "<emph>ཡིག་སྣོད་མིང:</emph> ཡིག་སྣོད་མིང་ཡིག་རྒྱུན་བཟུམ་སྦེ།"
@@ -31827,7 +30804,6 @@ msgstr "<emph>ཡིག་སྣོད་མིང:</emph> ཡིག་སྣོ
msgctxt ""
"03120313.xhp\n"
"hd_id3154760\n"
-"9\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -31836,7 +30812,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03120313.xhp\n"
"par_id3148664\n"
-"10\n"
"help.text"
msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
msgstr "ཡིག་སྣོད་རིམ་ལུགས$ = \"c:\\folder\\mytext.txt\""
@@ -31845,7 +30820,6 @@ msgstr "ཡིག་སྣོད་རིམ་ལུགས$ = \"c:\\folder\\myt
msgctxt ""
"03120313.xhp\n"
"par_id3150541\n"
-"11\n"
"help.text"
msgid "url$ = ConvertToURL( systemFile$ )"
msgstr ")"
@@ -31854,7 +30828,6 @@ msgstr ")"
msgctxt ""
"03120313.xhp\n"
"par_id3150792\n"
-"12\n"
"help.text"
msgid "print url$"
msgstr "དཔར་བསྐྲུན་ཡུ་ཨར་ཨེལ $"
@@ -31863,7 +30836,6 @@ msgstr "དཔར་བསྐྲུན་ཡུ་ཨར་ཨེལ $"
msgctxt ""
"03120313.xhp\n"
"par_id3154367\n"
-"13\n"
"help.text"
msgid "systemFileAgain$ = ConvertFromURL( url$ )"
msgstr "རིམ་ལུགས་ཡིག་ཕྲང་$ = ཡུ་ཨར་ཨེལ(ཡུ་ཨར་ཨེལ་$)ལས་གཞི་བསྒྱུར་འབད།"
@@ -31872,7 +30844,6 @@ msgstr "རིམ་ལུགས་ཡིག་ཕྲང་$ = ཡུ་ཨར
msgctxt ""
"03120313.xhp\n"
"par_id3153194\n"
-"14\n"
"help.text"
msgid "print systemFileAgain$"
msgstr "དཔར་བསྐྲུན་རིམ་ལུགས་ཡིག་སྣོད་ཕྲང་$"
@@ -32001,7 +30972,6 @@ msgstr "<bookmark_value>མཐུད་ལས་འགན</bookmark_value>"
msgctxt ""
"03120315.xhp\n"
"hd_id3149416\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join Function [Runtime]\">Join Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join Function [Runtime]\">མཐུད་ལས་འགན [Runtime]</link>"
@@ -32010,7 +30980,6 @@ msgstr "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join Function [Run
msgctxt ""
"03120315.xhp\n"
"par_id3149670\n"
-"2\n"
"help.text"
msgid "Returns a string from a number of substrings in a string array."
msgstr "ཡིག་རྒྱུན་ཨེ་རེ་ནང་ཡིག་རྒྱུན་འོག་མ་ཚུ་གི་ཨང་ལས་ཡིག་རྒྱུན་ཅིག་སླར་ལོགཔ་ཨིན།"
@@ -32019,7 +30988,6 @@ msgstr "ཡིག་རྒྱུན་ཨེ་རེ་ནང་ཡིག་ར
msgctxt ""
"03120315.xhp\n"
"hd_id3159414\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -32028,7 +30996,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03120315.xhp\n"
"par_id3156344\n"
-"4\n"
"help.text"
msgid "Join (Text As String Array, delimiter)"
msgstr "མཐུད(ཚིག་ཡིག་ ཡིག་རྒྱུན་ཨེ་རེ་ དབྱེ་རྟགས་བཟུམ་སྦེ)"
@@ -32037,7 +31004,6 @@ msgstr "མཐུད(ཚིག་ཡིག་ ཡིག་རྒྱུན་ཨ
msgctxt ""
"03120315.xhp\n"
"hd_id3150400\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -32046,7 +31012,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03120315.xhp\n"
"par_id3150359\n"
-"6\n"
"help.text"
msgid "String"
msgstr "ཡིག་རྒྱུན།"
@@ -32055,7 +31020,6 @@ msgstr "ཡིག་རྒྱུན།"
msgctxt ""
"03120315.xhp\n"
"hd_id3148798\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -32064,7 +31028,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03120315.xhp\n"
"par_id3145171\n"
-"8\n"
"help.text"
msgid "<emph>Text:</emph> A string array."
msgstr "<emph>ཚིག་ཡིག:</emph> ཡིག་རྒྱུན་ཨེ་རེ་གཅིག"
@@ -32073,7 +31036,6 @@ msgstr "<emph>ཚིག་ཡིག:</emph> ཡིག་རྒྱུན་ཨེ
msgctxt ""
"03120315.xhp\n"
"par_id3154908\n"
-"9\n"
"help.text"
msgid "<emph>delimiter (optional):</emph> A string character that is used to separate the substrings in the resulting string. The default delimiter is the space character. If delimiter is a string of length zero \"\", the substrings are joined without separator."
msgstr "<emph>དབྱེ་རྟགས་ (optional):</emph> ཡིག་རྒྱུན་ཡིག་འབྲུ་དེ་ཡིག་རྒྱུན་འོག་མ་ཚུ་ཡིག་རྒྱུན་འབྱུང་མི་ནང་ལས་སོ་སོ་ཁ་འཕྱེལ་འཕྱེལ་ནི་ལུ་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན། སྔོན་སྒྲིག་དབྱེ་རྟགས་དེ་བར་སྟོང་ཡིག་འབྲུ་ཨིན། དབྱེ་རྟགས་དེ་རིང་ཚད་ཀླད་ཀོར་གྱི་ཡིག་རྒྱུན་ཨིན་པ་ཅིན་ \"\" ཡིག་རྒྱུན་འོག་མ་ཚུ་སོ་སོ་ཁ་ཕྱེལ་མི་མེདཔ་སྦེ་མཐུདཔ་ཡོདཔ་ཨིན།"
@@ -32082,7 +31044,6 @@ msgstr "<emph>དབྱེ་རྟགས་ (optional):</emph> ཡིག་ར
msgctxt ""
"03120315.xhp\n"
"hd_id3154218\n"
-"10\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -32099,7 +31060,6 @@ msgstr "་ཡིག་རྒྱུན་གྱི་རིང་ཚད་ཞུ
msgctxt ""
"03120400.xhp\n"
"hd_id3155150\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Length\">Editing String Length</link>"
msgstr "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Length\">ཡིག་རྒྱུན་རིང་ཚད་ཞུན་དག་འབད་དོ</link>"
@@ -32108,7 +31068,6 @@ msgstr "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Len
msgctxt ""
"03120400.xhp\n"
"par_id3159201\n"
-"2\n"
"help.text"
msgid "The following functions determine string lengths and compare strings."
msgstr "འོག་གི་ལས་འགན་ཚུ་གིས་ཡིག་རྒྱུན་རིང་ཚད་ཚུ་དང་ཡིག་རྒྱུན་ཚུ་ག་བསྡུར་གཏན་འབེབས་བཟོཝ་ཨིན།"
@@ -32277,7 +31236,6 @@ msgstr "<bookmark_value>ལིན་ལས་འགན</bookmark_value>"
msgctxt ""
"03120402.xhp\n"
"hd_id3154136\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len Function [Runtime]\">Len Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len Function [Runtime]\">ལིན་ལས་འགན [Runtime]</link>"
@@ -32286,7 +31244,6 @@ msgstr "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len Function [Runt
msgctxt ""
"03120402.xhp\n"
"par_id3147576\n"
-"2\n"
"help.text"
msgid "Returns the number of characters in a string, or the number of bytes that are required to store a variable."
msgstr "ཡིག་རྒྱུན་ནང་ཡིག་འབྲུ་ཚུ་གི་ཨང་་ཡང་ན་ འགྱུར་ཅན་གསོག་འཇོག་ལུ་དགོས་མཁོ་ཡོད་པའི་བཱའིཊིསི་གི་ཨང་དེ་སླར་ལོགཔ་ཨིན།"
@@ -32295,7 +31252,6 @@ msgstr "ཡིག་རྒྱུན་ནང་ཡིག་འབྲུ་ཚུ
msgctxt ""
"03120402.xhp\n"
"hd_id3159177\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -32304,7 +31260,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03120402.xhp\n"
"par_id3150669\n"
-"4\n"
"help.text"
msgid "Len (Text As String)"
msgstr "ལིན་(ཚིག་ཡིག་ ཡིག་རྒྱུན་བཟུམ་སྦེ)"
@@ -32313,7 +31268,6 @@ msgstr "ལིན་(ཚིག་ཡིག་ ཡིག་རྒྱུན་བ
msgctxt ""
"03120402.xhp\n"
"hd_id3148473\n"
-"5\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -32322,7 +31276,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03120402.xhp\n"
"par_id3143270\n"
-"6\n"
"help.text"
msgid "Long"
msgstr "རིངམོ།"
@@ -32331,7 +31284,6 @@ msgstr "རིངམོ།"
msgctxt ""
"03120402.xhp\n"
"hd_id3147531\n"
-"7\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -32340,7 +31292,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03120402.xhp\n"
"par_id3147265\n"
-"8\n"
"help.text"
msgid "<emph>Text:</emph> Any string expression or a variable of another type."
msgstr "<emph>ཚིག་ཡིག:</emph> ཡིག་རྒྱུན་གསལ་བརྗོད་གང་རུང་ཡང་ན་འགྱུར་ཅན་གྱི་དབྱེ་བ་གཞན།"
@@ -32349,7 +31300,6 @@ msgstr "<emph>ཚིག་ཡིག:</emph> ཡིག་རྒྱུན་གས
msgctxt ""
"03120402.xhp\n"
"hd_id3153360\n"
-"9\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -32358,7 +31308,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03120402.xhp\n"
"par_id3156214\n"
-"13\n"
"help.text"
msgid "MsgBox Len(sText) REM Returns 9"
msgstr "འཕྲིན་དོན་སྒྲོམ་ལིན (ཨེསི་ཚིག་ཡིག)ཨར་ཨི་ཨེམ་ སླར་ལོགཔ ༩"
@@ -32511,7 +31460,6 @@ msgstr "གཞན་བརྡ་བཀོད་ཚུ།"
msgctxt ""
"03130000.xhp\n"
"hd_id3156027\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">Other Commands</link>"
msgstr "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">གཞན་བརད་བཀོད་ཚུ</link>"
@@ -32520,7 +31468,6 @@ msgstr "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">
msgctxt ""
"03130000.xhp\n"
"par_id3153312\n"
-"2\n"
"help.text"
msgid "This is a list of the functions and the statements that are not included in the other categories."
msgstr "འ་ནི་ཐོ་ཡིག་དེ་ལས་འགན་ཚུ་དང་གསལ་བཤད་ཚུ་གཞན་དབྱི་རིམ་ཚུའི་ནང་གྲངས་སུ་མ་བཙུགས་ཚུ་ཨིན།"
@@ -32545,7 +31492,6 @@ msgstr "<bookmark_value>བརྡ་སྐད་སྟོད་ནི་གས
msgctxt ""
"03130100.xhp\n"
"hd_id3143284\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep Statement [Runtime]\">Beep Statement [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep Statement [Runtime]\">བརྡ་སྐད་སྟོན་ནི་གསལ་བཤད [Runtime]</link>"
@@ -32554,7 +31500,6 @@ msgstr "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep Statement [Ru
msgctxt ""
"03130100.xhp\n"
"par_id3159201\n"
-"2\n"
"help.text"
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr "གློག་རིག་གི་སྒྲ་སྤར་དེ་ལས་བརྒྱུད་དེ་སྒྲད་སྐད་སྙན་ཆ་ཅིག་གཏངམ་ཨིན། སྒྲ་སྐད་སྙན་ཆ་དེ་རིམ་ལུགས་རྟེན་དགོཔ་ལས་ ཁྱོད་ཀྱིས་དེའི་སྐད་ཤུགས་ཡང་ན་སྟུག་ཚད་ལེགས་བཅོས་འབད་མི་བཏུབ།"
@@ -32563,7 +31508,6 @@ msgstr "གློག་རིག་གི་སྒྲ་སྤར་དེ་ལ
msgctxt ""
"03130100.xhp\n"
"hd_id3153990\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -32572,7 +31516,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03130100.xhp\n"
"par_id3147291\n"
-"4\n"
"help.text"
msgid "Beep"
msgstr "བརྡ་སྐད་སྟོན་ནི།"
@@ -32581,7 +31524,6 @@ msgstr "བརྡ་སྐད་སྟོན་ནི།"
msgctxt ""
"03130100.xhp\n"
"hd_id3148538\n"
-"5\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -32790,7 +31732,6 @@ msgstr "<bookmark_value>བསྒུག་གསལ་བཤད</bookmark_value>
msgctxt ""
"03130600.xhp\n"
"hd_id3154136\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait Statement [Runtime]\">Wait Statement [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait Statement [Runtime]\">བསྒུག་གསལ་བཤད [Runtime]</link>"
@@ -32799,7 +31740,6 @@ msgstr "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait Statement [Ru
msgctxt ""
"03130600.xhp\n"
"par_id3149236\n"
-"2\n"
"help.text"
msgid "Interrupts the program execution for the amount of time that you specify in milliseconds."
msgstr "ཁྱོད་ཀྱིས་མི་ལི་སྐར་ཆག་ཚུ་ནང་གསལ་བཀོད་འབད་མི་དུས་ཚོད་ཀྱི་དངུལ་བསྡོམས་དོན་ལུ་ལས་རིམ་ལག་ལེན་འཐབ་ནི་དེ་བར་དཀྲོགསཔ་ཨིན།"
@@ -32808,7 +31748,6 @@ msgstr "ཁྱོད་ཀྱིས་མི་ལི་སྐར་ཆག་ཚ
msgctxt ""
"03130600.xhp\n"
"hd_id3143229\n"
-"3\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -32817,7 +31756,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03130600.xhp\n"
"par_id3150669\n"
-"4\n"
"help.text"
msgid "Wait millisec"
msgstr "བསྒུག་མི་ལི་སྐར་ཆག"
@@ -32826,7 +31764,6 @@ msgstr "བསྒུག་མི་ལི་སྐར་ཆག"
msgctxt ""
"03130600.xhp\n"
"hd_id3148943\n"
-"5\n"
"help.text"
msgid "Parameters:"
msgstr "ཚད་བཟུང་ཚུ་:"
@@ -32835,7 +31772,6 @@ msgstr "ཚད་བཟུང་ཚུ་:"
msgctxt ""
"03130600.xhp\n"
"par_id3154924\n"
-"6\n"
"help.text"
msgid "<emph>millisec:</emph> Numeric expression that contains the amount of time (in milliseconds) to wait before the program is executed."
msgstr "<emph>མི་ལི་སྐར་ཆག:</emph> ཨང་གྲངས་ཀྱི་གསལ་བརྗོད་དེ་ནང་ན་ (མི་ལི་སྐར་ཆག་ཚུ་ནང་)དུས་ཚོད་ཀྱི་བསྡོམ་ལས་རིམ་དེ་ལག་ལེན་འཐབ་ནི ཧེ་མ་བསྒུག་ནི་ལུ།"
@@ -32844,7 +31780,6 @@ msgstr "<emph>མི་ལི་སྐར་ཆག:</emph> ཨང་གྲངས
msgctxt ""
"03130600.xhp\n"
"hd_id3150541\n"
-"7\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -32853,7 +31788,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03130600.xhp\n"
"par_id3156214\n"
-"13\n"
"help.text"
msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
msgstr "འཕྲིན་དོན་སྒྲོམ \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
@@ -33294,7 +32228,6 @@ msgstr "<bookmark_value>གསར་བསྐྲུན་ཡུ་ཨེན་
msgctxt ""
"03131500.xhp\n"
"hd_id3150499\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Function [Runtime]\">CreateUnoStruct Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Function [Runtime]\">གསར་བསྐྲུན་ཡུ་ཨེན་ཨོ་གཞི་བཀོད་ལས་འགན [Runtime]</link>"
@@ -33303,7 +32236,6 @@ msgstr "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Fu
msgctxt ""
"03131500.xhp\n"
"par_id3150713\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Creates an instance of a Uno structure type.</ahelp>"
msgstr "<ahelp hid=\".\">ཡུ་ཨེན་ཨོ་གཞི་བཀོད་དབྱེ་བ་གི་དུས་སྐབས་གསར་བསྐྲུན་འབདཝ་ཨིན</ahelp>"
@@ -33312,7 +32244,6 @@ msgstr "<ahelp hid=\".\">ཡུ་ཨེན་ཨོ་གཞི་བཀོད
msgctxt ""
"03131500.xhp\n"
"par_id3147226\n"
-"3\n"
"help.text"
msgid "Use the following structure for your statement:"
msgstr "འོག་གི་གཞི་བཀོད་ཁྱོད་རཡི་གསལ་བཤད་དོན་ལུ་ལག་ལེན་འཐབ:"
@@ -33321,7 +32252,6 @@ msgstr "འོག་གི་གཞི་བཀོད་ཁྱོད་རཡི
msgctxt ""
"03131500.xhp\n"
"par_id3149177\n"
-"4\n"
"help.text"
msgid "Dim oStruct as new com.sun.star.beans.Property"
msgstr "ཌི་ཨའི་ཨེམ་ཨོ་གཞི་བཀོད་གསརཔ་བཟུམ་སྦེcom.sun.star.beans.རྒྱུ་དངོས་པོ།"
@@ -33330,7 +32260,6 @@ msgstr "ཌི་ཨའི་ཨེམ་ཨོ་གཞི་བཀོད་ག
msgctxt ""
"03131500.xhp\n"
"hd_id3156153\n"
-"5\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -33339,7 +32268,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03131500.xhp\n"
"par_id3155341\n"
-"6\n"
"help.text"
msgid "oStruct = CreateUnoStruct( Uno type name )"
msgstr "ཨོ་གཞི་བཀོད་=ཡུ་ཨེནཨོ་གཞི་བཀོད་གསར་བསྐྲུན་འབད(ཡུ་ཨེན་ཨོ་དབྱེ་བ་མིང་)"
@@ -33348,7 +32276,6 @@ msgstr "ཨོ་གཞི་བཀོད་=ཡུ་ཨེནཨོ་གཞ
msgctxt ""
"03131500.xhp\n"
"hd_id3145316\n"
-"7\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -33357,7 +32284,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03131500.xhp\n"
"par_id3149762\n"
-"8\n"
"help.text"
msgid "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
msgstr "ཨོ་གཞི་བཀོད = ཡུ་ཨེན་ཨོ་གཞི་བཀོད་གསར་བསྐྲུན་འབད( \"com.sun.star.beans.Property\" )"
@@ -33486,7 +32412,6 @@ msgstr "<bookmark_value>ལེན་བྱ་སྒོའི་ལམ་ལུ
msgctxt ""
"03131700.xhp\n"
"hd_id3153255\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceManager Function [Runtime]\">GetProcessServiceManager Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceManager Function [Runtime]\">ལེན་བྱ་སྒོའི་ལམ་ལུགས་ཞབས་ཏོག་འཛིན་སྐྱོང་པ་ལས་འགན [Runtime]</link>"
@@ -33495,7 +32420,6 @@ msgstr "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceM
msgctxt ""
"03131700.xhp\n"
"par_id3156414\n"
-"2\n"
"help.text"
msgid "Returns the ProcessServiceManager (central Uno ServiceManager)."
msgstr "བྱ་སྒོའི་ལམ་ལུགས་ཞབས་ཏོག་འཛིན་སྐྱོང་པ་སླར་ལོགཔ་ཨིན(དབུས་ཡུ་ཨེན་ཨེ་ཞབས་ཏོག་འཛིན་སྐྱོང་པ)"
@@ -33504,7 +32428,6 @@ msgstr "བྱ་སྒོའི་ལམ་ལུགས་ཞབས་ཏོག
msgctxt ""
"03131700.xhp\n"
"par_id3145136\n"
-"3\n"
"help.text"
msgid "This function is required when you want to instantiate a service using CreateInstanceWithArguments."
msgstr "འ་ནི་ལས་འགན་དེ་ཁྱོད་ཀྱིས་གསར་བསྐྲུན་དུས་སྐབས་དང་གཅིག་ཁར་སྒྲུབ་རྟགས་ཚུ་་ཞབས་ཏོག་འཕྲལ་མྱུར་ལག་ལེན་འཐབ་ནི་ལུ་་དགོས་མཁོ་ཡོདཔ་ཨིན།"
@@ -33513,7 +32436,6 @@ msgstr "འ་ནི་ལས་འགན་དེ་ཁྱོད་ཀྱིས
msgctxt ""
"03131700.xhp\n"
"hd_id3153681\n"
-"4\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -33522,7 +32444,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03131700.xhp\n"
"par_id3151110\n"
-"5\n"
"help.text"
msgid "oServiceManager = GetProcessServiceManager()"
msgstr "ཨོ་ཞབས་ཏོག་འཛིན་སྐྱོང་པ་=ལེན་བྱ་སྒོའི་ལམ་ལུགས་ཞབས་ཏོག་འཛིན་སྐྱོང་པ()"
@@ -33531,7 +32452,6 @@ msgstr "ཨོ་ཞབས་ཏོག་འཛིན་སྐྱོང་པ་
msgctxt ""
"03131700.xhp\n"
"hd_id3149516\n"
-"6\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -33540,7 +32460,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03131700.xhp\n"
"par_id3143270\n"
-"7\n"
"help.text"
msgid "oServiceManager = GetProcessServiceManager()"
msgstr "ཨོ་ཞབས་ཏོག་འཛིན་སྐྱོང་པ་=ལེན་བྱ་སྒོའི་ལམ་ལུགས་ཞབས་ཏོག་འཛིན་སྐྱོང་པ()"
@@ -33549,7 +32468,6 @@ msgstr "ཨོ་ཞབས་ཏོག་འཛིན་སྐྱོང་པ་
msgctxt ""
"03131700.xhp\n"
"par_id3153825\n"
-"8\n"
"help.text"
msgid "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Introspection\");"
msgstr "ཨོ་བསམ་དཔྱད་ = ཨོ་ཞབས་ཏོག་འཛིན་སྐྱོང་པ་ གསར་བསྐྲུན་དུས་སྐབས(\"com.sun.star.beans.Introspection\");"
@@ -33558,7 +32476,6 @@ msgstr "ཨོ་བསམ་དཔྱད་ = ཨོ་ཞབས་ཏོག་
msgctxt ""
"03131700.xhp\n"
"par_id3148473\n"
-"9\n"
"help.text"
msgid "this is the same as the following statement:"
msgstr "འོག་གི་གསལ་བཤད་དེ་མཟུམ་སྦེ་ཅོག་ཟཐདཔ་ཨིན:"
@@ -33567,7 +32484,6 @@ msgstr "འོག་གི་གསལ་བཤད་དེ་མཟུམ་ས
msgctxt ""
"03131700.xhp\n"
"par_id3145609\n"
-"10\n"
"help.text"
msgid "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
msgstr "ཨོ་བསམ་དཔྱད་=ཡུ་ཨེན་ཨོ་ཞབས་ཏོག་གསར་བསྐྲུན་འབད(\"com.sun.star.beans.Introspection\")"
@@ -33592,7 +32508,6 @@ msgstr "<bookmark_value>ཡུ་ཨེན་ཨོ་ཌའི་ལོག་
msgctxt ""
"03131800.xhp\n"
"hd_id3150040\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Function [Runtime]\">CreateUnoDialog Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Function [Runtime]\">གསར་བསྐྲུན་ཡུ་ཨེན་ཨོ་ཌའི་ལོག་ ལས་འགན[Runtime]</link>"
@@ -33601,7 +32516,6 @@ msgstr "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Fu
msgctxt ""
"03131800.xhp\n"
"par_id3154186\n"
-"2\n"
"help.text"
msgid "Creates a Basic Uno object that represents a Uno dialog control during Basic runtime."
msgstr "གཞི་རིམ་རཱན་ཊའིམ་སྐབས་ཡུ་ཨེན་ཨོ་ཌའི་ལོག་ཚད་འཛིན་ཁྱད་ཚབ་འབད་མི་གཞི་རིམ་ཡུ་ཨེན་ཨོ་དངོས་པོ་དེ་གསར་བསྐྲུན་འབདཝ་ཨིན།"
@@ -33610,7 +32524,6 @@ msgstr "གཞི་རིམ་རཱན་ཊའིམ་སྐབས་ཡུ
msgctxt ""
"03131800.xhp\n"
"par_id3153750\n"
-"3\n"
"help.text"
msgid "Dialogs are defined in the dialog libraries. To display a dialog, a \"live\" dialog must be created from the library."
msgstr "ཌའི་ལོག་ཚུ་ཌའི་ལོག་དཔེར་མཛོད་ཚུ་ནང་ལུ་ངེས་འཛིན་འབད་ཡོདཔ་ཨིན། ཌའི་ལོག་ཅིག་བཀྲམ་བཏོན་འབད་ནི་ལུ་ \"live\"ཌའི་ལོག་དེ་དཔེར་མཛོད་ལས་གསར་བསྐྲུན་འབད་དགོཔ་ཨིན།"
@@ -33619,7 +32532,6 @@ msgstr "ཌའི་ལོག་ཚུ་ཌའི་ལོག་དཔེར་
msgctxt ""
"03131800.xhp\n"
"par_id3153681\n"
-"4\n"
"help.text"
msgid "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
msgstr "བལྟ <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">དཔེར་བརྗོད་ཚུ</link>."
@@ -33628,7 +32540,6 @@ msgstr "བལྟ <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Exampl
msgctxt ""
"03131800.xhp\n"
"hd_id3154286\n"
-"5\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -33637,7 +32548,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03131800.xhp\n"
"par_id3159176\n"
-"6\n"
"help.text"
msgid "CreateUnoDialog( oDlgDesc )"
msgstr "ཡུ་ཨེན་ཨོ་ཌའི་ལོག་གསར་བསྐྲུན་འབད( oDlgDesc )"
@@ -33646,7 +32556,6 @@ msgstr "ཡུ་ཨེན་ཨོ་ཌའི་ལོག་གསར་བས
msgctxt ""
"03131800.xhp\n"
"hd_id3143270\n"
-"7\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -33655,7 +32564,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03131800.xhp\n"
"par_id3159157\n"
-"8\n"
"help.text"
msgid "' Get dialog description from the dialog library"
msgstr "ཌའི་ལོག་དཔེར་མཛོད་ལས་ཌའི་ལོག་འགྲེལ་བཤད་ལེན།"
@@ -33664,7 +32572,6 @@ msgstr "ཌའི་ལོག་དཔེར་མཛོད་ལས་ཌའི
msgctxt ""
"03131800.xhp\n"
"par_id3149234\n"
-"9\n"
"help.text"
msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
msgstr "ཨོ་ཌའི་ལོག་ཌིསི་=ཌའི་ལོག་དཔེར་མཛོད་ཚུ་ ཚད་ལྡན་ ཌའི་ལོག་ ༡"
@@ -33673,7 +32580,6 @@ msgstr "ཨོ་ཌའི་ལོག་ཌིསི་=ཌའི་ལོག
msgctxt ""
"03131800.xhp\n"
"par_id3154923\n"
-"10\n"
"help.text"
msgid "' generate \"live\" dialog"
msgstr "' generate \"live\" ཌའི་ལོག"
@@ -33682,7 +32588,6 @@ msgstr "' generate \"live\" ཌའི་ལོག"
msgctxt ""
"03131800.xhp\n"
"par_id3149670\n"
-"11\n"
"help.text"
msgid "oDlgControl = CreateUnoDialog( oDlgDesc )"
msgstr "ཨོ་ཌའི་ལོག་ཚད་འཛིན་=ཡུ་ཨེན་ཨོ་ཌའི་ལོག་གསར་བསྐྲུན་འབད(ཨོ་ཌའི་ལོག་ཌིསི)"
@@ -33691,7 +32596,6 @@ msgstr "ཨོ་ཌའི་ལོག་ཚད་འཛིན་=ཡུ་ཨ
msgctxt ""
"03131800.xhp\n"
"par_id3148550\n"
-"12\n"
"help.text"
msgid "' display \"live\" dialog"
msgstr "' display \"live\" ཌའི་ལོག"
@@ -33700,7 +32604,6 @@ msgstr "' display \"live\" ཌའི་ལོག"
msgctxt ""
"03131800.xhp\n"
"par_id3154072\n"
-"13\n"
"help.text"
msgid "oDlgControl.execute"
msgstr "ཨོ་ཌའི་ལོག་ཚད་འཛིན་ ལག་ལེན་འཐབ་ནི།"
@@ -33725,7 +32628,6 @@ msgstr "<bookmark_value>སྤྱི་ཁྱབ་འོས་སྐབས་
msgctxt ""
"03131900.xhp\n"
"hd_id3150682\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope [Runtime]\">GlobalScope [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope [Runtime]\">སྤྱི་ཁྱབ་འོས་སྐབས [Runtime]</link>"
@@ -33734,7 +32636,6 @@ msgstr "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope [Runti
msgctxt ""
"03131900.xhp\n"
"par_id3153345\n"
-"2\n"
"help.text"
msgid "Basic source code and dialogs are organized in a library system."
msgstr "གཞི་རིམ་འབྱུང་རིམ་ཨང་རྟགས་དང་ཌའི་ལོག་ཚུ་དཔེར་མཛོད་རིམ་ནང་འགོ་དྲན་འཐབ་ཨིན།"
@@ -33743,7 +32644,6 @@ msgstr "གཞི་རིམ་འབྱུང་རིམ་ཨང་རྟག
msgctxt ""
"03131900.xhp\n"
"par_id3145315\n"
-"3\n"
"help.text"
msgid "The LibraryContainer contains libraries"
msgstr "དཔེར་མཛོད་འཛིན་སྣོད་དེ་ནང་ན་དཔེར་མཛོད་ཚུ་ཡོདཔ་ཨིན།"
@@ -33752,7 +32652,6 @@ msgstr "དཔེར་མཛོད་འཛིན་སྣོད་དེ་ན
msgctxt ""
"03131900.xhp\n"
"par_id3149514\n"
-"4\n"
"help.text"
msgid "Libraries can contain modules and dialogs"
msgstr "དཔེར་མཛོད་ཚུ་གི་ནང་ན་ཚད་གཞི་ཚུ་དང་ཌའི་ལོག་ཚུ་ཡོདཔ་ཨིན།"
@@ -33761,7 +32660,6 @@ msgstr "དཔེར་མཛོད་ཚུ་གི་ནང་ན་ཚད་
msgctxt ""
"03131900.xhp\n"
"hd_id3143271\n"
-"5\n"
"help.text"
msgid "In Basic:"
msgstr "གཞི་རིམ་ནང:"
@@ -33770,7 +32668,6 @@ msgstr "གཞི་རིམ་ནང:"
msgctxt ""
"03131900.xhp\n"
"par_id3153061\n"
-"6\n"
"help.text"
msgid "The LibraryContainer is called <emph>BasicLibraries</emph>."
msgstr "དཔེར་མཛོད་འཛིན་སྣོད་དེ་ལུ་<emph>གཞི་རིམ་དཔེར་མཛོད་ཚུ་</emph>ཟེར་སླབ་ཨིན།"
@@ -33779,7 +32676,6 @@ msgstr "དཔེར་མཛོད་འཛིན་སྣོད་དེ་ལ
msgctxt ""
"03131900.xhp\n"
"hd_id3154346\n"
-"7\n"
"help.text"
msgid "In dialogs:"
msgstr "ཌའི་ལོགསི་ནང་:"
@@ -33788,7 +32684,6 @@ msgstr "ཌའི་ལོགསི་ནང་:"
msgctxt ""
"03131900.xhp\n"
"par_id3148663\n"
-"8\n"
"help.text"
msgid "The LibraryContainer is called <emph>DialogLibraries</emph>."
msgstr "དཔེར་མཛོད་འཛིན་སྣོད་དེ་ལུ་ <emph>ཌའི་ལོག་དཔེར་མཛོད་ཚུ་</emph>ཟེར་སླབ་ཨིན།"
@@ -33797,7 +32692,6 @@ msgstr "དཔེར་མཛོད་འཛིན་སྣོད་དེ་ལ
msgctxt ""
"03131900.xhp\n"
"par_id3150543\n"
-"9\n"
"help.text"
msgid "Both LibraryContainers exist in an application level and within every document. In the document Basic, the document's LibraryContainers are called automatically. If you want to call the global LibraryContainers from within a document, you must use the keyword <emph>GlobalScope</emph>."
msgstr "དཔེར་མཛོད་འཛིན་སྣོད་ཚུ་གཉིས་ཆ་ར་འཇུག་སྤྱོད་གནས་རིམ་དང་ཡིག་ཆ་རེ་རེ་ནང་འཁོད་ནང་ཡོདཔ་ཨིན། ཡིག་ཆ་གཞི་རིམ་ནང་ ཡིག་ཆ་གི་དཔེར་་མཛོད་འཛིན་སྣོད་ཚུ་ཆ་མཉམ་རང་བཞིན་གྱིས་བོད་ཡོདཔ་ཨིན། ཁྱོད་ཀྱིས་སྤྱི་ཁྱབ་དཔེར་མཛོད་འཛིན་སྣོད་ཚུ་་ཡིག་ཆ་ནང་འཁོད་ལས་བོད་ནི་ཨིན་པ་ཅིན་ ་ཁྱོད་ཀྱིས་གཙོ་ཚིག་<emph>སྤྱི་ཁྱབ་འོས་སྐབས་</emph>དེ་ལག་ལེན་འཐབ།"
@@ -33806,7 +32700,6 @@ msgstr "དཔེར་མཛོད་འཛིན་སྣོད་ཚུ་ག
msgctxt ""
"03131900.xhp\n"
"hd_id3148920\n"
-"10\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -33815,7 +32708,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03131900.xhp\n"
"par_id3149203\n"
-"11\n"
"help.text"
msgid "GlobalScope"
msgstr "སྤྱི་ཁྱབ་འོས་སྐབས།"
@@ -33824,7 +32716,6 @@ msgstr "སྤྱི་ཁྱབ་འོས་སྐབས།"
msgctxt ""
"03131900.xhp\n"
"hd_id3154685\n"
-"12\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -33833,7 +32724,6 @@ msgstr "དཔེར་བརྗོད:"
msgctxt ""
"03131900.xhp\n"
"par_id3154124\n"
-"13\n"
"help.text"
msgid "Example in the document Basic"
msgstr "ཡིག་ཆ་གཞི་རིམ་ནང་དཔེར་བརྗོད།"
@@ -33842,7 +32732,6 @@ msgstr "ཡིག་ཆ་གཞི་རིམ་ནང་དཔེར་བར
msgctxt ""
"03131900.xhp\n"
"par_id3158408\n"
-"14\n"
"help.text"
msgid "' calling Dialog1 in the document library Standard"
msgstr "ཡིག་ཆ་དཔེར་མཛོད་ཚད་ལྡན་ནང་ཌའི་ལོག་ ༡ བོད་དོ།"
@@ -33851,7 +32740,6 @@ msgstr "ཡིག་ཆ་དཔེར་མཛོད་ཚད་ལྡན་ན
msgctxt ""
"03131900.xhp\n"
"par_id3125865\n"
-"15\n"
"help.text"
msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
msgstr "ཨོ་ཌའི་ལོག་ཌིསི་=ཌའི་ལོག་དཔེར་མཛོད་ཚུ་ ཚད་ལྡན་ ཌའི་ལོག་ ༡"
@@ -33860,7 +32748,6 @@ msgstr "ཨོ་ཌའི་ལོག་ཌིསི་=ཌའི་ལོག
msgctxt ""
"03131900.xhp\n"
"par_id3154910\n"
-"16\n"
"help.text"
msgid "' calling Dialog2 in the application library Library1"
msgstr "འཇུག་སྤྱོད་དཔེར་མཛོད་ དཔེར་མཛོད་ ༡ ནང་ཌའི་ལོག་ ༢ བདོ་དོ།"
@@ -33869,7 +32756,6 @@ msgstr "འཇུག་སྤྱོད་དཔེར་མཛོད་ དཔ
msgctxt ""
"03131900.xhp\n"
"par_id3156424\n"
-"17\n"
"help.text"
msgid "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
msgstr "ཧོ་ཌའི་ལོག་ཌིསི་=སྤྱི་ཁྱབ་འོས་སྐབས་ ཌའི་ལོག་དཔེར་མཛོད་ཚུ་ དཔེར་མཛོད་ ༡ དའི་ལོག ༢"
@@ -34190,7 +33076,6 @@ msgstr "<bookmark_value>ལེན་ཇི་ཡུ་ཨའི་དབྱེ
msgctxt ""
"03132100.xhp\n"
"hd_id3155310\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function [Runtime]\">GetGuiType Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function [Runtime]\">ལེན་ཇི་ཡུ་ཨའི་དབྱེ་བ་ལས་འགན [Runtime]</link>"
@@ -34199,7 +33084,6 @@ msgstr "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Functio
msgctxt ""
"03132100.xhp\n"
"par_id3152459\n"
-"2\n"
"help.text"
msgid "Returns a numerical value that specifies the graphical user interface."
msgstr "ས་ཆའི་ལག་ལེན་པ་ངོས་འདྲ་བ་གསལ་བཀོད་འབད་མི་ཨང་གྲངས་ཀྱི་སླར་ལོགཔ་ཨིན།"
@@ -34208,7 +33092,6 @@ msgstr "ས་ཆའི་ལག་ལེན་པ་ངོས་འདྲ་བ
msgctxt ""
"03132100.xhp\n"
"par_id3153323\n"
-"3\n"
"help.text"
msgid "This runtime function is only provided for downward compatibility to previous versions. The return value is not defined in client-server environments."
msgstr "འ་ནི་རཱན་ཊའིམ་ལས་འགན་དེ་ཧེ་མམ་གྱི་ཐོན་རིམ་ཚུ་ལུ་མར་ཕྱོགས་མཐུན་འགྱུར་དོན་ལུ་རྐྱངམ་ཅིག་བྱིན་ཡོདཔ་ཨིན། སླར་ལོག་གནས་གོང་དེ་ཞབས་ཏོག་སྤྱོད་མི་སར་བར་མཐའ་འཁོར་ཚུ་ནང་ངེས་འཛིན་མ་འབད།"
@@ -34217,7 +33100,6 @@ msgstr "འ་ནི་རཱན་ཊའིམ་ལས་འགན་དེ་
msgctxt ""
"03132100.xhp\n"
"hd_id3154894\n"
-"4\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -34226,7 +33108,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03132100.xhp\n"
"par_id3147143\n"
-"5\n"
"help.text"
msgid "GetGUIType()"
msgstr "ལེན་ཇི་ཡུ་ཨའི་དབྱེ་བ།()"
@@ -34235,7 +33116,6 @@ msgstr "ལེན་ཇི་ཡུ་ཨའི་དབྱེ་བ།()"
msgctxt ""
"03132100.xhp\n"
"hd_id3149346\n"
-"6\n"
"help.text"
msgid "Return value:"
msgstr "གནས་གོང་སླར་ལོག:"
@@ -34244,7 +33124,6 @@ msgstr "གནས་གོང་སླར་ལོག:"
msgctxt ""
"03132100.xhp\n"
"par_id3153748\n"
-"7\n"
"help.text"
msgid "Integer"
msgstr "ཧྲིལ་ཨང་།"
@@ -34253,7 +33132,6 @@ msgstr "ཧྲིལ་ཨང་།"
msgctxt ""
"03132100.xhp\n"
"hd_id3149177\n"
-"8\n"
"help.text"
msgid "Return values:"
msgstr "གནས་ཚུ་གོང་སླར་ལོག:"
@@ -34262,7 +33140,6 @@ msgstr "གནས་ཚུ་གོང་སླར་ལོག:"
msgctxt ""
"03132100.xhp\n"
"par_id3147242\n"
-"9\n"
"help.text"
msgid "1: Windows"
msgstr "༡: ཝིནཌོསི།"
@@ -34271,7 +33148,6 @@ msgstr "༡: ཝིནཌོསི།"
msgctxt ""
"03132100.xhp\n"
"par_id3156152\n"
-"11\n"
"help.text"
msgid "4: UNIX"
msgstr "༤: ཡུ་ཨེན་ཨའི་ཨེསི།"
@@ -34280,7 +33156,6 @@ msgstr "༤: ཡུ་ཨེན་ཨའི་ཨེསི།"
msgctxt ""
"03132100.xhp\n"
"hd_id3148685\n"
-"12\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད:"
@@ -34294,7 +33169,6 @@ msgid "ThisComponent Statement [Runtime]"
msgstr "འ་ནི་ཆ་ཤས་གསལ་བཤད [Runtime]"
#: 03132200.xhp
-#, fuzzy
msgctxt ""
"03132200.xhp\n"
"bm_id3155342\n"
@@ -34386,7 +33260,6 @@ msgstr "<bookmark_value>ཡུ་ཨེན་ཨོ་གནས་གོང་
msgctxt ""
"03132300.xhp\n"
"hd_id3150682\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function [Runtime]\">CreateUnoValue Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function [Runtime]\">གསར་བསྐྲུན་ཡུ་ཨེན་ཨོ་གནས་གོང་ལས་འགན [Runtime]</link>"
@@ -34395,7 +33268,6 @@ msgstr "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Fun
msgctxt ""
"03132300.xhp\n"
"par_id3147291\n"
-"2\n"
"help.text"
msgid "Returns an object that represents a strictly typed value referring to the Uno type system."
msgstr "ཡུ་ཨེན་ཨོ་དབྱེ་བ་རིམ་ལུགས་དེ་ལུ་གཞི་བསྟུན་འབད་བའི་གནས་གོང་དབྱེ་བ་དམ་དྲགས་ཅན་ཁྱད་ཚབ་འབད་མི་དངོས་པོ་ཅིག་སླར་ལོགཔ་ཨིན།"
@@ -34404,7 +33276,6 @@ msgstr "ཡུ་ཨེན་ཨོ་དབྱེ་བ་རིམ་ལུག
msgctxt ""
"03132300.xhp\n"
"par_id3143267\n"
-"3\n"
"help.text"
msgid "This object is automatically converted to an Any of the corresponding type when passed to Uno. The type must be specified by its fully qualified Uno type name."
msgstr "དངོས་པོ་དེ་རང་བཞིན་གྱིས་ཡུ་ཨེན་ཨོ་ལུ་རྩིས་སྤྲོད་སྐབས་ཆ་མཉམ་པའི་དབྱེ་བ་གི་གང་རུང་ཅིག་ལུ་བསྒྱུར་འབད་ཡོདཔ་ཨིན། དབྱེ་བ་འདི་དེའི་ཁྱད་ཆོས་ཆ་ཚང་ཚངམ་ཡུ་ཨེན་ཨོ་དབྱེ་བ་མིང་གིས་འབད་གསལ་བཀོད་འབད་དགོཔ་ཨིན།"
@@ -34413,7 +33284,6 @@ msgstr "དངོས་པོ་དེ་རང་བཞིན་གྱིས་
msgctxt ""
"03132300.xhp\n"
"par_id3153626\n"
-"4\n"
"help.text"
msgid "The $[officename] API frequently uses the Any type. It is the counterpart of the Variant type known from other environments. The Any type holds one arbitrary Uno type and is used in generic Uno interfaces."
msgstr "$[officename] ཨེ་པི་ཨའི་གིས་འཕྲལ་འཕྲལ་རང་དབྱེ་བ་གང་རུང་ལག་ལེན་འཐབ་ཨིན། དེ་གཞན་མཐའ་འཁོར་ཚུ་ལས་ཤེས་པའི་མི་མཐུན་པའི་དབྱེ་བ་གི་གདོང་ལེན་ཡན་ལག་ཨིན། དབྱེ་བ་གང་རུང་གིས་མཐུན་སྒྲིག་ཡུ་ཨེན་ཨོ་དབྱེ་བ་གཅིག་འཛིནམ་དང་ དེ་དབྱེ་རིག་ཡུ་ཨེན་ཨོ་ངོས་འདྲ་བ་ཚུ་ནང་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན།"
@@ -34422,7 +33292,6 @@ msgstr "$[officename] ཨེ་པི་ཨའི་གིས་འཕྲལ་
msgctxt ""
"03132300.xhp\n"
"hd_id3147560\n"
-"5\n"
"help.text"
msgid "Syntax:"
msgstr "ཚིག་སྦྱོར:"
@@ -34431,7 +33300,6 @@ msgstr "ཚིག་སྦྱོར:"
msgctxt ""
"03132300.xhp\n"
"par_id3154760\n"
-"6\n"
"help.text"
msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) to get a byte sequence."
msgstr "ཨོ་ཡུ་ཨེན་ཨོ་གནས་གོང་=གསར་བསྐྲུན་ཡུ་ཨེན་ཨོ་གནས་གོང་( \"[]byte\", མའི་གཞི་རིམ་གནས་གོང་)བཱའིཊི་འབྱུང་རིམ་ལེན་ནི་ལུ།"
@@ -34440,7 +33308,6 @@ msgstr "ཨོ་ཡུ་ཨེན་ཨོ་གནས་གོང་=གས
msgctxt ""
"03132300.xhp\n"
"par_id3150541\n"
-"7\n"
"help.text"
msgid "If CreateUnoValue cannot be converted to the specified Uno type, and error occurs. For the conversion, the TypeConverter service is used."
msgstr "གསར་བསྐྲུན་ཡུ་ཨེན་ཨོ་གནས་གོང་གསལ་བཀོད་འབད་མི་ཡུ་ཨེན་ཨོ་དབྱེ་བ་དེ་ལུ་གཞི་བསྒྱུར་འབད་མ་བཏུབ་པ་ཅིན་དང་ འཛོལ་བ་འབྱུངམ་ཨིན། གཞི་བསྒྱུར་དོན་ལུ་ དབྱེ་བ་གཞི་བསྒྱུར་པ་ཞབས་ཏོག་དེ་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན།"
@@ -34449,7 +33316,6 @@ msgstr "གསར་བསྐྲུན་ཡུ་ཨེན་ཨོ་གནས
msgctxt ""
"03132300.xhp\n"
"par_id3153524\n"
-"8\n"
"help.text"
msgid "This function is intended for use in situations where the default Basic to Uno type converting mechanism is insufficient. This can happen when you try to access generic Any based interfaces, such as XPropertySet::setPropertyValue( Name, Value ) or X???Container::insertBy???( ???, Value ), from $[officename] Basic. The Basic runtime does not recognize these types as they are only defined in the corresponding service."
msgstr "འ་ནི་ལས་འགན་དེ་དུས་སྐབས་ཚུ་ནང་་ སྔོན་སྒྲིག་གཞི་རིམ་དེ་ཡུ་ཨེན་ཨོ་དབྱེ་བ་གཞི་བསྒྱུར་ཐབས་རིག་ལུ་མ་ལངམ་དོན་ལུ་རེ་བ་ལྟར་ལག་ལེན་འཐབ་ནི་ཨིན། འ་ནི་དེ་ཁྱོད་དབྱེ་རིགས་གང་རུང་གཞི་བཏག་ངོས་འདྲ་བ་ཚུ་་ འདི་བཟུམ་མའི་ ཨེགསི་རྒྱུ་དངོས་གཞི་སྒྲིག་ ::གཞི་སྒྲིག་རྒྱུ་དངོས་གནས་གོང་(མིང་ གནས་གོང་) ཡང་ན་ཨེགསི་???འཛིན་སྣོད་::བཙུགས་བའི་???(??? གནས་གོང་)$[officename] གཞི་རིམ་ལས་འཛུལ་སྤྱོད་འབད་ནི་འབད་རྩོལ་བསྐྱེདཝ་ད་འབྱུངམ་ཨིན། གཞི་རིམ་རཱན་ཊའིམ་གྱིས་ཆ་མཉམ་པའི་ཞབས་ཏོག་ནང་རྐྱངམ་ཅིག་ངེས་འཛིནམ་ལས་དབྱེ་བ་དེ་ཚུ་ངོ་མི་ཤེསཔ་ཨིན།"
@@ -34458,7 +33324,6 @@ msgstr "འ་ནི་ལས་འགན་དེ་དུས་སྐབས་
msgctxt ""
"03132300.xhp\n"
"par_id3154366\n"
-"9\n"
"help.text"
msgid "In this type of situation, $[officename] Basic chooses the best matching type for the Basic type that you want to convert. However, if the wrong type is selected, an error occurs. You use the CreateUnoValue() function to create a value for the unknown Uno type."
msgstr "འདི་བཟུམ་གྱི་དུས་སྐབས་ལུ་ $[officename] གཞི་རིམ་འདི་གིས་ཁྱོད་ཀྱིས་གཞི་བསྒྱུར་འབད་དགོ་མནོ་མི་གཞི་རིམ་དབྱེ་བ་གི་དོན་ལས་མཐུན་སྒྲིག་འབད་ནིའི་དབྱེ་བ་དྲག་ཤོས་གདམ་ཁ་རྐྱབ་ཨིན། ག་དེ་འབད་རང་ཨིན་རུང་ དབྱེ་བ་ཕྱི་འགྱུར་འདི་སེལ་འཐུ་འབད་བ་ཅིན་ འཛོལ་བ་འབྱུངམ་ཨིན། ཁྱོད་ཀྱིས་ཡུ་ཨེན་ཨོ་དབྱེ་བའི་དོན་ལས་གནས་གོང་གསར་བསྐྲུན་འབད་ནི་ལུ་གསར་བསྐྲུན་ཡུ་ཨེན་ཨོ་གནས་གོང་()ལས་འགན་ལག་ལེན་འཐབ།"
@@ -34467,7 +33332,6 @@ msgstr "འདི་བཟུམ་གྱི་དུས་སྐབས་ལུ
msgctxt ""
"03132300.xhp\n"
"par_id3150769\n"
-"10\n"
"help.text"
msgid "You can also use this function to pass non-Any values, but this is not recommend. If Basic already knows the target type, using the CreateUnoValue() function will only lead to additional converting operations that slow down the Basic execution."
msgstr "ཁྱོད་ཀྱིས་ལས་འགན་དེ་གང་རུང་གནས་གོང་ཚུ་མེན་མི་རྩིས་སྤྲོད་ནི་ལུ་ལག་ལེན་འཐབ་བཏུབ་ཨིན་རུང་ འ་ནི་བསམ་བཀོད་མ་འབད། གཞི་་རིམ་གྱིས་ཧེ་མ་ལས་དམིགས་གཏད་དབྱེ་བ་དེ་གསར་བསྐྲུན་ཡུ་ཨེན་ཨོ་གནས་གོང་ལག་ལེན་འཐབ་()ལས་འགན་ཤེས་པ་ཅིན་ གཞི་རིམ་ལག་ལེན་འཐབ་ནི་དེ་ལྷོད་ལེན་འབད་མི་གཞི་བསྒྱུར་འབད་མི་བཀོལ་སྤྱོད་པ་ཚུ་ཁ་སྐོང་་ལུ་རྐྱངམ་ཅིག་སྔོན་བསྐྱོད་འབདཝ་ཨིན།"
@@ -34596,7 +33460,6 @@ msgstr "<bookmark_value>བྱུང་ལས་ཚུ་དངོས་པོ
msgctxt ""
"05060700.xhp\n"
"hd_id3153894\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">མེཀརོ</link>"
@@ -34605,7 +33468,6 @@ msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">མེཀ
msgctxt ""
"05060700.xhp\n"
"par_id3153748\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Choose the macro that you want to execute when the selected graphic, frame, or OLE object is selected.</ahelp> Depending on the object that is selected, the function is either found on the <emph>Macro</emph> tab of the <emph>Object</emph> dialog, or in the <emph>Assign Macro</emph> dialog."
msgstr "<ahelp hid=\".\">སེལ་འཐུ་འབད་ཡོད་པའི་ཚད་རིས་དང་གཞི་ཁྲམ་ཡང་ན་ཨོ་ཨེལ་ཨི་དངོས་པོ་སེལ་འཐུ་འབད་བའི་སྐབས་ཁྱོད་ཀྱིས་ལག་ལེན་འཐབ་མནོ་མི་མེཀ་རོ་གདམ་ཁ་རྐྱབས། </ahelp> སེལ་འཐུ་འབད་ཡོད་མི་དངོས་པོ་ལུ་བརྟེན་ཏེ་ ལས་འགན་འདི་དངོས་པོའི་ཌའི་ལོག་གི་ <emph>མེཀ་རོ་མཆོང་ལྡེ་གུ་མཐོང་ནི་དང་</emph>ཡང་ན་ <emph>འགན་སྤྲོད་</emph> མེཀ་རོ་ནང་ <emph>མཐོངམ་</emph> ཨིན།"
@@ -34614,7 +33476,6 @@ msgstr "<ahelp hid=\".\">སེལ་འཐུ་འབད་ཡོད་པའ
msgctxt ""
"05060700.xhp\n"
"hd_id3150503\n"
-"3\n"
"help.text"
msgid "Event"
msgstr "བྱུང་ལས།"
@@ -34623,7 +33484,6 @@ msgstr "བྱུང་ལས།"
msgctxt ""
"05060700.xhp\n"
"par_id3149763\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/assignments\">Lists the events that are relevant to the macros that are currently assigned to the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/eventassignpage/assignments\">སེལ་འཐུ་འབད་ཡོད་མུ་དངོས་པོ་དེ་ལུ་ད་ལྟོ་འགན་སྤྲོད་ཡོད་མི་མེ་ཀེ་རོསི་དེ་ལུ་འབྲེལ་བའི་འབྱུང་ལས་ཚུ་ཐོ་ཡིག་རྐྱབས་ཨིན།</ahelp>"
@@ -34632,7 +33492,6 @@ msgstr "<ahelp hid=\"cui/ui/eventassignpage/assignments\">སེལ་འཐུ
msgctxt ""
"05060700.xhp\n"
"par_id3150670\n"
-"23\n"
"help.text"
msgid "The following table describes the macros and the events that can by linked to objects in your document:"
msgstr "འོག་གི་ཐིག་ཁྲམ་གྱིས་མེ་ཀོ་རོསི་དང་ ཁྱོད་ཀྱི་ཡིག་ཆ་ནང་དངོས་པོ་ཚུ་ལུ་འབྲེལ་མཐུད་འབད་བཏུབ་བི་འབྱུང་ལས་དེ་ཚུ་འགྲེལ་བཤད་རྐྱབས་ཨིན།"
@@ -34641,7 +33500,6 @@ msgstr "འོག་གི་ཐིག་ཁྲམ་གྱིས་མེ་ཀ
msgctxt ""
"05060700.xhp\n"
"par_id3153360\n"
-"24\n"
"help.text"
msgid "Event"
msgstr "བྱུང་ལས།"
@@ -34650,7 +33508,6 @@ msgstr "བྱུང་ལས།"
msgctxt ""
"05060700.xhp\n"
"par_id3154365\n"
-"25\n"
"help.text"
msgid "Event trigger"
msgstr "བྱུང་ལས་འབྱུང་སག་ས།"
@@ -34659,7 +33516,6 @@ msgstr "བྱུང་ལས་འབྱུང་སག་ས།"
msgctxt ""
"05060700.xhp\n"
"par_id3159149\n"
-"26\n"
"help.text"
msgid "OLE object"
msgstr "ཨོ་ཨེལ་ཨི་ དངོས་པོ།"
@@ -34668,7 +33524,6 @@ msgstr "ཨོ་ཨེལ་ཨི་ དངོས་པོ།"
msgctxt ""
"05060700.xhp\n"
"par_id3148451\n"
-"27\n"
"help.text"
msgid "Graphics"
msgstr "ཚད་རིས་ཚུ།"
@@ -34677,7 +33532,6 @@ msgstr "ཚད་རིས་ཚུ།"
msgctxt ""
"05060700.xhp\n"
"par_id3125863\n"
-"28\n"
"help.text"
msgid "Frame"
msgstr "གཞི་ཁྲམ།"
@@ -34686,7 +33540,6 @@ msgstr "གཞི་ཁྲམ།"
msgctxt ""
"05060700.xhp\n"
"par_id3154216\n"
-"29\n"
"help.text"
msgid "AutoText"
msgstr "ཡང་བཞིན་ཚིག་ཡིག"
@@ -34695,7 +33548,6 @@ msgstr "ཡང་བཞིན་ཚིག་ཡིག"
msgctxt ""
"05060700.xhp\n"
"par_id3145785\n"
-"30\n"
"help.text"
msgid "ImageMap area"
msgstr "གཟུགས་བརྙན་ས་ཁྲ་མངའ་ཁོངས།"
@@ -34704,7 +33556,6 @@ msgstr "གཟུགས་བརྙན་ས་ཁྲ་མངའ་ཁོངས
msgctxt ""
"05060700.xhp\n"
"par_id3153138\n"
-"31\n"
"help.text"
msgid "Hyperlink"
msgstr "ཧའིཔར་ལིངཀ།"
@@ -34713,7 +33564,6 @@ msgstr "ཧའིཔར་ལིངཀ།"
msgctxt ""
"05060700.xhp\n"
"par_id3155306\n"
-"32\n"
"help.text"
msgid "Click object"
msgstr "དངོས་པོ་ཨེབ་གཏང་འབད།"
@@ -34722,7 +33572,6 @@ msgstr "དངོས་པོ་ཨེབ་གཏང་འབད།"
msgctxt ""
"05060700.xhp\n"
"par_id3152460\n"
-"33\n"
"help.text"
msgid "Object is selected."
msgstr "དངོས་པོ་འདི་སེལ་འཐུ་འབད་ཡོདཔ།"
@@ -34731,7 +33580,6 @@ msgstr "དངོས་པོ་འདི་སེལ་འཐུ་འབད་
msgctxt ""
"05060700.xhp\n"
"par_id3147348\n"
-"34\n"
"help.text"
msgid "x"
msgstr ""
@@ -34740,7 +33588,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3147426\n"
-"35\n"
"help.text"
msgid "x"
msgstr ""
@@ -34749,7 +33596,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3153951\n"
-"36\n"
"help.text"
msgid "x"
msgstr ""
@@ -34758,7 +33604,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3150116\n"
-"37\n"
"help.text"
msgid "Mouse over object"
msgstr "དངོས་པོའི་ལྟག་ལས་མའུསི།"
@@ -34767,7 +33612,6 @@ msgstr "དངོས་པོའི་ལྟག་ལས་མའུསི།"
msgctxt ""
"05060700.xhp\n"
"par_id3145253\n"
-"38\n"
"help.text"
msgid "Mouse moves over the object."
msgstr "མའུསི་དངོས་པོའི་ལྟག་ལས་སྤོ་བཤུས་འབདཝ་ཨིན།"
@@ -34776,7 +33620,6 @@ msgstr "མའུསི་དངོས་པོའི་ལྟག་ལས་ས
msgctxt ""
"05060700.xhp\n"
"par_id3144765\n"
-"39\n"
"help.text"
msgid "x"
msgstr ""
@@ -34785,7 +33628,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3153418\n"
-"40\n"
"help.text"
msgid "x"
msgstr ""
@@ -34794,7 +33636,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3153948\n"
-"41\n"
"help.text"
msgid "x"
msgstr ""
@@ -34803,7 +33644,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3145652\n"
-"42\n"
"help.text"
msgid "x"
msgstr ""
@@ -34812,7 +33652,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3155066\n"
-"43\n"
"help.text"
msgid "x"
msgstr ""
@@ -34821,7 +33660,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3155446\n"
-"44\n"
"help.text"
msgid "Trigger Hyperlink"
msgstr "འབྱུང་སག་ས་ཧའིཔར་ལིངཀ།"
@@ -34830,7 +33668,6 @@ msgstr "འབྱུང་སག་ས་ཧའིཔར་ལིངཀ།"
msgctxt ""
"05060700.xhp\n"
"par_id3154756\n"
-"45\n"
"help.text"
msgid "Hyperlink assigned to the object is clicked."
msgstr "ཧའི་པར་ལིངཀ་དངོས་པོ་ལུ་འགན་སྤྲོད་ཡོད་མི་འདི་ཨེབ་གཏང་ཡོདཔ་ཨིན།"
@@ -34839,7 +33676,6 @@ msgstr "ཧའི་པར་ལིངཀ་དངོས་པོ་ལུ་འ
msgctxt ""
"05060700.xhp\n"
"par_id3150042\n"
-"46\n"
"help.text"
msgid "x"
msgstr ""
@@ -34848,7 +33684,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3151252\n"
-"47\n"
"help.text"
msgid "x"
msgstr ""
@@ -34857,7 +33692,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3147344\n"
-"48\n"
"help.text"
msgid "x"
msgstr ""
@@ -34866,7 +33700,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3146920\n"
-"49\n"
"help.text"
msgid "x"
msgstr ""
@@ -34875,7 +33708,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3159333\n"
-"50\n"
"help.text"
msgid "Mouse leaves object"
msgstr "མའུསི་གིས་དངོས་པོ་བཀོག་བཞགཔ་ཨིན།"
@@ -34884,7 +33716,6 @@ msgstr "མའུསི་གིས་དངོས་པོ་བཀོག་བ
msgctxt ""
"05060700.xhp\n"
"par_id3147003\n"
-"51\n"
"help.text"
msgid "Mouse moves off of the object."
msgstr "དངོས་པོའི་མའུསི་་ཨོཕ་སྤོཝ་མས།"
@@ -34893,7 +33724,6 @@ msgstr "དངོས་པོའི་མའུསི་་ཨོཕ་སྤོ
msgctxt ""
"05060700.xhp\n"
"par_id3151278\n"
-"52\n"
"help.text"
msgid "x"
msgstr ""
@@ -34902,7 +33732,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3145257\n"
-"53\n"
"help.text"
msgid "x"
msgstr ""
@@ -34911,7 +33740,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3154122\n"
-"54\n"
"help.text"
msgid "x"
msgstr ""
@@ -34920,7 +33748,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3156139\n"
-"55\n"
"help.text"
msgid "x"
msgstr ""
@@ -34929,7 +33756,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3149036\n"
-"56\n"
"help.text"
msgid "x"
msgstr ""
@@ -34938,7 +33764,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3150785\n"
-"57\n"
"help.text"
msgid "Graphics load successful"
msgstr "ཚད་རིས་ཚུ་མཐར་འཁྱོལ་སྦེ་མངོན་གསལ་འབད།"
@@ -34947,7 +33772,6 @@ msgstr "ཚད་རིས་ཚུ་མཐར་འཁྱོལ་སྦེ་
msgctxt ""
"05060700.xhp\n"
"par_id3153705\n"
-"58\n"
"help.text"
msgid "Graphics are loaded successfully."
msgstr "ཚད་རིས་ཚུ་མངོན་གསལ་མཐར་འཁྱོལ་སྦེ་འབད་ཡོདཔ།"
@@ -34956,7 +33780,6 @@ msgstr "ཚད་རིས་ཚུ་མངོན་གསལ་མཐར་འ
msgctxt ""
"05060700.xhp\n"
"par_id3150343\n"
-"59\n"
"help.text"
msgid "x"
msgstr ""
@@ -34965,7 +33788,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3150202\n"
-"60\n"
"help.text"
msgid "Graphics load terminated"
msgstr "ཚད་རིས་ཚུ་མངོན་གསལ་རྩ་གྲོལ་གཏང་ཡོདཔ།"
@@ -34974,7 +33796,6 @@ msgstr "ཚད་རིས་ཚུ་མངོན་གསལ་རྩ་གྲ
msgctxt ""
"05060700.xhp\n"
"par_id3145584\n"
-"61\n"
"help.text"
msgid "Loading of graphics is stopped by the user (for example, when downloading the page)."
msgstr "ཚད་རིས་ཚུའི་མངོན་གསལ་འབད་ནི་འདི་ལག་ལེན་པ་འདི་གིས་བཀག་ཡོདཔ་མས། (for example, when downloading the page)."
@@ -34983,7 +33804,6 @@ msgstr "ཚད་རིས་ཚུའི་མངོན་གསལ་འབད
msgctxt ""
"05060700.xhp\n"
"par_id3154259\n"
-"62\n"
"help.text"
msgid "x"
msgstr ""
@@ -34992,7 +33812,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3155089\n"
-"63\n"
"help.text"
msgid "Graphics load faulty"
msgstr "ཚད་རིས་ཚུ་མངོན་གསལ་སྐྱོན་ཅན།"
@@ -35001,7 +33820,6 @@ msgstr "ཚད་རིས་ཚུ་མངོན་གསལ་སྐྱོན
msgctxt ""
"05060700.xhp\n"
"par_id3153307\n"
-"64\n"
"help.text"
msgid "Graphics not successfully loaded, for example, if a graphic was not found."
msgstr "ཚད་རིས་ཚུ་མཐར་འཁྱོལཝ་སྦེ་མངོན་གསལ་མ་འབད་བས་ དཔེར་ན་ ཚད་རིས་དེ་འཚོལ་མ་ཐོབ་པ་ཅིན།"
@@ -35010,7 +33828,6 @@ msgstr "ཚད་རིས་ཚུ་མཐར་འཁྱོལཝ་སྦེ
msgctxt ""
"05060700.xhp\n"
"par_id3148840\n"
-"65\n"
"help.text"
msgid "x"
msgstr ""
@@ -35019,7 +33836,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3154533\n"
-"66\n"
"help.text"
msgid "Input of alpha characters"
msgstr "ཨཱལ་ཕ་ཡིག་འབྲུ་ཚུའི་ཨིན་པུཊི།"
@@ -35028,7 +33844,6 @@ msgstr "ཨཱལ་ཕ་ཡིག་འབྲུ་ཚུའི་ཨིན་
msgctxt ""
"05060700.xhp\n"
"par_id3155266\n"
-"67\n"
"help.text"
msgid "Text is entered from the keyboard."
msgstr "ཚིག་ཡིག་འདི་གཙོ་ཚིག་ལས་བཙུགས་ཡོདཔ།"
@@ -35037,7 +33852,6 @@ msgstr "ཚིག་ཡིག་འདི་གཙོ་ཚིག་ལས་བ
msgctxt ""
"05060700.xhp\n"
"par_id3144768\n"
-"68\n"
"help.text"
msgid "x"
msgstr ""
@@ -35046,7 +33860,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3145659\n"
-"69\n"
"help.text"
msgid "Input of non-alpha characters"
msgstr "ཨཱལ་ཕ་མིན་མི་ཡིག་འབྲུ་ཚུའི་ཨིན་པུཊི།"
@@ -35055,7 +33868,6 @@ msgstr "ཨཱལ་ཕ་མིན་མི་ཡིག་འབྲུ་ཚུ
msgctxt ""
"05060700.xhp\n"
"par_id3151131\n"
-"70\n"
"help.text"
msgid "Nonprinting characters are entered from the keyboard, for example, tabs and line breaks."
msgstr "དཔར་བསྐྲུན་འབད་མ་བཏུབ་མི་ཡིག་འབྲུ་ཚུ་ཆ་མཉམ་གཙོ་ཚིག་ལས་བཙུགས་ཡོདཔ་ཨིན་ དཔེར་ན་ མཆོང་ལྡེ་ཚུ་དང་གྱལ་མཚམས་ཚུ།"
@@ -35064,7 +33876,6 @@ msgstr "དཔར་བསྐྲུན་འབད་མ་བཏུབ་མི
msgctxt ""
"05060700.xhp\n"
"par_id3159206\n"
-"71\n"
"help.text"
msgid "x"
msgstr ""
@@ -35073,7 +33884,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3150405\n"
-"72\n"
"help.text"
msgid "Resize frame"
msgstr "གཞི་ཁྲམ་ཚད་བསྐྱར་བཟོ་འབད་ནི།"
@@ -35082,7 +33892,6 @@ msgstr "གཞི་ཁྲམ་ཚད་བསྐྱར་བཟོ་འབད
msgctxt ""
"05060700.xhp\n"
"par_id3153972\n"
-"73\n"
"help.text"
msgid "Frame is resized with the mouse."
msgstr "གཞི་ཁྲམ་འདི་མའུསི་དང་གཅིག་ཁར་ཚད་བསྐྱར་བཟོ་འབད་ཡོདཔ།"
@@ -35091,7 +33900,6 @@ msgstr "གཞི་ཁྲམ་འདི་མའུསི་དང་གཅི
msgctxt ""
"05060700.xhp\n"
"par_id3152873\n"
-"74\n"
"help.text"
msgid "x"
msgstr ""
@@ -35100,7 +33908,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3148900\n"
-"75\n"
"help.text"
msgid "Move frame"
msgstr "གཞི་ཁྲམ་རྩ་བསྐྲད་གཏང་།"
@@ -35109,7 +33916,6 @@ msgstr "གཞི་ཁྲམ་རྩ་བསྐྲད་གཏང་།"
msgctxt ""
"05060700.xhp\n"
"par_id3154767\n"
-"76\n"
"help.text"
msgid "Frame is moved with the mouse."
msgstr "གཞི་ཁྲམ་འདི་མའུསི་དང་གཅིག་ཁར་སྤོ་བཤུས་འབད་ཡོདཔ།"
@@ -35118,7 +33924,6 @@ msgstr "གཞི་ཁྲམ་འདི་མའུསི་དང་གཅི
msgctxt ""
"05060700.xhp\n"
"par_id3155914\n"
-"77\n"
"help.text"
msgid "x"
msgstr ""
@@ -35127,7 +33932,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3153010\n"
-"78\n"
"help.text"
msgid "Before inserting AutoText"
msgstr "རང་བཞིན་ཚིག་ཡིག་བཙུགས་པའི་ཧེ་མ།"
@@ -35136,7 +33940,6 @@ msgstr "རང་བཞིན་ཚིག་ཡིག་བཙུགས་པའ
msgctxt ""
"05060700.xhp\n"
"par_id3147515\n"
-"79\n"
"help.text"
msgid "Before a text block is inserted."
msgstr "ཚིག་ཡིག་སྡེབ་ཚན་འདི་བཙུགས་པའི་ཧེ་མ།"
@@ -35145,7 +33948,6 @@ msgstr "ཚིག་ཡིག་སྡེབ་ཚན་འདི་བཙུག
msgctxt ""
"05060700.xhp\n"
"par_id3151191\n"
-"80\n"
"help.text"
msgid "x"
msgstr ""
@@ -35154,7 +33956,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"par_id3150956\n"
-"81\n"
"help.text"
msgid "After inserting AutoText"
msgstr "རང་བཞིན་ཚིག་ཡིག་བཙུགས་ཚར་བའི་ཤུལ་ལུ།"
@@ -35163,7 +33964,6 @@ msgstr "རང་བཞིན་ཚིག་ཡིག་བཙུགས་ཚར
msgctxt ""
"05060700.xhp\n"
"par_id3147502\n"
-"82\n"
"help.text"
msgid "After a text block is inserted."
msgstr "ཚིག་ཡིག་སྡེབ་ཚན་འདི་བཙུགས་ཚར་བའི་ཤུལ་ལུ།"
@@ -35172,7 +33972,6 @@ msgstr "ཚིག་ཡིག་སྡེབ་ཚན་འདི་བཙུག
msgctxt ""
"05060700.xhp\n"
"par_id3147555\n"
-"83\n"
"help.text"
msgid "x"
msgstr ""
@@ -35181,7 +33980,6 @@ msgstr ""
msgctxt ""
"05060700.xhp\n"
"hd_id3153958\n"
-"5\n"
"help.text"
msgid "Macros"
msgstr "མེཀརོསི།"
@@ -35190,7 +33988,6 @@ msgstr "མེཀརོསི།"
msgctxt ""
"05060700.xhp\n"
"par_id3150432\n"
-"6\n"
"help.text"
msgid "Choose the macro that you want to execute when the selected event occurs."
msgstr "སེལ་འཐུ་འབད་ཡོད་མི་འབྱུང་ལས་འབྱུང་མི་ཚུ་ལག་ལེན་འཐབ་ནི་ལུ་མེཀརོ་གདམ།"
@@ -35199,7 +33996,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་མི་འབྱུང
msgctxt ""
"05060700.xhp\n"
"par_id3147296\n"
-"84\n"
"help.text"
msgid "Frames allow you to link events to a function, so that the function can determine if it processes the event or $[officename] Writer."
msgstr "གཞི་ཁྲམ་ཚུ་གིས་ཁྱོད་ལུ་ལས་འགན་ལུ་འབྱུང་ལས་ཚུ་འབྲེལ་མཐུད་འབད་དེ་ ལས་འགན་གྱིས་འབྱུང་ལས་བྱ་སྒོའི་ལམ་ལུགས་འབད་ཡོད་པ་ཅིན་ཡང་ན་་$[officename] འབྲི་མི་གཏན་འབེབས་བཟོ་བཅུགཔ་ཨིན།"
@@ -35208,7 +34004,6 @@ msgstr "གཞི་ཁྲམ་ཚུ་གིས་ཁྱོད་ལུ་ལ
msgctxt ""
"05060700.xhp\n"
"hd_id3155587\n"
-"7\n"
"help.text"
msgid "Category"
msgstr "དབྱེ་རིམ།"
@@ -35217,7 +34012,6 @@ msgstr "དབྱེ་རིམ།"
msgctxt ""
"05060700.xhp\n"
"par_id3154068\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/libraries\">Lists the open $[officename] documents and applications. Click the name of the location where you want to save the macros.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/eventassignpage/libraries\"> ཐོ་ཡིག་འདི་ཚུ་ཁ་ཕྱེ་$[officename] ཡིག་ཆ་ཚུ་དང་འཇུག་སྤྱོད་ཚུ། ཁྱོད་ཀྱིས་མེཀརོསི་འདི་ག་སྟེ་སྲུང་བཞག་འབད་ནི་ཨིན་ན་གི་ག་ཡོད་མིང་འདི་ཨེབ་གཏང་འབད།</ahelp>"
@@ -35226,7 +34020,6 @@ msgstr "<ahelp hid=\"cui/ui/eventassignpage/libraries\"> ཐོ་ཡིག་
msgctxt ""
"05060700.xhp\n"
"hd_id3149744\n"
-"9\n"
"help.text"
msgid "Macro name"
msgstr "མེཀརོ་མིང་།"
@@ -35235,7 +34028,6 @@ msgstr "མེཀརོ་མིང་།"
msgctxt ""
"05060700.xhp\n"
"par_id3151391\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/macros\">Lists the available macros. Click the macro that you want to assign to the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/eventassignpage/macros\">མེཀརོ་ཐོབ་ཚུགས་མི་འདི་ཐོ་ཡིག་འབདཝ་ཨིན། ཁྱོད་ཀྱིས་སུལ་འཐུ་འབད་ཡོད་མི་དངོས་པོ་འདི་འགན་སྤྲོད་ནི་ལུ་མེཀརོ་འདི་ཨེབ་གཏང་འབད།</ahelp>"
@@ -35244,7 +34036,6 @@ msgstr "<ahelp hid=\"cui/ui/eventassignpage/macros\">མེཀརོ་ཐོབ
msgctxt ""
"05060700.xhp\n"
"hd_id3159260\n"
-"11\n"
"help.text"
msgid "Assign"
msgstr "འགན་སྤྲོད་ནི།"
@@ -35253,7 +34044,6 @@ msgstr "འགན་སྤྲོད་ནི།"
msgctxt ""
"05060700.xhp\n"
"par_id3147406\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">Assigns the selected macro to the specified event.</ahelp> The assigned macro's entries are set after the event."
msgstr "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">སེལ་འཐུ་འབད་ཡོད་མི་འབྱུང་ལས་ལུ་སེལ་འཐུ་འབད་ཡོད་མི་མེཀརོ་འདི་འགན་སྤྲོདཔ་ཨིན།</ahelp> འགན་སྤྲོད་ཡོད་མི་མེཀརོ་གི་ཐོ་བཀོད་ཚུ་འབྱུང་ལས་འདིའི་ཤུལ་ལས་གཞི་སྒྲིག་འབདཝ་ཨིན།"
@@ -35262,7 +34052,6 @@ msgstr "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">སེ
msgctxt ""
"05060700.xhp\n"
"hd_id3150533\n"
-"15\n"
"help.text"
msgid "Remove"
msgstr "རྩ་བསྐྲད་གཏང་།"
@@ -35271,7 +34060,6 @@ msgstr "རྩ་བསྐྲད་གཏང་།"
msgctxt ""
"05060700.xhp\n"
"par_id3166456\n"
-"16\n"
"help.text"
msgid "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\">Removes the macro that is assigned to the selected item.</ahelp></variable>"
msgstr "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\">སེལ་འཐུ་འབད་ཡོད་པའི་རྣམ་གྲངས་འདི་ལུ་འགན་སྤྲོད་ཡོད་མི་མེཀརོ་འདི་རྩ་བསྐྲད་གཏངམ་ཨིན</ahelp></variable>"
@@ -35280,7 +34068,6 @@ msgstr "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASS
msgctxt ""
"05060700.xhp\n"
"hd_id3159126\n"
-"85\n"
"help.text"
msgid "Macro selection"
msgstr "མེཀརོ་སེལ་འཐུ།"
@@ -35289,7 +34076,6 @@ msgstr "མེཀརོ་སེལ་འཐུ།"
msgctxt ""
"05060700.xhp\n"
"par_id3149149\n"
-"86\n"
"help.text"
msgid "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Select the macro that you want to assign.</ahelp>"
msgstr "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">ཁྱོད་ཀྱིས་འགན་སྤྲོད་ལུ་མེཀརོ་འདི་སེལ་འཐུ་འབད།</ahelp>"
@@ -35322,7 +34108,6 @@ msgstr "<bookmark_value>ཨའི་ཌི་ཨི་ ནང་ལྡེ་ས
msgctxt ""
"keys.xhp\n"
"hd_id3154760\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Keyboard Shortcuts in the Basic IDE\">Keyboard Shortcuts in the Basic IDE</link>"
msgstr "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Keyboard Shortcuts in the Basic IDE\">གཞི་རིམ་ཨའི་ཌི་ཨི་ནང་ལྡེ་སྒྲོམ་མགྱོགས་ཐབས་ཚུ་</link>"
@@ -35331,7 +34116,6 @@ msgstr "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Keyboard Shortcuts in
msgctxt ""
"keys.xhp\n"
"par_id3149655\n"
-"2\n"
"help.text"
msgid "In the Basic IDE you can use the following keyboard shortcuts:"
msgstr "ཁྱོད་ཀྱིས་གཞི་རིམ་ཨའི་ཌི་ཨི་ནང་འོག་གི་ལྡེ་སྒྲོམ་མགྱོགས་དབས་ཚུ་ལག་ལེན་འཐབ་བཏུབ:"
@@ -35340,7 +34124,6 @@ msgstr "ཁྱོད་ཀྱིས་གཞི་རིམ་ཨའི་ཌི
msgctxt ""
"keys.xhp\n"
"par_id3154908\n"
-"3\n"
"help.text"
msgid "Action"
msgstr "བྱ་བ།"
@@ -35349,7 +34132,6 @@ msgstr "བྱ་བ།"
msgctxt ""
"keys.xhp\n"
"par_id3153192\n"
-"4\n"
"help.text"
msgid "Keyboard shortcut"
msgstr "ལྡེ་སྒྲོམ་མགྱོགས་ཐབས།"
@@ -35358,7 +34140,6 @@ msgstr "ལྡེ་སྒྲོམ་མགྱོགས་ཐབས།"
msgctxt ""
"keys.xhp\n"
"par_id3159254\n"
-"5\n"
"help.text"
msgid "Run code starting from the first line, or from the current breakpoint, if the program stopped there before"
msgstr "གྱལ་དང་པ་འགོ་བཟུང་ ཡང་ན་ད་ལྟོའི་བེརེཀ་པོཡིནཊི་དེ་ལས་ ལས་རིམ་ཕར་ཧེ་མ་བཀག་བཞག་ཡོད་པ་ཅིན་ཨང་རྟགས་གཡོག་བཀོལ།"
@@ -35367,7 +34148,6 @@ msgstr "གྱལ་དང་པ་འགོ་བཟུང་ ཡང་ན་
msgctxt ""
"keys.xhp\n"
"par_id3163712\n"
-"6\n"
"help.text"
msgid "F5"
msgstr "ཨེཕི་ ༥"
@@ -35376,7 +34156,6 @@ msgstr "ཨེཕི་ ༥"
msgctxt ""
"keys.xhp\n"
"par_id3150010\n"
-"7\n"
"help.text"
msgid "Stop"
msgstr "བཀག"
@@ -35385,7 +34164,6 @@ msgstr "བཀག"
msgctxt ""
"keys.xhp\n"
"par_id3154319\n"
-"8\n"
"help.text"
msgid "Shift+F5"
msgstr "བཤུད+ཨེཕི ༥"
@@ -35394,7 +34172,6 @@ msgstr "བཤུད+ཨེཕི ༥"
msgctxt ""
"keys.xhp\n"
"par_id3151073\n"
-"11\n"
"help.text"
msgid "Add <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">watch</link> for the variable at the cursor"
msgstr "འོད་རྟགས་ལུ་འགྱུར་ཅན་དོན་ལུ་ <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">བལྟ་ཞིབ་འབད་ནི་</link>ཁ་སྐོང་འབད།"
@@ -35403,7 +34180,6 @@ msgstr "འོད་རྟགས་ལུ་འགྱུར་ཅན་དོན
msgctxt ""
"keys.xhp\n"
"par_id3154731\n"
-"12\n"
"help.text"
msgid "F7"
msgstr "ཨེཕི་ ༧"
@@ -35412,7 +34188,6 @@ msgstr "ཨེཕི་ ༧"
msgctxt ""
"keys.xhp\n"
"par_id3148455\n"
-"13\n"
"help.text"
msgid "Single step through each statement, starting at the first line or at that statement where the program execution stopped before."
msgstr "གྱལ་དང་པ་ལས་འགོ་བཟུང་ཡང་ན་གསལ་བཤད་དེ་ལས་རིམ་ལག་ལེན་འཐབ་ནི་བཀག་ཡོད་པའི་ཧེ་མ་ལུ་གསལ་བཤད་རེ་རེ་བརྒྱུད་དེ་རིམ་པ་རྐྱང་པ་ཨིན།"
@@ -35421,7 +34196,6 @@ msgstr "གྱལ་དང་པ་ལས་འགོ་བཟུང་ཡང་
msgctxt ""
"keys.xhp\n"
"par_id3150716\n"
-"14\n"
"help.text"
msgid "F8"
msgstr "ཨེཕི ༨"
@@ -35430,7 +34204,6 @@ msgstr "ཨེཕི ༨"
msgctxt ""
"keys.xhp\n"
"par_id3156275\n"
-"15\n"
"help.text"
msgid "Single step as with F8, but a function call is considered to be only <emph>one</emph> statement"
msgstr "རིམ་པ་རྐྱང་པ་ཨེཕ་ ༨ དང་གཅིག་ཁར་ ཨིན་རུང་ལས་འགན་ཅིག་<emph>གསལ་བཤད་</emph> གཅིག་རྐྱངམ་སྦེ་དང་ལེན་འབད་བོད་ཡོད།"
@@ -35439,7 +34212,6 @@ msgstr "རིམ་པ་རྐྱང་པ་ཨེཕ་ ༨ དང་གཅ
msgctxt ""
"keys.xhp\n"
"par_id3153764\n"
-"16\n"
"help.text"
msgid "Shift+F8"
msgstr "བཤུད་+ཨེཕི་ ༨"
@@ -35448,7 +34220,6 @@ msgstr "བཤུད་+ཨེཕི་ ༨"
msgctxt ""
"keys.xhp\n"
"par_id3150323\n"
-"17\n"
"help.text"
msgid "Set or remove a <link href=\"text/sbasic/shared/01030300.xhp\" name=\"breakpoint\">breakpoint</link> at the current line or all breakpoints in the current selection"
msgstr "གཞི་སྒྲིག་ཡང་ རྩ་བསྐྲད་གཏང་ <link href=\"text/sbasic/shared/01030300.xhp\" name=\"breakpoint\">བེརེཀ་པོཡིནཊི་</link> ད་ལྟོའི་གྱལ་ཡང་ན་ ད་ལྟོའི་སེལ་འཐུ་ནང་བེརེཀ་པོཡིནཊིསི་ཆ་མཉམ།"
@@ -35457,7 +34228,6 @@ msgstr "གཞི་སྒྲིག་ཡང་ རྩ་བསྐྲད་ག
msgctxt ""
"keys.xhp\n"
"par_id3147339\n"
-"18\n"
"help.text"
msgid "F9"
msgstr "ཨེཕི ༩"
@@ -35466,7 +34236,6 @@ msgstr "ཨེཕི ༩"
msgctxt ""
"keys.xhp\n"
"par_id3153963\n"
-"19\n"
"help.text"
msgid "Enable/disable the breakpoint at the current line or all breakpoints in the current selection"
msgstr "བེརེཀ་པོ་ཡིནཊི་ད་ལྟོའི་གྱལ་ཡང་ན་ད་ལྟོའི་སེལ་འཐུ་ནང་བེཡེཀ་པོ་ཡིནཊིསི་ཆ་མཉམ་ལུ་ལྕོགས་ཅན་/ལྕོགས་མིན་བཟོ།"
@@ -35475,7 +34244,6 @@ msgstr "བེརེཀ་པོ་ཡིནཊི་ད་ལྟོའི་ག
msgctxt ""
"keys.xhp\n"
"par_id3155175\n"
-"20\n"
"help.text"
msgid "Shift+F9"
msgstr "བཤུད+ཨེཕི ༩"
@@ -35484,7 +34252,6 @@ msgstr "བཤུད+ཨེཕི ༩"
msgctxt ""
"keys.xhp\n"
"par_id3154702\n"
-"21\n"
"help.text"
msgid "A running macro can be aborted with Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q, also from outside of the Basic IDE. If you are inside the Basic IDE and the macro halts at a breakpoint, Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q stops execution of the macro, but you can recognize this only after the next F5, F8, or Shift+F8."
msgstr ""
@@ -35509,7 +34276,6 @@ msgstr "<bookmark_value>ལག་ཆས་ཕྲ་རིང་ཚུ་ གཞ
msgctxt ""
"main0211.xhp\n"
"hd_id3150543\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Macro Toolbar</link>"
msgstr "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">མེཀརོ་ལག་ཆས་ཕྲ་རིང་</link>"
@@ -35518,7 +34284,6 @@ msgstr "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">
msgctxt ""
"main0211.xhp\n"
"par_id3147288\n"
-"2\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">The <emph>Macro Toolbar </emph>contains commands to create, edit, and run macros.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">མེཀརོ་ལག་ཆས་ཕྲ་རིང་ <emph>འདི་ནང་ན་ </emph>གསལ་བསྐྲུན་ ཞུན་དག་་འབད་ནི་དང་་མེཀརོ་གཡོག་བཀོལ་ནིའི་བརྡ་བཀོད་ཚུ་ཡོདཔ་ཨིན།</ahelp>"
@@ -35535,7 +34300,6 @@ msgstr "$[officename] གཞི་རྟེན་འགྲོགས་རམ།"
msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME གཞི་རིམ་འགྲོགས་རམ</link>"
@@ -35544,7 +34308,6 @@ msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basi
msgctxt ""
"main0601.xhp\n"
"par_id3153894\n"
-"4\n"
"help.text"
msgid "%PRODUCTNAME provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit <link href=\"http://api.libreoffice.org/\" name=\"http://api.libreoffice.org\">http://api.libreoffice.org</link>"
msgstr ""
@@ -35553,7 +34316,6 @@ msgstr ""
msgctxt ""
"main0601.xhp\n"
"par_id3147226\n"
-"10\n"
"help.text"
msgid "This help section explains the most common runtime functions of %PRODUCTNAME Basic. For more in-depth information please refer to the <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC Programming Guide</link> on the Wiki."
msgstr ""
@@ -35562,7 +34324,6 @@ msgstr ""
msgctxt ""
"main0601.xhp\n"
"hd_id3146957\n"
-"9\n"
"help.text"
msgid "Working with %PRODUCTNAME Basic"
msgstr "%PRODUCTNAME གཞི་རྟེན་བཅས་ལཱ་འབད་དོ།"
@@ -35571,7 +34332,6 @@ msgstr "%PRODUCTNAME གཞི་རྟེན་བཅས་ལཱ་འབད
msgctxt ""
"main0601.xhp\n"
"hd_id3148473\n"
-"7\n"
"help.text"
msgid "Help about the Help"
msgstr "འགྲོགས་རམ་འདི་འགྲོགས་རམ་སྐོར་ལས།"
diff --git a/source/dz/helpcontent2/source/text/sbasic/shared/01.po b/source/dz/helpcontent2/source/text/sbasic/shared/01.po
index dfe8ec664ff..98b292b008b 100644
--- a/source/dz/helpcontent2/source/text/sbasic/shared/01.po
+++ b/source/dz/helpcontent2/source/text/sbasic/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2011-04-05 19:27+0200\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"PO-Revision-Date: 2016-05-02 10:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,8 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462185673.000000\n"
#: 06130000.xhp
msgctxt ""
@@ -35,7 +36,6 @@ msgstr "<bookmark_value>མེཀ་རོསི;གཞི་རྩ་ ཨའི
msgctxt ""
"06130000.xhp\n"
"hd_id3145786\n"
-"1\n"
"help.text"
msgid "Macro"
msgstr "མེཀ་རོ།"
@@ -44,7 +44,6 @@ msgstr "མེཀ་རོ།"
msgctxt ""
"06130000.xhp\n"
"par_id3152886\n"
-"2\n"
"help.text"
msgid "<variable id=\"makro\"><ahelp hid=\".uno:ChooseMacro\">Opens the <emph>Macro </emph>dialog, where you can create, edit, organize, and run $[officename] Basic macros.</ahelp></variable>"
msgstr ""
@@ -53,7 +52,6 @@ msgstr ""
msgctxt ""
"06130000.xhp\n"
"hd_id3154145\n"
-"3\n"
"help.text"
msgid "Macro name"
msgstr "མེཀ་རོའི་ མིང་།"
@@ -62,7 +60,6 @@ msgstr "མེཀ་རོའི་ མིང་།"
msgctxt ""
"06130000.xhp\n"
"par_id3151116\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/macronameedit\">Displays the name of the selected macro. To create or to change the name of a macro, enter a name here.</ahelp>"
msgstr ""
@@ -71,7 +68,6 @@ msgstr ""
msgctxt ""
"06130000.xhp\n"
"hd_id3153729\n"
-"7\n"
"help.text"
msgid "Macro from / Save macro in"
msgstr "ནང་ལས་ མེཀ་རོ/ནང་ལུ་ མེཀ་རོ་སྲུང་བཞག་འབད།"
@@ -80,7 +76,6 @@ msgstr "ནང་ལས་ མེཀ་རོ/ནང་ལུ་ མེཀ་ར
msgctxt ""
"06130000.xhp\n"
"par_id3153190\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/libraries\">Lists the libraries and the modules where you can open or save your macros. To save a macro with a particular document, open the document, and then open this dialog.</ahelp>"
msgstr "<ahelp hid=\"HID_BASICIDE_LIBS\">ཁྱོད་ཀྱི་ མེཀ་རོསི་ ཁ་ཕྱེ་ནི་དང་ ཡང་ན་ སྲུང་བཞག་འབད་ཚུགས་པའི་ དཔེ་མཛོད་དང་ཚད་གཞི་ཐོ་འགོད་འབདཝ་ཨིན། ཡིག་ཆ་བྱེ་བྲག་དང་གཅིག་ཁར་ མེཀ་རོ་ སྲུང་བཞག་འབད་ནིའི་དོན་ལུ་ ཡིག་ཆ་ཁ་ཕྱེ་བཞིནམ་ལས་ དེ་ལས་ འ་ནི་ཌའི་ལོག་ འདི་ཁ་ཕྱེ།</ahelp>"
@@ -89,7 +84,6 @@ msgstr "<ahelp hid=\"HID_BASICIDE_LIBS\">ཁྱོད་ཀྱི་ མེཀ
msgctxt ""
"06130000.xhp\n"
"hd_id3146975\n"
-"11\n"
"help.text"
msgid "Run / Save"
msgstr "ཡགོག་བཀོལ་/སྲུང་བཞག་འབད།"
@@ -98,7 +92,6 @@ msgstr "ཡགོག་བཀོལ་/སྲུང་བཞག་འབད།"
msgctxt ""
"06130000.xhp\n"
"par_id3154791\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/run\">Runs or saves the current macro.</ahelp>"
msgstr ""
@@ -107,7 +100,6 @@ msgstr ""
msgctxt ""
"06130000.xhp\n"
"hd_id3153158\n"
-"15\n"
"help.text"
msgid "Assign"
msgstr "འགན་སྤྱོད།"
@@ -116,7 +108,6 @@ msgstr "འགན་སྤྱོད།"
msgctxt ""
"06130000.xhp\n"
"par_id3149961\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/assign\">Opens the Customize dialog, where you can assign the selected macro to a menu command, a toolbar, or an event.</ahelp>"
msgstr ""
@@ -125,7 +116,6 @@ msgstr ""
msgctxt ""
"06130000.xhp\n"
"hd_id3145799\n"
-"17\n"
"help.text"
msgid "Edit"
msgstr "ཞུན་དག་འབད།"
@@ -134,7 +124,6 @@ msgstr "ཞུན་དག་འབད།"
msgctxt ""
"06130000.xhp\n"
"par_id3147127\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/edit\">Starts the $[officename] Basic editor and opens the selected macro for editing.</ahelp>"
msgstr ""
@@ -143,7 +132,6 @@ msgstr ""
msgctxt ""
"06130000.xhp\n"
"hd_id3149400\n"
-"19\n"
"help.text"
msgid "New/Delete"
msgstr "གསརཔ་/བཏོན་གཏང་།"
@@ -152,7 +140,6 @@ msgstr "གསརཔ་/བཏོན་གཏང་།"
msgctxt ""
"06130000.xhp\n"
"par_id3155602\n"
-"61\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/delete\">Creates a new macro, or deletes the selected macro.</ahelp>"
msgstr ""
@@ -161,7 +148,6 @@ msgstr ""
msgctxt ""
"06130000.xhp\n"
"par_id3149124\n"
-"20\n"
"help.text"
msgid "To create a new macro, select the \"Standard\" module in the <emph>Macro from</emph> list, and then click <emph>New</emph>."
msgstr ""
@@ -170,7 +156,6 @@ msgstr ""
msgctxt ""
"06130000.xhp\n"
"par_id3150749\n"
-"21\n"
"help.text"
msgid "To delete a macro, select it, and then click <emph>Delete</emph>."
msgstr "མེཀ་རོ་བཏོན་གཏང་ནིའི་དོན་ལུ་ སེལ་འཐུ་འབད་དེ་ དེ་ལས་ཨེབ་གཏང་འབད།T <emph>Delete</emph>."
@@ -179,7 +164,6 @@ msgstr "མེཀ་རོ་བཏོན་གཏང་ནིའི་དོན
msgctxt ""
"06130000.xhp\n"
"hd_id3153764\n"
-"22\n"
"help.text"
msgid "Organizer"
msgstr "འགོ་འདྲེན་པ།"
@@ -188,7 +172,6 @@ msgstr "འགོ་འདྲེན་པ།"
msgctxt ""
"06130000.xhp\n"
"par_id3148405\n"
-"23\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/organize\">Opens the <emph>Macro Organizer</emph> dialog, where you can add, edit, or delete existing macro modules, dialogs, and libraries.</ahelp>"
msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_ORG\">གིས་ད་ལྟོ་ཡོད་པའི་ <emph>མེཀ་རོ་ཚད་གཞི་དང་ ཌིའ་ལོགསི་ དེ་ལས་ དཔེ་མཛོད་ཁ་སྐོང་དང་ བཏོན་གཏང་ནི་དེ་ལས་ ཞུན་དག་འབད་ཚུགས་ནི་ལུ་ མེཀ་རོ་གི་ཌའི་ལོག་འགོ་འདྲེན་པ་</emph>ཁ་ཕྱེཝ་ཨིན།</ahelp>"
@@ -197,7 +180,6 @@ msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_ORG\">གིས
msgctxt ""
"06130000.xhp\n"
"hd_id3166447\n"
-"29\n"
"help.text"
msgid "Module/Dialog"
msgstr "ཚད་གཞི་/ཌའི་ལོག"
@@ -206,7 +188,6 @@ msgstr "ཚད་གཞི་/ཌའི་ལོག"
msgctxt ""
"06130000.xhp\n"
"par_id3155959\n"
-"30\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/library\">Lists the existing macros and dialogs.</ahelp>"
msgstr ""
@@ -215,7 +196,6 @@ msgstr ""
msgctxt ""
"06130000.xhp\n"
"par_id3149922\n"
-"31\n"
"help.text"
msgid "You can drag-and-drop a module or a dialog between libraries."
msgstr ""
@@ -224,7 +204,6 @@ msgstr ""
msgctxt ""
"06130000.xhp\n"
"par_id3159333\n"
-"33\n"
"help.text"
msgid "To copy a dialog or a module, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while you drag-and-drop."
msgstr "མེཀ་རོ་ཡང་ན་ཌའི་ལོག་འདྲ་བཤུས་བརྐྱབ་ནི་ལུ་ <switchinline select=\"sys\"><caseinline select=\"MAC\">ཁྱོད་ཀྱིས་འདྲུད་ཞིནམ་དང་བཀོག་བཞག་པའི་སྐབས་ </caseinline><defaultinline>བརྡ་བཀོད་</defaultinline></switchinline> ཚད་འཛིན་ལྡེ་མིག་བཀག་བཞག།"
@@ -233,7 +212,6 @@ msgstr "མེཀ་རོ་ཡང་ན་ཌའི་ལོག་འདྲ་
msgctxt ""
"06130000.xhp\n"
"hd_id3147131\n"
-"34\n"
"help.text"
msgid "Edit"
msgstr "ཞུན་དག་འབད།"
@@ -242,7 +220,6 @@ msgstr "ཞུན་དག་འབད།"
msgctxt ""
"06130000.xhp\n"
"par_id3149816\n"
-"35\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/edit\">Opens the selected macro or dialog for editing.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/edit\">ཞུན་དག་འབད་ནི་དོན་ལུ་ སེལ་འཐུ་འབད་ཡོད་པའི་མེཀ་རོ་ཡང་ན་ ཌའི་ལོག་འདི་ཁ་ཕྱེཝ་ཨིན།</ahelp>"
@@ -251,7 +228,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/edit\">ཞུན་དག་
msgctxt ""
"06130000.xhp\n"
"hd_id3151214\n"
-"36\n"
"help.text"
msgid "New"
msgstr "གསརཔ།"
@@ -260,7 +236,6 @@ msgstr "གསརཔ།"
msgctxt ""
"06130000.xhp\n"
"par_id3154202\n"
-"37\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newmodule\">Creates a new module.</ahelp>"
msgstr ""
@@ -269,7 +244,6 @@ msgstr ""
msgctxt ""
"06130000.xhp\n"
"par_id3153269\n"
-"40\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newdialog\">Creates a new dialog.</ahelp>"
msgstr ""
@@ -278,7 +252,6 @@ msgstr ""
msgctxt ""
"06130000.xhp\n"
"hd_id3154587\n"
-"42\n"
"help.text"
msgid "Libraries tab page"
msgstr "དཔེ་མཛོད་ མཆོང་ལྡེ་ ཤོག་ལེབ།"
@@ -287,7 +260,6 @@ msgstr "དཔེ་མཛོད་ མཆོང་ལྡེ་ ཤོག་ལ
msgctxt ""
"06130000.xhp\n"
"par_id3153705\n"
-"43\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newdialog\">Lets you manage the macro libraries.</ahelp>"
msgstr ""
@@ -296,7 +268,6 @@ msgstr ""
msgctxt ""
"06130000.xhp\n"
"hd_id3145259\n"
-"44\n"
"help.text"
msgid "Location"
msgstr "གནས་ཁོངས།"
@@ -305,7 +276,6 @@ msgstr "གནས་ཁོངས།"
msgctxt ""
"06130000.xhp\n"
"par_id3153234\n"
-"45\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/location\">Select the location containing the macro libraries that you want to organize.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/location\">གིས་ གློག་རིམ་ ཡང་ན་ ཁྱོད་ཀྱིས་མེཀ་རོ་དཔེ་མཛོད་ཡོད་མི་ཡིག་ཆ་ འགོ་འདྲེན་འཐབ་གོ་མནོ་མི་ སེལ་འཐུ་འབད།</ahelp>"
@@ -314,7 +284,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/location\">གིས་ གླ
msgctxt ""
"06130000.xhp\n"
"hd_id3148460\n"
-"46\n"
"help.text"
msgid "Library"
msgstr "དཔེ་མཛོད།"
@@ -323,7 +292,6 @@ msgstr "དཔེ་མཛོད།"
msgctxt ""
"06130000.xhp\n"
"par_id3150828\n"
-"47\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/library\">Lists the macro libraries in the chosen location.</ahelp>"
msgstr ""
@@ -332,7 +300,6 @@ msgstr ""
msgctxt ""
"06130000.xhp\n"
"hd_id3145134\n"
-"48\n"
"help.text"
msgid "Edit"
msgstr "ཞུན་དག་འབད།"
@@ -341,7 +308,6 @@ msgstr "ཞུན་དག་འབད།"
msgctxt ""
"06130000.xhp\n"
"par_id3150518\n"
-"49\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/edit\">Opens the $[officename] Basic editor so that you can modify the selected library.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/edit\"> $[officename] གཞི་རྟེན་ཞུན་དགཔ་འདི་ཁ་ཕྱེཝ་ཨིན་ དེ་འབད་བ་ཅིན་ སེལ་འཐུ་འབད་ཡོད་པའི་དཔེ་མཛོད་འདི་ལེགས་བཅོས་འབད་བཏུབ་ཨིན། </ahelp>"
@@ -350,7 +316,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/edit\"> $[officename] གཞི
msgctxt ""
"06130000.xhp\n"
"hd_id3150371\n"
-"50\n"
"help.text"
msgid "Password"
msgstr "ཆོག་ཡིག"
@@ -359,7 +324,6 @@ msgstr "ཆོག་ཡིག"
msgctxt ""
"06130000.xhp\n"
"par_id3166430\n"
-"51\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/password\">Assigns or edits the <link href=\"text/sbasic/shared/01/06130100.xhp\" name=\"password\">password</link> for the selected library. \"Standard\" libraries cannot have a password.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/password\">གིས་འགན་སྤྱོད་ ཡང་ན་ ཞུན་དག་འཕདཝ་ཨིན <link href=\"text/sbasic/shared/01/06130100.xhp\" name=\"password\">password</link> སེལ་འཐུ་འབད་ཡོད་མི་ དཔེ་མཛོད་ཀྱི་དོན་ལུ</ahelp>"
@@ -368,7 +332,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/password\">གིས་འག
msgctxt ""
"06130000.xhp\n"
"hd_id3154372\n"
-"52\n"
"help.text"
msgid "New"
msgstr "གསརཔ།"
@@ -377,7 +340,6 @@ msgstr "གསརཔ།"
msgctxt ""
"06130000.xhp\n"
"par_id3145387\n"
-"53\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/new\">Creates a new library.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/new\">དཔེ་མཛོད་གསརཔ་འདི་གསར་བསྐྲུན་འབདཝ་ཨིན།</ahelp>"
@@ -386,7 +348,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/new\">དཔེ་མཛོད
msgctxt ""
"06130000.xhp\n"
"hd_id3154259\n"
-"56\n"
"help.text"
msgid "Name"
msgstr "མིང་།"
@@ -395,7 +356,6 @@ msgstr "མིང་།"
msgctxt ""
"06130000.xhp\n"
"par_id3156169\n"
-"57\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/newlibdialog/NewLibDialog\">Enter a name for the new module, dialog, or library.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/newlibdialog/NewLibDialog\">དཔེ་མཛོད་གསརཔ་་ཡང་ན་ ཚད་གཞི་གི་དོན་ལུ་ མིང་ཐོ་བཀོད་འབད།</ahelp>"
@@ -404,7 +364,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/newlibdialog/NewLibDialog\">དཔེ
msgctxt ""
"06130000.xhp\n"
"hd_id3151183\n"
-"54\n"
"help.text"
msgid "Append"
msgstr "མཇུག་བསྣོན་འབད།"
@@ -413,7 +372,6 @@ msgstr "མཇུག་བསྣོན་འབད།"
msgctxt ""
"06130000.xhp\n"
"par_id3155126\n"
-"55\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/import\">Locate that $[officename] Basic library that you want to add to the current list, and then click Open.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/import\">ཁྱོད་ཀྱིས་ད་ལྟོའི་ཐོ་ཡིག་ལུ་བརྐྱབ་དགོ་པའི་ $[officename] གཞི་རྟེན་དཔེ་མཛོད་འདི་ག་ཡོད་འཚོལ་ནི་དང་ ཁ་ཕྱེ་འདི་ཨེབ་གཏང་འབད།</ahelp>"
@@ -430,7 +388,6 @@ msgstr "ཆོག་ཡིག་བསྒྱུར་བཅོས་འབད།
msgctxt ""
"06130100.xhp\n"
"hd_id3159399\n"
-"1\n"
"help.text"
msgid "Change Password"
msgstr "ཆོག་ཡིག་བསྒྱུར་བཅོས་འབད།"
@@ -439,7 +396,6 @@ msgstr "ཆོག་ཡིག་བསྒྱུར་བཅོས་འབད།
msgctxt ""
"06130100.xhp\n"
"par_id3150276\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/passwd/PasswordDialog\">Protects the selected library with a password.</ahelp> You can enter a new password, or change the current password."
msgstr "<ahelp hid=\"svx/ui/passwd/PasswordDialog\">སེལ་འཐུ་གྲུབ་ཡོད་པའི་ དཔེ་མཛོད་དེ་ ཆོག་ཡིག་དང་བཅས་ ཉེན་སྐྱོབ་འབདཝ་ཨིན།</ahelp>ཁྱོད་ཀྱི་ ཆོག་ཡིག་གསརཔ་ཅིག་དང་ ཡང་ན་ ད་ལྟོའི་ཆོག་ཡིག་དེ་ སོར་བཏུབ་ཨིན།"
@@ -448,7 +404,6 @@ msgstr "<ahelp hid=\"svx/ui/passwd/PasswordDialog\">སེལ་འཐུ་ག
msgctxt ""
"06130100.xhp\n"
"hd_id3154285\n"
-"3\n"
"help.text"
msgid "Old password"
msgstr "ཆོག་ཡིག་རྙིངམ།"
@@ -457,7 +412,6 @@ msgstr "ཆོག་ཡིག་རྙིངམ།"
msgctxt ""
"06130100.xhp\n"
"hd_id3153665\n"
-"4\n"
"help.text"
msgid "Password"
msgstr "ཆོག་ཡིག"
@@ -466,7 +420,6 @@ msgstr "ཆོག་ཡིག"
msgctxt ""
"06130100.xhp\n"
"par_id3155628\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/passwd/oldpassEntry\">Enter the current password for the selected library.</ahelp>"
msgstr "<ahelp hid=\"svx/ui/passwd/oldpassEntry\">སེལ་འཐུ་འབད་ཡོད་པའི་ དཔེ་མཛོད་ཀྱི་དོན་ལུ་ ད་ལྟོའི་ཆོག་ཡིག་འདི་ བཙུགས།</ahelp>"
@@ -475,7 +428,6 @@ msgstr "<ahelp hid=\"svx/ui/passwd/oldpassEntry\">སེལ་འཐུ་འབ
msgctxt ""
"06130100.xhp\n"
"hd_id3153126\n"
-"6\n"
"help.text"
msgid "New password"
msgstr "ཆོག་ཡིག་གསརཔ།"
@@ -484,7 +436,6 @@ msgstr "ཆོག་ཡིག་གསརཔ།"
msgctxt ""
"06130100.xhp\n"
"hd_id3153628\n"
-"7\n"
"help.text"
msgid "Password"
msgstr "ཆོག་ཡིག"
@@ -493,7 +444,6 @@ msgstr "ཆོག་ཡིག"
msgctxt ""
"06130100.xhp\n"
"par_id3159413\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/passwd/newpassEntry\">Enter a new password for the selected library.</ahelp>"
msgstr "<ahelp hid=\"svx/ui/passwd/newpassEntry\">སེལ་འཐུ་འབད་ཡོད་པའི་ དཔེ་མཛོད་ཀྱི་དོན་ལུ་ ཆོག་ཡིག་གསརཔ་ཅིག་ བཙུགས།</ahelp>"
@@ -502,7 +452,6 @@ msgstr "<ahelp hid=\"svx/ui/passwd/newpassEntry\">སེལ་འཐུ་འབ
msgctxt ""
"06130100.xhp\n"
"hd_id3148947\n"
-"9\n"
"help.text"
msgid "Confirm"
msgstr "ངེས་དཔྱད་འབད།"
@@ -511,7 +460,6 @@ msgstr "ངེས་དཔྱད་འབད།"
msgctxt ""
"06130100.xhp\n"
"par_id3149457\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/passwd/confirmpassEntry\">Repeat the new password for the selected library.</ahelp>"
msgstr "<ahelp hid=\"svx/ui/passwd/confirmpassEntry\">སེལ་འཐུ་འབད་ཡོད་པའི་དཔེ་མཛོད་ཀྱི་དོན་ལས་ཆོག་ཡིག་གསརཔ་ཡང་བསྐྱར་འབད།</ahelp>"
@@ -536,7 +484,6 @@ msgstr "<bookmark_value>lདཔེ་མཛོད་ཁ་སྐོང་རྐ
msgctxt ""
"06130500.xhp\n"
"hd_id3150502\n"
-"1\n"
"help.text"
msgid "Append libraries"
msgstr "དཔེ་མཛོད་ མཇུག་བསྣོན་འབད།"
@@ -545,7 +492,6 @@ msgstr "དཔེ་མཛོད་ མཇུག་བསྣོན་འབད
msgctxt ""
"06130500.xhp\n"
"par_id3154840\n"
-"2\n"
"help.text"
msgid "Locate that <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open."
msgstr ""
@@ -554,7 +500,6 @@ msgstr ""
msgctxt ""
"06130500.xhp\n"
"hd_id3149119\n"
-"3\n"
"help.text"
msgid "File name:"
msgstr "ཡིག་སྣོད་ཀྱི་མིང་།"
@@ -563,7 +508,6 @@ msgstr "ཡིག་སྣོད་ཀྱི་མིང་།"
msgctxt ""
"06130500.xhp\n"
"par_id3147102\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/importlibdialog/ImportLibDialog\">Enter a name or the path to the library that you want to append.</ahelp> You can also select a library from the list."
msgstr "<ahelp hid=\"modules/BasicIDE/ui/importlibdialog/ImportLibDialog\">ཁྱོད་ཀྱིས་ དཔེ་མཛོད་མཇུག་བསྣོན་འབད་ནི་ཨིན་མི་ལུ་ མིང་ ཡང་ན་ འགྲུལ་ལམ་བཙུགས།</ahelp> ཁྱོད་ཀྱིས་ ཐོ་ཡིག་ནང་ལས་དཔེ་མཛོད་ཡང་སེལ་འཐུ་འབད་ཚུགས།"
@@ -572,7 +516,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/importlibdialog/ImportLibDialog\">ཁ
msgctxt ""
"06130500.xhp\n"
"hd_id3147291\n"
-"5\n"
"help.text"
msgid "Options"
msgstr "འདམ་ཁ།"
@@ -581,7 +524,6 @@ msgstr "འདམ་ཁ།"
msgctxt ""
"06130500.xhp\n"
"hd_id3147226\n"
-"7\n"
"help.text"
msgid "Insert as reference (read-only)"
msgstr "གཞི་བསྟུན་སྦེ་ ནང་ན་བཙུགས།(ལྷག་ནི་རྐྱངམ་ཅིག)"
@@ -590,7 +532,6 @@ msgstr "གཞི་བསྟུན་སྦེ་ ནང་ན་བཙུག
msgctxt ""
"06130500.xhp\n"
"par_id3155892\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/importlibdialog/ref\">Adds the selected library as a read-only file. The library is reloaded each time you start <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/importlibdialog/ref\">སེལ་འཐུ་འབད་ཡོད་པའི་ དཔེ་མཛོད་དེ་ ལྷག་ནི་རྐྱངམ་ཅིག་གི་ ཡིག་སྣོད་སྦེ་ ཁ་སྐོང་རྐྱབ་ཨིན། འ་ནཱི་དཔེ་མཛོད་དེ་ ཁྱོད་ཀྱི་<item type=\"productname\">%PRODUCTNAME</item>ཚར་རེ་ འགོ་བཙུགསཔ་ད་ མངོན་གསལ་འབདཝ་ཨིན།</ahelp>"
@@ -599,7 +540,6 @@ msgstr "<ahelp hid=\"modules/BasicIDE/ui/importlibdialog/ref\">སེལ་འ
msgctxt ""
"06130500.xhp\n"
"hd_id3145071\n"
-"9\n"
"help.text"
msgid "Replace existing libraries"
msgstr "སྤྲོ་སྣང་ཅན་གྱི་དཔེ་མཛོད་ཚུ་ ཚབ་བཙུགས།"
@@ -608,7 +548,6 @@ msgstr "སྤྲོ་སྣང་ཅན་གྱི་དཔེ་མཛོད
msgctxt ""
"06130500.xhp\n"
"par_id3149812\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/importlibdialog/replace\">Replaces a library that has the same name with the current library.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/importlibdialog/replace\">ད་ལྟོའི་དཔེ་མཛོད་དང་གཅིག་ཁར་ མིང་ཅོག་འཐདཔ་ཡོད་མི་ དཔེ་མཛོད་དེ་ ཚབ་བཙུགསཔ་ཨིན།</ahelp>"
diff --git a/source/dz/helpcontent2/source/text/sbasic/shared/02.po b/source/dz/helpcontent2/source/text/sbasic/shared/02.po
index c84db845532..649fc929586 100644
--- a/source/dz/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/dz/helpcontent2/source/text/sbasic/shared/02.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:02+0100\n"
-"PO-Revision-Date: 2011-04-12 10:51+0200\n"
+"POT-Creation-Date: 2017-05-12 14:35+0200\n"
+"PO-Revision-Date: 2013-05-24 08:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,8 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369384007.000000\n"
#: 11010000.xhp
msgctxt ""
@@ -27,7 +28,6 @@ msgstr "དཔེ་མཛོད།"
msgctxt ""
"11010000.xhp\n"
"hd_id3151100\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">Library</link>"
msgstr "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">དཔེ་མཛོད་</link>"
@@ -36,7 +36,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">ད
msgctxt ""
"11010000.xhp\n"
"par_id3154136\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">Select the library that you want to edit.</ahelp> The first module of the library that you select is displayed in the Basic IDE."
msgstr "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">ཁྱོད་ཀྱིས་ཞུན་དག་འབད་གོ་མནོ་མི་ དཔེ་མཛོད་སེལ་འཐུ་འབད།</ahelp> ཁྱོད་ཀྱིས་སེལ་འཐུ་འབད་མི་ དཔེ་མཛོད་ཀྱི་ ཚད་རིས་དང་པ་དེ་ གཞི་རྩའི་ཨའི་ཌི་ཨི་ ནང་ལུ་བཀྲམ་སྟོན་འབད་དེ་ཡོད།"
@@ -46,14 +45,13 @@ msgctxt ""
"11010000.xhp\n"
"par_id3149095\n"
"help.text"
-msgid "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">List box Library</alt></image>"
-msgstr "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">ཐོ་བཀོད་འབད་ནིའི་ དཔེ་མཛོད་ཀྱི་སྒྲོམ།</alt></image>"
+msgid "<image src=\"media/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">List box Library</alt></image>"
+msgstr "<image src=\"media/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">ཐོ་བཀོད་འབད་ནིའི་ དཔེ་མཛོད་ཀྱི་སྒྲོམ།</alt></image>"
#: 11010000.xhp
msgctxt ""
"11010000.xhp\n"
"par_id3147654\n"
-"3\n"
"help.text"
msgid "Library List Box"
msgstr "དཔེ་མཛོད་ཀྱི་ཐོ་བཀོད་སྒྲོམ།"
@@ -70,7 +68,6 @@ msgstr "ཕྱོགས་སྒྲིག་འབད།"
msgctxt ""
"11020000.xhp\n"
"hd_id3148983\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">Compile</link>"
msgstr "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">ཕྱོགས་སྒྲིག་འབད།</link>"
@@ -79,7 +76,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">ཕ
msgctxt ""
"11020000.xhp\n"
"par_id3159201\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">Compiles the Basic macro.</ahelp> You need to compile a macro after you make changes to it, or if the macro uses single or procedure steps."
msgstr "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">གཞི་རྩའི་མེཀ་རོ་ ཕྱོགས་སྒྲིག་འབདཝ་ཨིན།.</ahelp> ཁྱོད་ཀྱིས་ བསྒྱུར་བཅོས་འབད་ཚར་བའི་ཤུལ་ལས་དང་ ཡང་ན་ ག་ལྡེམ་ཅིག་འབད་ མེཀ་རོ་གིས་རྐྱང་པའམ་ བྱ་སྒོའི་ལམ་ལུགས་ལག་ལེན་འཐབ་ཨིན་པ་ཅིན་ མེཀ་རོ་ཕྱོགས་སྒྲིག་འབད་གོ"
@@ -96,7 +92,6 @@ msgstr "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"al
msgctxt ""
"11020000.xhp\n"
"par_id3149399\n"
-"3\n"
"help.text"
msgid "Compile"
msgstr "ཕྱོགས་སྒྲིག་འབད།"
@@ -113,7 +108,6 @@ msgstr "གཡོག་བཀོལ།"
msgctxt ""
"11030000.xhp\n"
"hd_id3153255\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Run</link>"
msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">གཡོག་བཀོལ།Run</link>"
@@ -122,7 +116,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">གཡོ
msgctxt ""
"11030000.xhp\n"
"par_id3159201\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:RunBasic\">Runs the first macro of the current module.</ahelp>"
msgstr "<ahelp hid=\".uno:RunBasic\">གིས་ད་ལྟོའི་ཚད་གཞི་གི་ མེཀ་རོ་དང་པ་ གཡོག་བཀོལཝ་ཨིན།.</ahelp>"
@@ -139,7 +132,6 @@ msgstr "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\
msgctxt ""
"11030000.xhp\n"
"par_id3154750\n"
-"3\n"
"help.text"
msgid "Run"
msgstr "གཡོག་བཀོལ།"
@@ -164,7 +156,6 @@ msgstr "<bookmark_value>མེཀ་རོསི; བཀག་དོ།</bookmar
msgctxt ""
"11040000.xhp\n"
"hd_id3154863\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11040000.xhp\" name=\"Stop\">Stop</link>"
msgstr "<link href=\"text/sbasic/shared/02/11040000.xhp\" name=\"Stop\">བཀག</link>"
@@ -173,7 +164,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11040000.xhp\" name=\"Stop\">བཀ
msgctxt ""
"11040000.xhp\n"
"par_id3147226\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:BasicStop\">Stops running the current macro.</ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> You can also press Shift+Ctrl+Q.</defaultinline></switchinline>"
msgstr "<ahelp hid=\".uno:BasicStop\">ད་ལྟོའི་མེཀ་རོ་གཡོག་བཀོལ་འབད་ནི་ལས་བཀགཔ་ཨིན།.</ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> ཁྱོད་ཀྱིས་ ཚད་འཛིན་ བསྒྱུར་ལྡེ་ ཨེསི་ ཚུ་གཡེབ། </defaultinline></switchinline>"
@@ -190,7 +180,6 @@ msgstr "<image id=\"img_id3143267\" src=\"cmd/sc_basicstepover.png\" width=\"0.2
msgctxt ""
"11040000.xhp\n"
"par_id3150986\n"
-"3\n"
"help.text"
msgid "Stop"
msgstr "བཀག"
@@ -207,7 +196,6 @@ msgstr "རིམ་པ་རྐྱང་པ།"
msgctxt ""
"11050000.xhp\n"
"hd_id3155934\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link>"
msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">རིམ་པ་རྐྱང་པ།</link>"
@@ -216,7 +204,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">
msgctxt ""
"11050000.xhp\n"
"par_id3146117\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:BasicStepInto\">Runs the macro and stops it after the next command.</ahelp>"
msgstr "<ahelp hid=\".uno:BasicStepInto\">བརྡ་བཀོད་གཞན་མིའི་ཤུལ་ལས་ མེ་ཀོརོ་ལུ་གཡོག་བཀོལ་ཏེ་བཀགཔ་ཨིན་</ahelp>"
@@ -225,7 +212,6 @@ msgstr "<ahelp hid=\".uno:BasicStepInto\">བརྡ་བཀོད་གཞན
msgctxt ""
"11050000.xhp\n"
"par_id3152801\n"
-"4\n"
"help.text"
msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
msgstr "ཁྱོད་ཀྱིས་བརྡ་བཀོད་འདི་ འཛོལ་བའི་དཀའ་ངལ་སེལ་ནི་གི་དོན་ལུ་ <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">བལྟ་</link> བརྡ་བཀོད་དང་གཅིག་ཁར་ འབྲེལ་ཚིག་ནང་ལུ་ ལག་ལེན་འཐབ་ཚུགས།"
@@ -242,7 +228,6 @@ msgstr "<image id=\"img_id3153345\" src=\"cmd/sc_basicstepinto.png\" width=\"0.2
msgctxt ""
"11050000.xhp\n"
"par_id3147573\n"
-"3\n"
"help.text"
msgid "Single Step"
msgstr "རིམ་པ་རྐྱང་པ།"
@@ -251,7 +236,6 @@ msgstr "རིམ་པ་རྐྱང་པ།"
msgctxt ""
"11050000.xhp\n"
"par_id3149235\n"
-"6\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step function\">Procedure Step function</link>"
msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step function\">བྱ་སྒོ་ལས་རིམ་གྱི་རིམ་པའི་ལས་འགན་</link>"
@@ -268,7 +252,6 @@ msgstr "བྱ་སྒོའི་ལམ་ལུགས་ཀྱི་ རི
msgctxt ""
"11060000.xhp\n"
"hd_id3148520\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step\">Procedure Step</link>"
msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step\">བྱ་སྒོའི་ལམ་ལུགས་ཀྱི་རིམ་པ།</link>"
@@ -277,7 +260,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step\
msgctxt ""
"11060000.xhp\n"
"par_id3152363\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.</ahelp>"
msgstr "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.བྱ་སྒོའི་ལས་རིམ་གཞན་ཅིག་གི་ཤུལ་ལས་ མེ་ཀོརོ་གཡོག་བཀོལ་ཏེ་བཀག་འཛིན་འབདཝ་ཨིན།</ahelp>"
@@ -286,7 +268,6 @@ msgstr "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the
msgctxt ""
"11060000.xhp\n"
"par_id3153394\n"
-"4\n"
"help.text"
msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
msgstr "ཁྱོད་ཀྱིས་བརྡ་བཀོད་འདི་ འཛོལ་བའི་དཀའ་ངལ་སེལ་ནི་གི་དོན་ལུ་ <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">བལྟ་</link> བརྡ་བཀོད་དང་གཅིག་ཁར་ འབྲེལ་ཚིག་ནང་ལུ་ ལག་ལེན་འཐབ་ཚུགས།"
@@ -303,7 +284,6 @@ msgstr "<image id=\"img_id3143267\" src=\"cmd/sc_basicstepover.png\" width=\"0.2
msgctxt ""
"11060000.xhp\n"
"par_id3154307\n"
-"3\n"
"help.text"
msgid "Procedure Step"
msgstr "བྱ་སྒོའི་ལམ་ལུགས་ཀྱི་ རིམ་པ།"
@@ -312,7 +292,6 @@ msgstr "བྱ་སྒོའི་ལམ་ལུགས་ཀྱི་ རི
msgctxt ""
"11060000.xhp\n"
"par_id3153562\n"
-"6\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step function\">Single Step function</link>"
msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step function\">རིམ་པའི་ལས་འགན་རྐྱང་པ་</link>"
@@ -329,7 +308,6 @@ msgstr "བེ་རེཀ་པོ་ཡིནཊི།"
msgctxt ""
"11070000.xhp\n"
"hd_id3154863\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Breakpoint\">Breakpoint</link>"
msgstr "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Breakpoint\">བེ་རེཀ་པོ་ཡིནཊི།</link>"
@@ -338,7 +316,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Breakpoint\">
msgctxt ""
"11070000.xhp\n"
"par_id3155364\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ToggleBreakPoint\">Inserts a breakpoint in the program line.</ahelp>"
msgstr "<ahelp hid=\".uno:ToggleBreakPoint\">བེ་རེཀ་པོ་ཡིནཊི་དེ་ ལས་རིམ་གྲལ་ཐིག་གི་ནང་ན་བཙུགསཔ་ཨིན།.</ahelp>"
@@ -347,7 +324,6 @@ msgstr "<ahelp hid=\".uno:ToggleBreakPoint\">བེ་རེཀ་པོ་ཡ
msgctxt ""
"11070000.xhp\n"
"par_id3149346\n"
-"4\n"
"help.text"
msgid "The breakpoint is inserted at the cursor position. Use a breakpoint to interrupt a program just before an error occurs. You can then troubleshoot the program by running it in <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link> mode until the error occurs. You can also use the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> icon to check the content of the relevant variables."
msgstr "བེ་རེཀ་པོ་ཡིནཊི་དེ་ འོད་རྟགས་ཀྱི་གནས་ས་གི་ནང་ན་ བཙུགས་ཏེ་ཡོདཔ་ཨིན། འཛོལ་བ་མ་འབྱུང་པའི་ཧེ་མ་ ལས་རིམ་བར་དཀྲོགས་འབད་ནིའི་དོན་ལུ་་ བེ་རེཀ་པོ་ཡིནཊི་ ལག་ལེན་འཐབ། དེ་ལས་ཁྱོད་ཀྱིས་ འ་ནི་དེ་ <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Sརིམ་པ་རྐྱང་པའི་</link> ཐབས་ལམ་ནང་ འཛོལ་བ་མ་འབྱུང་པའི་ཧེ་མ་ ལས་རིམ་གི་དཀའ་ངལ་བསལ། ཁྱོད་ཀྱིས་འབྲེལ་བ་ཡོད་མི་བསྒྱུར་ཅན་ཞིབ་དཔྱད་འབད་ནིའི་དོན་ལུ་ <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">ཆུ་ཚོད་</link> ངོས་དཔར་ཡང་ ལག་ལེན་འཐབ།."
@@ -364,7 +340,6 @@ msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\
msgctxt ""
"11070000.xhp\n"
"par_id3149416\n"
-"3\n"
"help.text"
msgid "Breakpoint"
msgstr "བེ་རེཀ་པོ་ཡིནཊི།"
@@ -381,7 +356,6 @@ msgstr "བལྟ་ཞིབ་འབད་ནི་ ལྕོགས་ཅན
msgctxt ""
"11080000.xhp\n"
"hd_id3154863\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Enable Watch\">Enable Watch</link>"
msgstr "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Enable Watch\">བལྟ་ཞིབ་ལྕོགས་ཅན་བཟོ།</link>"
@@ -390,7 +364,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Enable Watch\">
msgctxt ""
"11080000.xhp\n"
"par_id3093440\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AddWatch\">Click this icon to view the variables in a macro. The contents of the variable are displayed in a separate window.</ahelp>"
msgstr "<ahelp hid=\".uno:AddWatch\">མེཀ་རོསི་ནང་ལུ་ བསྒྱུརལ་ཅན་སྟོན་ནིའི་དོན་ལུ་ ངོས་དཔར་འདི་ཨེབ་གཏང་འབད། བསྒྱུར་ཅན་གྱི་ནང་དོན་ཚུ་ སྒོ་སྒྲིག་སོ་སོའི་ནང་ལུ་ བཀྲམ་སྟོན་འབད་དེ་ཡོདཔ་ཨིན།</ahelp>"
@@ -399,7 +372,6 @@ msgstr "<ahelp hid=\".uno:AddWatch\">མེཀ་རོསི་ནང་ལུ
msgctxt ""
"11080000.xhp\n"
"par_id3147399\n"
-"6\n"
"help.text"
msgid "Click the name of a variable to select it, then click the <emph>Enable Watch</emph> icon. The value that is assigned to the variable is displayed next to its name. This value is constantly updated."
msgstr "ཁོ་ར་ སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ བསྒྱུར་ཅན་གྱི་མིང་སེལ་འཐུ་འབད་ནི་དང་དེ་ལས་་ <emph>Enable Watch</emph> ངོས་དཔར་ཨེབ་གཏང་འབད། བསྒྱུར་ཅན་ལུ་གནས་གོང་འགན་སྤྱོད་འབད་མི་དེ་ ཁོ་རའི་མིང་གི་ཤུལ་མ་ བཀྲམ་སྟོན་འབད་དེ་ཡོད། གནས་གོང་འདི་ ཆད་མེད་པར་ དུས་མཐུན་བཟོ་བཟོ་ཨིན།."
@@ -416,7 +388,6 @@ msgstr "<image id=\"img_id3147209\" src=\"cmd/sc_addwatch.png\" width=\"0.222inc
msgctxt ""
"11080000.xhp\n"
"par_id3150276\n"
-"3\n"
"help.text"
msgid "Enable Watch"
msgstr "བལྟ་ཞིབ་འབད་ནི་ ལྕོགས་ཅན་བཟོ།"
@@ -425,7 +396,6 @@ msgstr "བལྟ་ཞིབ་འབད་ནི་ ལྕོགས་ཅན
msgctxt ""
"11080000.xhp\n"
"par_id3159158\n"
-"4\n"
"help.text"
msgid "To remove the variable watch, select the variable in the Watch window, and then click on the <emph>Remove Watch</emph> icon."
msgstr "བལྟ་་འབད་ནི་་ རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་ བལྟ་ཞིབ་སྒོ་སྒྲིག་ནང་ལུ་ བསྒྱུར་ཅན་ སེལ་འཐུ་འབད་དེ་ དེ་ལས་་ <emph>ལྕོགས་ཅན་ བལྟ་ཞིབ་ཀྱི་ </emph> ངོས་དཔར་ ཨེབ་གཏང་འབད།."
@@ -442,7 +412,6 @@ msgstr "དངོས་པོའི་ཐོ་གཞུང་།"
msgctxt ""
"11090000.xhp\n"
"hd_id3153255\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Object Catalog\">Object Catalog</link>"
msgstr "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Object Catalog\">དངོས་པོའི་ཐོ་གཞུང་།</link>"
@@ -451,7 +420,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Object Catalog\
msgctxt ""
"11090000.xhp\n"
"par_id3151384\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ObjectCatalog\">Opens the <emph>Objects</emph> pane, where you can view Basic objects.</ahelp>"
msgstr ""
@@ -460,7 +428,6 @@ msgstr ""
msgctxt ""
"11090000.xhp\n"
"par_id3147576\n"
-"15\n"
"help.text"
msgid "Double click the name of a function or sub to load the module that contains that function or sub, and to position the cursor. Double click the name of a module or dialog to load and display that module or dialog."
msgstr ""
@@ -477,7 +444,6 @@ msgstr "<image id=\"img_id3163803\" src=\"cmd/sc_objectcatalog.png\" width=\"0.1
msgctxt ""
"11090000.xhp\n"
"par_id3154515\n"
-"3\n"
"help.text"
msgid "Object Catalog"
msgstr "དངོས་པོའི་ཐོ་གཞུང་།"
@@ -486,7 +452,6 @@ msgstr "དངོས་པོའི་ཐོ་གཞུང་།"
msgctxt ""
"11090000.xhp\n"
"hd_id3146794\n"
-"13\n"
"help.text"
msgid "Window Area"
msgstr "སྒོ་སྒྲིག་གི་ མངའ་ཁོངས།"
@@ -495,7 +460,6 @@ msgstr "སྒོ་སྒྲིག་གི་ མངའ་ཁོངས།"
msgctxt ""
"11090000.xhp\n"
"par_id3149655\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">Displays a hierarchical view of the current $[officename] macro libraries, modules, and dialogs. To display the contents of an item in the window, double click its name.</ahelp>"
msgstr ""
@@ -512,7 +476,6 @@ msgstr "མེཀ་རོསི།"
msgctxt ""
"11100000.xhp\n"
"hd_id3156183\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"Macros\">Macros</link>"
msgstr "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"Macros\">མེཀ་རོསི།</link>"
@@ -521,7 +484,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"Macros\">མེ
msgctxt ""
"11100000.xhp\n"
"par_id3147399\n"
-"2\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">Opens the <emph>Macro</emph> dialog.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">གིས་ <emph>མེཀ་རོསི་</emph> ཌའི་ལོག་ཚུ་ ཁ་ཕྱེཝ་ཨིན།</ahelp>"
@@ -538,7 +500,6 @@ msgstr "<image src=\"cmd/sc_choosemacro.png\" id=\"img_id3153662\"><alt id=\"alt
msgctxt ""
"11100000.xhp\n"
"par_id3153542\n"
-"3\n"
"help.text"
msgid "Macros"
msgstr "མེཀ་རོསི།"
@@ -555,7 +516,6 @@ msgstr "ཚད་གཞི།"
msgctxt ""
"11110000.xhp\n"
"hd_id3148520\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">Modules</link>"
msgstr "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">ཚད་གཞི།</link>"
@@ -564,7 +524,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">ཚ
msgctxt ""
"11110000.xhp\n"
"par_id3156414\n"
-"2\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Click here to open the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">ནཱ་ལུ་ཨེབ་གཏང་འབད་གོ་མི་དེ་ཡང་ <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>མེཀ་རོ་ འགོ་འདྲེན་པ་དང་</emph></link> ཌའི་ལོག་ཁ་ཕྱེ་ནིའི་དོན་ལུ་ཨིན།</ahelp>"
@@ -581,7 +540,6 @@ msgstr "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"al
msgctxt ""
"11110000.xhp\n"
"par_id3145383\n"
-"3\n"
"help.text"
msgid "Modules"
msgstr "ཚད་གཞི།"
@@ -598,7 +556,6 @@ msgstr "གུག་ཤད་འཚོལ།"
msgctxt ""
"11120000.xhp\n"
"hd_id3149497\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11120000.xhp\" name=\"Find Parentheses\">Find Parentheses</link>"
msgstr "<link href=\"text/sbasic/shared/02/11120000.xhp\" name=\"Find Parentheses\">གུག་ཤད་འཚོལ།</link>"
@@ -607,7 +564,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11120000.xhp\" name=\"Find Parenthese
msgctxt ""
"11120000.xhp\n"
"par_id3155150\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:MatchGroup\" visibility=\"visible\">Highlights the text that is enclosed by two corresponding brackets. Place the text cursor in front of an opening or closing bracket, and then click this icon.</ahelp>"
msgstr "<ahelp hid=\".uno:MatchGroup\" visibility=\"visible\">གིས་ གུག་ཤད་གཉིས་ཀྱི་སྐོར་ཏེ་ཡོད་མི་ ཚིག་ཡིག་གཙོ་དམིགས་འབདཝ་ཨིན།.ཚིག་ཡིག་འོད་རྟགས་དེ་ ཁ་ཕྱེ་མི་དང་ ཁ་བསྡམ་མི་གུག་ཤད་ཀྱི་གདོང་ཁ་ལུ་བཞག་བཞིནམ་ལས་ དེ་ལས་ངོས་དཔར་ ཨེབ་གཏང་འབད།</ahelp>"
@@ -624,7 +580,6 @@ msgstr "<image src=\"cmd/sc_matchgroup.png\" id=\"img_id3155892\"><alt id=\"alt_
msgctxt ""
"11120000.xhp\n"
"par_id3147276\n"
-"3\n"
"help.text"
msgid "Find Parentheses"
msgstr "གུག་ཤད་འཚོལ།"
@@ -641,7 +596,6 @@ msgstr "ཚིག་ཡིག་འབྱུང་ཁུངས་ ནང་ན
msgctxt ""
"11140000.xhp\n"
"hd_id3154044\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Insert Source Text\">Insert Source Text</link>"
msgstr "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Insert Source Text\">ཚིག་ཡིག་འབྱུང་ཁུངས་ ནང་ན་བཙུགས།</link>"
@@ -650,7 +604,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Insert Source T
msgctxt ""
"11140000.xhp\n"
"par_id3150702\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>"
msgstr "<ahelp hid=\".uno:LoadBasic\" visibility=\"visible\">གིས་གཞི་རྩ་ ཨའི་ཌི་ སྒོ་སྒྲིག་ནང་་ལུ་ གཞི་རྩ་ ཚིག་ཡིག་གི་འབྱུང་ཁུངས་ཁ་ཕྱེཝ་ཨིན།</ahelp>"
@@ -659,7 +612,6 @@ msgstr "<ahelp hid=\".uno:LoadBasic\" visibility=\"visible\">གིས་གཞ
msgctxt ""
"11140000.xhp\n"
"par_id3150445\n"
-"3\n"
"help.text"
msgid "Place the cursor in the code where you want to insert the source text, and then click the <emph>Insert source text</emph> icon. Locate the file that contains the Basic source text that you want to insert, and then click <emph>Open</emph>."
msgstr "ཁྱོད་ཀྱིས་ འབྱུང་ཁུངས་ཚིག་ཡིག་ནང་ལུ་བཙུགས་གོ་མནོ་་ ཨང་རྟགས་ནང་ལུ་ འོད་རྟགས་བཞགནི་དང་ དེ་ལས་ <emph>ནང་ན་བཙུགས་ནི་ འབྱུང་ཁུངས་ཚིག་ཡིག་ </emph> ངོས་དཔར་ཨེབ་གཏང་འབད།. Locate the file that contains the Basic source text that you want to insert, and then click <emph>Open</emph>"
@@ -676,7 +628,6 @@ msgstr "<image id=\"img_id3147077\" src=\"cmd/sc_timefield.png\" width=\"0.1665i
msgctxt ""
"11140000.xhp\n"
"par_id3145346\n"
-"4\n"
"help.text"
msgid "Insert source text"
msgstr "འབྱུང་ཁུངས་ཚིག་ཡིག་ ནང་ན་བཙུགས།"
@@ -693,7 +644,6 @@ msgstr "བཟུམ་སྦེ་ འབྱུང་ཁུངས་སྲུ
msgctxt ""
"11150000.xhp\n"
"hd_id3149497\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Save Source As\">Save Source As</link>"
msgstr "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Save Source As\">བཟུམ་སྦེ་འབྱུང་ཁུངས་སྲུང་བཞག་འབད།</link>"
@@ -702,7 +652,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Save Source As\
msgctxt ""
"11150000.xhp\n"
"par_id3147261\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\".uno:SaveBasicAs\">Saves the source code of the selected Basic macro.</ahelp>"
msgstr "<ahelp hid=\".uno:SaveBasicAs\" visibility=\"visible\">བཟུམ་སྦེ་འབྱུང་ཁུངས་ སྲུང་བཞག་འབད།</ahelp>"
@@ -719,7 +668,6 @@ msgstr "<image id=\"img_id3149101\" src=\"cmd/sc_filecontrol.png\" width=\"0.222
msgctxt ""
"11150000.xhp\n"
"par_id3151110\n"
-"2\n"
"help.text"
msgid "Save Source As"
msgstr "བཟུམ་སྦེ་ འབྱུང་ཁུངས་སྲུང་བཞག་འབད"
@@ -736,7 +684,6 @@ msgstr "གོམ་པ་ཕྱིར་སྤོ།"
msgctxt ""
"11160000.xhp\n"
"hd_id3148983\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Step Out\">Step Out</link>"
msgstr "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Step Out\">གོམ་་པ་ཕྱིར་སྤོ།</link>"
@@ -745,7 +692,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Step Out\">ག
msgctxt ""
"11160000.xhp\n"
"par_id3157898\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">Jumps back to the previous routine in the current macro.</ahelp>"
msgstr "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">གིས་ད་ལྟོའི་མེཀ་རོ་ནང་གི་ ཧེ་མམ་གྱི་རྒྱུན་ལས་ནང་ལུ་ མཆོངམ་ཨིན།J</ahelp>"
@@ -762,7 +708,6 @@ msgstr "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"al
msgctxt ""
"11160000.xhp\n"
"par_id3158421\n"
-"3\n"
"help.text"
msgid "Step Out"
msgstr "གོམ་པ་ཕྱིར་སྤོ།"
@@ -779,7 +724,6 @@ msgstr "པེ་རེཀ་པོ་ཡིནཊི་ འཛིན་སྐ
msgctxt ""
"11170000.xhp\n"
"hd_id3156183\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
msgstr "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Manage Breakpoints\">པེ་རེཀ་པོ་ཡིནཊི་ འཛིན་སྐྱོང་འཐབ།</link>"
@@ -788,7 +732,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Manage Breakpoi
msgctxt ""
"11170000.xhp\n"
"par_id3152363\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Calls a dialog to manage breakpoints.</ahelp>"
msgstr "<ahelp hid=\".\">བེརེཀ་པོ་འིནཊིསི་འཛིན་སྐྱོང་འབད་ནི་ལུ་ཌའི་ལོག་བོད་བརྡ་འབདཝ་ཨིན།</ahelp>"
@@ -805,7 +748,6 @@ msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\
msgctxt ""
"11170000.xhp\n"
"par_id3145383\n"
-"3\n"
"help.text"
msgid "Manage Breakpoints"
msgstr "པེ་རེཀ་པོ་ཡིནཊི་ འཛིན་སྐྱོང་འཐབ།"
@@ -814,7 +756,6 @@ msgstr "པེ་རེཀ་པོ་ཡིནཊི་ འཛིན་སྐ
msgctxt ""
"11170000.xhp\n"
"par_id3154897\n"
-"4\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints dialog\"><emph>Manage Breakpoints</emph> dialog</link>"
msgstr "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"པེ་རེཀ་པོ་ཡིནཊི་གི་ཌའི་ལོག་ འཛིན་སྐྱོང་འཐབ་ཨིན།\"><emph>Manage Breakpoints</emph> dialog</link>"
@@ -831,7 +772,6 @@ msgstr ""
msgctxt ""
"11180000.xhp\n"
"hd_id3156183\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\">Import Dialog</link>"
msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">གཡོག་བཀོལ།Run</link>"
@@ -840,7 +780,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">གཡོ
msgctxt ""
"11180000.xhp\n"
"par_id3152363\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Calls an \"Open\" dialog to import a BASIC dialog file.</ahelp>"
msgstr ""
@@ -905,7 +844,6 @@ msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\
msgctxt ""
"11180000.xhp\n"
"par_id3145383\n"
-"3\n"
"help.text"
msgid "Import Dialog"
msgstr ""
@@ -922,7 +860,6 @@ msgstr ""
msgctxt ""
"11190000.xhp\n"
"hd_id3156183\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Export Dialog\">Export Dialog</link>"
msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">གཡོག་བཀོལ།Run</link>"
@@ -931,7 +868,6 @@ msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">གཡོ
msgctxt ""
"11190000.xhp\n"
"par_id3152363\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">In the dialog editor, this command calls a \"Save as\" dialog to export the current BASIC dialog.</ahelp>"
msgstr ""
@@ -948,7 +884,6 @@ msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\
msgctxt ""
"11190000.xhp\n"
"par_id3145383\n"
-"3\n"
"help.text"
msgid "Export Dialog"
msgstr ""
@@ -973,7 +908,6 @@ msgstr "<bookmark_value>ཚད་འཛིན་འབདཝ་ཨིན་; ཌ
msgctxt ""
"20000000.xhp\n"
"hd_id3150402\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insert Controls\">Insert Controls</link>"
msgstr "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insert Controls\">ཚད་འཛིན་ནང་ན་བཙུགས།</link>"
@@ -982,7 +916,6 @@ msgstr "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insert Controls
msgctxt ""
"20000000.xhp\n"
"par_id3147000\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ChooseControls\">Opens the <emph>Toolbox</emph> bar.</ahelp>"
msgstr "<ahelp hid=\".uno:ChooseControls\">གིས་<emph>ལག་ཆས་སྒྲོམ་དང་</emph> ཕྲ་རིང་ཁ་ཕྱེཝ་ཨིན།.</ahelp>"
@@ -999,7 +932,6 @@ msgstr "<image id=\"img_id3147571\" src=\"cmd/sc_choosecontrols.png\" width=\"0.
msgctxt ""
"20000000.xhp\n"
"par_id3153749\n"
-"3\n"
"help.text"
msgid "Insert Controls"
msgstr "ཚད་འཛིན་ནང་ན་བཙུགས།"
@@ -1008,7 +940,6 @@ msgstr "ཚད་འཛིན་ནང་ན་བཙུགས།"
msgctxt ""
"20000000.xhp\n"
"par_id3157958\n"
-"5\n"
"help.text"
msgid "In edit mode, double-click a control to open the <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties dialog\">properties dialog</link>."
msgstr "ཞུན་དག་ཐབས་ལམ་ནང་ལུ་ <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties dialog\">རྒྱུ་དངོས་ཀྱི་ཌའི་ལོག་ཁ་ཕྱེ་ནིའི་དོན་ལུ་ ཚད་འཛིན་ལུ་ཨེབ་གཏང་ཚར་གཉིས་འབད།</link>."
@@ -1017,7 +948,6 @@ msgstr "ཞུན་དག་ཐབས་ལམ་ནང་ལུ་ <link href=
msgctxt ""
"20000000.xhp\n"
"par_id3148538\n"
-"6\n"
"help.text"
msgid "In edit mode, you can also right-click a control and choose the cut, copy, and paste command."
msgstr "ཞུན་དག་ཐབས་ལམ་ནང་ལུ་ ཁྱོད་ཀྱིས་གཡས་ ཨེབ་གཏང་འབད་དེ་ བཏོད་ནི་ འདྲ་བཤུས་བརྐྱབ་ནི་ སྦྱར་ནི་ དང་བརྡ་བཀོད་ཚུ་ འདམ་ཁ་རྐྱབས།"
@@ -1026,7 +956,6 @@ msgstr "ཞུན་དག་ཐབས་ལམ་ནང་ལུ་ ཁྱོ
msgctxt ""
"20000000.xhp\n"
"hd_id3148473\n"
-"7\n"
"help.text"
msgid "Button"
msgstr "གཡེབ་རྟ"
@@ -1043,7 +972,6 @@ msgstr "<image id=\"img_id3157909\" src=\"cmd/sc_insertpushbutton.png\" width=\"
msgctxt ""
"20000000.xhp\n"
"par_id3147530\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertPushbutton\">Adds a command button.</ahelp> You can use a command button to execute a command for a defined event, such as a mouse click."
msgstr "<ahelp hid=\".uno:InsertPushbutton\">གིས་བརྡ་བཀོད་ཀྱི་གཡེབ་རྟ་ ཁ་་སྐོང་རྐྱབ་ཨིན།</ahelp> ཁྱོད་ཀྱིས་ངོས་འཛིན་འབད་ཡོད་པའི་འབྱུང་ལས་ཀྱི་དོན་ལུ་ བརྡ་བཀོད་ལག་ལེན་འཐབ་ནིའི་དོན་ལུ་ བརྡ་བཀོད་ཀྱི་གཡེབ་རྟ་ལག་ལེན་འཐབ།"
@@ -1052,7 +980,6 @@ msgstr "<ahelp hid=\".uno:InsertPushbutton\">གིས་བརྡ་བཀོ
msgctxt ""
"20000000.xhp\n"
"par_id3154923\n"
-"9\n"
"help.text"
msgid "If you want, you can add text or a graphic to the button."
msgstr "ཁྱོད་ར་དགོ་པ་ཅིན་ ཚིག་ཡིག་དང་ཚད་རིས་ཚུ་ གཡེབ་རྟ་ནང་ལུ་ཁ་སྐོང་རྐྱབས།"
@@ -1061,7 +988,6 @@ msgstr "ཁྱོད་ར་དགོ་པ་ཅིན་ ཚིག་ཡི
msgctxt ""
"20000000.xhp\n"
"hd_id3148550\n"
-"10\n"
"help.text"
msgid "Image Control"
msgstr "གཟུགས་བརྙན་གྱི་ཚད་འཛིན།"
@@ -1078,7 +1004,6 @@ msgstr "<image id=\"img_id3144760\" src=\"cmd/sc_objectcatalog.png\" width=\"0.2
msgctxt ""
"20000000.xhp\n"
"par_id3151042\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertImageControl\">Adds a control that displays a graphic.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertImageControl\">གིས་ ཚད་རིས་བཀྲམ་སྟོན་འབད་མི་ ཚད་འཛིན་ཁ་སྐོང་རྐྱབ་ཨིན།</ahelp>"
@@ -1087,7 +1012,6 @@ msgstr "<ahelp hid=\".uno:InsertImageControl\">གིས་ ཚད་རིས
msgctxt ""
"20000000.xhp\n"
"hd_id3150447\n"
-"12\n"
"help.text"
msgid "Check Box"
msgstr "སྒྲོམ་ཞིབ་དཔྱད་འབད།"
@@ -1104,7 +1028,6 @@ msgstr "<image id=\"img_id3150439\" src=\"cmd/sc_checkbox.png\" width=\"0.1665in
msgctxt ""
"20000000.xhp\n"
"par_id3147317\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\".uno:Checkbox\">Adds a check box that you can use to turn a function on or off.</ahelp>"
msgstr "<ahelp hid=\".uno:Checkbox\">གིས་ ལས་འགན་ཨོན་ ཡང་ན་ ཨོཕ་ལུ་བསྒྱིར་ད་ལུ་ ལག་ལེན་འཐབ་ཚུགས་པའི་ ཞིབ་དཔྱད་སྒྲོམ་ཁ་སྐོང་རྐྱབ་ཨིན།</ahelp>"
@@ -1113,7 +1036,6 @@ msgstr "<ahelp hid=\".uno:Checkbox\">གིས་ ལས་འགན་ཨོན
msgctxt ""
"20000000.xhp\n"
"hd_id3150486\n"
-"14\n"
"help.text"
msgid "Option Button"
msgstr "འདམ་ཁ་རྐྱབ་ནིའི་ གཡེབ་རྟ།"
@@ -1130,7 +1052,6 @@ msgstr "<image id=\"img_id3146921\" src=\"cmd/sc_radiobutton.png\" width=\"0.222
msgctxt ""
"20000000.xhp\n"
"par_id3153575\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\".uno:Radiobutton\">Adds a button that allows a user to select from a number of options.</ahelp> Grouped option buttons must have consecutive tab indices. They are commonly encircled by a group box. If you have two groups of option buttons, you must insert a tab index between the tab indices of the two groups on the group frame."
msgstr "<ahelp hid=\".uno:Radiobutton\">གིས་ལག་ལེན་པ་གིས་ འདམ་ཁ་ལེ་ཤ་གི་སྦུག་ནང་ལས་ སེལ་འཐུ་འབད་བཅུག་མི་ གཡེབ་རྟ་ཁ་སྐོང་རྐྱབ་ཨིན།</ahelp> སྡེ་ཚན་སྦེ་ཡོད་མི་ འདམ་ཁའི་གཡེབ་རྟ་ལུ་ འབྱེལཝ་འབྱེལ་སར་ཡོད་མི་ མཆོང་ལྡེ་ཟུར་ཐོ་ཚུ་འོང་དགོཔ་ཨིནམ་དང་ དེ་ཚུ་ མང་ཤོས་རང་སྡེ་ཚན་སྒྲོམ་གྱི་ནང་ན་ཚུད་དེ་འོངམ་ཨིན། ཁྱོད་ལུ་འདམ་ཁའི་གཡེབ་རྟ་ སྡེ་ཚན་གཉིས་སྦེ་ཡོད་པ་ཅིན་ གཞི་ཁྲམ་སྡེ་ཚན་གུར་ཡོད་མི་ སྡེ་ཚན་གཉིས་ཀྱི་ མཆོང་ལྡེ་ཟུར་ཐོ་ཚུ་གི་སྦུག་ནང་ལུ་ མཆོང་ལྡེ་ཟུར་ཐོ་དེ་བཙུགས་དགོཔ་ཨིན།"
@@ -1139,7 +1060,6 @@ msgstr "<ahelp hid=\".uno:Radiobutton\">གིས་ལག་ལེན་པ་
msgctxt ""
"20000000.xhp\n"
"hd_id3154729\n"
-"16\n"
"help.text"
msgid "Label Field"
msgstr "ཁ་ཡིག་གི་ས་སྒོ།"
@@ -1156,7 +1076,6 @@ msgstr "<image id=\"img_id3153415\" src=\"cmd/sc_insertfixedtext.png\" width=\"0
msgctxt ""
"20000000.xhp\n"
"par_id3156181\n"
-"17\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertFixedText\">Adds a field for displaying text labels.</ahelp> These labels are only for displaying predefined text, and not for entering text."
msgstr "<ahelp hid=\".uno:InsertFixedText\">ཚིག་ཡིག་གི་ཁ་ཡིག་བསྐྲམ་སྟོན་འབད་ནིའི་དེན་ལུ་ ས་སྒོ་ཁ་སྐོང་རྐྱབ་ཨིན།</ahelp> འ་ནི་ཁ་ཡིག་ཚུ་ སྔོན་མ་ལས་ངེས་འཛིན་འབད་ཡོད་མི་ ཚིག་ཡིག་བཀྲམ་སྟོན་འབད་ནིའི་དོན་ལུ་རྐྱངམ་ཅིག་ཨིནམ་མ་གཏོགས་ ཚིག་ཡིག་ཐོ་བཀོད་འབད་ནིའི་དོན་ལུ་མེན།"
@@ -1165,7 +1084,6 @@ msgstr "<ahelp hid=\".uno:InsertFixedText\">ཚིག་ཡིག་གི་ཁ
msgctxt ""
"20000000.xhp\n"
"hd_id3149123\n"
-"18\n"
"help.text"
msgid "Text Box"
msgstr "ཚིག་ཡིག་གི་སྒྲོམ།"
@@ -1182,7 +1100,6 @@ msgstr "<image id=\"img_id3148996\" src=\"cmd/sc_edit.png\" width=\"0.0874inch\"
msgctxt ""
"20000000.xhp\n"
"par_id3153712\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertEdit\">Adds an input box where you can enter and edit text.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertEdit\"> གིས་ ཁྱོད་ཀྱིས་ཚིག་ཡིག་བཙུགས་ནི་དང་ཞིན་དག་འབད་ཚུགལ་ནིའི་དོན་ལུ་ ཨིན་པུཊི་སྒྲོམ་ཁ་སྐོང་རྐྱབས།</ahelp>"
@@ -1191,7 +1108,6 @@ msgstr "<ahelp hid=\".uno:InsertEdit\"> གིས་ ཁྱོད་ཀྱིས
msgctxt ""
"20000000.xhp\n"
"hd_id3154253\n"
-"20\n"
"help.text"
msgid "List Box"
msgstr "ཐོ་ཡིག་སྒྲོམ།"
@@ -1208,7 +1124,6 @@ msgstr "<image id=\"img_id3163808\" src=\"cmd/sc_listbox.png\" width=\"0.1665inc
msgctxt ""
"20000000.xhp\n"
"par_id3155176\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertListbox\">Adds a box where you can click an entry on a list.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertListbox\">ཁྱོད་ཀྱིས་ཐོ་ཡིག་གུར་ ཐོ་བཀོད་ཨེབ་གཏང་འབད་ཚུགས་ནིའི་དོན་ལུ་ སྒྲོམ་ཁ་སྐོང་རྐྱབས་ཨིན།</ahelp>"
@@ -1217,7 +1132,6 @@ msgstr "<ahelp hid=\".uno:InsertListbox\">ཁྱོད་ཀྱིས་ཐོ
msgctxt ""
"20000000.xhp\n"
"hd_id3150644\n"
-"22\n"
"help.text"
msgid "Combo Box"
msgstr "ཀོམ་བོ་སྒྲོམ།"
@@ -1234,7 +1148,6 @@ msgstr "<image id=\"img_id3153200\" src=\"cmd/sc_combobox.png\" width=\"0.1665in
msgctxt ""
"20000000.xhp\n"
"par_id3154199\n"
-"23\n"
"help.text"
msgid "<ahelp hid=\".uno:Combobox\">Adds a combo box. A combo box is a one line list box that a user can click, and then choose an entry from the list.</ahelp> If you want, you can make the entries in the combo box \"read only\"."
msgstr "<ahelp hid=\".uno:Combobox\">གིས་ཀོམ་བོ་སྒྲོམ་ཁ་སྐཽང་རྐྱབས་ཨིན།. ཀོམ་བོ་སྒྲོམ་འདི་ ལག་ལེན་འཐབ་མི་གིས་ ཨེབ་གཏང་འབད་དེ་ དེ་ལས་ ཐོ་ཡིག་ནང་ལས་ ཐོ་བཀོད་འདམ་ཁ་རྐྱབ་ཚུགས་མི་ གྲལ་ཐིག་གཅིག་འབད་མི་ ཐོ་ཡིག་སྒྲོམ་ཨིན།</ahelp> ཁྱོད་ར་དགོ་པ་ཅིན་ ཀོམ་སྒྲོམ་ནང་ལུ་ ཐོ་བཀོད་འབད་ཚུགས། \"read only\"."
@@ -1243,7 +1156,6 @@ msgstr "<ahelp hid=\".uno:Combobox\">གིས་ཀོམ་བོ་སྒྲ
msgctxt ""
"20000000.xhp\n"
"hd_id3154585\n"
-"24\n"
"help.text"
msgid "Horizontal Scrollbar"
msgstr "ཐད་སྙོམས་ བཤུད་སྒྲིལ་ཕྲ་རིང་།"
@@ -1260,7 +1172,6 @@ msgstr "<image id=\"img_id3149530\" src=\"cmd/sc_hscrollbar.png\" width=\"0.222i
msgctxt ""
"20000000.xhp\n"
"par_id3153232\n"
-"25\n"
"help.text"
msgid "<ahelp hid=\".uno:HScrollbar\">Adds a horizontal scrollbar to the dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:HScrollbar\">གིས་ ཌའི་ལོག་ནང་ལུ་ ཐད་སྙོམས་ བཤུད་སྒྲིལ་ཕྲ་རིང་ ཁ་སྐོང་རྐྱབ་ཨིན།</ahelp>"
@@ -1269,7 +1180,6 @@ msgstr "<ahelp hid=\".uno:HScrollbar\">གིས་ ཌའི་ལོག་ན
msgctxt ""
"20000000.xhp\n"
"hd_id3154119\n"
-"26\n"
"help.text"
msgid "Vertical Scrollbar"
msgstr "ཀེར་ཕྲེང་བཤུད་སྒྲིལ།"
@@ -1286,7 +1196,6 @@ msgstr "<image id=\"img_id3150203\" src=\"cmd/sc_vscrollbar.png\" width=\"0.1665
msgctxt ""
"20000000.xhp\n"
"par_id3155376\n"
-"27\n"
"help.text"
msgid "<ahelp hid=\".uno:VScrollbar\">Adds a vertical scrollbar to the dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:VScrollbar\">གིས་ ཌའི་ལོག་ནང་ལུ་ ཀེར་ཕྲེང་བཤུད་སྒྲིལ་ཁ་སྐོོང་རྐྱབ་ཨིན།</ahelp>"
@@ -1295,7 +1204,6 @@ msgstr "<ahelp hid=\".uno:VScrollbar\">གིས་ ཌའི་ལོག་ན
msgctxt ""
"20000000.xhp\n"
"hd_id3150313\n"
-"28\n"
"help.text"
msgid "Group Box"
msgstr "སྡེ་ཚན་སྒྲོམ།"
@@ -1312,7 +1220,6 @@ msgstr "<image id=\"img_id3151335\" src=\"cmd/sc_groupbox.png\" width=\"0.222inc
msgctxt ""
"20000000.xhp\n"
"par_id3159622\n"
-"29\n"
"help.text"
msgid "<ahelp hid=\".uno:Groupbox\">Adds a frame that you can use to visually group similar controls, such as option buttons.</ahelp>"
msgstr "<ahelp hid=\".uno:Groupbox\">གིས་ འདམ་ཁའི་གཡེབ་རྟ་བཟུམ་གྱི་ ཆ་འདྲཝ་སྦེ་ཡོད་མི་ཚད་འཛིན་ཚུ་ མིག་གི་མཐོང་པའི་སྡེ་ཚན་བཟོ་ནི་ལུ་ ལག་ལེན་འཐབ་མི་ གཞི་ཁྲམ་ཁ་སྐོང་རྐྱབ་ཨིན།</ahelp>"
@@ -1321,7 +1228,6 @@ msgstr "<ahelp hid=\".uno:Groupbox\">གིས་ འདམ་ཁའི་གཡ
msgctxt ""
"20000000.xhp\n"
"par_id3148820\n"
-"30\n"
"help.text"
msgid "To define two different groups of option buttons, ensure that the tab index of the group frame is between the tab indices of the two groups."
msgstr "འདམ་ཁའི་གཡེབ་རྟ་གི་ སྡེ་ཚན་སོ་སོ་གཉིས་ངེས་འཛིན་འབད་ནིའི་དོན་ལུ་ སྡེ་ཚན་གཞི་ཁྲམ་གྱི་མཆོང་ལྡེ་ཟུར་ཐོ་ཚུ་ སྡེ་ཚན་གཉིས་ཀྱི་ ཟུར་ཐོ་ཚུ་སྦུག་ན་ལུ་ཡོདཔ་ ངེས་ཏིག་བཟོ་གོ"
@@ -1330,7 +1236,6 @@ msgstr "འདམ་ཁའི་གཡེབ་རྟ་གི་ སྡེ་
msgctxt ""
"20000000.xhp\n"
"hd_id3149330\n"
-"31\n"
"help.text"
msgid "Progress Bar"
msgstr "འཕེལ་བསྐྱེད་ཕྲ་རིང་།"
@@ -1347,7 +1252,6 @@ msgstr "<image id=\"img_id3150318\" src=\"cmd/sc_progressbar.png\" width=\"0.222
msgctxt ""
"20000000.xhp\n"
"par_id3157979\n"
-"32\n"
"help.text"
msgid "<ahelp hid=\".uno:ProgressBar\">Adds a progress bar to the dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:ProgressBar\">འཕེལ་བསྐྱེད་ཕྲ་རིང་དེ་ ཌའི་ལོག་ནང་ལུ་ཁ་སྐོང་རྐྱབས་ཨིན།</ahelp>"
@@ -1356,7 +1260,6 @@ msgstr "<ahelp hid=\".uno:ProgressBar\">འཕེལ་བསྐྱེད་ཕ
msgctxt ""
"20000000.xhp\n"
"hd_id3145654\n"
-"33\n"
"help.text"
msgid "Horizontal Line"
msgstr "ཐད་སྙོམས་གལ་རིམ"
@@ -1373,7 +1276,6 @@ msgstr "<image id=\"img_id3152872\" src=\"cmd/sc_hfixedline.png\" width=\"0.2201
msgctxt ""
"20000000.xhp\n"
"par_id3151000\n"
-"34\n"
"help.text"
msgid "<ahelp hid=\".uno:HFixedLine\">Adds a horizontal line to the dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:HFixedLine\">གིས་ ཐད་སྙོམས་གྲལ་ཐིག་ དའི་ལོག་ནང་ལུ་ཁ་སྐོང་རྐྱབ་ཨིན།</ahelp>"
@@ -1382,7 +1284,6 @@ msgstr "<ahelp hid=\".uno:HFixedLine\">གིས་ ཐད་སྙོམས་
msgctxt ""
"20000000.xhp\n"
"hd_id3155095\n"
-"35\n"
"help.text"
msgid "Vertical Line"
msgstr "ཀེར་ཕྲེང་གྲལ་ཐིག"
@@ -1399,7 +1300,6 @@ msgstr "<image id=\"img_id3153249\" src=\"cmd/sc_vfixedline.png\" width=\"0.222i
msgctxt ""
"20000000.xhp\n"
"par_id3159203\n"
-"36\n"
"help.text"
msgid "<ahelp hid=\".uno:VFixedLine\">Adds a vertical line to the dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:VFixedLine\">ཀེར་ཕྲེང་གྲལ་ཐིག་ ཌའི་ལོག་ནང་ལུ་ཁ་སྐོང་རྐྱབ་ཨིན།Adds a vertical line to the dialog.</ahelp>"
@@ -1408,7 +1308,6 @@ msgstr "<ahelp hid=\".uno:VFixedLine\">ཀེར་ཕྲེང་གྲལ་
msgctxt ""
"20000000.xhp\n"
"hd_id3154540\n"
-"37\n"
"help.text"
msgid "Date Field"
msgstr "ཚེས་གྲངས་ཀྱི་ས་སྒཽ"
@@ -1425,7 +1324,6 @@ msgstr "<image id=\"img_id3151010\" src=\"cmd/sc_adddatefield.png\" width=\"0.22
msgctxt ""
"20000000.xhp\n"
"par_id3154214\n"
-"38\n"
"help.text"
msgid "<ahelp hid=\".uno:AddDateField\">Adds a date field.</ahelp>"
msgstr "<ahelp hid=\".uno:AddDateField\">གིས་ ཚེས་གྲངས་ཀྱི་ས་སྒོ་ཁ་སྐོང་རྐྱབས་ཨིན།</ahelp>"
@@ -1434,7 +1332,6 @@ msgstr "<ahelp hid=\".uno:AddDateField\">གིས་ ཚེས་གྲངས
msgctxt ""
"20000000.xhp\n"
"par_id3150046\n"
-"39\n"
"help.text"
msgid "If you assign the \"dropdown\" property to the date field, a user can drop down a calendar to select a date."
msgstr "ཁྱོད་ཀྱིས་རྒྱུ་དངོས་ཚུ་\"dropdown\"ཚེས་གྲངས་ཀྱི་ས་སྒོ་ནང་ལུ་འགན་སྤྱོད་འབད་བ་ཅིན་ ཚེས་གྲངས་སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ ལག་ལེན་པ་གིས་ཟླ་ཐོའི་འདམ་ཐོ་ནང་ལུ་བལྟ་ཚུགས།"
@@ -1443,7 +1340,6 @@ msgstr "ཁྱོད་ཀྱིས་རྒྱུ་དངོས་ཚུ་\"d
msgctxt ""
"20000000.xhp\n"
"hd_id3151126\n"
-"40\n"
"help.text"
msgid "Time Field"
msgstr "ཆུ་ཚོད་ས་སྒོ"
@@ -1460,7 +1356,6 @@ msgstr "<image id=\"img_id3147077\" src=\"cmd/sc_timefield.png\" width=\"0.1665i
msgctxt ""
"20000000.xhp\n"
"par_id3151191\n"
-"41\n"
"help.text"
msgid "<ahelp hid=\"SID_INSERT_TIMEFIELD\">Adds a time field.</ahelp>"
msgstr "<ahelp hid=\"SID_INSERT_TIMEFIELD\">གིས་ ཆུ་ཚོད་ཀྱི་ས་སྒོ་ཁ་སྐོང་རྐྱབས་ཨིན།</ahelp>"
@@ -1469,7 +1364,6 @@ msgstr "<ahelp hid=\"SID_INSERT_TIMEFIELD\">གིས་ ཆུ་ཚོད་
msgctxt ""
"20000000.xhp\n"
"hd_id3154733\n"
-"42\n"
"help.text"
msgid "Numeric Field"
msgstr "ཨང་གྲངས་ཀྱི་ ས་སྒོ"
@@ -1486,7 +1380,6 @@ msgstr "<image id=\"img_id3147499\" src=\"cmd/sc_insertnumericfield.png\" width=
msgctxt ""
"20000000.xhp\n"
"par_id3147244\n"
-"43\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertNumericField\">Adds a numeric field.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertNumericField\">གིས་ ཨཨང་གརངས་ཀྱི་ས་སྒོ་ཁ་སྐོང་རྐྱབས་ཨིན། </ahelp>"
@@ -1495,7 +1388,6 @@ msgstr "<ahelp hid=\".uno:InsertNumericField\">གིས་ ཨཨང་གར
msgctxt ""
"20000000.xhp\n"
"hd_id3149870\n"
-"44\n"
"help.text"
msgid "Currency Field"
msgstr "དངུལ་གྱི་ས་སྒོ།"
@@ -1512,7 +1404,6 @@ msgstr "<image id=\"img_id3150435\" src=\"cmd/sc_currencyfield.png\" width=\"0.1
msgctxt ""
"20000000.xhp\n"
"par_id3154064\n"
-"45\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertCurrencyField\">Adds a currency field.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertCurrencyField\">དངུལ་གྱི་ས་སྒོ་ཁ་སྐོང་རྐྱབས་ཨིན།</ahelp>"
@@ -1521,7 +1412,6 @@ msgstr "<ahelp hid=\".uno:InsertCurrencyField\">དངུལ་གྱི་ས
msgctxt ""
"20000000.xhp\n"
"hd_id3150117\n"
-"46\n"
"help.text"
msgid "Formatted Field"
msgstr "རྩ་སྒྲིག་འབད་ཡོད་པའི་ས་སྒོ"
@@ -1538,7 +1428,6 @@ msgstr "<image id=\"img_id3152807\" src=\"cmd/sc_formattedfield.png\" width=\"0.
msgctxt ""
"20000000.xhp\n"
"par_id3146320\n"
-"47\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertFormattedField\">Adds a text box where you can define the formatting for text that is inputted or outputted as well as any limiting values.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertFormattedField\">ཚིག་ཡིག་ ཨིན་པུཊི་དང་ ཨའུཊི་པུཊི་འབད་ཡོད་མི་དང་ ཡང་ན་ ཚད་བཟོ་མི་གནས་གོང་གང་རུང་གི་དོན་ལུ་ རྩ་སྒྲིག་འབད་ནི་ ངེས་འཛིན་འབད་ཚུགས་པའི་ ཚིག་ཡིག་གི་སྒྲོམ་ ཁ་སྐོང་རྐྱབས་ཨིན།</ahelp>"
@@ -1547,7 +1436,6 @@ msgstr "<ahelp hid=\".uno:InsertFormattedField\">ཚིག་ཡིག་ ཨི
msgctxt ""
"20000000.xhp\n"
"hd_id3156160\n"
-"48\n"
"help.text"
msgid "Pattern Field"
msgstr "དཔེ་གཞིའི་ས་སྒོ"
@@ -1564,7 +1452,6 @@ msgstr "<image id=\"img_id3150032\" src=\"cmd/sc_insertpatternfield.png\" width=
msgctxt ""
"20000000.xhp\n"
"par_id3147382\n"
-"49\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertPatternField\">Adds a masked field.</ahelp> A masked field consists of an input mask and a literal mask. The input mask determines which user data can be entered. The literal mask determines the state of the masked field when the form is loaded."
msgstr "<ahelp hid=\".uno:InsertPatternField\">གདོང་ཁེབས་བཟོ་ཡོད་པའི་ས་སྒོ་ཅིག་ ཁ་སྐོང་རྐྱབ་ཨིན། </ahelp> གདོང་ཁེབས་དང་ལྡན་པའི་ས་སྒོ་འདི་ ཨིན་པུཊི་གདོང་ཁེབས་དང་ཐད་དོན་གདོང་ཁེབས་དང་ལྡནམ་ཨིན། ཨིན་པུཊི་གདོང་ཁེབས་ཀྱིས་ ལག་ལེན་པའི་གནད་སྡུད་ག་འདི་བཙུག་ནི་ཨིན་ན་ གཏན་འབེབས་འབདཝ་ཨིན། དེ་ལས་ཐད་དོན་གདོང་ཁེབས་འདི་གིས་ འབྲི་ཤོག་མངོན་གསལ་འབད་ཡོད་པའི་སྐབས་ གདོང་ཁེབས་དང་ལྡན་པའི་ས་སྒོའི་གནས་ལུགས་གཏན་འབེབས་འབདཝ་ཨིན།"
@@ -1573,7 +1460,6 @@ msgstr "<ahelp hid=\".uno:InsertPatternField\">གདོང་ཁེབས་བ
msgctxt ""
"20000000.xhp\n"
"hd_id3146815\n"
-"50\n"
"help.text"
msgid "File Selection"
msgstr "ཡིག་སྣོད་སེལ་འཐུ།"
@@ -1590,7 +1476,6 @@ msgstr "<image id=\"img_id3149101\" src=\"cmd/sc_filecontrol.png\" width=\"0.222
msgctxt ""
"20000000.xhp\n"
"par_id3145632\n"
-"51\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertFileControl\">Adds a button that opens a file selection dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertFileControl\">ཁྱོད་ ཡིག་སྣོད་སེལ་འཐུ་འབད་བཅུག་མི་གཡེབ་རྟ་ ཁ་སྐོང་རྐྱབ་ཨིན།</ahelp>"
@@ -1599,7 +1484,6 @@ msgstr "<ahelp hid=\".uno:InsertFileControl\">ཁྱོད་ ཡིག་སྣ
msgctxt ""
"20000000.xhp\n"
"hd_id3155912\n"
-"52\n"
"help.text"
msgid "Select"
msgstr "སེལ་འཐུ་འབད།"
@@ -1616,7 +1500,6 @@ msgstr "<image id=\"img_id3150653\" src=\"cmd/sc_drawselect.png\" width=\"0.222i
msgctxt ""
"20000000.xhp\n"
"par_id3148465\n"
-"53\n"
"help.text"
msgid "<ahelp hid=\".\">Activates or deactivates the Selection mode. In this mode, you can select the controls in a dialog so that you can edit them.</ahelp>"
msgstr "<ahelp hid=\".\">སེལ་འཐུའི་ཐབས་ལམ་ཤུགས་ལྡན་བཟོཝ་ཨིན་ཡང་ན་ཤུགས་མེད་བཟོཝ་ཨིན། ཐབས་ལམ་འདི་ནང་ ཁྱོད་ཀྱིས་ཌའི་ལོག་ནང་ཚད་འཛིན་ཚུ་སེལ་འཐུ་འབད་ཚུགས་དེ་འབདཝ་ལས་ཁྱོད་ཀྱིས་དེ་ཚུ་ཞུན་དག་བརྐྱབ་ཚུགས།</ahelp>"
@@ -1625,7 +1508,6 @@ msgstr "<ahelp hid=\".\">སེལ་འཐུའི་ཐབས་ལམ་ཤ
msgctxt ""
"20000000.xhp\n"
"hd_id3154055\n"
-"54\n"
"help.text"
msgid "Properties"
msgstr "རྒྱུ་དངོས་ཚུ།"
@@ -1642,7 +1524,6 @@ msgstr "<image id=\"img_id3146874\" src=\"cmd/sc_controlproperties.png\" width=\
msgctxt ""
"20000000.xhp\n"
"par_id3151105\n"
-"55\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowPropBrowser\">Opens a dialog where you can edit the <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties\">properties</link> of the selected control.</ahelp>"
msgstr "<ahelp hid=\".uno:ShowPropBrowser\">གིས་ <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties\">སེལ་འཐུ་འབད་ཡོད་མི་ཚད་འཛིན་གྱི་</link> རྒྱུ་དངོས་ཚུ་ཞུན་དག་འབད་ཚུགས་པའི་ དའི་ལོག་ཁ་ཕྱེཝ་ཨིན།</ahelp>"
@@ -1651,7 +1532,6 @@ msgstr "<ahelp hid=\".uno:ShowPropBrowser\">གིས་ <link href=\"text/sbas
msgctxt ""
"20000000.xhp\n"
"hd_id3153746\n"
-"56\n"
"help.text"
msgid "Activate Test Mode"
msgstr "བརྟག་ཞིབ་ཐབས་ལམ་ ཤུགས་ལྡན་བཟོ།"
@@ -1668,7 +1548,6 @@ msgstr "<image id=\"img_id3148883\" src=\"cmd/sc_testmode.png\" width=\"0.222inc
msgctxt ""
"20000000.xhp\n"
"par_id3150699\n"
-"57\n"
"help.text"
msgid "<ahelp hid=\".uno:TestMode\">Starts test mode. Click the dialog closer icon to end test mode.</ahelp>"
msgstr "<ahelp hid=\".uno:TestMode\">གིས་ བརྟག་ཞིབ་ཐབས་ལམ་འགོ་བཙུགསཔ་ཨིན། བཀོད་སྒྲིག་ཐབས་ལམ་ནང་ལུ་ སླར་ལོག་བཅུག་ནིའི་དོན་ལུ་ ཌའི་ལོག་དེ་སྦོ་ལོག་ཁར་སྦེ་ ལག་ལེན་འཐབ།</ahelp>"
diff --git a/source/dz/helpcontent2/source/text/scalc.po b/source/dz/helpcontent2/source/text/scalc.po
index 2286eb52ba1..ed4c82f1832 100644
--- a/source/dz/helpcontent2/source/text/scalc.po
+++ b/source/dz/helpcontent2/source/text/scalc.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-04-16 21:40+0200\n"
-"PO-Revision-Date: 2015-12-11 12:12+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"PO-Revision-Date: 2016-04-16 21:56+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449835957.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1460843788.000000\n"
#: main0000.xhp
msgctxt ""
@@ -28,7 +28,6 @@ msgstr "$[officename] ཀེལཀི་ གྲོགས་རམ་ལུ་
msgctxt ""
"main0000.xhp\n"
"hd_id3147338\n"
-"1\n"
"help.text"
msgid "Welcome to the $[officename] Calc Help"
msgstr "$[officename] ཀེལཀི་ གྲོགས་རམ་ལུ་ འབྱོན་པ་ལེགས་སོ།"
@@ -37,7 +36,6 @@ msgstr "$[officename] ཀེལཀི་ གྲོགས་རམ་ལུ་
msgctxt ""
"main0000.xhp\n"
"hd_id3153965\n"
-"3\n"
"help.text"
msgid "How to Work With $[officename] Calc"
msgstr "$[officename] ཀེལཀི་དང་གཅིག་ཁར་ལཱ་ག་དེ་འབད་ནི་ཨིན་ན།"
@@ -46,7 +44,6 @@ msgstr "$[officename] ཀེལཀི་དང་གཅིག་ཁར་ལཱ
msgctxt ""
"main0000.xhp\n"
"par_id3147004\n"
-"5\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Functions by Category\">List of Functions by Category</link>"
msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Functions by Category\">དབྱེ་རིམ་གྱིས་སྦེ་ཡོད་མི་ལས་འགན་གྱི་ཐོ་ཡིག་</link>"
@@ -55,7 +52,6 @@ msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Functions by Ca
msgctxt ""
"main0000.xhp\n"
"hd_id3154659\n"
-"6\n"
"help.text"
msgid "$[officename] Calc Menus, Toolbars, and Keys"
msgstr "$[officename] ཀེལཀི་དཀར་ཆག་དང་ལག་ཆས་ཕྲ་རིང་ དེ་ལས་ལྡེ་མིག་ཚུ།"
@@ -64,7 +60,6 @@ msgstr "$[officename] ཀེལཀི་དཀར་ཆག་དང་ལག་
msgctxt ""
"main0000.xhp\n"
"hd_id3150883\n"
-"4\n"
"help.text"
msgid "Help about the Help"
msgstr "གྲོགས་རམ་གྱི་སྐོར་ལས་ གྲོགས་རམ་འབད།"
@@ -81,7 +76,6 @@ msgstr "དཀར་ཆག་ཚུ།"
msgctxt ""
"main0100.xhp\n"
"hd_id3156023\n"
-"1\n"
"help.text"
msgid "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
msgstr "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Menus\">དཀར་ཆག་ཚུ་</link></variable>"
@@ -90,7 +84,6 @@ msgstr "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"
msgctxt ""
"main0100.xhp\n"
"par_id3154760\n"
-"2\n"
"help.text"
msgid "The following menu commands are available for spreadsheets."
msgstr "འོག་གི་དཀར་ཆག་བརྡ་བཀོད་ཚུ་ཤོག་ཁྲམ་གྱི་དོན་ལུ་ འཐོབ་ཚུགས།"
@@ -104,7 +97,6 @@ msgid "File"
msgstr "ཡིག་སྣོད།"
#: main0101.xhp
-#, fuzzy
msgctxt ""
"main0101.xhp\n"
"hd_id3156023\n"
@@ -129,7 +121,6 @@ msgid "Edit"
msgstr "ཞུན་དག"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id3156023\n"
@@ -146,7 +137,6 @@ msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of
msgstr ""
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id3146919\n"
@@ -155,7 +145,6 @@ msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">འབྲེལ་ལམ་</link>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id3148488\n"
@@ -164,7 +153,6 @@ msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</li
msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">གཟུགས་བརྙན་ས་ཁྲ་</link>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id0914201502131542\n"
@@ -181,7 +169,6 @@ msgid "View"
msgstr "མཐོང་སྣང་།"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id3151112\n"
@@ -206,7 +193,6 @@ msgid "Normal"
msgstr "སྤྱིར་བཏང་།"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"par_idN105AF\n"
@@ -215,7 +201,6 @@ msgid "<ahelp hid=\".\">Displays the normal layout view of the sheet.</ahelp>"
msgstr "<ahelp hid=\".\">ལེབ་གྲངས་ཀྱི་སྤྱིར་བཏང་མཐོང་སྣང་ བཀྲམ་སྟོན་འབདཝ་ཨིན།</ahelp>"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id102720151109097115\n"
@@ -242,13 +227,28 @@ msgstr ""
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
+"hd_id033020170228348624\n"
+"help.text"
+msgid "Show Formula"
+msgstr ""
+
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id03302017024610704\n"
+"help.text"
+msgid "Display the cell formula expression instead of the calculated result."
+msgstr ""
+
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
"hd_id102720150908397549\n"
"help.text"
-msgid "<link href=\"text/shared/01/gallery.xhp\">Clip Art Gallery</link>"
+msgid "<link href=\"text/shared/01/gallery.xhp\">Gallery</link>"
msgstr ""
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id3125863\n"
@@ -265,7 +265,6 @@ msgid "Insert"
msgstr "བཙུགས།"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3157909\n"
@@ -282,7 +281,6 @@ msgid "<ahelp hid=\".\">The Insert menu contains commands for inserting new elem
msgstr ""
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3150769\n"
@@ -291,7 +289,6 @@ msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cells\">Cells</link>"
msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cells\">ནང་ཐིག་</link>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3149260\n"
@@ -300,7 +297,6 @@ msgid "<link href=\"text/scalc/01/04050000.xhp\" name=\"Sheet\">Sheet</link>"
msgstr "<link href=\"text/scalc/01/04050000.xhp\" name=\"Sheet\">ལེབ་གྲངས་</link>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3153726\n"
@@ -309,7 +305,6 @@ msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Spe
msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">དམིགས་བསལ་གྱི་ཡིག་འབྲུ་</link>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3156285\n"
@@ -318,7 +313,6 @@ msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</
msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">ཧའི་པར་ལིང་</link>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3154492\n"
@@ -327,7 +321,6 @@ msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"Function\">Function</lin
msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"Function\">ལས་འགན་</link>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3145640\n"
@@ -352,7 +345,6 @@ msgid "Inserts a chart."
msgstr ""
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3147003\n"
@@ -369,7 +361,6 @@ msgid "Format"
msgstr "རྩ་སྒྲིག"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3149669\n"
@@ -378,7 +369,6 @@ msgid "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Format</link>"
msgstr "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">རྩ་སྒྲིག་</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"par_id3145171\n"
@@ -387,7 +377,6 @@ msgid "<ahelp hid=\".\">The <emph>Format</emph> menu contains commands for forma
msgstr "<ahelp hid=\".uno:FormatMenu\"> <emph>རྩ་སྒྲིག་</emph>དཀར་ཆག་ནང་ལུ་ སེལ་འཐུ་འབད་ཡོད་པའི་ནང་ཐིག་ཚུ་རྩ་སྒྲིག་འབད་ནིའི་དོན་ལུ་དང་ <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">དངོས་པོ་ཚུ་</link>, དེ་ལས་ ཁྱོད་རའི་ཡིག་ཆ་ནང་ལུ་ ནང་ཐིག་ནང་དོན་ཚུའི་དོན་ལུ་ བརྡ་བཀོད་ཚུ་ཡོདཔ་ཨིན། </ahelp>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3154732\n"
@@ -396,7 +385,6 @@ msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">Cells</link>"
msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">ནང་ཐིག་ཚུ་</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3155087\n"
@@ -405,7 +393,6 @@ msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">Page</link>"
msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">ཤོག་ལེབ་</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3145748\n"
@@ -414,7 +401,6 @@ msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</
msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">ཡིག་འབྲུ་</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3154485\n"
@@ -423,7 +409,6 @@ msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</
msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">དོན་མཚམས་</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3157980\n"
@@ -432,7 +417,6 @@ msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat<
msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">རང་བཞིན་རྩ་སྒྲིག་</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3159206\n"
@@ -441,7 +425,6 @@ msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\"
msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\">གནས་སྟངས་ཅན་གྱི་རྩ་སྒྲིག་</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3154703\n"
@@ -450,7 +433,6 @@ msgid "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Control</link
msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">ཚད་འཛིན་</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3147005\n"
@@ -470,7 +452,6 @@ msgstr "ལག་ཆས་ཚུ།"
msgctxt ""
"main0106.xhp\n"
"hd_id3150769\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tools</link>"
msgstr "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">ལག་ཆས་ཚུ་</link>"
@@ -479,7 +460,6 @@ msgstr "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">ལག་ཆས་
msgctxt ""
"main0106.xhp\n"
"par_id3150440\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Tools </emph>menu contains commands to check spelling, to trace sheet references, to find mistakes and to define scenarios.</ahelp>"
msgstr ""
@@ -488,7 +468,6 @@ msgstr ""
msgctxt ""
"main0106.xhp\n"
"par_id3152576\n"
-"10\n"
"help.text"
msgid "You can also create and assign macros and configure the look and feel of toolbars, menus, keyboard, and set the default options for $[officename] applications."
msgstr "དེ་མ་ཚད་ཁྱོད་ཀྱིས་ མེཀོརོསི་གསར་བསྐྲུན་དང་འགན་སྤྲོད་འབད་ཚུགས་པའི་ཁར་ ལྡེ་སྒྲོམ་དང་དཀར་ཆག་ཚུ་དེ་ལས་ལག་ཆས་ཕྲ་རིང་ཚུའི་ཚོར་སྣང་དང་སྣང་བ་ རིམ་སྒྲིག་འབད་ཚུགསཔ་མ་ཚད་ $[officename] གློག་རིམ་གྱི་དོན་ལུ་ སྔོན་སྒྲིག་གདམ་ཁ་ཚུ་ གཞི་སྒྲིག་འབད་ཚུགས།"
@@ -496,8 +475,15 @@ msgstr "དེ་མ་ཚད་ཁྱོད་ཀྱིས་ མེཀོར
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
+"hd_id3154015\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">རང་བཞིན་ནོར་བཅོས་</link>"
+
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
"hd_id3149122\n"
-"12\n"
"help.text"
msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">དམིགས་འཚོལ་</link>"
@@ -506,7 +492,6 @@ msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">དམི
msgctxt ""
"main0106.xhp\n"
"hd_id3155768\n"
-"6\n"
"help.text"
msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">Scenarios</link>"
msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">འཆར་བཤད་</link>"
@@ -514,17 +499,7 @@ msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">འཆར
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
-"hd_id3154015\n"
-"9\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">རང་བཞིན་ནོར་བཅོས་</link>"
-
-#: main0106.xhp
-msgctxt ""
-"main0106.xhp\n"
"hd_id3150086\n"
-"8\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Configure\">སྲོལ་སྒྲིག་འབད་ནི་</link>"
@@ -538,7 +513,6 @@ msgid "Window"
msgstr "སྒོ་སྒྲིག"
#: main0107.xhp
-#, fuzzy
msgctxt ""
"main0107.xhp\n"
"hd_id3154758\n"
@@ -566,7 +540,6 @@ msgstr "གནད་སྡུད།"
msgctxt ""
"main0112.xhp\n"
"hd_id3153254\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Data</link>"
msgstr "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">གནད་སྡུད་</link>"
@@ -575,7 +548,6 @@ msgstr "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">གནད་སྡ
msgctxt ""
"main0112.xhp\n"
"par_id3147264\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Use the <emph>Data</emph> menu commands to edit the data in the current sheet. You can define ranges, sort and filter the data, calculate results, outline data, and create a pivot table.</ahelp>"
msgstr ""
@@ -584,7 +556,6 @@ msgstr ""
msgctxt ""
"main0112.xhp\n"
"hd_id3150400\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">Define Range</link>"
msgstr "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">ཁྱབ་ཚད་ངེས་འཛིན་འབད་</link>"
@@ -593,7 +564,6 @@ msgstr "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">ཁྱ
msgctxt ""
"main0112.xhp\n"
"hd_id3125863\n"
-"4\n"
"help.text"
msgid "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">Select Range</link>"
msgstr "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">ཁྱབ་ཚད་སེལ་འཐུ་འབད་</link>"
@@ -602,7 +572,6 @@ msgstr "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">ཁྱ
msgctxt ""
"main0112.xhp\n"
"hd_id3153726\n"
-"5\n"
"help.text"
msgid "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">Sort</link>"
msgstr "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">དབྱེ་སེལ་</link>"
@@ -611,7 +580,6 @@ msgstr "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">དབྱེ་
msgctxt ""
"main0112.xhp\n"
"hd_id3153142\n"
-"6\n"
"help.text"
msgid "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">Subtotals</link>"
msgstr "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">ཡན་ལག་བསྡོམས་</link>"
@@ -620,7 +588,6 @@ msgstr "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">ཡན་
msgctxt ""
"main0112.xhp\n"
"hd_id3151073\n"
-"10\n"
"help.text"
msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Validity</link>"
msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">ནུས་ལྡན་དུས་ཚོད་</link>"
@@ -629,7 +596,6 @@ msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">ནུས་
msgctxt ""
"main0112.xhp\n"
"hd_id3145254\n"
-"7\n"
"help.text"
msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple Operations\">Multiple Operations</link>"
msgstr "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple Operations\">སྣ་མང་བཀོལ་སྤྱོད་</link>"
@@ -646,7 +612,6 @@ msgstr ""
msgctxt ""
"main0112.xhp\n"
"hd_id3150717\n"
-"8\n"
"help.text"
msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Consolidate</link>"
msgstr "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">རྩ་བརྟན་བཟོ་ནི་</link>"
@@ -655,7 +620,6 @@ msgstr "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">རྩ་
msgctxt ""
"main0112.xhp\n"
"hd_id3154754\n"
-"9\n"
"help.text"
msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">ཁྱབ་ཚད་ཡང་སེལ་འབད་</link>"
@@ -669,7 +633,6 @@ msgid "Sheet"
msgstr ""
#: main0116.xhp
-#, fuzzy
msgctxt ""
"main0116.xhp\n"
"hd_id0906201507390173\n"
@@ -686,7 +649,6 @@ msgid "<ahelp hid=\".\">This menu contains commands to modify and manage a sheet
msgstr ""
#: main0116.xhp
-#, fuzzy
msgctxt ""
"main0116.xhp\n"
"par_id0906201507414191\n"
@@ -695,7 +657,6 @@ msgid "<link href=\"text/scalc/01/04030000.xhp\" name=\"Insert Rows\">Insert Row
msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">འཆར་བཤད་</link>"
#: main0116.xhp
-#, fuzzy
msgctxt ""
"main0116.xhp\n"
"par_id0906201507414192\n"
@@ -704,7 +665,6 @@ msgid "<link href=\"text/scalc/01/04040000.xhp\" name=\"Insert Columns\">Insert
msgstr "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">ནང་དོན་ཚུ་བཏོན་གཏང་</link>"
#: main0116.xhp
-#, fuzzy
msgctxt ""
"main0116.xhp\n"
"hd_id3150792\n"
@@ -713,7 +673,6 @@ msgid "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Move or Copy
msgstr "<link href=\"text/scalc/01/02160000.xhp\" name=\"Delete Cells\">ནང་ཐིག་ཚུ་བཏོན་གཏང་</link>"
#: main0116.xhp
-#, fuzzy
msgctxt ""
"main0116.xhp\n"
"hd_id3153968\n"
@@ -722,7 +681,6 @@ msgid "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show Sheet</link>
msgstr "<link href=\"text/scalc/01/04050000.xhp\" name=\"Sheet\">ལེབ་གྲངས་</link>"
#: main0116.xhp
-#, fuzzy
msgctxt ""
"main0116.xhp\n"
"hd_id3163708\n"
@@ -739,7 +697,6 @@ msgid "Sheet Tab Color"
msgstr ""
#: main0116.xhp
-#, fuzzy
msgctxt ""
"main0116.xhp\n"
"hd_id3163733308\n"
@@ -759,7 +716,6 @@ msgstr "ལག་ཆས་ཕྲ་རིང་ཚུ།"
msgctxt ""
"main0200.xhp\n"
"hd_id3154758\n"
-"1\n"
"help.text"
msgid "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
msgstr "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">ལག་ཆས་ཕྲ་རིང་ཚུ་</link></variable>"
@@ -768,7 +724,6 @@ msgstr "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"
msgctxt ""
"main0200.xhp\n"
"par_id3148798\n"
-"2\n"
"help.text"
msgid "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
msgstr "ཡན་ལག་དཀར་ཆག་འདི་གིས་ ཤོག་ཁྲམ་ནང་ཡོད་པའི་ལག་ཆས་ཕྲ་རིང་ཚུ་ ཐོ་བཀོད་འབདཝ་ཨིན། <embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
@@ -785,7 +740,6 @@ msgstr "ཕྲ་རིང་རྩ་སྒྲིག་འབད་དོ།"
msgctxt ""
"main0202.xhp\n"
"hd_id3150448\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
msgstr "<link href=\"text/scalc/main0202.xhp\" name=\"Formatting Bar\">ཕྲ་རིང་རྩ་སྒྲིག་འབད་དོ་</link>"
@@ -794,7 +748,6 @@ msgstr "<link href=\"text/scalc/main0202.xhp\" name=\"Formatting Bar\">ཕྲ་
msgctxt ""
"main0202.xhp\n"
"par_id3153897\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_TOOLBOX_TABLE\">The <emph>Formatting</emph> bar contains basic commands for applying manually formatting.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TABLE\"><emph>Formatting</emph>ཕྲ་རིང་ནང་ལུ་ ལག་ཐོག་ལས་རྩ་སྒྲིག་འབད་ནི་ལུ་ འཇུག་སྤྱོད་འབད་ནིའི་དོན་ལུ་གཞི་རིམ་་བརྡ་བཀོད་ཚུ་ཡོདཔ་ཨིན།</ahelp>"
@@ -803,7 +756,6 @@ msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TABLE\"><emph>Formatting</emph>ཕྲ་ར
msgctxt ""
"main0202.xhp\n"
"hd_id3153160\n"
-"8\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>"
@@ -812,7 +764,6 @@ msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">ཡིག
msgctxt ""
"main0202.xhp\n"
"hd_id3150715\n"
-"9\n"
"help.text"
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Left\">Align Left</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Left\">གཡོན་ལུ་ཕྲང་</link>"
@@ -821,7 +772,6 @@ msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Left\">གཡོ
msgctxt ""
"main0202.xhp\n"
"hd_id3155064\n"
-"10\n"
"help.text"
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Horizontally\">Align Center Horizontally</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Horizontally\">དབུས་ལུ་ཐད་སྙོམས་སྦེ་ཕྲང་</link>"
@@ -830,7 +780,6 @@ msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Horizonta
msgctxt ""
"main0202.xhp\n"
"hd_id3150042\n"
-"11\n"
"help.text"
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Right\">Align Right</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Right\">གཡས་ལུ་ཕྲང་</link>"
@@ -839,7 +788,6 @@ msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Right\">གཡ
msgctxt ""
"main0202.xhp\n"
"hd_id3154703\n"
-"12\n"
"help.text"
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Justify\">Justify</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Justify\">ལྟེམས་བཅོས་འབད་</link>"
@@ -848,7 +796,6 @@ msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Justify\">ལྟེམ
msgctxt ""
"main0202.xhp\n"
"hd_id3152986\n"
-"13\n"
"help.text"
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Top\">Align Top</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Top\">མགུ་ལུ་ཕྲང་</link>"
@@ -857,7 +804,6 @@ msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Top\">མགུ
msgctxt ""
"main0202.xhp\n"
"hd_id3153306\n"
-"14\n"
"help.text"
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Vertically\">Align Center Vertically</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Vertically\">དབུས་ལུ་ཀེར་ཕྲང་སྦེ་ཕྲང་</link>"
@@ -866,7 +812,6 @@ msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Verticall
msgctxt ""
"main0202.xhp\n"
"hd_id3151240\n"
-"15\n"
"help.text"
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Bottom\">Align Bottom</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Bottom\">མཇུག་ལུ་ཕྲང་</link>"
@@ -1011,7 +956,6 @@ msgstr "པར་རིས་དངོས་པོའི་རྒྱུ་དང
msgctxt ""
"main0203.xhp\n"
"hd_id3154346\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties Bar\">Drawing Object Properties Bar</link>"
msgstr "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties Bar\"></link>"
@@ -1020,7 +964,6 @@ msgstr "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties
msgctxt ""
"main0203.xhp\n"
"par_id3149656\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">The <emph>Drawing Object Properties</emph> Bar for objects that you select in the sheet contains formatting and alignment commands.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">The <emph>པར་རིས་དངོས་པོའི་རྒྱུ་དངོས་</emph> ཁྱོད་ཀྱིས་ལེབ་གྲངས་ནང་ལུ་ཡོད་མི་རྩ་སྒྲིག་དང་ཕྲང་སྒྲིག་བརྡ་བཀོད་གཉིས་སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོའི་དོན་ལས་ཕྲ་རིང་།</ahelp>"
@@ -1029,7 +972,6 @@ msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">The <emph>པར་རིས་དང
msgctxt ""
"main0203.xhp\n"
"hd_id3145748\n"
-"3\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">གྲལ་ཐིག་གི་བཟོ་རྣམ་</link>"
@@ -1038,7 +980,6 @@ msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">གྲལ
msgctxt ""
"main0203.xhp\n"
"hd_id3151073\n"
-"4\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">གྲལ་ཐིག་གི་རྒྱ་ཚད་</link>"
@@ -1047,7 +988,6 @@ msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">གྲལ
msgctxt ""
"main0203.xhp\n"
"hd_id3153417\n"
-"5\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">གྲལ་ཐིག་གི་ཚོས་གཞི་</link>"
@@ -1056,7 +996,6 @@ msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">གྲལ
msgctxt ""
"main0203.xhp\n"
"hd_id3147338\n"
-"6\n"
"help.text"
msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">Background Color</link>"
msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">རྒྱབ་གཞིའི་ཚོས་གཞི་</link>"
@@ -1073,7 +1012,6 @@ msgstr "ཚིག་ཡིག་རྩ་སྒྲིག་ཕྲ་རིང་
msgctxt ""
"main0205.xhp\n"
"hd_id3156330\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">Text Formatting Bar</link>"
msgstr "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">ཚིག་ཡིག་གི་རྩ་སྒྲིག་ཕྲ་རིང་</link>"
@@ -1082,7 +1020,6 @@ msgstr "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">ཚ
msgctxt ""
"main0205.xhp\n"
"par_id3151112\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\">The <emph>Text Formatting</emph> Bar that is displayed when the cursor is in a text object, such as a text frame or a drawing object, contains formatting and alignment commands.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\"> འོད་རྟགས་འདི་དཔེར་ན་ ཚིག་ཡིག་གཞི་ཁྲམ་ ཡང་ན་ པར་རིས་དངོས་པོ་ཅིག་གི་ནང་རྩ་སྒྲིག་དང་ཕྲང་སྒྲིག་བརྡ་བཀོད་གཉིས་ཡོད་དོ་བཟུམ་སྦེ་ ཚིག་ཡིག་དངོས་པོའི་ནང་འབྱུང་པའི་སྐབས་ལུ་ བཀྲམ་སྟོན་འབད་དེ་ཡོད་པའི་ <emph>ཚིག་ཡིག་རྩ་སྒྲིག་</emph>ཕྲ་རིང་། </ahelp>"
@@ -1091,7 +1028,6 @@ msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\"> འོད་རྟགས་འད
msgctxt ""
"main0205.xhp\n"
"hd_id3148575\n"
-"7\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>"
@@ -1100,7 +1036,6 @@ msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">ཡིག
msgctxt ""
"main0205.xhp\n"
"hd_id3154944\n"
-"8\n"
"help.text"
msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">Line Spacing: 1</link>"
msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">གྲལ་ཐིག་གི་བར་སྟཽང་བཞག་ཐངས་: 1</link>"
@@ -1109,7 +1044,6 @@ msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">ག
msgctxt ""
"main0205.xhp\n"
"hd_id3146969\n"
-"9\n"
"help.text"
msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1.5\">Line Spacing: 1.5</link>"
msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1.5\">གྲལ་ཐིག་གི་བར་སྟོང་བཞག་ཐངས་: ༡.༥</link>"
@@ -1118,7 +1052,6 @@ msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1.5\">
msgctxt ""
"main0205.xhp\n"
"hd_id3153711\n"
-"10\n"
"help.text"
msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">Line Spacing: 2</link>"
msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">གྲལ་ཐིག་གི་བར་སྟོང་བཞག་ཐངས་: ༢</link>"
@@ -1127,7 +1060,6 @@ msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">ག
msgctxt ""
"main0205.xhp\n"
"hd_id3147345\n"
-"11\n"
"help.text"
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">Align Left</link>"
msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">གཡོན་ལུ་ཕྲང་</link>"
@@ -1136,7 +1068,6 @@ msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">གཡོ
msgctxt ""
"main0205.xhp\n"
"hd_id3155337\n"
-"12\n"
"help.text"
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Centered</link>"
msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">དབུས་སྒྲིག་</link>"
@@ -1145,7 +1076,6 @@ msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">དབུ
msgctxt ""
"main0205.xhp\n"
"hd_id3147001\n"
-"13\n"
"help.text"
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">Align Right</link>"
msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">གཡས་ལུ་ཕྲང་</link>"
@@ -1154,7 +1084,6 @@ msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">གཡ
msgctxt ""
"main0205.xhp\n"
"hd_id3155115\n"
-"14\n"
"help.text"
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Justify</link>"
msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">ལྟེམས་བཅོས་འབད་ནི་</link>"
@@ -1163,7 +1092,6 @@ msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">ལྟེམ
msgctxt ""
"main0205.xhp\n"
"hd_id3150202\n"
-"15\n"
"help.text"
msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superscript</link>"
msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">སྟེང་ཡིག་</link>"
@@ -1172,7 +1100,6 @@ msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">སྟ
msgctxt ""
"main0205.xhp\n"
"hd_id3155531\n"
-"16\n"
"help.text"
msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subscript</link>"
msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">སྟེང་ཡིག་</link>"
@@ -1181,7 +1108,6 @@ msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">སྟེ
msgctxt ""
"main0205.xhp\n"
"hd_id3145387\n"
-"17\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">ཡིག་འབྲུ་</link>"
@@ -1190,7 +1116,6 @@ msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">ཡིག
msgctxt ""
"main0205.xhp\n"
"hd_id3153067\n"
-"18\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">དོན་མཚམས་</link>"
@@ -1207,7 +1132,6 @@ msgstr "མན་ངག་ཕྲ་རིང་།"
msgctxt ""
"main0206.xhp\n"
"hd_id3147264\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula Bar\">Formula Bar</link>"
msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Formula Bar\">མན་ངག་ཕྲ་རིང་</link>"
@@ -1216,7 +1140,6 @@ msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Formula Bar\">མན་ང
msgctxt ""
"main0206.xhp\n"
"par_id3150400\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_INPUTWIN\">Use this bar to enter formulas.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_INPUTWIN\">མན་ངག་ཚུ་བཙུགས་ནིའི་དོན་ལས་ཕྲ་རིང་འདི་ལག་ལེན་འཐབ་</ahelp>"
@@ -1233,7 +1156,6 @@ msgstr "གནས་ཚད་ཕྲ་རིང་།"
msgctxt ""
"main0208.xhp\n"
"hd_id3151385\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">གནས་ཚད་ཕྲ་རིང་</link>"
@@ -1242,7 +1164,6 @@ msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">གནས་
msgctxt ""
"main0208.xhp\n"
"par_id3149669\n"
-"2\n"
"help.text"
msgid "The <emph>Status Bar</emph> displays information about the current sheet."
msgstr "<emph>གནས་ཚད་ཕྲ་རིང་</emph>གིས་ ད་ལྟོའི་ལེབ་གྲངས་ཀྱི་སྐོར་ལས་བརྡ་དོན་བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -1264,7 +1185,6 @@ msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital
msgstr ""
#: main0210.xhp
-#, fuzzy
msgctxt ""
"main0210.xhp\n"
"tit\n"
@@ -1273,21 +1193,17 @@ msgid "Print Preview Bar"
msgstr "ཤོག་ལེབ་སྔོན་ལྟ་ཕྲ་རིང་།"
#: main0210.xhp
-#, fuzzy
msgctxt ""
"main0210.xhp\n"
"hd_id3156023\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Print Preview Bar\">Print Preview Bar</link>"
msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Page Preview Bar\">ཤོག་ལེབ་སྔོན་ལྟ་ཕྲ་རིང་</link>"
#: main0210.xhp
-#, fuzzy
msgctxt ""
"main0210.xhp\n"
"par_id3148663\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_WIN_PREVIEW\">The <emph>Print Preview</emph> Bar is displayed when you choose <emph>File - Print Preview</emph>.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_WIN_PREVIEW\"> <emph>ཤོག་ལེབ་སྔོན་ལྟ་</emph> ཕྲ་རིང་འདི་ ཁྱོད་ཀྱིས་<emph>ཡིག་སྣོད་ - ཤོག་ལེབ་སྔོན་ལྟ་</emph>འདི་གདམ་པའི་བསྒང་ལུ་བཀྲམ་སྟོན་འབདཝ་ཨིན།</ahelp>"
@@ -1296,7 +1212,6 @@ msgstr "<ahelp hid=\"HID_SC_WIN_PREVIEW\"> <emph>ཤོག་ལེབ་སྔ
msgctxt ""
"main0210.xhp\n"
"hd_id3147393\n"
-"3\n"
"help.text"
msgid "Full Screen"
msgstr "གསལ་གཞི་ཧྲིལ་བུ།"
@@ -1313,7 +1228,6 @@ msgstr ""
msgctxt ""
"main0210.xhp\n"
"hd_id3147394\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">Format Page</link>"
msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">ཤོག་ལེབ་</link>"
@@ -1322,7 +1236,6 @@ msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">ཤོག་ལ
msgctxt ""
"main0210.xhp\n"
"hd_id3147494\n"
-"3\n"
"help.text"
msgid "Margins"
msgstr "ས་སྟོང་ཚུ།"
@@ -1339,7 +1252,6 @@ msgstr ""
msgctxt ""
"main0210.xhp\n"
"hd_id3245494\n"
-"3\n"
"help.text"
msgid "Scaling Factor"
msgstr ""
@@ -1356,7 +1268,6 @@ msgstr ""
msgctxt ""
"main0210.xhp\n"
"hd_id3147395\n"
-"3\n"
"help.text"
msgid "Close Preview"
msgstr ""
@@ -1378,21 +1289,17 @@ msgid "Image Bar"
msgstr ""
#: main0214.xhp
-#, fuzzy
msgctxt ""
"main0214.xhp\n"
"hd_id3153088\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0214.xhp\" name=\"Image Bar\">Image Bar</link>"
msgstr "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">ལག་ཆས་ཕྲ་རིང་</link>"
#: main0214.xhp
-#, fuzzy
msgctxt ""
"main0214.xhp\n"
"par_id3153896\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Image</emph> bar is displayed when you insert or select an image in a sheet.</ahelp>"
msgstr "<ahelp hid=\".\"> <emph>པར་</emph>ཕྲ་རིང་འདི་ ཁྱོད་ཀྱིས་ ཤོག་ཁྲམ་ནང་པར་ཅིག་སེལ་འཐུ་འབདཝ་ད་ ཡང་ན་ བཙུགསཔ་ད་ བཀྲམ་སྟོན་འབདཝ་ཨིན།</ahelp>"
@@ -1409,7 +1316,6 @@ msgstr "ལག་ཆས་ཕྲ་རིང་།"
msgctxt ""
"main0218.xhp\n"
"hd_id3143268\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Tools Bar</link>"
msgstr "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">ལག་ཆས་ཕྲ་རིང་</link>"
@@ -1418,7 +1324,6 @@ msgstr "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">ལག་ཆ
msgctxt ""
"main0218.xhp\n"
"par_id3151112\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Use the Tools bar to access commonly used commands.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\"> ཐུན་མོང་སྦེ་ལག་ལེན་འཐབ་ཏེ་ཡོད་པའི་བརྡ་བཀོད་ཚུ་འཛུལ་སྤྱོད་འབད་ནིའི་དོན་ལུ་ ལག་ཆས་ཕྲ་རིང་ལག་ལེན་འཐབ།</ahelp>"
@@ -1435,7 +1340,6 @@ msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls\">ཚད་
msgctxt ""
"main0218.xhp\n"
"hd_id3154730\n"
-"6\n"
"help.text"
msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Choose Themes\">Choose Themes</link>"
msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Choose Themes\">བརྗོད་དོན་གདམས་</link>"
@@ -1492,7 +1396,6 @@ msgstr "$[officename] ཀེལཀི་ཁྱད་རྣམ།"
msgctxt ""
"main0503.xhp\n"
"hd_id3154758\n"
-"1\n"
"help.text"
msgid "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"$[officename] Calc Features\">$[officename] Calc Features</link></variable>"
msgstr "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"$[officename] Calc Features\">$[officename] ཀེལཀི་ཁྱད་རྣམ་</link></variable>"
@@ -1501,7 +1404,6 @@ msgstr "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"
msgctxt ""
"main0503.xhp\n"
"par_id3149457\n"
-"2\n"
"help.text"
msgid "$[officename] Calc is a spreadsheet application that you can use to calculate, analyze, and manage your data. You can also import and modify Microsoft Excel spreadsheets."
msgstr "$[officename] ཀེལཀི་འདི་ རྩིས་སྟོན་དང་དཔྱད་ཞིབ་དེ་ལས་ཁྱོད་རའི་གནད་སྡུད་འཛིན་སྐྱོང་འབད་བཏུབ་པའི་ཤོག་ཁྲམ་གློག་རིམ་ཅིག་ཨིན། དེ་མ་ཚད་ཁྱོད་ཀྱིས་ མའི་ཀོརོ་སོཕཊི་ཨེག་སིལ་ཤོག་ཁྲམ་ཚུ་ནང་འདྲེན་དང་ལེགས་བཅོས་འབད་ཚུགས།"
@@ -1510,7 +1412,6 @@ msgstr "$[officename] ཀེལཀི་འདི་ རྩིས་སྟོན
msgctxt ""
"main0503.xhp\n"
"hd_id3148797\n"
-"4\n"
"help.text"
msgid "Calculations"
msgstr "རྩིས་ལས།"
@@ -1519,7 +1420,6 @@ msgstr "རྩིས་ལས།"
msgctxt ""
"main0503.xhp\n"
"par_id3145172\n"
-"5\n"
"help.text"
msgid "$[officename] Calc provides you with <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">functions</link>, including statistical and banking functions, that you can use to create formulas to perform complex calculations on your data."
msgstr "$[officename] ཀེལཀི་གིས་ཁྱོད་ལུ་ <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">ལས་འགན་</link>དང་གཅིག་ཁར་ ཁྱོད་ཀྱིས་ཁྱོད་རའི་གནད་སྡུད་གུ་གོ་དཀའ་བའི་རྩིས་སྟོན་ནི་ཚུགི་ལཱ་འགན་འགྲུབ་ནིའི་དོན་ལུ་མན་ངག་གསར་བསྐྲུན་འབད་ནི་ལུ་ལག་ལེན་འཐབ་ཚུགས་པའི་ཚད་རྩིས་དང་དངུལ་ཁང་གི་ལས་འགན་ཚུ་ཡང་བྱིནམ་ཨིན།"
@@ -1528,7 +1428,6 @@ msgstr "$[officename] ཀེལཀི་གིས་ཁྱོད་ལུ་ <li
msgctxt ""
"main0503.xhp\n"
"par_id3145271\n"
-"6\n"
"help.text"
msgid "You can also use the <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Function Wizard</link> to help you create your formulas."
msgstr "དེ་མ་ཚད་ ཁྱོད་ཀྱིས་ཁྱོད་རའི་མན་ངག་གསར་བསྐྲུན་འབད་ནིའི་གྲོགས་རམ་གྱི་དོན་ལུ་ <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Function Wizard</link>འདི་ལག་ལེན་འཐབ་ཚུགཤས།"
@@ -1537,7 +1436,6 @@ msgstr "དེ་མ་ཚད་ ཁྱོད་ཀྱིས་ཁྱོད་
msgctxt ""
"main0503.xhp\n"
"hd_id3152596\n"
-"13\n"
"help.text"
msgid "What-If Calculations"
msgstr "རྩིས་སྟོན་པ་ཅིན་ ག་ཅི་འབད་འོང་།"
@@ -1546,7 +1444,6 @@ msgstr "རྩིས་སྟོན་པ་ཅིན་ ག་ཅི་འབ
msgctxt ""
"main0503.xhp\n"
"par_id3156444\n"
-"14\n"
"help.text"
msgid "An interesting feature is to be able to immediately view the results of changes made to one factor of calculations that are composed of several factors. For instance, you can see how changing the time period in a loan calculation affects the interest rates or repayment amounts. Furthermore, you can manage larger tables by using different predefined scenarios."
msgstr "སྤྲོ་བ་ཡོད་པའི་ཁྱད་རྣམ་གིས་ དེ་འཕྲལ་ལས་ཆ་རྐྱེན་ལེ་ཤ་ཅིག་ལས་བྱུང་བའི་རྩི་ས་སྟོན་ཅིག་གི་ཆ་རྐྱེན་ལུ་བསྒྱུར་བཅོས་འབད་ཡོད་པའི་གྲུབ་འབྲས་འདི་ལུ་བལྟ་ཚུགས་ནི་མས། དཔེར་ན་ སྐྱིན་འགྲུལ་རྩིས་སྟོན་ནང་དུས་ཚོད་བསྒྱུར་བཅོས་འབད་མི་གིས་ དངུལ་སྐྱེད་ ཡངན་ ལོག་གླ་དངུལ་སྤྲོད་ནི་ཚུ་ལུ་ཕན་གནོད་ག་དེ་སྦེ་ཡོདཔ་ཨིན་ན་ཁྱོད་ཀྱིས་མཐོང་ཚུགས། གཞན་ཡང་ ཁྱོད་ཀྱིས་ སྔ་གོང་ངེས་འཛིན་འབད་ཡོད་པའི་འཆར་བཤད་སོ་སོ་ལག་ལེན་གྱི་ཐོག་ལས་ ཐིག་ཁྲམ་སྦོམ་ཚུ་འཛིན་སྐྱོང་འཐབ་ཚུགས།"
@@ -1555,7 +1452,6 @@ msgstr "སྤྲོ་བ་ཡོད་པའི་ཁྱད་རྣམ་ག
msgctxt ""
"main0503.xhp\n"
"hd_id3148576\n"
-"7\n"
"help.text"
msgid "Database Functions"
msgstr "གནད་སྡུད་ལས་འགན།"
@@ -1564,7 +1460,6 @@ msgstr "གནད་སྡུད་ལས་འགན།"
msgctxt ""
"main0503.xhp\n"
"par_id3154011\n"
-"8\n"
"help.text"
msgid "Use spreadsheets to arrange, store, and filter your data."
msgstr "མཛོད་ཁང་དང་ཚགས་མ་དེ་ལས་ ཁྱོད་རའི་གནད་སྡུད་ཚུ་བདེ་ཞིབ་འབད་ནིའི་དོན་ལས་ ཤོག་ཁྲམ་ལག་ལེན་འཐབ།"
@@ -1573,7 +1468,6 @@ msgstr "མཛོད་ཁང་དང་ཚགས་མ་དེ་ལས་
msgctxt ""
"main0503.xhp\n"
"par_id3154942\n"
-"25\n"
"help.text"
msgid "$[officename] Calc lets you drag-and-drop tables from databases, or lets you use a spreadsheet as a data source for creating form letters in $[officename] Writer."
msgstr "$[officename]ཀེལཀི་གིས་ཁྱོད་ལུ་ གནད་སྡུད་གཞི་རྟེན་ནང་ལས་ཐིག་ཁྲམ་ཚུ་འདྲུད་ནི་དང་བཀོག་ནི་ཚུ་འབད་བཅུགཔ་ཨིན་ ཡང་ན་ ཁྱོད་ལུ་ $[officename] རའི་ཊར་ནང་ ཡི་གུའི་རྣམ་པ་ཚུ་གསར་བསྐྲུན་འབད་ནིའི་དོན་ལས་ཤོག་ཁྲམ་འདི་གནད་སྡུད་འབྱུང་ཁུངས་སྦེ་ལག་ལེན་འཐབ་བཅུགཔ་ཨིན།"
@@ -1582,7 +1476,6 @@ msgstr "$[officename]ཀེལཀི་གིས་ཁྱོད་ལུ་ ག
msgctxt ""
"main0503.xhp\n"
"hd_id3145800\n"
-"9\n"
"help.text"
msgid "Arranging Data"
msgstr "བདེ་ཞིབ་གནད་སྡུད།"
@@ -1591,7 +1484,6 @@ msgstr "བདེ་ཞིབ་གནད་སྡུད།"
msgctxt ""
"main0503.xhp\n"
"par_id3154490\n"
-"10\n"
"help.text"
msgid "With a few mouse-clicks, you can reorganize your spreadsheet to show or hide certain data ranges, or to format ranges according to special conditions, or to quickly calculate subtotals and totals."
msgstr "མའུསི་གུ་ཨེབ་གཏང་ཉུང་སུ་ཅིག་འབད་བའི་ཐོག་ལས་ ཁྱོད་ཀྱིས་གནད་སྡུད་ཁྱབ་ཚད་ལ་ལོ་ཅིག་སྟོན་ནི་ ཡངན་ སྦ་ནི་དང་དེ་ལས་དམིགས་བསལ་གནས་སྟངས་དང་འཁྲིལ་ཏེ་ཁྱབ་ཚད་རྩ་སྒྲིག་འབད་ནི་ ཡང་ཅིན་ ཡན་ལག་བསྡོམས་དང་བསྡོམས་ནིའི་རྩིས་མགྱོགས་པར་སྟོན་ནིའི་དོན་ལས་ ལོག་སྟེ་འགོ་འདྲེན་འཐབ་ཚུགས།"
@@ -1600,7 +1492,6 @@ msgstr "མའུསི་གུ་ཨེབ་གཏང་ཉུང་སུ་
msgctxt ""
"main0503.xhp\n"
"hd_id3155601\n"
-"16\n"
"help.text"
msgid "Dynamic Charts"
msgstr "ནུས་ཅན་གྱི་དཔེ་རིས།"
@@ -1609,7 +1500,6 @@ msgstr "ནུས་ཅན་གྱི་དཔེ་རིས།"
msgctxt ""
"main0503.xhp\n"
"par_id3149121\n"
-"17\n"
"help.text"
msgid "$[officename] Calc lets you present spreadsheet data in dynamic charts that update automatically when the data changes."
msgstr "$[officename]ཀེལཀི་གིས་ཁྱོད་ལུ་ གནད་སྡུད་བསྒྱུར་བཅོས་འབདཝ་ད་ རང་བཞིན་གྱིས་དུས་མཐུན་བཟོ་བཏུབ་པའི་ནུས་ཅན་དཔེ་རིས་ནང་ལུ་ ཤོག་ཁྲམ་གནད་སྡུད་གསལ་སྟོན་འབད་བཅུགཔ་ཨིན།"
@@ -1618,7 +1508,6 @@ msgstr "$[officename]ཀེལཀི་གིས་ཁྱོད་ལུ་ ག
msgctxt ""
"main0503.xhp\n"
"hd_id3153707\n"
-"18\n"
"help.text"
msgid "Opening and Saving Microsoft Files"
msgstr "མའི་ཀོརོ་སོཕཊི་ཡིག་སྣོད་ཁ་ཕྱེ་ནི་དང་སྲུང་ནི།"
@@ -1627,7 +1516,6 @@ msgstr "མའི་ཀོརོ་སོཕཊི་ཡིག་སྣོད་
msgctxt ""
"main0503.xhp\n"
"par_id3157867\n"
-"19\n"
"help.text"
msgid "Use the $[officename] filters to convert Excel files, or to open and save in a variety of other <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">formats</link>."
msgstr "ཨེག་སིལ་ཡིག་སྣོད་ཚུ་གཞི་བསྒྱུར་འབད་ནི་དང་ ཡང་ན་ གཞན་<link href=\"text/shared/00/00000020.xhp\" name=\"formats\">formats</link>ཚུ་ནང་ ཁ་ཕྱེ་ནི་དང་སྲུང་ནིའི་དོན་ལས་ $[officename] ཚགས་མ་ལག་ལེན་འཐབ།"
diff --git a/source/dz/helpcontent2/source/text/scalc/00.po b/source/dz/helpcontent2/source/text/scalc/00.po
index a0429286fc9..c0f1d31f4aa 100644
--- a/source/dz/helpcontent2/source/text/scalc/00.po
+++ b/source/dz/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
"PO-Revision-Date: 2016-05-24 04:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28,7 +28,6 @@ msgstr "འ་ནི་ལས་འགན་འཛུལ་སྤྱོད་འ
msgctxt ""
"00000004.xhp\n"
"hd_id3155535\n"
-"1\n"
"help.text"
msgid "<variable id=\"wie\">To access this function... </variable>"
msgstr "<variable id=\"wie\">འ་ནི་ལས་འགན་འདི་འཛུལ་སྤྱོད་འབད་ནིའི་དོན་ལུ་... </variable>"
@@ -66,7 +65,6 @@ msgid "Edit Menu"
msgstr "དཀར་ཆག་ཞུན་དག་འབད།"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"hd_id3147303\n"
@@ -75,7 +73,6 @@ msgid "Edit Menu"
msgstr "དཀར་ཆག་ཞུན་དག་འབད།"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3155555\n"
@@ -84,7 +81,6 @@ msgid "<variable id=\"kopffuss\">Choose <emph>Insert - Headers and Footers</emph
msgstr "<variable id=\"kopffuss\">གདམ་ <emph>ཞུན་དག་འབད་ - མགོ་ཡིག་ཚུ་ & མཇུག་ཡིག་ཚུ་</emph></variable>(&F)"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3159233\n"
@@ -93,7 +89,6 @@ msgid "<variable id=\"bkopfzeile\">Choose <emph>Insert - Headers and Footers - H
msgstr "<variable id=\"bkopfzeile\">གདམ་ <emph>ཞུན་དག་འབད་ - མགོ་ཡིག་ཚུ་ & མཇུག་ཡིག་ཚུ་ - མགོ་ཡིག་/མཇུག་ཡིག་ </emph> མཆོང་ལྡེ་ </variable>(&F)"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3150443\n"
@@ -102,7 +97,6 @@ msgid "<variable id=\"bausfullen\">Choose <emph>Sheet - Fill Cells</emph></varia
msgstr "<variable id=\"bausfullen\">གདམ་ <emph>ཞུན་དག་འབད་ - བཀང་ </emph></variable>"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3143267\n"
@@ -111,7 +105,6 @@ msgid "<variable id=\"bausunten\">Choose <emph>Sheet - Fill Cells - Down</emph><
msgstr "<variable id=\"bausunten\">གདམ་ <emph>ཞུན་དག་འབད་ - བཀང་ - མར་ </emph></variable>"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3153880\n"
@@ -120,7 +113,6 @@ msgid "<variable id=\"bausrechts\">Choose <emph>Sheet - Fill Cells - Right</emph
msgstr "<variable id=\"bausrechts\">གདམ་ <emph>ཞུན་དག་འབད་ - བཀང་ - གཡས་ </emph></variable>"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3151245\n"
@@ -129,7 +121,6 @@ msgid "<variable id=\"bausoben\">Choose <emph>Sheet - Fill Cells - Up</emph></va
msgstr "<variable id=\"bausoben\">གདམ་ <emph>ཞུན་དག་འབད་ - བཀང་ - ཡར་ </emph></variable>"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3145068\n"
@@ -138,7 +129,6 @@ msgid "<variable id=\"bauslinks\">Choose <emph>Sheet - Fill Cells - Left</emph><
msgstr "<variable id=\"bauslinks\">གདམ་ <emph>ཞུན་དག་འབད་ - བཀང་ - གཡོན་ </emph></variable>"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3150400\n"
@@ -147,7 +137,6 @@ msgid "<variable id=\"baustab\">Choose <emph>Sheet - Fill Cells - Sheet</emph></
msgstr "<variable id=\"baustab\">གདམ་ <emph>ཞུན་དག་འབད་ - བཀང་ - ཤོག་ཁྲམ་ </emph></variable>"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3154910\n"
@@ -156,7 +145,6 @@ msgid "<variable id=\"bausreihe\">Choose <emph>Sheet - Fill Cells - Series</emph
msgstr "<variable id=\"bausreihe\">གདམ་ <emph>ཞུན་དག་འབད་ - བཀང་ - རྒྱུན་རིམ་ </emph></variable>"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3154123\n"
@@ -173,7 +161,6 @@ msgid "Backspace"
msgstr ""
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3150011\n"
@@ -182,7 +169,6 @@ msgid "<variable id=\"bzelo\">Choose <emph>Sheet - Delete Cells</emph></variable
msgstr "<variable id=\"bzelo\">གདམ་ <emph>ཞུན་དག་འབད་ - ནང་ཐིག་ཚུ་བཏོན་གཏང་ </emph></variable>"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3153951\n"
@@ -191,7 +177,6 @@ msgid "Choose <emph>Sheet - Delete Sheet</emph>"
msgstr "གདམ་ <emph>ཞུན་དག་འབད་ - ནང་དོན་ཚུ་བཏོན་གཏང་ </emph>"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3155306\n"
@@ -200,7 +185,6 @@ msgid "Open context menu for a sheet tab"
msgstr "ཤོག་ཁྲམ་མཆོང་ལྡེ་གི་དོན་ལུ་ སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ།"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3146119\n"
@@ -209,7 +193,6 @@ msgid "Choose <emph>Sheet - Move or Copy Sheet</emph>"
msgstr "གདམ་ <emph>ཞུན་དག་འབད་ - ནང་དོན་ཚུ་བཏོན་གཏང་ </emph>"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3148645\n"
@@ -226,7 +209,6 @@ msgid "View Menu"
msgstr "དཀར་ཆག་སྟོན།"
#: 00000403.xhp
-#, fuzzy
msgctxt ""
"00000403.xhp\n"
"hd_id3145673\n"
@@ -235,7 +217,6 @@ msgid "View Menu"
msgstr "དཀར་ཆག་སྟོན།"
#: 00000403.xhp
-#, fuzzy
msgctxt ""
"00000403.xhp\n"
"par_id3150275\n"
@@ -244,7 +225,6 @@ msgid "<variable id=\"aspze\">Choose <emph>View - Column & Row Headers</emph></v
msgstr "<variable id=\"aspze\">གདམ་ <emph>མཐོང་སྣང་ - ཀེར་ཐིག་ གྲལ་ཐིག་མགོ་ཡིག་ཚུ་ </emph></variable>(&R)"
#: 00000403.xhp
-#, fuzzy
msgctxt ""
"00000403.xhp\n"
"par_id3154514\n"
@@ -261,7 +241,6 @@ msgid "<variable id=\"rechenleiste\">Choose <emph>View - Formula Bar</emph> or <
msgstr ""
#: 00000403.xhp
-#, fuzzy
msgctxt ""
"00000403.xhp\n"
"par_id3148663\n"
@@ -281,7 +260,6 @@ msgstr "དཀར་ཆག་བཙུགས།"
msgctxt ""
"00000404.xhp\n"
"hd_id3149346\n"
-"1\n"
"help.text"
msgid "Insert Menu"
msgstr "དཀར་ཆག་བཙུགས།"
@@ -290,7 +268,6 @@ msgstr "དཀར་ཆག་བཙུགས།"
msgctxt ""
"00000404.xhp\n"
"par_id3149784\n"
-"4\n"
"help.text"
msgid "Choose <emph>Insert - Cells</emph>"
msgstr "གདམ་ <emph>བཙུགས་ - ནང་ཐིག་ཚུ་ </emph>"
@@ -299,7 +276,6 @@ msgstr "གདམ་ <emph>བཙུགས་ - ནང་ཐིག་ཚུ་ <
msgctxt ""
"00000404.xhp\n"
"par_id3154514\n"
-"5\n"
"help.text"
msgid "Open <emph>Insert Cells</emph> toolbar from Tools bar:"
msgstr "ཁ་ཕྱེ་ <emph>ནང་ཐིག་ཚུ་བཙུགས་ </emph> ལག་ཆས་ཚུའི་ཕྲ་རིང་ལས་ལག་ཆས་ཕྲ་རིང་།:"
@@ -316,7 +292,6 @@ msgstr "<image id=\"img_id3154365\" src=\"cmd/sc_inscellsctrl.png\" width=\"0.22
msgctxt ""
"00000404.xhp\n"
"par_id3151041\n"
-"6\n"
"help.text"
msgid "Insert Cells"
msgstr "ནང་ཐིག་ཚུ་བཙུགས།"
@@ -333,7 +308,6 @@ msgstr "<image id=\"img_id3145364\" src=\"cmd/sc_insertcellsdown.png\" width=\"0
msgctxt ""
"00000404.xhp\n"
"par_id3146985\n"
-"7\n"
"help.text"
msgid "Insert Cells Down"
msgstr "ནང་ཐིག་ཚུ་མར་བཙུགས།"
@@ -350,7 +324,6 @@ msgstr "<image id=\"img_id3154942\" src=\"cmd/sc_insertcellsright.png\" width=\"
msgctxt ""
"00000404.xhp\n"
"par_id3145646\n"
-"8\n"
"help.text"
msgid "Insert Cells Right"
msgstr "ནང་ཐིག་ཚུ་གཡས་ལུ་བཙུགས།"
@@ -367,7 +340,6 @@ msgstr "<image id=\"img_id3153710\" src=\"cmd/sc_insertrows.png\" width=\"0.222i
msgctxt ""
"00000404.xhp\n"
"par_id3150324\n"
-"9\n"
"help.text"
msgid "Insert Rows"
msgstr "གྲལ་ཐིག་ཚུ་བཙུགས།"
@@ -384,7 +356,6 @@ msgstr "<image id=\"img_id3145232\" src=\"cmd/sc_insertcolumns.png\" width=\"0.2
msgctxt ""
"00000404.xhp\n"
"par_id3155334\n"
-"10\n"
"help.text"
msgid "Insert Columns"
msgstr "ཀེར་ཐིག་ཚུ་བཙུགས།"
@@ -393,24 +364,22 @@ msgstr "ཀེར་ཐིག་ཚུ་བཙུགས།"
msgctxt ""
"00000404.xhp\n"
"par_id3149033\n"
-"13\n"
"help.text"
-msgid "<variable id=\"eitab\">Choose <emph>Insert - Sheet</emph></variable>"
-msgstr "<variable id=\"eitab\">གདམ་ <emph>བཙུགས་ - ཤོག་ཁྲམ་ </emph></variable>"
+msgid "<variable id=\"eitab\">Choose <emph>Sheet - Insert Sheet</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_idN1082F\n"
"help.text"
-msgid "<variable id=\"eitabfile\">Choose <emph>Insert - Sheet from file</emph></variable>"
-msgstr "<variable id=\"eitabfile\">གདམ་ <emph>བཙུགས་ - ཡིག་སྣོད་ལས་ཤོག་ཁྲམ་ </emph></variable>"
+msgid "<variable id=\"eitabfile\">Choose <emph>Sheet - Insert Sheet from File</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3155115\n"
-"14\n"
"help.text"
msgid "Choose <emph>Insert - Function</emph>"
msgstr "གདམ་ <emph>བཙུགས་ - ལས་འགན་ </emph>"
@@ -419,7 +388,6 @@ msgstr "གདམ་ <emph>བཙུགས་ - ལས་འགན་ </emph>"
msgctxt ""
"00000404.xhp\n"
"par_id3152582\n"
-"34\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+ཨེཕ་ ༢ །"
@@ -428,7 +396,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"00000404.xhp\n"
"par_id3153269\n"
-"15\n"
"help.text"
msgid "On <emph>Formula Bar</emph>, click"
msgstr "<emph>མན་ངག་ཕྲ་རིང་</emph> གུ་ཨེབག་ཏང་འབད།"
@@ -438,14 +405,13 @@ msgctxt ""
"00000404.xhp\n"
"par_id3150515\n"
"help.text"
-msgid "<image id=\"img_id3150884\" src=\"sw/imglst/sc20556.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150884\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150884\" src=\"sw/imglst/sc20556.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150884\">ངོས་དཔར་ </alt></image>"
+msgid "<image id=\"img_id3150884\" src=\"sw/res/sc20556.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150884\">Icon</alt></image>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3154370\n"
-"16\n"
"help.text"
msgid "Function Wizard"
msgstr "ལས་འགན་ཝི་ཛརཌི།"
@@ -454,7 +420,6 @@ msgstr "ལས་འགན་ཝི་ཛརཌི།"
msgctxt ""
"00000404.xhp\n"
"par_id3156288\n"
-"17\n"
"help.text"
msgid "<variable id=\"eikada\"><emph>Insert - Function</emph> - Category <emph>Database</emph></variable>"
msgstr "<variable id=\"eikada\"><emph>བཙུགས་ - ལས་འགན་ </emph> - དབྱེ་རིམ་ <emph>གནད་ཧྡུད་གཞི་རྟེན་ </emph></variable>"
@@ -463,7 +428,6 @@ msgstr "<variable id=\"eikada\"><emph>བཙུགས་ - ལས་འགན་
msgctxt ""
"00000404.xhp\n"
"par_id3155809\n"
-"18\n"
"help.text"
msgid "<variable id=\"eikadaze\"><emph>Insert - Function</emph> - Category <emph>Date&Time</emph></variable>"
msgstr "<variable id=\"eikadaze\"><emph>བཙུགས་ - ལས་འགན་ </emph> - དབྱེ་རིམ་ <emph>ཚེས་ དུས་ཚོད་ </emph></variable>(&T)"
@@ -472,7 +436,6 @@ msgstr "<variable id=\"eikadaze\"><emph>བཙུགས་ - ལས་འགན
msgctxt ""
"00000404.xhp\n"
"par_id3151334\n"
-"19\n"
"help.text"
msgid "<variable id=\"eikafi\"><emph>Insert - Function</emph> - Category <emph>Financial</emph></variable>"
msgstr "<variable id=\"eikafi\"><emph>བཙུགས་ - ལས་འགན་ </emph> - དབྱེ་རིམ་ <emph>དངུལ་འབྲེལ་ </emph></variable>"
@@ -481,7 +444,6 @@ msgstr "<variable id=\"eikafi\"><emph>བཙུགས་ - ལས་འགན་
msgctxt ""
"00000404.xhp\n"
"par_id3159222\n"
-"20\n"
"help.text"
msgid "<variable id=\"eikain\"><emph>Insert - Function</emph> - Category <emph>Information</emph></variable>"
msgstr "<variable id=\"eikain\"><emph>བཙུགས་ - ལས་འགན་ </emph> - དབྱེ་རིམ་ <emph>བརྡ་དོན་ </emph></variable>"
@@ -490,7 +452,6 @@ msgstr "<variable id=\"eikain\"><emph>བཙུགས་ - ལས་འགན་
msgctxt ""
"00000404.xhp\n"
"par_id3159173\n"
-"21\n"
"help.text"
msgid "<variable id=\"eikalo\"><emph>Insert - Function</emph> - Category <emph>Logical</emph></variable>"
msgstr "<variable id=\"eikalo\"><emph>བཙུགས་ - ལས་འགན་ </emph> - དབྱེ་རིམ་ <emph>གཏན་ཚིག་ཅན་ </emph></variable>"
@@ -499,7 +460,6 @@ msgstr "<variable id=\"eikalo\"><emph>བཙུགས་ - ལས་འགན་
msgctxt ""
"00000404.xhp\n"
"par_id3153914\n"
-"22\n"
"help.text"
msgid "<variable id=\"eikama\"><emph>Insert - Function</emph> - Category <emph>Mathematical</emph></variable>"
msgstr "<variable id=\"eikama\"><emph>བཙུགས་ - ལས་འགན་ </emph> - དབྱེ་རིམ་ <emph>ཨང་རྩིས་ </emph></variable>"
@@ -508,7 +468,6 @@ msgstr "<variable id=\"eikama\"><emph>བཙུགས་ - ལས་འགན་
msgctxt ""
"00000404.xhp\n"
"par_id3150109\n"
-"23\n"
"help.text"
msgid "<variable id=\"eikamatrix\"><emph>Insert - Function</emph> - Category <emph>Array</emph></variable>"
msgstr "<variable id=\"eikamatrix\"><emph>བཙུགས་ - ལས་འགན་ </emph> - དབྱེ་རིམ་ <emph>ཨེ་རེ་</emph></variable>"
@@ -517,7 +476,6 @@ msgstr "<variable id=\"eikamatrix\"><emph>བཙུགས་ - ལས་འག
msgctxt ""
"00000404.xhp\n"
"par_id3157978\n"
-"24\n"
"help.text"
msgid "<variable id=\"eikasta\"><emph>Insert - Function</emph> - Category <emph>Statistical</emph></variable>"
msgstr "<variable id=\"eikasta\"><emph>བཙུགས་ - ལས་འགན་ </emph> - དབྱེ་རིམ་ <emph>གྲངས་ཀྱི་ </emph></variable>"
@@ -526,7 +484,6 @@ msgstr "<variable id=\"eikasta\"><emph>བཙུགས་ - ལས་འགན
msgctxt ""
"00000404.xhp\n"
"par_id3156016\n"
-"25\n"
"help.text"
msgid "<variable id=\"eikatext\"><emph>Insert - Function</emph> - Category <emph>Text</emph></variable>"
msgstr "<variable id=\"eikatext\"><emph>བཙུགས་ - ལས་འགན་ </emph> - དབྱེ་རིམ་ <emph>ཚིག་ཡིག་ </emph></variable>"
@@ -535,7 +492,6 @@ msgstr "<variable id=\"eikatext\"><emph>བཙུགས་ - ལས་འགན
msgctxt ""
"00000404.xhp\n"
"par_id3147075\n"
-"26\n"
"help.text"
msgid "<variable id=\"efefft\"><emph>Insert - Function</emph> - Category <emph>Spreadsheet</emph></variable>"
msgstr "<variable id=\"efefft\"><emph>བཙུགས་ - ལས་འགན་ </emph> - དབྱེ་རིམ་ <emph>ཤོག་ཁྲམ་</emph></variable>"
@@ -544,7 +500,6 @@ msgstr "<variable id=\"efefft\"><emph>བཙུགས་ - ལས་འགན་
msgctxt ""
"00000404.xhp\n"
"par_id3154618\n"
-"27\n"
"help.text"
msgid "<variable id=\"addin\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
msgstr "<variable id=\"addin\"><emph>བཙུགས་ - ལས་འགན་ </emph> - དབྱེ་རིམ་ <emph>ནང་ན་ཁ་སྐོང་</emph></variable>"
@@ -553,7 +508,6 @@ msgstr "<variable id=\"addin\"><emph>བཙུགས་ - ལས་འགན་
msgctxt ""
"00000404.xhp\n"
"par_id3154059\n"
-"38\n"
"help.text"
msgid "<variable id=\"addinana\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
msgstr "<variable id=\"addinana\"><emph>བཙུགས་ - ལས་འགན་</emph> - དབྱེ་རིམ་ <emph>ཁ་སྐོང་</emph></variable>"
@@ -562,7 +516,6 @@ msgstr "<variable id=\"addinana\"><emph>བཙུགས་ - ལས་འགན
msgctxt ""
"00000404.xhp\n"
"par_id3155383\n"
-"33\n"
"help.text"
msgid "<variable id=\"funktionsliste\">Choose <emph>Insert - Function List</emph></variable>"
msgstr "<variable id=\"funktionsliste\">གདམ་ <emph>བཙུགས་ - ལས་འགན་ཐོ་ཡིག་ </emph></variable>"
@@ -571,7 +524,6 @@ msgstr "<variable id=\"funktionsliste\">གདམ་ <emph>བཙུགས་ -
msgctxt ""
"00000404.xhp\n"
"par_id3153250\n"
-"28\n"
"help.text"
msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
msgstr ""
@@ -580,16 +532,14 @@ msgstr ""
msgctxt ""
"00000404.xhp\n"
"par_id3146776\n"
-"37\n"
"help.text"
-msgid "<variable id=\"eiextdata\">Choose <emph>Sheet - Link to External Data</emph></variable>"
+msgid "<variable id=\"eiextdata\">Choose <emph>Sheet - Link to External data</emph></variable>"
msgstr ""
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3143222\n"
-"29\n"
"help.text"
msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
msgstr ""
@@ -598,7 +548,6 @@ msgstr ""
msgctxt ""
"00000404.xhp\n"
"par_id3149385\n"
-"35\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+ཨེཕ་ ༣ །"
@@ -607,7 +556,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"00000404.xhp\n"
"par_id3145214\n"
-"30\n"
"help.text"
msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
msgstr ""
@@ -616,7 +564,6 @@ msgstr ""
msgctxt ""
"00000404.xhp\n"
"par_id3153558\n"
-"31\n"
"help.text"
msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
msgstr ""
@@ -625,7 +572,6 @@ msgstr ""
msgctxt ""
"00000404.xhp\n"
"par_id3153483\n"
-"32\n"
"help.text"
msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
msgstr ""
@@ -642,7 +588,6 @@ msgstr "རྩ་སྒྲིག་དཀར་ཆག"
msgctxt ""
"00000405.xhp\n"
"hd_id3150769\n"
-"1\n"
"help.text"
msgid "Format Menu"
msgstr "རྩ་སྒྲིག་དཀར་ཆག"
@@ -651,7 +596,6 @@ msgstr "རྩ་སྒྲིག་དཀར་ཆག"
msgctxt ""
"00000405.xhp\n"
"par_id3154685\n"
-"2\n"
"help.text"
msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph></variable>"
msgstr "<variable id=\"fozelle\">གདམ་ <emph>རྩ་སྒྲིག་ - ནང་ཐིག་ཚུ་ </emph></variable>"
@@ -660,7 +604,6 @@ msgstr "<variable id=\"fozelle\">གདམ་ <emph>རྩ་སྒྲིག་
msgctxt ""
"00000405.xhp\n"
"par_id3153194\n"
-"3\n"
"help.text"
msgid "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab </variable>"
msgstr "<variable id=\"fozelstz\">གདམ་ <emph>རྩ་སྒྲིག་ - ནང་ཐིག་ཚུ་ - ནང་ཐིག་ཉེན་སྲུང་ </emph> tab </variable>"
@@ -669,7 +612,6 @@ msgstr "<variable id=\"fozelstz\">གདམ་ <emph>རྩ་སྒྲིག་
msgctxt ""
"00000405.xhp\n"
"par_id3155854\n"
-"4\n"
"help.text"
msgid "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
msgstr "<variable id=\"fozei\">གདམ་ <emph>རྩ་སྒྲིག་ - གྲལ་ཐིག་ </emph></variable>"
@@ -678,7 +620,6 @@ msgstr "<variable id=\"fozei\">གདམ་ <emph>རྩ་སྒྲིག་ -
msgctxt ""
"00000405.xhp\n"
"par_id3150012\n"
-"5\n"
"help.text"
msgid "<variable id=\"fozeiophoe\">Choose <emph>Format - Row - Optimal Height</emph></variable>"
msgstr "<variable id=\"fozeiophoe\">གདམ་ <emph>རྩ་སྒྲིག་ - གྲལ་ཐིག་ - མཐོ་ཚད་གང་དྲག་ </emph></variable>"
@@ -687,7 +628,6 @@ msgstr "<variable id=\"fozeiophoe\">གདམ་ <emph>རྩ་སྒྲིག
msgctxt ""
"00000405.xhp\n"
"par_id3148645\n"
-"6\n"
"help.text"
msgid "Choose <emph>Format - Row - Hide</emph>"
msgstr "གདམ་ <emph>རྩ་སྒྲིག་ - གྲལ་ཐིག་ - སྦ་ </emph>"
@@ -696,7 +636,6 @@ msgstr "གདམ་ <emph>རྩ་སྒྲིག་ - གྲལ་ཐིག
msgctxt ""
"00000405.xhp\n"
"par_id3153728\n"
-"7\n"
"help.text"
msgid "Choose <emph>Format - Column - Hide</emph>"
msgstr "གདམ་ <emph>རྩ་སྒྲིག་ - ཀེར་ཐིག་ - སྦ་ </emph>"
@@ -705,7 +644,6 @@ msgstr "གདམ་ <emph>རྩ་སྒྲིག་ - ཀེར་ཐིག
msgctxt ""
"00000405.xhp\n"
"par_id3151114\n"
-"8\n"
"help.text"
msgid "Choose <emph>Format - Sheet - Hide</emph>"
msgstr "གདམ་ <emph>རྩ་སྒྲིག་ - ཤོག་ཁྲམ་ - སྦ་ </emph>"
@@ -714,7 +652,6 @@ msgstr "གདམ་ <emph>རྩ་སྒྲིག་ - ཤོག་ཁྲམ
msgctxt ""
"00000405.xhp\n"
"par_id3148576\n"
-"9\n"
"help.text"
msgid "Choose <emph>Format - Row - Show</emph>"
msgstr "གདམ་ <emph>རྩ་སྒྲིག་ - གྲལ་ཐིག་ - སྟོན་ </emph>"
@@ -723,7 +660,6 @@ msgstr "གདམ་ <emph>རྩ་སྒྲིག་ - གྲལ་ཐིག
msgctxt ""
"00000405.xhp\n"
"par_id3156286\n"
-"10\n"
"help.text"
msgid "Choose <emph>Format - Column - Show</emph>"
msgstr "གདམ་ <emph>རྩ་སྒྲིག་ - ཀེར་ཐིག་ - སྟོན་ </emph>"
@@ -732,7 +668,6 @@ msgstr "གདམ་ <emph>རྩ་སྒྲིག་ - ཀེར་ཐིག
msgctxt ""
"00000405.xhp\n"
"par_id3145645\n"
-"11\n"
"help.text"
msgid "<variable id=\"fospa\">Choose <emph>Format - Column</emph></variable>"
msgstr "<variable id=\"fospa\">གདམ་ <emph>རྩ་སྒྲིག་ - ཀེར་ཐིག་ </emph></variable>"
@@ -741,7 +676,6 @@ msgstr "<variable id=\"fospa\">གདམ་ <emph>རྩ་སྒྲིག་ -
msgctxt ""
"00000405.xhp\n"
"par_id3145252\n"
-"12\n"
"help.text"
msgid "Choose <emph>Format - Column - Optimal Width</emph>"
msgstr "གདམ་ <emph>རྩ་སྒྲིག་ - ཀེར་ཐིག་ - རྒྱ་ཚད་གང་དྲག་ </emph>"
@@ -750,7 +684,6 @@ msgstr "གདམ་ <emph>རྩ་སྒྲིག་ - ཀེར་ཐིག
msgctxt ""
"00000405.xhp\n"
"par_id3146971\n"
-"36\n"
"help.text"
msgid "Double-click right column separator in column headers"
msgstr "ཀེར་ཐིག་མགོ་ཡིག་ཚུ་ནང་ གཡས་ཀྱི་ཀེར་ཐིག་དབྱེ་བྱེད་ ལོག་བལྟབ་ཨེབ་གཏང་།"
@@ -759,7 +692,6 @@ msgstr "ཀེར་ཐིག་མགོ་ཡིག་ཚུ་ནང་ ག
msgctxt ""
"00000405.xhp\n"
"par_id3147362\n"
-"15\n"
"help.text"
msgid "<variable id=\"fot\">Choose <emph>Format - Sheet</emph></variable>"
msgstr "<variable id=\"fot\">གདམ་ <emph>རྩ་སྒྲིག་ - ཤོག་ཁྲམ་ </emph></variable>"
@@ -768,7 +700,6 @@ msgstr "<variable id=\"fot\">གདམ་ <emph>རྩ་སྒྲིག་ -
msgctxt ""
"00000405.xhp\n"
"par_id3163805\n"
-"16\n"
"help.text"
msgid "<variable id=\"fotu\">Choose <emph>Format - Sheet - Rename</emph></variable>"
msgstr "<variable id=\"fotu\">གདམ་ <emph>རྩ་སྒྲིག་ - ཤོག་ཁྲམ་ - བསྐྱར་མིང་བཏགས་ </emph></variable>"
@@ -777,7 +708,6 @@ msgstr "<variable id=\"fotu\">གདམ་ <emph>རྩ་སྒྲིག་ -
msgctxt ""
"00000405.xhp\n"
"par_id3155333\n"
-"17\n"
"help.text"
msgid "<variable id=\"fotenb\">Choose <emph>Format - Sheet - Show</emph></variable>"
msgstr "<variable id=\"fotenb\">གདམ་ <emph>རྩ་སྒྲིག་ - ཤོག་ཁྲམ་ - སྟོན་ </emph></variable>"
@@ -794,7 +724,6 @@ msgstr "<variable id=\"foste\">གདམ་ <emph>རྩ་སྒྲིག་ -
msgctxt ""
"00000405.xhp\n"
"par_id3155508\n"
-"25\n"
"help.text"
msgid "<variable id=\"fostel\">Choose <emph>Format - Page - Sheet</emph> tab </variable>"
msgstr "<variable id=\"fostel\">གདམ་ <emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་ - ཤོག་ཁྲམ་ </emph> མཆོང་ལྡེ་ </variable>"
@@ -803,7 +732,6 @@ msgstr "<variable id=\"fostel\">གདམ་ <emph>རྩ་སྒྲིག་ -
msgctxt ""
"00000405.xhp\n"
"par_id3150883\n"
-"26\n"
"help.text"
msgid "<variable id=\"fodrbe\">Choose <emph>Format - Print Ranges</emph></variable>"
msgstr "<variable id=\"fodrbe\">གདམ་ <emph>རྩ་སྒྲིག་ - དཔར་བསྐྲུན་ཁྱབ་ཚད་ཚུ་ </emph></variable>"
@@ -812,7 +740,6 @@ msgstr "<variable id=\"fodrbe\">གདམ་ <emph>རྩ་སྒྲིག་ -
msgctxt ""
"00000405.xhp\n"
"par_id3156448\n"
-"27\n"
"help.text"
msgid "<variable id=\"fodrfe\">Choose <emph>Format - Print Ranges - Define</emph></variable>"
msgstr "<variable id=\"fodrfe\">གདམ་ <emph>རྩ་སྒྲིག་ - དཔར་བསྐྲུན་ཁྱབ་ཚད་ཚུ་ - ངེས་འཛིན་འབད་ </emph></variable>"
@@ -821,17 +748,14 @@ msgstr "<variable id=\"fodrfe\">གདམ་ <emph>རྩ་སྒྲིག་ -
msgctxt ""
"00000405.xhp\n"
"par_id3156290\n"
-"35\n"
"help.text"
msgid "<variable id=\"fodrhin\">Choose <emph>Format - Print Ranges - Add</emph></variable>"
msgstr "<variable id=\"fodrhin\">གདམ་ <emph>རྩ་སྒྲིག་ - དཔར་བསྐྲུན་ཁྱབ་ཚད་ཚུ་ - ཁ་སྐོང་</emph></variable>"
#: 00000405.xhp
-#, fuzzy
msgctxt ""
"00000405.xhp\n"
"par_id3155812\n"
-"28\n"
"help.text"
msgid "<variable id=\"fodbah\">Choose <emph>Format - Print Ranges - Clear</emph></variable>"
msgstr "<variable id=\"fodbah\">གདམ་ <emph>རྩ་སྒྲིག་ - དཔར་བསྐྲུན་ཁྱབ་ཚད་ཚུ་ - རྩ་བསྐྲད་གཏང་</emph></variable>"
@@ -840,7 +764,6 @@ msgstr "<variable id=\"fodbah\">གདམ་ <emph>རྩ་སྒྲིག་ -
msgctxt ""
"00000405.xhp\n"
"par_id3153307\n"
-"29\n"
"help.text"
msgid "<variable id=\"fodbbe\">Choose <emph>Format - Print Ranges - Edit</emph></variable>"
msgstr "<variable id=\"fodbbe\">གདམ་ <emph>རྩ་སྒྲིག་ - དཔར་བསྐྲུན་ཁྱབ་ཚད་ཚུ་ - ཞུན་དག་འབད་ </emph></variable>"
@@ -849,7 +772,6 @@ msgstr "<variable id=\"fodbbe\">གདམ་ <emph>རྩ་སྒྲིག་ -
msgctxt ""
"00000405.xhp\n"
"par_id3153916\n"
-"31\n"
"help.text"
msgid "Choose <emph>Format - AutoFormat</emph>"
msgstr "གདམ་ <emph>རྩ་སྒྲིག་ - རང་བཞིན་རྩ་སྒྲིག་ </emph>"
@@ -858,7 +780,6 @@ msgstr "གདམ་ <emph>རྩ་སྒྲིག་ - རང་བཞིན
msgctxt ""
"00000405.xhp\n"
"par_id3154532\n"
-"32\n"
"help.text"
msgid "On the Tools bar, click"
msgstr "ལག་ཆས་ཚུའི་ཕྲ་རིང་གུ་ལུ་ ཨེབ་གཏང་།"
@@ -875,7 +796,6 @@ msgstr "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222i
msgctxt ""
"00000405.xhp\n"
"par_id3154060\n"
-"33\n"
"help.text"
msgid "AutoFormat"
msgstr "རང་བཞིན་རྩ་སྒྲིག"
@@ -884,7 +804,6 @@ msgstr "རང་བཞིན་རྩ་སྒྲིག"
msgctxt ""
"00000405.xhp\n"
"par_id3154618\n"
-"34\n"
"help.text"
msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional Formatting</emph></variable>"
msgstr "<variable id=\"bedingte\">གདམ་ <emph>རྩ་སྒྲིག་ - གནས་སྟངས་ཀྱི་རྩ་སྒྲིག་འབད་ནི་ </emph></variable>"
@@ -901,7 +820,6 @@ msgstr "ལག་ཆས་ཚུའི་དཀར་ཆག"
msgctxt ""
"00000406.xhp\n"
"hd_id3147264\n"
-"1\n"
"help.text"
msgid "Tools Menu"
msgstr "ལག་ཆས་ཚུའི་དཀར་ཆག"
@@ -910,16 +828,14 @@ msgstr "ལག་ཆས་ཚུའི་དཀར་ཆག"
msgctxt ""
"00000406.xhp\n"
"par_id3150541\n"
-"2\n"
"help.text"
-msgid "<variable id=\"exdektv\">Choose <emph>Tools - Detective</emph></variable>"
-msgstr "<variable id=\"exdektv\">གདམ་ <emph>ལག་ཆས་ཚུ་ -སྐྱོན་ཅན་ </emph></variable>"
+msgid "<variable id=\"exdektv\">Choose <emph>Tools - Detective</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153194\n"
-"3\n"
"help.text"
msgid "Choose <emph>Tools - Detective - Trace Precedents</emph>"
msgstr "གདམ་ <emph>ལག་ཆས་ཚུ་ - སྐྱོན་ཅན་ - བཤུལ་འཚོལ་མཚན་གཞི་ཚུ་ </emph>"
@@ -928,7 +844,6 @@ msgstr "གདམ་ <emph>ལག་ཆས་ཚུ་ - སྐྱོན་ཅ
msgctxt ""
"00000406.xhp\n"
"par_id3150447\n"
-"29\n"
"help.text"
msgid "Shift+F7"
msgstr "བཤུད་+ཨེཕ་ ༧ །"
@@ -937,25 +852,22 @@ msgstr "བཤུད་+ཨེཕ་ ༧ །"
msgctxt ""
"00000406.xhp\n"
"par_id3154123\n"
-"33\n"
"help.text"
-msgid "<variable id=\"silbentrennungc\">Menu <emph>Tools - Language - Hyphenation</emph></variable>"
-msgstr "<variable id=\"silbentrennungc\">དཀར་ཆག་ <emph>ལག་ཆས་ཚུ་ - སྐད་ཡིག་ - སྦྲེལ་རྟགས་བཀལ་བ་ </emph></variable>"
+msgid "<variable id=\"silbentrennungc\">Menu <emph>Tools - Language - Hyphenation</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3145785\n"
-"4\n"
"help.text"
-msgid "<variable id=\"exdvore\">Choose <emph>Tools - Detective - Remove Precedents</emph></variable>"
-msgstr "<variable id=\"exdvore\">གདམ་ <emph>ལག་ཆས་ཚུ་ - སྐྱོན་ཅན་ - མཚན་གཞི་ཚུ་རྩ་བསྐྲད་གཏང་ </emph></variable>"
+msgid "<variable id=\"exdvore\">Choose <emph>Tools - Detective - Remove Precedents</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3155411\n"
-"5\n"
"help.text"
msgid "Choose <emph>Tools - Detective - Trace Dependents</emph>"
msgstr "གདམ་ <emph>ལག་ཆས་ཚུ་ - སྐྱོན་ཅན་ - གཞན་རྟེན་ཚུ་བཤུད་ </emph>"
@@ -964,7 +876,6 @@ msgstr "གདམ་ <emph>ལག་ཆས་ཚུ་ - སྐྱོན་ཅ
msgctxt ""
"00000406.xhp\n"
"par_id3153363\n"
-"30\n"
"help.text"
msgid "Shift+F5"
msgstr "བཤུད་+ཨེཕ་ ༥ །"
@@ -973,80 +884,72 @@ msgstr "བཤུད་+ཨེཕ་ ༥ །"
msgctxt ""
"00000406.xhp\n"
"par_id3146984\n"
-"6\n"
"help.text"
-msgid "<variable id=\"exdszne\">Choose <emph>Tools - Detective - Remove Dependents</emph></variable>"
-msgstr "<variable id=\"exdszne\">གདམ་ <emph>ལག་ཆས་ཚུ་ - སྐྱོན་ཅན་ - གཞན་རྟེན་ཚུ་ཆ་མཉམ་རང་རྩ་བསྐྲད་གཏང་ </emph></variable>"
+msgid "<variable id=\"exdszne\">Choose <emph>Tools - Detective - Remove Dependents</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3154014\n"
-"7\n"
"help.text"
-msgid "<variable id=\"exdase\">Choose <emph>Tools - Detective - Remove All Traces</emph></variable>"
-msgstr "<variable id=\"exdase\">གདམ་ <emph>ལག་ཆས་ཚུ་ - སྐྱོན་ཅན་ - བཤུལ་འཚོལ་ཚུ་ཆ་མཉམ་རང་རྩ་བསྐྲད་གཏང་</emph></variable>"
+msgid "<variable id=\"exdase\">Choose <emph>Tools - Detective - Remove All Traces</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153188\n"
-"8\n"
"help.text"
-msgid "<variable id=\"exdszfe\">Choose <emph>Tools - Detective - Trace Error</emph></variable>"
-msgstr "<variable id=\"exdszfe\">གདམ་ <emph>ལག་ཆས་ཚུ་ - སྐྱོན་ཅན་ - བཤུལ་འཚོལ་འཛོལ་བ་</emph></variable>"
+msgid "<variable id=\"exdszfe\">Choose <emph>Tools - Detective - Trace Error</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3149410\n"
-"9\n"
"help.text"
-msgid "<variable id=\"fuellmodus\">Choose <emph>Tools - Detective - Fill Mode</emph></variable>"
-msgstr "<variable id=\"fuellmodus\">གདམ་ <emph>ལག་ཆས་ཚུ་ - སྐྱོན་ཅན་ - ཐབས་ལམ་བཀང་ </emph></variable>"
+msgid "<variable id=\"fuellmodus\">Choose <emph>Tools - Detective - Fill Mode</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3156284\n"
-"10\n"
"help.text"
-msgid "<variable id=\"dateneinkreisen\">Choose <emph>Tools - Detective - Mark Invalid Data</emph></variable>"
-msgstr "<variable id=\"dateneinkreisen\">གདམ་ <emph>ལག་ཆས་ཚུ་ - སྐྱོན་ཅན་ - ནུས་མེད་གནད་སྡུད་རྟགས་བཀལ་ </emph></variable>"
+msgid "<variable id=\"dateneinkreisen\">Choose <emph>Tools - Detective - Mark Invalid Data</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153159\n"
-"11\n"
"help.text"
-msgid "<variable id=\"spurenaktualisieren\">Choose <emph>Tools - Detective - Refresh Traces</emph></variable>"
-msgstr "<variable id=\"spurenaktualisieren\">གདམ་ <emph>ལག་ཆས་ཚུ་ - སྐྱོན་ཅན་ - བཤུལ་འཚོལ་ཚུ་ཡང་སེལ་འབད་</emph></variable>"
+msgid "<variable id=\"spurenaktualisieren\">Choose <emph>Tools - Detective - Refresh Traces</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3147397\n"
-"32\n"
"help.text"
-msgid "<variable id=\"automatisch\">Choose <emph>Tools - Detective - AutoRefresh</emph></variable>"
-msgstr "<variable id=\"automatisch\">གདམ་ <emph>ལག་ཆས་ཚུ་ - སྐྱོན་ཅན་ - རང་བཞིན་ཡང་སེལ་འབད་</emph></variable>"
+msgid "<variable id=\"automatisch\">Choose <emph>Tools - Detective - AutoRefresh</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3154018\n"
-"12\n"
"help.text"
-msgid "<variable id=\"exzws\">Choose <emph>Tools - Goal Seek</emph></variable>"
-msgstr "<variable id=\"exzws\">གདམ་ <emph>ལག་ཆས་ཚུ་ - དམིགས་ཡུལ་ འཚོལ་ </emph></variable>"
+msgid "<variable id=\"exzws\">Choose <emph>Tools - Goal Seek</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3269142\n"
"help.text"
-msgid "<variable id=\"solver\">Choose Tools - Solver</variable>"
+msgid "<variable id=\"solver\">Choose <emph>Tools - Solver</emph> </variable>"
msgstr ""
#: 00000406.xhp
@@ -1054,17 +957,16 @@ msgctxt ""
"00000406.xhp\n"
"par_id8554338\n"
"help.text"
-msgid "<variable id=\"solver_options\">Choose Tools - Solver, Options button</variable>"
+msgid "<variable id=\"solver_options\">Choose <emph>Tools - Solver</emph>, <emph>Options</emph> button </variable>"
msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3156277\n"
-"13\n"
"help.text"
-msgid "<variable id=\"exsze\">Choose <emph>Tools - Scenarios</emph></variable>"
-msgstr "<variable id=\"exsze\">གདམ་ <emph>ལག་ཆས་ཚུ་ - འཆར་བཤད་ཚུ་</emph></variable>"
+msgid "<variable id=\"exsze\">Choose <emph>Tools - Scenarios</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
@@ -1085,47 +987,34 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_id3147363\n"
-"17\n"
-"help.text"
-msgid "<variable id=\"zellinhalte\">Choose <emph>Tools - Cell Contents</emph></variable>"
-msgstr "<variable id=\"zellinhalte\">གདམ་ <emph>ལག་ཆས་ཚུ་ - ནང་ཐིག་ནང་དོན་ཚུ་ </emph></variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_id3146919\n"
-"18\n"
"help.text"
-msgid "Choose <emph>Tools - Cell Contents - Recalculate</emph>"
-msgstr "གདམ་ <emph>ལག་ཆས་ཚུ་ - ནང་ཐིག་ནང་དོན་ཚུ་ - སླར་རྩིས་སྟོན་ནི་ </emph>"
+msgid "Choose <emph>Data - </emph><emph>C</emph><emph>alculate</emph><emph> - Recalculate</emph>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3149257\n"
-"31\n"
"help.text"
msgid "F9"
msgstr "ཨེཕ་༩"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3150941\n"
"help.text"
-msgid "<variable id=\"exatmb\">Choose <emph>Data - Calculate - AutoCalculate</emph></variable>"
-msgstr "<variable id=\"exatmb\">གདམ་ <emph>ལག་ཆས་ཚུ་ - ནང་ཐིག་ནང་དོན་ཚུ་ - རང་བཞིན་རྩིས་སྟོན་ནི་ </emph></variable>"
+msgid "<variable id=\"exatmb\">Choose <emph>Data - Calculate - AutoCalculate</emph> </variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151276\n"
-"20\n"
"help.text"
-msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - Cell Contents - AutoInput</emph></variable>"
-msgstr "<variable id=\"autoeingabe\">གདམ་ <emph>ལག་ཆས་ཚུ་ - ནང་ཐིག་ནང་དོན་ཚུ་ - རང་བཞིན་ཨཱིན་པུཊི་ </emph></variable>"
+msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - AutoInput</emph> </variable>"
+msgstr ""
#: 00000407.xhp
msgctxt ""
@@ -1136,7 +1025,6 @@ msgid "Window Menu"
msgstr "སྒོ་སྒྲིག་དཀར་ཆག"
#: 00000407.xhp
-#, fuzzy
msgctxt ""
"00000407.xhp\n"
"hd_id3155628\n"
@@ -1172,7 +1060,6 @@ msgstr "གནད་སྡུད་དཀར་ཆག"
msgctxt ""
"00000412.xhp\n"
"hd_id3145136\n"
-"1\n"
"help.text"
msgid "Data Menu"
msgstr "གནད་སྡུད་དཀར་ཆག"
@@ -1189,7 +1076,6 @@ msgstr ""
msgctxt ""
"00000412.xhp\n"
"par_id3147399\n"
-"3\n"
"help.text"
msgid "<variable id=\"dbrbf\">Choose <emph>Data - Define Range</emph></variable>"
msgstr "<variable id=\"dbrbf\">གདམ་ <emph>གནད་སྡུད་ - ཁྱབ་ཚད་ངེས་འཛིན་འབད་ནི་ </emph></variable>"
@@ -1198,13 +1084,11 @@ msgstr "<variable id=\"dbrbf\">གདམ་ <emph>གནད་སྡུད་ -
msgctxt ""
"00000412.xhp\n"
"par_id3145345\n"
-"4\n"
"help.text"
msgid "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph></variable>"
msgstr "<variable id=\"dbrba\">གདམ་ <emph>གནད་སྡུད་ - སེལ་འཐུའི་ཁྱབ་ཚད་ </emph></variable>"
#: 00000412.xhp
-#, fuzzy
msgctxt ""
"00000412.xhp\n"
"par_id3150443\n"
@@ -1216,7 +1100,6 @@ msgstr "<variable id=\"dnsrt\">གདམ་ <emph>གནད་སྡུད་ -
msgctxt ""
"00000412.xhp\n"
"par_id3148491\n"
-"6\n"
"help.text"
msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
msgstr "གདམ་ <emph>གནད་སྡུད་ - དབྱེ་སེལ་ - དབྱེ་སེལ་ཁྱད་ཚད་ </emph> མཆོང་ལྡེ།"
@@ -1225,7 +1108,6 @@ msgstr "གདམ་ <emph>གནད་སྡུད་ - དབྱེ་སེ
msgctxt ""
"00000412.xhp\n"
"par_id3154516\n"
-"7\n"
"help.text"
msgid "On Standard bar, click"
msgstr "ཚད་ལྡན་ཕྲ་རིང་གུ་ལུ་ཨེབ་གཏང་།"
@@ -1242,7 +1124,6 @@ msgstr "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch
msgctxt ""
"00000412.xhp\n"
"par_id3150767\n"
-"8\n"
"help.text"
msgid "Sort Ascending"
msgstr "དབྱེ་སེལ་ཡར་འཛེགས།"
@@ -1259,7 +1140,6 @@ msgstr "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701in
msgctxt ""
"00000412.xhp\n"
"par_id3145364\n"
-"9\n"
"help.text"
msgid "Sort Descending"
msgstr "དབྱེ་སེལ་མར་འབབ།"
@@ -1268,7 +1148,6 @@ msgstr "དབྱེ་སེལ་མར་འབབ།"
msgctxt ""
"00000412.xhp\n"
"par_id3146984\n"
-"10\n"
"help.text"
msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab</variable>"
msgstr "<variable id=\"dnstot\">གདམ་ <emph>གནད་སྡུད་ - དབྱེ་སེལ་ - གདམ་ཁ་ཚུ་ </emph> མཆོང་ལྡེ་ </variable>"
@@ -1277,13 +1156,11 @@ msgstr "<variable id=\"dnstot\">གདམ་ <emph>གནད་སྡུད་ -
msgctxt ""
"00000412.xhp\n"
"par_id3155308\n"
-"11\n"
"help.text"
msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
msgstr "<variable id=\"dnftr\">གདམ་ <emph>གནད་སྡུད་ - ཚགས་མ་ </emph></variable>"
#: 00000412.xhp
-#, fuzzy
msgctxt ""
"00000412.xhp\n"
"par_id3148646\n"
@@ -1295,7 +1172,6 @@ msgstr "གདམ་ <emph>གནད་སྡུད་ - ཚགས་མ་་ -
msgctxt ""
"00000412.xhp\n"
"par_id3151113\n"
-"13\n"
"help.text"
msgid "On Tools bar or Table Data bar, click"
msgstr "ཐིག་ཁྲམ་ཕྲ་རིང་གུ་དང་ཡང་ན་ ལག་ཆས་ཚུའི་ཕྲ་རིང་གུ་ ཨེབ་གཏང་།"
@@ -1312,13 +1188,11 @@ msgstr "<image id=\"img_id3149413\" src=\"cmd/sc_datafilterautofilter.png\" widt
msgctxt ""
"00000412.xhp\n"
"par_id3149401\n"
-"14\n"
"help.text"
msgid "AutoFilter"
msgstr "རང་བཞིན་ཚགས་མ།"
#: 00000412.xhp
-#, fuzzy
msgctxt ""
"00000412.xhp\n"
"par_id3156278\n"
@@ -1327,7 +1201,6 @@ msgid "<variable id=\"dnfspz\">Choose <emph>Data - More Filters - Advanced Filte
msgstr "<variable id=\"dnfspz\">གདམ་ <emph>གནད་སྡུད་ - ཚགས་མ་ - མཐོ་རིམ་ཚགས་མ་ </emph></variable>"
#: 00000412.xhp
-#, fuzzy
msgctxt ""
"00000412.xhp\n"
"par_id3153764\n"
@@ -1336,7 +1209,6 @@ msgid "Choose <emph>Data - More Filters - Standard Filter... - Options</emph> la
msgstr "གདམ་ <emph>གནད་སྡུད་ - ཚགས་མ་ - ཚད་ལྡན་ཚགས་མ་ - ཧེང་བཀལ་>></emph> ཨེབ་རྟ།"
#: 00000412.xhp
-#, fuzzy
msgctxt ""
"00000412.xhp\n"
"par_id3155444\n"
@@ -1345,7 +1217,6 @@ msgid "Choose <emph>Data - More Filters - Advanced Filter... - Options</emph> la
msgstr "གདམ་་<emph>གནད་སྡུད་ - ཚགས་མ་ - མཐོ་རིམ་ཚགས་མ་ - ཧེང་བཀལ་>></emph>ཨེབ་རྟ།"
#: 00000412.xhp
-#, fuzzy
msgctxt ""
"00000412.xhp\n"
"par_id3156382\n"
@@ -1357,7 +1228,6 @@ msgstr "གདམ་ <emph>གནད་སྡུད་ - ཚགས་མ་་ -
msgctxt ""
"00000412.xhp\n"
"par_id3155961\n"
-"48\n"
"help.text"
msgid "On Table Data bar, click <emph>Reset Filter/Sort</emph>"
msgstr ""
@@ -1374,13 +1244,11 @@ msgstr "<image id=\"img_id3145792\" src=\"cmd/sc_removefilter.png\" width=\"0.22
msgctxt ""
"00000412.xhp\n"
"par_id3149207\n"
-"49\n"
"help.text"
msgid "Reset Filter/Sort"
msgstr ""
#: 00000412.xhp
-#, fuzzy
msgctxt ""
"00000412.xhp\n"
"par_id3152778\n"
@@ -1392,7 +1260,6 @@ msgstr "<variable id=\"dnaftas\">གདམ་ <emph>གནད་སྡུད་
msgctxt ""
"00000412.xhp\n"
"par_id3166424\n"
-"22\n"
"help.text"
msgid "<variable id=\"dntegs\">Choose <emph>Data - Subtotals</emph></variable>"
msgstr "<variable id=\"dntegs\">གདམ་ <emph>གནད་སྡུད་ - ཡན་ལག་ཡོངས་བསྡོམས་ཚུ་ </emph></variable>"
@@ -1401,7 +1268,6 @@ msgstr "<variable id=\"dntegs\">གདམ་ <emph>གནད་སྡུད་ -
msgctxt ""
"00000412.xhp\n"
"par_id3154574\n"
-"23\n"
"help.text"
msgid "<variable id=\"dntezd\">Choose <emph>Data - Subtotals - 1st, 2nd, 3rd Group</emph> tabs</variable>"
msgstr "<variable id=\"dntezd\">གདམ་ <emph>གནད་སྡུད་ - ཡན་ལག་ཡོངས་བསྡོམས་ཚུ་ - སྡེ་ཚན་དང་པ་ གཉིས་པ་ གསུམ་པ་ </emph> མཆོང་ལྡེ་ཚུ་ </variable>"
@@ -1410,7 +1276,6 @@ msgstr "<variable id=\"dntezd\">གདམ་ <emph>གནད་སྡུད་ -
msgctxt ""
"00000412.xhp\n"
"par_id3151277\n"
-"24\n"
"help.text"
msgid "<variable id=\"dntopi\">Choose <emph>Data - Subtotals - Options</emph> tab</variable>"
msgstr "<variable id=\"dntopi\">གདམ་ <emph>གནད་སྡུད་ - ཡན་ལག་ཡོངས་བསྡོམས་ཚུ་ - གདམ་ཁ་ཚུ་</emph> མཆོང་ལྡེ་ </variable>"
@@ -1419,7 +1284,6 @@ msgstr "<variable id=\"dntopi\">གདམ་ <emph>གནད་སྡུད་ -
msgctxt ""
"00000412.xhp\n"
"par_id3145133\n"
-"25\n"
"help.text"
msgid "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
msgstr "<variable id=\"datengueltig\">གདམ་ <emph>གནད་སྡུད་ - ནུས་ལྡན་དུས་ཚོད་ </emph></variable>"
@@ -1428,7 +1292,6 @@ msgstr "<variable id=\"datengueltig\">གདམ་ <emph>གནད་སྡུ
msgctxt ""
"00000412.xhp\n"
"par_id3152992\n"
-"26\n"
"help.text"
msgid "<variable id=\"datengueltigwerte\">Menu <emph>Data - Validity - Criteria</emph> tab</variable>"
msgstr "<variable id=\"datengueltigwerte\">དཀར་ཆག་ <emph>གནད་སྡུད་ - ནུས་ལྡན་དུས་ཚོད་ - ཁྱད་ཚད་</emph> མཆོང་ལྡེ་ </variable>"
@@ -1437,7 +1300,6 @@ msgstr "<variable id=\"datengueltigwerte\">དཀར་ཆག་ <emph>གནད
msgctxt ""
"00000412.xhp\n"
"par_id3150367\n"
-"27\n"
"help.text"
msgid "<variable id=\"datengueltigeingabe\">Choose <emph>Data - Validity - Input Help</emph> tab</variable>"
msgstr "<variable id=\"datengueltigeingabe\">གདམ་ <emph>གནད་སྡུད་ - ནུས་ལྡན་དུས་ཚོད་ -ཨིན་པུཊི་གྲོགས་རམ་</emph>མཆོང་ལྡེ་ </variable>"
@@ -1446,7 +1308,6 @@ msgstr "<variable id=\"datengueltigeingabe\">གདམ་ <emph>གནད་ས
msgctxt ""
"00000412.xhp\n"
"par_id3154486\n"
-"28\n"
"help.text"
msgid "<variable id=\"datengueltigfehler\">Choose <emph>Data - Validity - Error Alert</emph> tab</variable>"
msgstr "<variable id=\"datengueltigfehler\">གདམ་ <emph>གནད་སྡུད་ - ནུས་ལྡན་དུས་ཚོད་ - དྲན་བརྡ་འཛོལ་བ་</emph>མཆོང་ལྡེ་ </variable>"
@@ -1455,7 +1316,6 @@ msgstr "<variable id=\"datengueltigfehler\">གདམ་ <emph>གནད་ས
msgctxt ""
"00000412.xhp\n"
"par_id3146978\n"
-"29\n"
"help.text"
msgid "<variable id=\"dnmfo\">Choose <emph>Data - Multiple Operations</emph></variable>"
msgstr "<variable id=\"dnmfo\">གདམ་ <emph>གནད་སྡུད་ - སྣ་མང་བཀོལ་སྤྱོད་ཚུ་ </emph></variable>"
@@ -1464,7 +1324,6 @@ msgstr "<variable id=\"dnmfo\">གདམ་ <emph>གནད་སྡུད་ -
msgctxt ""
"00000412.xhp\n"
"par_id3155809\n"
-"30\n"
"help.text"
msgid "<variable id=\"dnksd\">Choose <emph>Data - Consolidate</emph></variable>"
msgstr "<variable id=\"dnksd\">གདམ་ <emph>གནད་སྡུད་ - རྩ་བརྟན་བཟོ་ནི་</emph></variable>"
@@ -1473,7 +1332,6 @@ msgstr "<variable id=\"dnksd\">གདམ་ <emph>གནད་སྡུད་ -
msgctxt ""
"00000412.xhp\n"
"par_id3148701\n"
-"31\n"
"help.text"
msgid "<variable id=\"dngld\">Choose <emph>Data - Group and Outline</emph></variable>"
msgstr "<variable id=\"dngld\">གདམ་ <emph>གནད་སྡུད་ - མཐའ་ཐིག་</emph></variable>"
@@ -1482,7 +1340,6 @@ msgstr "<variable id=\"dngld\">གདམ་ <emph>གནད་སྡུད་ -
msgctxt ""
"00000412.xhp\n"
"par_id3153815\n"
-"32\n"
"help.text"
msgid "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph></variable>"
msgstr "<variable id=\"dngda\">གདམ་ <emph>གནད་སྡུད་ - མཐའ་ཐིག་ - རྒྱས་བཤད་ཚུ་སྦ་</emph></variable>"
@@ -1491,7 +1348,6 @@ msgstr "<variable id=\"dngda\">གདམ་ <emph>གནད་སྡུད་ -
msgctxt ""
"00000412.xhp\n"
"par_id3159223\n"
-"33\n"
"help.text"
msgid "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph></variable>"
msgstr "<variable id=\"dngde\">གདམ་ <emph>གནད་སྡུད་ - མཐའ་ཐིག་ - རྒྱས་བཤད་ཚུ་སྟོན་</emph></variable>"
@@ -1500,7 +1356,6 @@ msgstr "<variable id=\"dngde\">གདམ་ <emph>གནད་སྡུད་ -
msgctxt ""
"00000412.xhp\n"
"par_id3146870\n"
-"34\n"
"help.text"
msgid "Choose <emph>Data - Group and Outline - Group</emph>"
msgstr "གདམ་ <emph>གནད་སྡུད་ -མཐའ་ཐིག་ -སྡེ་ཚན་ </emph>"
@@ -1509,7 +1364,6 @@ msgstr "གདམ་ <emph>གནད་སྡུད་ -མཐའ་ཐིག་
msgctxt ""
"00000412.xhp\n"
"par_id3144507\n"
-"51\n"
"help.text"
msgid "F12"
msgstr "ཨེཕ་ ༡༢ །"
@@ -1518,7 +1372,6 @@ msgstr "ཨེཕ་ ༡༢ །"
msgctxt ""
"00000412.xhp\n"
"par_id3144772\n"
-"35\n"
"help.text"
msgid "On <emph>Tools</emph> bar, click"
msgstr "ཨཱོན་ <emph>ལག་ཆས་ཚུ་ </emph> ཕྲ་རིང་ཨེབ་གཏང་།"
@@ -1535,7 +1388,6 @@ msgstr "<image id=\"img_id3153287\" src=\"cmd/sc_group.png\" width=\"0.222inch\"
msgctxt ""
"00000412.xhp\n"
"par_id3150214\n"
-"36\n"
"help.text"
msgid "Group"
msgstr "སྡེ་ཚན།"
@@ -1544,7 +1396,6 @@ msgstr "སྡེ་ཚན།"
msgctxt ""
"00000412.xhp\n"
"par_id3146781\n"
-"37\n"
"help.text"
msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>"
msgstr "གདམ་ <emph>གནད་སྡུད་ - མཐའ་ཐིག་ - སྡེ་ཚན་བཤུབ་ </emph>"
@@ -1553,7 +1404,6 @@ msgstr "གདམ་ <emph>གནད་སྡུད་ - མཐའ་ཐིག
msgctxt ""
"00000412.xhp\n"
"par_id3150892\n"
-"52\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
@@ -1562,7 +1412,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"00000412.xhp\n"
"par_id3155097\n"
-"38\n"
"help.text"
msgid "On <emph>Tools</emph> bar, click"
msgstr "ཨཱོན་ <emph>ལག་ཆས་ཚུ་ </emph> ཕྲ་རིང་ཨེབ་གཏང་།"
@@ -1579,7 +1428,6 @@ msgstr "<image id=\"img_id3155914\" src=\"cmd/sc_ungroup.png\" width=\"0.222inch
msgctxt ""
"00000412.xhp\n"
"par_id3153555\n"
-"39\n"
"help.text"
msgid "Ungroup"
msgstr "སྡེ་ཚན་བཤུབ་ནི།"
@@ -1588,7 +1436,6 @@ msgstr "སྡེ་ཚན་བཤུབ་ནི།"
msgctxt ""
"00000412.xhp\n"
"par_id3153008\n"
-"40\n"
"help.text"
msgid "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph></variable>"
msgstr "<variable id=\"dnglagl\">གདམ་ <emph>གནད་སྡུད་ - མཐའ་ཐིག་ - རང་བཞིན་མཐའ་ཐིག་</emph></variable>"
@@ -1597,7 +1444,6 @@ msgstr "<variable id=\"dnglagl\">གདམ་ <emph>གནད་སྡུད་
msgctxt ""
"00000412.xhp\n"
"par_id3154709\n"
-"41\n"
"help.text"
msgid "<variable id=\"dnglef\">Choose <emph>Data - Group and Outline - Remove</emph></variable>"
msgstr "<variable id=\"dnglef\">གདམ་ <emph>གནད་སྡུད་ - མཐའ་ཐིག་ - རྩ་བསྐྲད་གཏང་ </emph></variable>"
@@ -1614,47 +1460,38 @@ msgstr "<variable id=\"dngde\">གདམ་ <emph>གནད་སྡུད་ -
msgctxt ""
"00000412.xhp\n"
"par_id3155759\n"
-"42\n"
"help.text"
msgid "<variable id=\"dndtpt\">Choose <emph>Data - Pivot Table</emph></variable>"
msgstr "<variable id=\"dndtpt\">གདམ་ <emph>གནད་སྡུད་ - གནད་སྡུད་པའི་ལོཊི་ </emph></variable>"
#: 00000412.xhp
-#, fuzzy
msgctxt ""
"00000412.xhp\n"
"par_id3154625\n"
-"43\n"
"help.text"
msgid "<variable id=\"dndpa\">Choose <emph>Insert - Pivot Table</emph></variable>"
msgstr "<variable id=\"dndtpt\">གདམ་ <emph>གནད་སྡུད་ - གནད་སྡུད་པའི་ལོཊི་ </emph></variable>"
#: 00000412.xhp
-#, fuzzy
msgctxt ""
"00000412.xhp\n"
"par_id3147558\n"
-"53\n"
"help.text"
msgid "<variable id=\"dndq\">Choose <emph>Insert - Pivot Table</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>.</variable>"
msgstr "<variable id=\"dndq\">གདམ་ <emph>གནད་སྡུད་ - གནད་སྡུད་པའི་ལོཊི་ - འགོ་བཙུགས་ </emph>, སེལ་འཐུ་འབྱུང་ཁུངས་ཌའི་ལོག་ནང་གདམ་ཁ་འདི་གདམ་ <emph>$[officename]</emph>ནང་ལུ་ཐོ་བཀོད་འབད་ཡོད་པའི་གནད་སྡུད་འབྱུང་ཁུངས་ . </variable>"
#: 00000412.xhp
-#, fuzzy
msgctxt ""
"00000412.xhp\n"
"par_id3153297\n"
-"50\n"
"help.text"
msgid "Choose <emph>Insert - Pivot Table</emph>, in the Select Source dialog choose the option <emph>Current selection</emph>."
msgstr "གདམ་ <emph>གནད་སྡུད་ - གནད་སྡུད་པའི་ལོཊི་ -འགོ་བཙུགས་ </emph>, ད་ལྟོའི་སེལ་འཐུ་ <emph>སེལ་འཐུ་འབྱུང་ཁུངས་ཌའི་ལོག་ནང་གདམ་ཁ་འདི་གདམ་ </emph>."
#: 00000412.xhp
-#, fuzzy
msgctxt ""
"00000412.xhp\n"
"par_id3145118\n"
-"54\n"
"help.text"
msgid "Choose <emph>Insert - Pivot Table</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>, click <emph>OK</emph> to see <emph>Select Data Source</emph> dialog."
msgstr "གདམ་ཁ་བརྐྱབ་ <emph>གནས་སྡུད་ - གནས་སྡུད་པའི་ལོཊི་ - འགོ་བཙུགས་</emph>, འབྱུང་ཁུངས་ཌའི་ལོག་གདམ་ཁ་བརྐྱབ་ཀྱི་ནང་གདམ་ཁ་ <emph>གནས་སྡུད་འབྱུང་ཁུངས་ ཐོ་འགོད་ $[officename]ནང་</emph>, <emph>བཏུབ་</emph> བལྟ་ནི་ལུ་ <emph>གནས་སྡུད་འབྱུང་ཁུངས་སེལ་འཐུ་འབད་</emph> ཨེབ་གཏང་འབད།"
@@ -1663,7 +1500,6 @@ msgstr "གདམ་ཁ་བརྐྱབ་ <emph>གནས་སྡུད་ -
msgctxt ""
"00000412.xhp\n"
"par_id3153294\n"
-"44\n"
"help.text"
msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph></variable>"
msgstr "<variable id=\"dndpak\">གདམ་ <emph> གནད་སྡུད་ -གནད་སྡུད་པའི་ལོཊི་ - ཡང་སེལ་འབད་ </emph></variable>"
@@ -1672,7 +1508,6 @@ msgstr "<variable id=\"dndpak\">གདམ་ <emph> གནད་སྡུད་
msgctxt ""
"00000412.xhp\n"
"par_id3151344\n"
-"45\n"
"help.text"
msgid "<variable id=\"dndploe\">Choose <emph>Data - Pivot Table - Delete</emph></variable>"
msgstr "<variable id=\"dndploe\">གདམ་ <emph> གནད་སྡུད་ -གནད་སྡུད་པའི་ལོཊི་ - བཏོན་གཏང་ </emph></variable>"
@@ -1681,7 +1516,6 @@ msgstr "<variable id=\"dndploe\">གདམ་ <emph> གནད་སྡུད་
msgctxt ""
"00000412.xhp\n"
"par_id3150397\n"
-"46\n"
"help.text"
msgid "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph></variable>"
msgstr "<variable id=\"dndakt\">གདམ་ <emph>གནད་སྡུད་ - ཁྱབ་ཚད་ཡང་སེལ་འབད་ </emph></variable>"
diff --git a/source/dz/helpcontent2/source/text/scalc/01.po b/source/dz/helpcontent2/source/text/scalc/01.po
index ae26888deaf..2d48dca695f 100644
--- a/source/dz/helpcontent2/source/text/scalc/01.po
+++ b/source/dz/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-05-12 14:35+0200\n"
"PO-Revision-Date: 2016-07-05 21:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25,7 +25,6 @@ msgid "Print Preview"
msgstr ""
#: 01120000.xhp
-#, fuzzy
msgctxt ""
"01120000.xhp\n"
"hd_id1918698\n"
@@ -101,7 +100,6 @@ msgstr "<bookmark_value>འགྲུལ་བསྐྱོད་པ་ ལེབ
msgctxt ""
"02110000.xhp\n"
"hd_id3150791\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>"
msgstr "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">འགྲུལ་བསྐྱོདཔ་ </link>"
@@ -110,7 +108,6 @@ msgstr "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">འགྲ
msgctxt ""
"02110000.xhp\n"
"par_id3156422\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:Navigator\">Activates and deactivates the Navigator.</ahelp> The Navigator is a <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>."
msgstr "<ahelp hid=\".uno:Navigator\">འགྲུལ་བསྐྱོདཔ་ཤུགས་ལྡན་དང་ཤུགས་མེད་བཟོཝ་ཨིན། </ahelp> འགྲུལ་བསྐྱོདཔ་འདི་ <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">ཌོ་ཀེ་བལ་སྒོ་སྒྲིག་གཅིག་ </link> ཨིན།"
@@ -119,7 +116,6 @@ msgstr "<ahelp hid=\".uno:Navigator\">འགྲུལ་བསྐྱོདཔ་
msgctxt ""
"02110000.xhp\n"
"par_id3145271\n"
-"40\n"
"help.text"
msgid "Choose <emph>View - Navigator</emph> to display the Navigator."
msgstr "འགྲུལ་བསྐྱོདཔ་བཀྲམ་སྟོན་འབད་ནིའི་དོན་ལུ་ <emph>ཞུན་དག་ - འགྲུལ་བསྐྱོདཔ་ </emph> གདམ།"
@@ -128,7 +124,6 @@ msgstr "འགྲུལ་བསྐྱོདཔ་བཀྲམ་སྟོན་
msgctxt ""
"02110000.xhp\n"
"hd_id3159155\n"
-"4\n"
"help.text"
msgid "Column"
msgstr "ཀེར་ཐིག"
@@ -137,7 +132,6 @@ msgstr "ཀེར་ཐིག"
msgctxt ""
"02110000.xhp\n"
"par_id3146984\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/column\">Enter the column letter. Press Enter to reposition the cell cursor to the specified column in the same row.</ahelp>"
msgstr ""
@@ -146,7 +140,6 @@ msgstr ""
msgctxt ""
"02110000.xhp\n"
"hd_id3147126\n"
-"6\n"
"help.text"
msgid "Row"
msgstr "གྲལ་ཐིག"
@@ -155,7 +148,6 @@ msgstr "གྲལ་ཐིག"
msgctxt ""
"02110000.xhp\n"
"par_id3149958\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/row\">Enter a row number. Press Enter to reposition the cell cursor to the specified row in the same column.</ahelp>"
msgstr ""
@@ -164,7 +156,6 @@ msgstr ""
msgctxt ""
"02110000.xhp\n"
"hd_id3150717\n"
-"8\n"
"help.text"
msgid "Data Range"
msgstr "གནད་སྡུད་ཁྱབ་ཚད།"
@@ -173,7 +164,6 @@ msgstr "གནད་སྡུད་ཁྱབ་ཚད།"
msgctxt ""
"02110000.xhp\n"
"par_id3150752\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/datarange\">Specifies the current data range denoted by the position of the cell cursor.</ahelp>"
msgstr ""
@@ -190,7 +180,6 @@ msgstr "<image id=\"img_id3147338\" src=\"cmd/sc_grid.png\" width=\"5.64mm\" hei
msgctxt ""
"02110000.xhp\n"
"par_id3146919\n"
-"9\n"
"help.text"
msgid "Data Range"
msgstr "གནད་སྡུད་ཁྱབ་ཚད།"
@@ -199,7 +188,6 @@ msgstr "གནད་སྡུད་ཁྱབ་ཚད།"
msgctxt ""
"02110000.xhp\n"
"hd_id3148488\n"
-"14\n"
"help.text"
msgid "Start"
msgstr "འགོ་བཙུགས།"
@@ -208,7 +196,6 @@ msgstr "འགོ་བཙུགས།"
msgctxt ""
"02110000.xhp\n"
"par_id3150086\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/start\">Moves to the cell at the beginning of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
msgstr ""
@@ -218,14 +205,13 @@ msgctxt ""
"02110000.xhp\n"
"par_id3152994\n"
"help.text"
-msgid "<image id=\"img_id3150515\" src=\"sw/imglst/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150515\" src=\"sw/imglst/sc20186.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150515\">ངོས་དཔར་</alt></image>"
+msgid "<image id=\"img_id3150515\" src=\"sw/res/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Icon</alt></image>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154372\n"
-"15\n"
"help.text"
msgid "Start"
msgstr "འགོ་བཙུགས།"
@@ -234,7 +220,6 @@ msgstr "འགོ་བཙུགས།"
msgctxt ""
"02110000.xhp\n"
"hd_id3146982\n"
-"17\n"
"help.text"
msgid "End"
msgstr "མཇུག"
@@ -243,7 +228,6 @@ msgstr "མཇུག"
msgctxt ""
"02110000.xhp\n"
"par_id3152985\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/end\">Moves to the cell at the end of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
msgstr ""
@@ -253,14 +237,13 @@ msgctxt ""
"02110000.xhp\n"
"par_id3159170\n"
"help.text"
-msgid "<image id=\"img_id3148871\" src=\"sw/imglst/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148871\" src=\"sw/imglst/sc20175.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3148871\">ངོས་དཔར་</alt></image>"
+msgid "<image id=\"img_id3148871\" src=\"sw/res/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Icon</alt></image>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3147072\n"
-"18\n"
"help.text"
msgid "End"
msgstr "མཇུག"
@@ -269,7 +252,6 @@ msgstr "མཇུག"
msgctxt ""
"02110000.xhp\n"
"hd_id3150107\n"
-"20\n"
"help.text"
msgid "Toggle"
msgstr "སོར་སྟོན།"
@@ -278,7 +260,6 @@ msgstr "སོར་སྟོན།"
msgctxt ""
"02110000.xhp\n"
"par_id3159098\n"
-"22\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/datarange\">Toggles the content view. Only the selected Navigator element and its subelements are displayed.</ahelp> Click the icon again to restore all elements for viewing."
msgstr ""
@@ -288,14 +269,13 @@ msgctxt ""
"02110000.xhp\n"
"par_id3152869\n"
"help.text"
-msgid "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149126\">ངོས་དཔར་</alt></image>"
+msgid "<image id=\"img_id3149126\" src=\"sw/res/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Icon</alt></image>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159229\n"
-"21\n"
"help.text"
msgid "Toggle"
msgstr "སོར་སྟོན།"
@@ -304,7 +284,6 @@ msgstr "སོར་སྟོན།"
msgctxt ""
"02110000.xhp\n"
"hd_id3149381\n"
-"11\n"
"help.text"
msgid "Contents"
msgstr "ནང་དོན་ཚུ།"
@@ -313,7 +292,6 @@ msgstr "ནང་དོན་ཚུ།"
msgctxt ""
"02110000.xhp\n"
"par_id3150051\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/toggle\">Allows you to hide/show the contents.</ahelp>"
msgstr ""
@@ -323,14 +301,13 @@ msgctxt ""
"02110000.xhp\n"
"par_id3155597\n"
"help.text"
-msgid "<image id=\"img_id3154738\" src=\"sw/imglst/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154738\" src=\"sw/imglst/sc20233.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3154738\">ངོས་དཔར་</alt></image>"
+msgid "<image id=\"img_id3154738\" src=\"sw/res/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Icon</alt></image>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150955\n"
-"12\n"
"help.text"
msgid "Contents"
msgstr "ནང་དོན་ཚུ།"
@@ -339,7 +316,6 @@ msgstr "ནང་དོན་ཚུ།"
msgctxt ""
"02110000.xhp\n"
"hd_id3147244\n"
-"23\n"
"help.text"
msgid "Scenarios"
msgstr "འཆར་བཤད་ཚུ།"
@@ -348,25 +324,22 @@ msgstr "འཆར་བཤད་ཚུ།"
msgctxt ""
"02110000.xhp\n"
"par_id3153955\n"
-"25\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/scenarios\">Displays all available scenarios. Double-click a name to apply that scenario.</ahelp> The result is shown in the sheet. For more information, choose <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Tools - Scenarios</emph></link>."
msgstr ""
#: 02110000.xhp
-#, fuzzy
msgctxt ""
"02110000.xhp\n"
"par_id3148745\n"
"help.text"
-msgid "<image id=\"img_id3159256\" src=\"sc/imglst/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149126\">ངོས་དཔར་</alt></image>"
+msgid "<image id=\"img_id3159256\" src=\"sc/res/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">Icon</alt></image>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3166466\n"
-"24\n"
"help.text"
msgid "Scenarios"
msgstr "འཆར་བཤད་ཚུ།"
@@ -392,8 +365,8 @@ msgctxt ""
"02110000.xhp\n"
"par_idN10A7B\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Deletes the selected scenario.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SCENARIO_DELETE\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་འཆར་བཤད་འདི་བཏོན་གཏངམ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/scenariomenu/delete\">Deletes the selected scenario.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -408,14 +381,13 @@ msgctxt ""
"02110000.xhp\n"
"par_idN10A96\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENARIO_EDIT\">Opens the <link href=\"text/scalc/01/06050000.xhp\">Edit scenario</link> dialog, where you can edit the scenario properties.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SCENARIO_EDIT\">ཁྱོད་ཀྱིས་ འཆར་བཤད་རྒྱུ་དངོས་ཚུ་ <link href=\"text/scalc/01/06050000.xhp\">ཞུན་དག་འབད་ཚུགས་པའི་ </link> ཞུན་དག་འཆར་བཤད་ཌའི་ལོག་འདི་ཁ་ཕྱེཝ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/scenariomenu/edit\">Opens the <link href=\"text/scalc/01/06050000.xhp\">Edit scenario</link> dialog, where you can edit the scenario properties.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3150037\n"
-"26\n"
"help.text"
msgid "Drag Mode"
msgstr "ཐབས་ལམ་འདྲུད།"
@@ -424,7 +396,6 @@ msgstr "ཐབས་ལམ་འདྲུད།"
msgctxt ""
"02110000.xhp\n"
"par_id3157876\n"
-"28\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/dragmode\">Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created.</ahelp>"
msgstr ""
@@ -441,7 +412,6 @@ msgstr "<image id=\"img_id3159119\" src=\"cmd/sc_chainframes.png\" width=\"5.64m
msgctxt ""
"02110000.xhp\n"
"par_id3150656\n"
-"27\n"
"help.text"
msgid "Drag Mode"
msgstr "ཐབས་ལམ་འདྲུད།"
@@ -450,7 +420,6 @@ msgstr "ཐབས་ལམ་འདྲུད།"
msgctxt ""
"02110000.xhp\n"
"hd_id3149009\n"
-"29\n"
"help.text"
msgid "Insert as Hyperlink"
msgstr "ཚད་བརྒལ་འབྲེལ་ལམ་སྦེ་བཙུགས།"
@@ -459,10 +428,9 @@ msgstr "ཚད་བརྒལ་འབྲེལ་ལམ་སྦེ་བཙུ
msgctxt ""
"02110000.xhp\n"
"par_id3146938\n"
-"30\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_DROPMODE_URL\">Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document.</ahelp> You can later click the created hyperlink to set the cursor and the view to the respective object."
-msgstr "<ahelp hid=\"HID_SC_DROPMODE_URL\"> ཁྱོད་ཀྱིས་འགྲུལ་བསྐྱོདཔ་ལས་དངོས་པོ་གཅིག་ཡིག་ཆ་ནང་ལུ་ འདྲུད་ད་དང་བཀོག་བཞགཔ་ད་ ཚད་བརྒལ་འབྲེལ་ལམ་གཅིག་བཙུགསཔ་ཨིན། </ahelp> ཤུལ་ལས་ཁྱོད་ཀྱིས་ གསར་བསྐྲུན་གྲུབ་ཡོད་པའི་ཚད་བརྒལ་འབྲེལ་ལམ་འདི་ འོད་རྟགས་དང་རང་རང་སོ་སོའི་དངོས་པོའི་མཐོང་སྣང་གཞི་སྒྲིག་འབད་ནིའི་དོན་ལུ་ ཨེབ་གཏང་བཏུབ་ཨིན།"
+msgid "<ahelp hid=\"modules/scalc/ui/dropmenu/hyperlink\">Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document.</ahelp> You can later click the created hyperlink to set the cursor and the view to the respective object."
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -476,7 +444,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཁ་ཕྱེའི་ཡིག་ཆ
msgctxt ""
"02110000.xhp\n"
"hd_id3154682\n"
-"31\n"
"help.text"
msgid "Insert as Link"
msgstr "འབྲེལ་མཐུད་སྦེ་བཙུགས།"
@@ -485,16 +452,14 @@ msgstr "འབྲེལ་མཐུད་སྦེ་བཙུགས།"
msgctxt ""
"02110000.xhp\n"
"par_id3150746\n"
-"32\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_DROPMODE_LINK\">Creates a link when you drag-and-drop an object from the Navigator into a document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_DROPMODE_LINK\"> ཁྱོད་ཀྱིས་འགྲུལ་བསྐྱོདཔ་ལས་དངོས་པོ་གཅིག་ ཡིག་ཆ་ནང་ལུ་འདྲུད་ནི་དང་བཀོག་བཞག་བའི་སྐབས་ འབྲེལ་མཐུད་གཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/dropmenu/link\">Creates a link when you drag-and-drop an object from the Navigator into a document.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3145824\n"
-"33\n"
"help.text"
msgid "Insert as Copy"
msgstr "འདྲ་བཤུས་བཟུམ་སྦེ་བཙུགས།"
@@ -503,16 +468,14 @@ msgstr "འདྲ་བཤུས་བཟུམ་སྦེ་བཙུགས།
msgctxt ""
"02110000.xhp\n"
"par_id3147471\n"
-"34\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_DROPMODE_COPY\">Generates a copy when you drag-and-drop an object from the Navigator into a document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_DROPMODE_COPY\"> ཁྱོད་ཀྱིས་ འགྲུལ་བསྐྱོདཔ་ལས་དངོས་པོ་གཅིག་ཡིག་ཆ་ནང་ལུ་ འདྲུད་ནི་དང་བཀོག་བཞག་བའི་སྐབས་ འདྲ་བཤུས་གཅིག་བཟོ་བཏོན་འབདཝ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/dropmenu/copy\">Generates a copy when you drag-and-drop an object from the Navigator into a document.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3147423\n"
-"38\n"
"help.text"
msgid "Objects"
msgstr "དངོས་པོ་ཚུ།"
@@ -521,7 +484,6 @@ msgstr "དངོས་པོ་ཚུ།"
msgctxt ""
"02110000.xhp\n"
"par_id3150700\n"
-"39\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/contentbox\">Displays all objects in your document.</ahelp>"
msgstr ""
@@ -530,7 +492,6 @@ msgstr ""
msgctxt ""
"02110000.xhp\n"
"hd_id3150860\n"
-"35\n"
"help.text"
msgid "Documents"
msgstr "ཡིག་ཆ་ཚུ།"
@@ -539,7 +500,6 @@ msgstr "ཡིག་ཆ་ཚུ།"
msgctxt ""
"02110000.xhp\n"
"par_id3153929\n"
-"36\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/documents\">Displays the names of all open documents.</ahelp> To switch to another open document in the Navigator, click the document name. The status (active, inactive) of the document is shown in brackets after the name. You can switch the active document in the <emph>Window</emph> menu."
msgstr ""
@@ -553,7 +513,6 @@ msgid "Headers & Footers"
msgstr "མགོ་ཡིག་ཚུ་ མཇུག་ཡིག་ཚུ།(&F)"
#: 02120000.xhp
-#, fuzzy
msgctxt ""
"02120000.xhp\n"
"hd_id3145251\n"
@@ -562,7 +521,6 @@ msgid "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Head
msgstr "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">མགོ་ཡིག་/མཇུག་ཡིག་</link>"
#: 02120000.xhp
-#, fuzzy
msgctxt ""
"02120000.xhp\n"
"par_id3151073\n"
@@ -571,7 +529,6 @@ msgid "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".\">Allows you to def
msgstr "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".uno:EditHeaderAndFooter\">ཁྱོད་ལུ་ མགོ་ཡིག་དང་མཇུག་ཡིག་ཚུ་ ངེས་འཛིན་དང་རྩ་སྒྲིག་འབད་བཅུགཔ་ཨིན།</ahelp></variable>"
#: 02120000.xhp
-#, fuzzy
msgctxt ""
"02120000.xhp\n"
"par_id3153415\n"
@@ -599,7 +556,6 @@ msgstr "<bookmark_value>page styles; headers</bookmark_value><bookmark_value>ཤ
msgctxt ""
"02120100.xhp\n"
"hd_id3153360\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">Header/Footer</link>"
msgstr "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">མགོ་ཡིག་/མཇུག་ཡིག་</link>"
@@ -608,7 +564,6 @@ msgstr "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">མག
msgctxt ""
"02120100.xhp\n"
"par_id3150768\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/HeaderFooterContent\">Defines or formats a header or footer for a Page Style.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/HeaderFooterContent\"> ཤོག་ལེབ་བཟོ་རྣམ་ལུ་མགོ་ཡིག་ཡང་ན་མཇུག་ཡིག་ ངེས་འཛིན་ཡང་ན་ རྩ་སྒྲིག་འབདཝ་ཨིན། </ahelp>"
@@ -617,7 +572,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/HeaderFooterContent\">
msgctxt ""
"02120100.xhp\n"
"hd_id3145748\n"
-"3\n"
"help.text"
msgid "Left Area"
msgstr "མངའ་ཁོངས་གཡོན།"
@@ -626,7 +580,6 @@ msgstr "མངའ་ཁོངས་གཡོན།"
msgctxt ""
"02120100.xhp\n"
"par_id3147434\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_LEFT\">Enter the text to be displayed at the left side of the header or footer.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_LEFT\"> མགོ་ཡིག་ཡང་ན་མཇུག་ཡིག་གི་གཡོན་ཕྱོགས་ལུ་བཀྲམ་སྟོོན་འབད་ནི་ཨིན་པའི་ཚིག་ཡིག་བཙུགས། </ahelp>"
@@ -635,7 +588,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_LEFT\">
msgctxt ""
"02120100.xhp\n"
"hd_id3148648\n"
-"5\n"
"help.text"
msgid "Center Area"
msgstr "མངའ་ཁོངས་དབུས།"
@@ -644,7 +596,6 @@ msgstr "མངའ་ཁོངས་དབུས།"
msgctxt ""
"02120100.xhp\n"
"par_id3163710\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the text to be displayed at the center of the header or footer.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_HF_FLL\"> མགོ་ཡིག་ཡང་ན་མཇུག་ཡིག་གི་གཡོན་ཕྱོགས་ལུ་བཀྲམ་སྟོོན་འབད་ནི་ཨིན་པའི་ཚིག་ཡིག་བཙུགས། </ahelp>"
@@ -653,7 +604,6 @@ msgstr "<ahelp hid=\"HID_SC_HF_FLL\"> མགོ་ཡིག་ཡང་ན་མ
msgctxt ""
"02120100.xhp\n"
"hd_id3154942\n"
-"7\n"
"help.text"
msgid "Right Area"
msgstr "མངའ་ཁོངས་གཡས།"
@@ -662,7 +612,6 @@ msgstr "མངའ་ཁོངས་གཡས།"
msgctxt ""
"02120100.xhp\n"
"par_id3147126\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_RIGHT\">Enter the text to be displayed at the right side of the header or footer.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_RIGHT\"> མགོ་ཡིག་ཡང་ན་མཇུག་ཡིག་གི་གཡས་ཕྱོགས་ལུ་ བཀྲམ་སྟོན་འབད་ནི་ཨིན་པའི་ཚིག་ཡིག་བཙུགས། </ahelp>"
@@ -687,7 +636,6 @@ msgstr "<ahelp hid=\".\">ཐོ་ཡིག་འདི་ལས་་སྔོ
msgctxt ""
"02120100.xhp\n"
"hd_id3154729\n"
-"9\n"
"help.text"
msgid "Text attributes"
msgstr "ཚིག་ཡིག་ཁྱད་ཆོས་ཚུ།"
@@ -696,7 +644,6 @@ msgstr "ཚིག་ཡིག་ཁྱད་ཆོས་ཚུ།"
msgctxt ""
"02120100.xhp\n"
"par_id3150717\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TEXT\">Opens a dialog to assign formats to new or selected text.</ahelp> The <emph>Text Attributes </emph>dialog contains the tab pages <link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Font Effects</link> and <link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Font Position</link>."
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TEXT\"> གསརཔ་ཡང་ན་སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཚིག་ཡིག་ལུ་རྩ་སྒྲིག་ཚུ་འགན་སྤྲོད་ནིའི་དོན་ལུ་ ཌའི་ལོག་གཅིག་ཁ་ཕྱེཝ་ཨིན། </ahelp> The <emph>Text Attributes </emph> ཌའི་ལོག་ནང་མཆོང་ལྡེ་ཤོག་ལེབ་ཚུ་ <link href=\"text/shared/01/05020100.xhp\" name=\"Font\"> ཡིག་གཟུགས་ </link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\"> ཡིག་གཟུགས་ནུས་པ་ཚུ་ </link> དང་ <link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\"> ཡིག་གཟུགས་གནས་ས་</link> ཚུ་ཤོམ་ཏེ་ཡོདཔ་ཨིན།"
@@ -713,7 +660,6 @@ msgstr "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.25inch\" h
msgctxt ""
"02120100.xhp\n"
"par_id3155336\n"
-"25\n"
"help.text"
msgid "Text Attributes"
msgstr "ཚིག་ཡིག་ཁྱད་ཆོས་ཚུ།"
@@ -722,7 +668,6 @@ msgstr "ཚིག་ཡིག་ཁྱད་ཆོས་ཚུ།"
msgctxt ""
"02120100.xhp\n"
"hd_id3145792\n"
-"11\n"
"help.text"
msgid "File Name"
msgstr "ཡིག་སྣོད་མིང་།"
@@ -731,7 +676,6 @@ msgstr "ཡིག་སྣོད་མིང་།"
msgctxt ""
"02120100.xhp\n"
"par_id3150206\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_FILE\">Inserts a file name placeholder in the selected area.</ahelp> Click to insert the title. Long-click to select either title, file name or path/file name from the submenu. If a title has not be assigned (see <emph>File - Properties</emph>), the file name will be inserted instead."
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_FILE\"> སེལ་འཐུ་གྲུབ་ཡོད་མངའ་ཁོངས་ནང་ལུ་ཡིག་སྣོད་མིང་ས་གནས་འཛིན་མི་གཅིག་བཙུགས། </ahelp> མགོ་མིང་བཙུགས་ནིའི་དོན་ལུ་ཨེབ་གཏང་། ཡན་ལག་དཀར་ཆ་ལས་མགོ་མིང་ ཡིག་སྣོད་མིང་ཡང་ན་འགྲུལ་ལམ་/ཡིག་སྣོད་མིང་སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ རིངམོ་ཨེབ་གཏང་། མགོ་མིང་འདི་འགན་སྤྲོད་དེ་མེད་པ་ཅིན་ (བལྟ་ <emph>Fileཡིག་སྣོད་ - རྒྱུ་དངོས་ཚུ་ </emph>) དེའི་ཚབ་མ་ལུ་ཡིག་སྣོད་མིང་བཙུགས་ཏེ་འོངམ་ཨིན།"
@@ -748,7 +692,6 @@ msgstr "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.222inch\"
msgctxt ""
"02120100.xhp\n"
"par_id3154487\n"
-"26\n"
"help.text"
msgid "File Name"
msgstr "ཡིག་སྣོད་མིང་།"
@@ -757,7 +700,6 @@ msgstr "ཡིག་སྣོད་མིང་།"
msgctxt ""
"02120100.xhp\n"
"hd_id3155812\n"
-"13\n"
"help.text"
msgid "Sheet Name"
msgstr "ཤོག་ཁྲམ་མིང་།"
@@ -766,7 +708,6 @@ msgstr "ཤོག་ཁྲམ་མིང་།"
msgctxt ""
"02120100.xhp\n"
"par_id3148842\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TABLE\">Inserts a placeholder in the selected header/footer area, which is replaced by the sheet name in the header/footer of the actual document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TABLE\"> ཡིག་ཆ་ངོ་མ་གི་མགོ་ཡིག་/མཇུག་ཡིག་ནང་ལུ་ ཤོག་ཁྲམ་མིང་གིས་ཐོག་ལས་ཚབ་བཙུགས་འབད་ཡོད་མི་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་མགོ་ཡིག་/མཇུག་ཡིག་ནང་ ས་གནས་འཛིན་མི་གཅིག་བཙུགསཔ་ཨིན། </ahelp>"
@@ -783,7 +724,6 @@ msgstr "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.25inch\"
msgctxt ""
"02120100.xhp\n"
"par_id3147071\n"
-"27\n"
"help.text"
msgid "Sheet Name"
msgstr "ཤོག་ཁྲམ་མིང་།"
@@ -792,7 +732,6 @@ msgstr "ཤོག་ཁྲམ་མིང་།"
msgctxt ""
"02120100.xhp\n"
"hd_id3144768\n"
-"15\n"
"help.text"
msgid "Page"
msgstr "ཤོག་ལེབ།"
@@ -801,7 +740,6 @@ msgstr "ཤོག་ལེབ།"
msgctxt ""
"02120100.xhp\n"
"par_id3154960\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGE\">Inserts a placeholder in the selected header/footer area, which is replaced by page numbering. This allows continuous page numbering in a document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGE\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་མགོ་ཡིག་/མཇུག་ཡིག་མངའ་ཁོངས་ནང་ལུ་ཤོག་ལེབ་ཨང་བཏགས་ནི་ཐོག་ལས་ཚབ་བཙུགས་འབད་ཡོད་པའི་ས་གནས་འཛིན་མི་གཅིག་བཙུགཔ་ཨིན། འ་ནི་གིས་ ཡིག་ཆ་ནང་ལུ་ཤོག་ལེབ་ཨང་བཏགས་འཕྲོ་མཐུད་འབད་བཅུགཔ་ཨིན། </ahelp>"
@@ -818,7 +756,6 @@ msgstr "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.25inch\" h
msgctxt ""
"02120100.xhp\n"
"par_id3150048\n"
-"28\n"
"help.text"
msgid "Page"
msgstr "ཤོག་ལེབ།"
@@ -827,7 +764,6 @@ msgstr "ཤོག་ལེབ།"
msgctxt ""
"02120100.xhp\n"
"hd_id3146962\n"
-"17\n"
"help.text"
msgid "Pages"
msgstr "ཤོག་ལེབ་ཚུ།"
@@ -836,7 +772,6 @@ msgstr "ཤོག་ལེབ་ཚུ།"
msgctxt ""
"02120100.xhp\n"
"par_id3153812\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGES\">Inserts a placeholder in the selected header/footer area, which is replaced by the total number of pages in the document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGES\"> ཡིག་ཆ་ངོ་མ་ནང་ལུ་ཤོག་ལེབ་ཨང་ཡོངས་བསྡོམས་གིས་ཐོག་ལས་ཚབ་བཙུགས་འབད་ཡོད་མི་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་མགོ་ཡིག་/མཇུག་ཡིག་ནང་ལུ་ ས་གནས་འཛིན་མི་གཅིག་བཙུགསཔ་ཨིན། </ahelp>"
@@ -853,7 +788,6 @@ msgstr "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.25inch\"
msgctxt ""
"02120100.xhp\n"
"par_id3147499\n"
-"29\n"
"help.text"
msgid "Pages"
msgstr "ཤོག་ལེབ་ཚུ།"
@@ -862,7 +796,6 @@ msgstr "ཤོག་ལེབ་ཚུ།"
msgctxt ""
"02120100.xhp\n"
"hd_id3149050\n"
-"19\n"
"help.text"
msgid "Date"
msgstr "ཚེས།"
@@ -871,7 +804,6 @@ msgstr "ཚེས།"
msgctxt ""
"02120100.xhp\n"
"par_id3153960\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_DATE\">Inserts a placeholder in the selected header/footer area, which is replaced by the current date which will be repeated in the header/footer on each page of the document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_DATE\"> ད་ལྟོའི་ཚེས་ཀྱིས་ཚབ་བཙུགས་ཡོད་མི་དང་ཡིག་ཆ་གི་ཤོག་ལེབ་རེ་རེ་གུ་མགོ་ཡིག་/མཇུག་ཡིག་ནང་ལུ་ཡང་བསྐྱར་འབད་ནི་ཨིན་མི་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་མགོ་ཡིག་/མཇུག་ཡིག་མངའ་ཁོངས་ནང་ལུ་ས་གནས་འཛིན་མི་བཙུགསཔ་ཨིན།</ahelp>"
@@ -888,7 +820,6 @@ msgstr "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.25inch\" h
msgctxt ""
"02120100.xhp\n"
"par_id3150540\n"
-"30\n"
"help.text"
msgid "Date"
msgstr "ཚེས།"
@@ -897,7 +828,6 @@ msgstr "ཚེས།"
msgctxt ""
"02120100.xhp\n"
"hd_id3147610\n"
-"21\n"
"help.text"
msgid "Time"
msgstr "དུས་ཚོད།"
@@ -906,7 +836,6 @@ msgstr "དུས་ཚོད།"
msgctxt ""
"02120100.xhp\n"
"par_id3145638\n"
-"22\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TIME\">Inserts a placeholder in the selected header/footer area, which is replaced by the current time in the header/footer on each page of the document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TIME\"> ཡིག་ཆ་དེའི་ཤོག་ལེབ་རེ་རེ་གུ་ མགོ་ཡིག་/མཇུག་ཡིག་ནང་ལུ་ད་ལྟོའི་དུས་ཚོད་ཀྱི་ཐོག་ལས་ཚབ་བཙུགས་འབད་ཡོད་མི་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་མགོ་ཡིག་/མཇུག་ཡིག་མངའ་ཁོངས་ནང་ལུ་ས་གནས་འཛིན་མི་གཅིག་བཙུགསཔ་ཨིན། </ahelp>"
@@ -923,7 +852,6 @@ msgstr "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.25inch\" h
msgctxt ""
"02120100.xhp\n"
"par_id3157904\n"
-"31\n"
"help.text"
msgid "Time"
msgstr "དུས་ཚོད།"
@@ -948,7 +876,6 @@ msgstr "<bookmark_value>བཀང་དོ;སེལ་འཐུའི་ཐོ
msgctxt ""
"02140000.xhp\n"
"hd_id3153876\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Fill</link>"
msgstr "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\"> བཀང་ </link>"
@@ -957,7 +884,6 @@ msgstr "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\"> བཀང་ </
msgctxt ""
"02140000.xhp\n"
"par_id3156285\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Automatically fills cells with content.</ahelp>"
msgstr "<ahelp hid=\".\">རང་བཞིན་གྱིས་ནང་ཐིག་ཚུ་ནང་དོན་དང་བཅསཔ་སྦེ་བཀངམ་ཨིན། </ahelp>"
@@ -966,7 +892,6 @@ msgstr "<ahelp hid=\".\">རང་བཞིན་གྱིས་ནང་ཐི
msgctxt ""
"02140000.xhp\n"
"par_id3147343\n"
-"9\n"
"help.text"
msgid "The $[officename] Calc context menus have <link href=\"text/scalc/01/02140000.xhp\" name=\"other options\">additional options</link> for filling the cells."
msgstr "$[officename] ཀེལ་སི་དཀར་ཆ་ཚུ་ལུ་ <link href=\"text/scalc/01/02140000.xhp\" name=\"other options\"> ནང་ཐིག་ཚུ་བཀང་ནིའི་དོན་ལུ་ </link> ཁ་སྐོང་གདམ་ཁ་ཚུ་ཡོདཔ་ཨིན།"
@@ -975,7 +900,6 @@ msgstr "$[officename] ཀེལ་སི་དཀར་ཆ་ཚུ་ལུ་
msgctxt ""
"02140000.xhp\n"
"hd_id3149207\n"
-"7\n"
"help.text"
msgid "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\">Sheet</link>"
msgstr "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\"> ལེབ་གྲངས་ </link>"
@@ -984,7 +908,6 @@ msgstr "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\"> ལེབ་
msgctxt ""
"02140000.xhp\n"
"hd_id3155111\n"
-"8\n"
"help.text"
msgid "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Series</link>"
msgstr "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\"> གྲལ་ཐིག་ཚུ་ </link>"
@@ -993,7 +916,6 @@ msgstr "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\"> གྲལ་ཐ
msgctxt ""
"02140000.xhp\n"
"par_id3152994\n"
-"3\n"
"help.text"
msgid "<emph>Filling cells using context menus:</emph>"
msgstr "<emph>སྐབས་དོན་དཀར་ཆ་ཚུ་ལག་ལེན་གྱི་ཐོག་ལས་ ནང་ཐིག་ཚུ་བཀང་ནི་། :</emph>"
@@ -1002,7 +924,6 @@ msgstr "<emph>སྐབས་དོན་དཀར་ཆ་ཚུ་ལག་ལ
msgctxt ""
"02140000.xhp\n"
"par_id3145384\n"
-"4\n"
"help.text"
msgid "Call the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
msgstr "ནང་ཐིག་ནང་ལུ་གནས་ས་བཟོ་གྲུབ་པའི་སྐབས་ <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\"> སྐབས་དོན་དཀར་ཆ་ </link> བོད་དེ་ <emph> སེལ་འཐུ་ཐོ་བཀོད་ </emph> གདམ།"
@@ -1011,7 +932,6 @@ msgstr "ནང་ཐིག་ནང་ལུ་གནས་ས་བཟོ་ག
msgctxt ""
"02140000.xhp\n"
"par_id3156450\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\".uno:DataSelect\">A list box containing all text found in the current column is displayed.</ahelp> The text is sorted alphabetically and multiple entries are listed only once."
msgstr "<ahelp hid=\".uno:DataSelect\"> ད་ལྟོའི་ཀེར་ཐིག་ནང་ལུ་ཚིག་ཡིག་ཆ་མཉམ་རང་ཤོམ་ཏེ་ཡོད་པའི་ཐོ་བཀོད་སྒྲོམ་གཅིག་བཀྲམ་སྟོན་འབད་དེ་ཡོདཔ་ཨིན། </ahelp> ཚིག་ཡིག་འདི་ཀ་ཁའི་གོ་རིམ་བཞིན་དབྱེ་སེལ་འབད་ཡོདཔ་དང་ སྣ་མང་ཐོ་བཀོད་ཚུ་ཚར་གཅིག་རྐྱངམ་ཅིག་ཐོ་བཀོད་འབད་དེ་ཡོདཔ་ཨིན།"
@@ -1020,7 +940,6 @@ msgstr "<ahelp hid=\".uno:DataSelect\"> ད་ལྟོའི་ཀེར་ཐ
msgctxt ""
"02140000.xhp\n"
"par_id3148699\n"
-"6\n"
"help.text"
msgid "Click one of the listed entries to copy it to the cell."
msgstr "ནང་ཐིག་ནང་ལུ་འདྲ་བཤུས་རྐྱབ་ནིའི་དོན་ལུ་ ཐོ་བཀོད་འབད་ཡོད་པའི་ཐོ་བཀོད་ཚུ་ལས་གཅིག་ཨེབ་གཏང་།"
@@ -1037,7 +956,6 @@ msgstr "མར།"
msgctxt ""
"02140100.xhp\n"
"hd_id3150792\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Down</link>"
msgstr "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\"> མར་ </link>"
@@ -1046,7 +964,6 @@ msgstr "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\"> མར་ </li
msgctxt ""
"02140100.xhp\n"
"par_id3153969\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:FillDown\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the top cell of the range.</ahelp>"
msgstr "<ahelp hid=\".uno:FillDown\" visibility=\"visible\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཁྱབ་ཚད་ཀྱི་ཉུང་མཐའ་གྲལ་ཐིག་གཉིས་དང་བཅས་པའི་ནང་དོན་ཚུའི་ཁྱབ་ཚད་ཀྱི་དྲག་ཤོས་བཀངམ་ཨིན། </ahelp>"
@@ -1055,7 +972,6 @@ msgstr "<ahelp hid=\".uno:FillDown\" visibility=\"visible\"> སེལ་འཐ
msgctxt ""
"02140100.xhp\n"
"par_id3145787\n"
-"3\n"
"help.text"
msgid "If a selected range has only one column, the contents of the top cell are copied to all others. If several columns are selected, the contents of the corresponding top cell will be copied down."
msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཁྱབ་ཚད་ལུ་ཀེར་ཐིག་གཅིག་རྐྱངམ་ཅིག་ཡོད་པ་ཅིན་ མགོའི་ནང་ཐིག་གི་ནང་དོན་ཚུ་གཞན་མི་ཆ་མཉམ་ལུ་འདྲ་བཤུས་རྐྱབ་འབད་ཡོདཔ་ཨིན། ཀེར་ཐིག་ལེ་ཤ་རང་སེལ་འཐུ་གྲུབ་སྟེ་ཡོད་པ་ཅིན་ མཉམ་པའི་མགོའི་ནང་ཐིག་གི་ནང་དོན་ཚུ་ མར་འདྲ་བཤུས་རྐྱབ་ནི་ཨིན།"
@@ -1072,7 +988,6 @@ msgstr "གཡས།"
msgctxt ""
"02140200.xhp\n"
"hd_id3153896\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">Right</link>"
msgstr "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\"> གཡས་ </link>"
@@ -1081,7 +996,6 @@ msgstr "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\"> གཡས་ <
msgctxt ""
"02140200.xhp\n"
"par_id3153361\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the left most cell.</ahelp>"
msgstr "<ahelp hid=\".uno:FillRight\" visibility=\"visible\"> གཡོན་ནང་ཐིག་གི་ནང་དོན་ཚུ་དང་བཅས་ སེེལ་འཐུ་གྲུབ་སྟེ་ཡོད་མི་ཁྱབ་ཚད་གཅིག་གི་ཉུང་མཐའ་ ཀེར་ཐིག་གཉིས བཀངམ་ཨིན།</ahelp>"
@@ -1090,7 +1004,6 @@ msgstr "<ahelp hid=\".uno:FillRight\" visibility=\"visible\"> གཡོན་ན
msgctxt ""
"02140200.xhp\n"
"par_id3154684\n"
-"3\n"
"help.text"
msgid "If a range of only one row is selected, the contents of the far left cell are copied to all the other selected cells. If you have selected several rows, each of the far left cells is copied into those cells to the right."
msgstr "གྲལ་ཐིག་གཅིག་རྐྱངམ་ཅིག་གི་ཁྱབ་ཚད་འདི་སེལ་འཐུ་འབད་བ་ཅིན་ ཐག་རིང་གཡོན་གྱི་ནང་ཐིག་གི་ནང་དོན་དེ་ཚུ་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་གཞན་མི་ཚུ་ལུ་འདྲ་བཤུས་རྐྱབ་ནི་ཨིན། ཁྱོད་ཀྱིས་གྲལ་ཐིག་ལེ་ཤ་སེལ་འཐུ་གྲུབ་སྟེ་ཡོད་པ་ཅིན་ ཐག་རིང་གཡོན་གྱི་ནང་ཐིག་རེ་རེ་ཚུ་ གཡས་ལུ་ཡོད་པའི་ནང་ཐིག་ཚུ་ནང་ལུ་འདྲ་བཤུས་རྐྱབ་ཡོདཔ་ཨིན།"
@@ -1107,7 +1020,6 @@ msgstr "ཡར།"
msgctxt ""
"02140300.xhp\n"
"hd_id3147264\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\">Up</link>"
msgstr "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\"> ཡར་ </link>"
@@ -1116,7 +1028,6 @@ msgstr "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\"> ཡར་ </link>
msgctxt ""
"02140300.xhp\n"
"par_id3150793\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:FillUp\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the bottom most cell.</ahelp>"
msgstr "<ahelp hid=\".uno:FillUp\" visibility=\"visible\"> མཇུག་མཇུག་གི་ནང་ཐིག་གི་ནང་དོན་ཚུ་དང་བཅསཔ་སྦེ་ཉུང་མཐའ་གྲལ་ཐིག་གཉིས་ཀྱི་སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཁྱབ་ཚད་ཚུ་བཀངམ་ཨིན། </ahelp>"
@@ -1125,7 +1036,6 @@ msgstr "<ahelp hid=\".uno:FillUp\" visibility=\"visible\"> མཇུག་མཇ
msgctxt ""
"02140300.xhp\n"
"par_id3150447\n"
-"3\n"
"help.text"
msgid "If a selected range has only one column, the content of the bottom most cell is copied into the selected cells. If several columns are selected, the contents of the bottom most cells are copied into those selected above."
msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཁྱབ་ཚད་ལུ་ཀེར་ཐིག་གཅིག་རྐྱངམ་ཅིག་ཡོད་པ་ཅིན་ མཇུག་མཇུག་གི་ནང་ཐིག་གི་ནང་དོན་འདི་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཚུ་ནང་ལུ་འདྲ་བཤུས་རྐྱབས་ཡོདཔ་ཨིན། ཀེར་ཐིག་ལེ་ཤ་སེལ་འཐུ་གྲུབ་སྟེ་ཡོད་པ་ཅིན་ མཇུག་མཇུག་གི་ནང་ཐིག་ཚུའི་ནང་དོན་ཚུ་ ལྟག་ལུ་སེལ་འཐུ་གྲུབ་ཡོད་མི་ནང་ལུ་འདྲ་བཤུས་རྐྱབས་ཡོདཔ་ཨིན།"
@@ -1142,7 +1052,6 @@ msgstr "གཡོན།"
msgctxt ""
"02140400.xhp\n"
"hd_id3153896\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\">Left</link>"
msgstr "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\"> གཡོན་ </link>"
@@ -1151,7 +1060,6 @@ msgstr "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\"> གཡོན་
msgctxt ""
"02140400.xhp\n"
"par_id3150793\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the far right cell.</ahelp>"
msgstr "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\"> ཐག་རིང་གཡས་ཀྱི་ནང་ཐིག་གི་ནང་དོན་ཚུ་དང་བཅསཔ་སྦེ་ ཉུང་མཐའ་་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཀེར་ཐིག་གཉིས་ཀྱི་ཁྱབ་ཚད་ཚུ་བཀངམ་ཨིན། </ahelp>"
@@ -1160,7 +1068,6 @@ msgstr "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\"> ཐག་རིང
msgctxt ""
"02140400.xhp\n"
"par_id3156280\n"
-"3\n"
"help.text"
msgid "If a selected range has only one row, the content of the far right cell is copied into all other cells of the range. If several rows are selected, the far right cells are copied into the cells to the left."
msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཁྱབ་ཚད་ལུ་གྲལ་ཐིག་གཅིག་རྐྱངམ་ཅིག་ཡོད་པ་ཅིན་ ཐག་རིང་གཡས་ཀྱི་ནང་ཐིག་གི་ནང་དོན་འདི་ ཁྱབ་ཚད་དེའི་ནང་ཐིག་གཞན་མི་ཚུ་ནང་འདྲ་བཤུས་རྐྱབས་ཏེ་ཡོདཔ་ཨིན། གྲལ་ཐིག་ལེ་ཤ་རང་སེལ་འཐུ་གྲུབ་སྟེ་ཡོད་པ་ཅིན་ ཐག་རིང་གཡས་ཀྱི་ནང་ཐིག་ཚུ་ གཡོན་གྱི་ནང་ཐིག་ཚུ་ནང་ལུ་ འདྲ་བཤུས་རྐྱབས་ཏེ་ཡོདཔ་ཨིན།"
@@ -1177,7 +1084,6 @@ msgstr "ཤོག་ཁྲམ་བཀང་།"
msgctxt ""
"02140500.xhp\n"
"hd_id3153897\n"
-"1\n"
"help.text"
msgid "Fill Sheet"
msgstr "ཤོག་ཁྲམ་བཀང་།"
@@ -1186,7 +1092,6 @@ msgstr "ཤོག་ཁྲམ་བཀང་།"
msgctxt ""
"02140500.xhp\n"
"par_id3150791\n"
-"2\n"
"help.text"
msgid "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">Specifies the options for transferring sheets or ranges of a certain sheet.</ahelp></variable>"
msgstr "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\"> ཤོག་ཁྲམ་ཚུ་ཡང་ན་ ཤོག་ཁྲམ་ལ་ལོ་ཅིག་གི་ཁྱབ་ཚད་ཚུ་གནས་སོར་འབད་ནིའི་དོན་ལུ་ གདམ་ཁ་ཚུ་གསལ་བཀོད་འབདཝ་ཨིན། </ahelp></variable>"
@@ -1195,7 +1100,6 @@ msgstr "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visib
msgctxt ""
"02140500.xhp\n"
"par_id3150767\n"
-"3\n"
"help.text"
msgid "In contrast to copying an area to the clipboard, you can filter certain information and calculate values. This command is only visible if you have selected two sheets in the document. To select multiple sheets, click each sheet tab while pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> or Shift."
msgstr "མངའ་ཁོངས་གཅིག་འཛིན་པང་ནང་འདྲ་བཤུས་རྐྱབ་ནིའི་ཁྱད་པར་ལུ་ ཁྱོད་ཀྱིས་ བརྡ་དོན་ལ་ལོ་ཅིག་བཙག་སྟེ་གནས་གོངས་ཚུ་རྩིས་སྟོན་འབད་ཚུགསཔ་ཨིན། འ་ནི་བརྡ་བཀོད་འདི་ ཡིག་ཆ་ནང་ལུ་ཤོག་ཁྲམ་གཉིས་སེལ་འཐུ་འབད་བ་ཅིན་རྐྱངམ་ཅིག་མཐོང་ཚུགསཔ་ཨིན། ཤོག་ཁྲམ་སྣ་མང་སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ <switchinline select=\"sys\"> <caseinline select=\"MAC\"> བརྡ་བཀོད་ </caseinline> <defaultinline>ཚད་འཛིན་ </defaultinline> </switchinline>ཨེབ་པའི་སྐབས་ཤོག་ཁྲམ་རེ་རེའི་མཆོང་ལྡེ་ ཡང་ན་སོར་ལྡེ་ཨེབ་གཏང་།"
@@ -1204,7 +1108,6 @@ msgstr "མངའ་ཁོངས་གཅིག་འཛིན་པང་ནང
msgctxt ""
"02140500.xhp\n"
"hd_id3155131\n"
-"4\n"
"help.text"
msgid "Filling a Sheet"
msgstr ""
@@ -1213,7 +1116,6 @@ msgstr ""
msgctxt ""
"02140500.xhp\n"
"par_id3146119\n"
-"5\n"
"help.text"
msgid "Select the entire sheet by clicking the empty gray box in the upper left of the sheet. You can also select an area of the sheet to be copied."
msgstr "ཤོག་ཁྲམ་གྱི་ཡར་གཡོན་ནང་ལུ་སྐྱ་ཐལ་སྒྲོམ་སྟོངམ་ཨེབ་གཏང་གི་ཐོག་ལས་ ཤོག་ཁྲམ་ཧྲིལ་བུ་སེལ་འཐུ་འབད། ཁྱོད་ཀྱིས་འདྲ་བཤུས་རྐྱབ་ནི་ཨིན་པའི་ ཤོག་ཁྲམ་གྱི་མངའ་ཁོངས་ཡང་ སེལ་འཐུ་འབད་ཚུགསཔ་ཨིན།"
@@ -1222,7 +1124,6 @@ msgstr "ཤོག་ཁྲམ་གྱི་ཡར་གཡོན་ནང་ལ
msgctxt ""
"02140500.xhp\n"
"par_id3153726\n"
-"6\n"
"help.text"
msgid "Press <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and click the tab of the sheet where you want to insert the contents."
msgstr "<switchinline select=\"sys\"> <caseinline select=\"MAC\"> བརྡ་བཀོད་ </caseinline> <defaultinline> ཚད་འཛིན་ </defaultinline> </switchinline>ཨེབ་སྟེ་ ཁྱོད་ཀྱིས་ནང་དོན་ཚུ་བཙུགས་ནི་ཨིན་པའི་ལཱའི་ཤོག་ཁྲམ་གྱི་མཆོང་ལྡེ་ཨེབ་གཏང་།"
@@ -1231,7 +1132,6 @@ msgstr "<switchinline select=\"sys\"> <caseinline select=\"MAC\"> བརྡ་
msgctxt ""
"02140500.xhp\n"
"par_id3147436\n"
-"7\n"
"help.text"
msgid "Select the command <emph>Edit - Fill - Sheet</emph>. In the dialog which appears, the check box <emph>Numbers</emph> must be selected (or <emph>Paste All</emph>) if you want to combine operations with the values. You can also choose the desired operation here."
msgstr "བརྡ་བཀོད་ <emph>ཞུན་དག་ - བཀང་ - ཤོག་ཁྲམ་ </emph> ཚུ་སེལ་འཐུ་འབད། ཞིབ་དཔྱད་སྒྲོམ་ འབྱུང་པའི་ཌའི་ལོག་ནང་ལུ་ <emph> ཨང་ཚུ་ </emph> ངེས་པར་དུ་སེལ་འཐུ་འབད་དེ་འོང་དགོསཔ་ཨིན་ (ཡང་ན་ <emph> ཆ་མཉམ་སྦྱར་ </emph>) ཁྱོད་ཀྱིས་བཀོལ་སྤྱོད་ཚུ་གནས་གོང་ཚུ་དང་མཉམ་མཐུད་འབད་ནི་ཨིན་རུང་དེ་འབད་དགོསཔ་ཨིན། ནཱ་ལུ་ཁྱོད་ཀྱིས་རེ་འདུན་བསྐྱེད་དེ་ཡོད་པའི་བཀོལ་སྤྱོད་གདམ་ཚུགསཔ་ཨིན།"
@@ -1240,7 +1140,6 @@ msgstr "བརྡ་བཀོད་ <emph>ཞུན་དག་ - བཀང་ -
msgctxt ""
"02140500.xhp\n"
"par_id3154942\n"
-"8\n"
"help.text"
msgid "Click <emph>OK</emph>."
msgstr "<emph> བཏུབ་ </emph> ཨེབ་གཏང་།"
@@ -1249,7 +1148,6 @@ msgstr "<emph> བཏུབ་ </emph> ཨེབ་གཏང་།"
msgctxt ""
"02140500.xhp\n"
"par_id3156283\n"
-"9\n"
"help.text"
msgid "This dialog is similar to the <link href=\"text/shared/01/02070000.xhp\" name=\"Paste Contents\">Paste Contents</link> dialog, where you can find additional tips."
msgstr "འ་ནི་ཌའི་ལོག་འདི་ <link href=\"text/shared/01/02070000.xhp\" name=\"Paste Contents\"> ནང་དོན་ཚུ་སྦྱར་ </link> ཁྱོད་ཀྱིས་ཕན་བསླབ་ཁ་སྐོང་ཚུ་འཐོབ་ཚུགས་སའི་ཌའི་ལོག་ དང་ཆ་འདྲཝ་འདུག"
@@ -1266,7 +1164,6 @@ msgstr "རྒྱུན་རིམ་བཀང་།"
msgctxt ""
"02140600.xhp\n"
"hd_id3148664\n"
-"1\n"
"help.text"
msgid "Fill Series"
msgstr "རྒྱུན་རིམ་བཀང་།"
@@ -1275,7 +1172,6 @@ msgstr "རྒྱུན་རིམ་བཀང་།"
msgctxt ""
"02140600.xhp\n"
"par_id3148797\n"
-"2\n"
"help.text"
msgid "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Automatically generate series with the options in this dialog. Determine direction, increment, time unit and series type.</ahelp></variable>"
msgstr "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\"> འ་ནི་ཌའི་ལོག་ནང་ལུ་གདམ་ཁ་ཚུ་དང་བཅསཔ་པའི་རྒྱུན་རིམ་རང་བཞིན་གྱིས་བཟོ་བཏོན་འབདཝ་ཨིན། ཕྱོགས་ ཡར་འཕར་ དུས་ཚོད་ཆ་ཕྲན་དང་ རྒྱུན་རིམ་དབྱེ་བ་ཚུ་གཏན་འབེབས་བཟོ། </ahelp></variable>"
@@ -1284,7 +1180,6 @@ msgstr "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\"> འ
msgctxt ""
"02140600.xhp\n"
"par_id3146976\n"
-"41\n"
"help.text"
msgid "Before filling a series, first select the cell range."
msgstr "རྒྱུན་རིམ་མ་བཀང་བའི་ཧེ་མ་ དང་པ་རང་ནང་ཐིག་ཁྱབ་ཚད་སེལ་འཐུ་འབད།"
@@ -1293,7 +1188,6 @@ msgstr "རྒྱུན་རིམ་མ་བཀང་བའི་ཧེ་མ
msgctxt ""
"02140600.xhp\n"
"par_id3145748\n"
-"3\n"
"help.text"
msgid "To automatically continue a series using the assumed completion rules, choose the <emph>AutoFill</emph> option after opening the <emph>Fill Series</emph> dialog."
msgstr "བསམ་པའི་ཡོངས་སྒྲུབ་ལམ་ལུགས་ཚུ་ལག་ལེན་འཐབ་ཐོག་ལས་ རང་བཞིན་གྱིས་རྒྱུན་རིམ་གཅིག་འཕྲོ་མཐུད་ནི་ལུ་ <emph>རང་བཞིན་བཀང་</emph> ཁ་ཕྱེ་བའི་ཤུལ་ལས་གདམ་ཁ་ <emph>རྒྱུན་རིམ་བཀང་</emph>གདམ་ཁ་བརྐྱབ།"
@@ -1302,7 +1196,6 @@ msgstr "བསམ་པའི་ཡོངས་སྒྲུབ་ལམ་ལུ
msgctxt ""
"02140600.xhp\n"
"hd_id3147435\n"
-"4\n"
"help.text"
msgid "Direction"
msgstr "ཁ་ཕྱོགས་"
@@ -1311,7 +1204,6 @@ msgstr "ཁ་ཕྱོགས་"
msgctxt ""
"02140600.xhp\n"
"par_id3154729\n"
-"5\n"
"help.text"
msgid "Determines the direction of series creation."
msgstr "རྒྱུན་རིམ་གསར་བསྐྲུན་གྱི་ཕྱོགས་གཏན་འབེབས་བཟོཝ་ཨིན།"
@@ -1320,7 +1212,6 @@ msgstr "རྒྱུན་རིམ་གསར་བསྐྲུན་གྱི
msgctxt ""
"02140600.xhp\n"
"hd_id3145253\n"
-"6\n"
"help.text"
msgid "Down"
msgstr "མར།"
@@ -1329,7 +1220,6 @@ msgstr "མར།"
msgctxt ""
"02140600.xhp\n"
"par_id3155418\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/down\">Creates a downward series in the selected cell range for the column using the defined increment to the end value.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/down\"> མཇུག་གི་གནས་གོང་ལུ་ངེས་འཛིན་འབད་ཡོད་པའི་ཡར་འཕར་ནི་ལག་ལེན་ཐོག་ལས་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཁྱབ་ཚད་ནང་ ཀེར་ཐིག་གི་དོན་ལུ་ མར་ཕྱོགས་རྒྱུན་རིམ་གཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན། </ahelp>"
@@ -1338,7 +1228,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/down\"> མཇུག་གི་
msgctxt ""
"02140600.xhp\n"
"hd_id3155738\n"
-"8\n"
"help.text"
msgid "Right"
msgstr "གཡས།"
@@ -1347,7 +1236,6 @@ msgstr "གཡས།"
msgctxt ""
"02140600.xhp\n"
"par_id3149402\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/right\">Creates a series running from left to right within the selected cell range using the defined increment to the end value.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/right\"> མཇུག་གི་གནས་གོང་ལུ་ངེས་འཛིན་འབད་ཡོད་པའི་ཡར་འཕར་ནི་ལག་ལེན་ཐོག་ལས་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཁྱབ་ཚད་ནང་འཁོད་ལུ་ གཡོན་ལས་གཡས་ལུ་གཡོག་བཀོལ་བའི་བསྒང་གི་རྒྱུན་རིམ་གཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན། </ahelp>"
@@ -1356,7 +1244,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/right\"> མཇུག་གི་
msgctxt ""
"02140600.xhp\n"
"hd_id3146972\n"
-"10\n"
"help.text"
msgid "Up"
msgstr "ཡར།"
@@ -1365,7 +1252,6 @@ msgstr "ཡར།"
msgctxt ""
"02140600.xhp\n"
"par_id3153711\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/up\">Creates an upward series in the cell range of the column using the defined increment to the end value.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/up\"> མཇུག་གི་གནས་གོང་ལུ་ངེས་འཛིན་འབད་ཡོད་པའི་ཡར་འཕར་ནི་ལག་ལེན་ཐོག་ལས་ ཀེར་ཐིག་གི་ནང་ཐིག་ཁྱབ་ཚད་ནང་ལུ་ རྒྱུན་རིམ་ཡར་ཕྱོགས་གཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན། </ahelp>"
@@ -1374,7 +1260,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/up\"> མཇུག་གི་ག
msgctxt ""
"02140600.xhp\n"
"hd_id3153764\n"
-"12\n"
"help.text"
msgid "Left"
msgstr "གཡོན།"
@@ -1383,7 +1268,6 @@ msgstr "གཡོན།"
msgctxt ""
"02140600.xhp\n"
"par_id3156382\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/left\">Creates a series running from right to left in the selected cell range using the defined increment to the end value.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/left\"> མཇུག་གི་གནས་གོང་ལུ་ངེས་འཛིན་འབད་ཡོད་པའི་ཡར་འཕར་ནི་ལག་ལེན་ཐོག་ལས་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཁྱབ་ཚད་ནང་ལུ་ གཡས་ལས་གཡོན་ལུ་གཡོག་བཀོལ་བའི་བསྒང་གི་རྒྱུན་རིམ་གཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན། </ahelp>"
@@ -1392,7 +1276,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/left\"> མཇུག་གི་
msgctxt ""
"02140600.xhp\n"
"hd_id3147344\n"
-"14\n"
"help.text"
msgid "Series Type"
msgstr "རྒྱུན་རིམ་དབྱེ་བ།"
@@ -1401,7 +1284,6 @@ msgstr "རྒྱུན་རིམ་དབྱེ་བ།"
msgctxt ""
"02140600.xhp\n"
"par_id3149257\n"
-"15\n"
"help.text"
msgid "Defines the series type. Choose between <emph>Linear, Growth, Date </emph>and <emph>AutoFill</emph>."
msgstr "རྒྱུན་རིམ་དབྱེ་བ་ངེས་འཛིན་འབདཝ་ཨིན། <emph>རིང་ཚད་ཀྱི་ ཡར་བསྐྱེད་ ཚེས་ </emph> དང་ <emph> རང་བཞིན་བཀང་ </emph> བར་ན་གདམ།"
@@ -1410,7 +1292,6 @@ msgstr "རྒྱུན་རིམ་དབྱེ་བ་ངེས་འཛི
msgctxt ""
"02140600.xhp\n"
"hd_id3148488\n"
-"16\n"
"help.text"
msgid "Linear"
msgstr "ཐིག་གི"
@@ -1419,7 +1300,6 @@ msgstr "ཐིག་གི"
msgctxt ""
"02140600.xhp\n"
"par_id3159238\n"
-"17\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/linear\">Creates a linear number series using the defined increment and end value.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/linear\"> མཇུག་གི་གནས་གོང་དང་ངེས་འཛིན་འབད་ཡོད་པའི་ཡར་འཕར་ནི་ལག་ལེན་ཐོག་ལས་ ཐིག་གི་ཨང་གྲངས་རྒྱུན་རིམ་གཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན། </ahelp>"
@@ -1428,7 +1308,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/linear\"> མཇུག་གི་
msgctxt ""
"02140600.xhp\n"
"hd_id3149210\n"
-"18\n"
"help.text"
msgid "Growth"
msgstr "ཡར་བསྐྱེད།"
@@ -1437,7 +1316,6 @@ msgstr "ཡར་བསྐྱེད།"
msgctxt ""
"02140600.xhp\n"
"par_id3150364\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/growth\">Creates a growth series using the defined increment and end value.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/growth\"> མཇུག་གི་གནས་གོང་དང་ ངེས་འཛིན་འབད་ཡོད་པའི་ཡར་འཕར་ནི་ལག་ལེན་འཐབ་ཐོག་ལས་ ཡར་བསྐྱེད་རྒྱུན་རིམ་གཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན། </ahelp>"
@@ -1446,7 +1324,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/growth\"> མཇུག་གི་
msgctxt ""
"02140600.xhp\n"
"hd_id3149528\n"
-"20\n"
"help.text"
msgid "Date"
msgstr "ཚེས།"
@@ -1455,7 +1332,6 @@ msgstr "ཚེས།"
msgctxt ""
"02140600.xhp\n"
"par_id3150887\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/date\">Creates a date series using the defined increment and end date.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/date\"> མཇུག་གི་ཚེས་དང་ངེས་འཛིན་འབད་ཡོད་པའི་ཡར་འཕར་ནི་ལག་ལེན་འཐབ་ཐོག་ལས་ ཚེས་ཀྱི་རྒྱུན་རིམ་གཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན། </ahelp>"
@@ -1464,7 +1340,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/date\"> མཇུག་གི་
msgctxt ""
"02140600.xhp\n"
"hd_id3150202\n"
-"22\n"
"help.text"
msgid "AutoFill"
msgstr "རང་བཞིན་བཀང་།"
@@ -1473,7 +1348,6 @@ msgstr "རང་བཞིན་བཀང་།"
msgctxt ""
"02140600.xhp\n"
"par_id3156288\n"
-"23\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/autofill\">Forms a series directly in the sheet.</ahelp> The AutoFill function takes account of customized lists. For example, by entering <emph>January</emph> in the first cell, the series is completed using the list defined under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Sort Lists</emph>."
msgstr ""
@@ -1482,7 +1356,6 @@ msgstr ""
msgctxt ""
"02140600.xhp\n"
"par_id3155811\n"
-"24\n"
"help.text"
msgid "AutoFill tries to complete a value series by using a defined pattern. The series 1,3,5 is automatically completed with 7,9,11,13, and so on. Date and time series are completed accordingly; for example, after 01.01.99 and 15.01.99, an interval of 14 days is used."
msgstr "རང་བཞིན་བཀང་གི་ངེས་འཛིན་འབད་ཡོད་པའི་དཔེ་གཞི་ལག་ལེན་འཐབ་ཀྱི་ཐོག་ལས་ གནས་གོང་རྒྱུན་རིམ་ཡོངས་སྒྲུབ་འབད་ནི་ལུ་འབད་སྩོལ་བསྐྱེདཔ་ཨིན། རྒྱུན་རིམ་ ༡,༣,༥ དེ་༧,༩,༡༡,༡༣ ལ་སོགས་དང་བཅསཔ་སྦེ་རང་བཞིན་གྱིས་ཡོངས་སྒྲུབ་ཡོདཔ་ཨིན། ཚེས་དང་དུས་ཚོད་རྒྱུན་རིམ་དེ་ཚུ་ འཁྲིལ་ཏེ་རང་ཡོངས་སྒྲུབ་སྟེ་ཡོདཔ་ཨིན་ དཔེ་འབད་བ་ཅིན་ ༠༡་༠༡་༠༠ དང་ ༡༥་ ༠༡་༩༩ གི་ཤུལ་ལས་ ཉིནམ་༡༤ གི་བར་མཚམས་ལག་ལེན་འཐབ་སྟེ་ཡོདཔ་ཨིན།"
@@ -1491,7 +1364,6 @@ msgstr "རང་བཞིན་བཀང་གི་ངེས་འཛིན་
msgctxt ""
"02140600.xhp\n"
"hd_id3148700\n"
-"25\n"
"help.text"
msgid "Unit of Time"
msgstr "དུས་ཚོད་ཀྱི་ཆ་ཕྲན།"
@@ -1500,7 +1372,6 @@ msgstr "དུས་ཚོད་ཀྱི་ཆ་ཕྲན།"
msgctxt ""
"02140600.xhp\n"
"par_id3153308\n"
-"26\n"
"help.text"
msgid "In this area you can specify the desired unit of time. This area is only active if the <emph>Date</emph> option has been chosen in the <emph>Series type</emph> area."
msgstr "འ་ནི་མངའ་ཁོངས་ནང་ལུ་ ཁྱོད་ཀྱིས་ རེ་འདུན་བསྐྱེད་ཡོད་པའི་དུས་ཚོད་ཀྱི་ཆ་ཕྲན་གསལ་བཀོད་འབད་ཚུགསཔ་ཨིན། འ་ནི་མངའ་ཁོངས་འདི་ <emph> ཚེས་ </emph> <emph> རྒྱུན་རིམ་དབྱེ་བ་ </emph> གདམ་ཁ་འདི་མངའ་ཁོངས་ནང་ལུ་གདམ་ཏེ་ཡོད་པ་ཅིན་རྐྱངམ་ཅིག་ཤུགས་ལྡན་འོངམ་ཨིན།"
@@ -1509,7 +1380,6 @@ msgstr "འ་ནི་མངའ་ཁོངས་ནང་ལུ་ ཁྱོ
msgctxt ""
"02140600.xhp\n"
"hd_id3148868\n"
-"27\n"
"help.text"
msgid "Day"
msgstr "ཉིནམ།"
@@ -1518,7 +1388,6 @@ msgstr "ཉིནམ།"
msgctxt ""
"02140600.xhp\n"
"par_id3148605\n"
-"28\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/day\">Use the <emph>Date</emph> series type and this option to create a series using seven days.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/day\"> ཉིནམ་བདུན་ལག་ལེན་འཐབ་ཀྱི་ཐོག་ལས་རྒྱུན་རིམ་གཅིག་གསར་བསྐྲུན་འབད་ནིའི་དོན་ལུ་ <emph> ཚེས་ </emph>་རྒྱུན་རིམ་དབྱེ་བ་དང་གདམ་ཁ་ལག་ལེན་འཐབ། </ahelp>"
@@ -1527,7 +1396,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/day\"> ཉིནམ་བདུན
msgctxt ""
"02140600.xhp\n"
"hd_id3144771\n"
-"29\n"
"help.text"
msgid "Weekday"
msgstr "བདུན་ཕྲག་ཉིནམ།"
@@ -1536,7 +1404,6 @@ msgstr "བདུན་ཕྲག་ཉིནམ།"
msgctxt ""
"02140600.xhp\n"
"par_id3150108\n"
-"30\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/week\">Use the <emph>Date</emph> series type and this option to create a series of five day sets.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/week\"> ཉིནམ་ལྔའི་ཆ་ཚན་ཚུ་གྱི་རྒྱུན་རིམ་གཅིག་གསར་བསྐྲུན་འབད་ནིའི་དོན་ལུ་ <emph> ཚེས་ </emph> རྒྱུན་རིམ་དབྱེ་བ་དང་གདམ་ཁ་ལག་ལེན་འཐབ། </ahelp>"
@@ -1545,7 +1412,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/week\"> ཉིནམ་ལྔའ
msgctxt ""
"02140600.xhp\n"
"hd_id3154957\n"
-"31\n"
"help.text"
msgid "Month"
msgstr "ཟླཝ།"
@@ -1554,7 +1420,6 @@ msgstr "ཟླཝ།"
msgctxt ""
"02140600.xhp\n"
"par_id3149126\n"
-"32\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/month\">Use the <emph>Date</emph> series type and this option to form a series from the names or abbreviations of the months.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/month\"> ཟླཝ་ཚུ་གི་སྡུད་ཚིག་ཚུའམ་མིང་ཚུ་ལས་རྒྱུན་རིམ་གཅིག་འབྱུང་ནིའི་དོན་ལུ་ <emph> ཚེས་ </emph> རྒྱུན་རིམ་དབྱེ་བ་དང་འ་ནི་གདམ་ཁ་འདི་ལག་ལེན་འཐབ། </ahelp>"
@@ -1563,7 +1428,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/month\"> ཟླཝ་ཚུ་ག
msgctxt ""
"02140600.xhp\n"
"hd_id3152870\n"
-"33\n"
"help.text"
msgid "Year"
msgstr "ལོ།"
@@ -1572,7 +1436,6 @@ msgstr "ལོ།"
msgctxt ""
"02140600.xhp\n"
"par_id3151300\n"
-"34\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/year\">Use the <emph>Date</emph> series type and this option to create a series of years.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/year\"> ལོ་ཚུའི་རྒྱུན་རིམ་གསར་བསྐྲུན་འབད་ནིའི་དོན་ལུ་ <emph> ཚེས་ </emph> རྒྱུན་རིམ་དབྱེ་བ་དང་འ་ནི་གདམ་ཁ་ལག་ལེན་འཐབ། </ahelp>"
@@ -1581,7 +1444,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/year\"> ལོ་ཚུའི་
msgctxt ""
"02140600.xhp\n"
"hd_id3154762\n"
-"35\n"
"help.text"
msgid "Start Value"
msgstr "གནས་གོང་འགོ་བཙུགས།"
@@ -1590,7 +1452,6 @@ msgstr "གནས་གོང་འགོ་བཙུགས།"
msgctxt ""
"02140600.xhp\n"
"par_id3149381\n"
-"36\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/startValue\">Determines the start value for the series.</ahelp> Use numbers, dates or times."
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/startValue\"> རྒྱུན་རིམ་ལུ་ འགོ་བཙུགས་གནས་གོང་གཏན་འབེབས་བཟོཝ་ཨིན། </ahelp> ཨང་ཚུ་ ཚེས་ཡང་ན་དུས་ཚོད་ཚུ་ལག་ལེན་འཐབ།"
@@ -1599,7 +1460,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/startValue\"> རྒྱུན་
msgctxt ""
"02140600.xhp\n"
"hd_id3153013\n"
-"37\n"
"help.text"
msgid "End Value"
msgstr "གནས་གོང་མཇུག་བསྡུ།"
@@ -1608,7 +1468,6 @@ msgstr "གནས་གོང་མཇུག་བསྡུ།"
msgctxt ""
"02140600.xhp\n"
"par_id3153487\n"
-"38\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/endValue\">Determines the end value for the series.</ahelp> Use numbers, dates or times."
msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/endValue\"> རྒྱུན་རིམ་ལུ་མཇུག་གི་གནས་གོང་གཏན་འབེབས་བཟོཝ་ཨིན། </ahelp> ཨང་ ཚེས་ཡང་ན་དུས་ཚོད་ཚུ་ལག་ལེན་འཐབ།"
@@ -1617,7 +1476,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/endValue\"> རྒྱུན་ར
msgctxt ""
"02140600.xhp\n"
"hd_id3149312\n"
-"39\n"
"help.text"
msgid "Increment"
msgstr "ཡར་འཕར་ནི།"
@@ -1626,7 +1484,6 @@ msgstr "ཡར་འཕར་ནི།"
msgctxt ""
"02140600.xhp\n"
"par_id3154739\n"
-"40\n"
"help.text"
msgid "The term \"increment\" denotes the amount by which a given value increases.<ahelp hid=\"modules/scalc/ui/filldlg/increment\"> Determines the value by which the series of the selected type increases by each step.</ahelp> Entries can only be made if the linear, growth or date series types have been selected."
msgstr "ཐ་སྙད་ \"increment\" གིས་ གྲ་སྒྲིག་འབད་ཡོད་པའི་གནས་གོང་ཡར་འཕར་ནིའི་དངུལ་བསྡོམས་མཚོན་རྟགས་སྟོནམ་ཨིན། <ahelp hid=\"modules/scalc/ui/filldlg/increment\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་དབྱེ་བ་རིམ་པ་རེ་རེ་གི་རྒྱུན་རིམ་ཡར་འཕར་ནིའི་ གནས་གོང་གཏན་འབེབས་བཟོཝ་ཨིན། </ahelp> ཐོ་བཀོད་ཚུ་ རིང་ཚད་ ཡར་བསྐྱེད་ ཡང་ན་ ཚེས་ཀྱི་རྒྱུན་རིམ་དབྱེ་བ་ཚུ་སེལའཐུ་གྲུབ་སྟེ་ཡོད་པ་ཅིན་རྐྱངམ་ཅིག་བཟོ་ཚུགསཔ་ཨིན།"
@@ -1680,7 +1537,6 @@ msgid "Data"
msgstr "གནད་སྡུད།"
#: 02140700.xhp
-#, fuzzy
msgctxt ""
"02140700.xhp\n"
"hd_id2308201415431883475\n"
@@ -1865,7 +1721,6 @@ msgid "Bernoulli"
msgstr ""
#: 02140700.xhp
-#, fuzzy
msgctxt ""
"02140700.xhp\n"
"par_id2308201415431994157\n"
@@ -1882,7 +1737,6 @@ msgid "Binomial"
msgstr ""
#: 02140700.xhp
-#, fuzzy
msgctxt ""
"02140700.xhp\n"
"par_id2308201415431958372\n"
@@ -1923,7 +1777,6 @@ msgid "Geometric"
msgstr ""
#: 02140700.xhp
-#, fuzzy
msgctxt ""
"02140700.xhp\n"
"par_id2308201415431978150\n"
@@ -1940,7 +1793,6 @@ msgid "Negative Binomial"
msgstr ""
#: 02140700.xhp
-#, fuzzy
msgctxt ""
"02140700.xhp\n"
"par_id2308201415431916718\n"
@@ -1981,7 +1833,6 @@ msgid "Set the initial value of the random number generator to a known value <em
msgstr ""
#: 02140700.xhp
-#, fuzzy
msgctxt ""
"02140700.xhp\n"
"hd_id2308201415431881107\n"
@@ -2049,7 +1900,6 @@ msgstr "<bookmark_value> བཏོན་གཏང་ནི་ ; ནང་ཐི
msgctxt ""
"02150000.xhp\n"
"hd_id3143284\n"
-"1\n"
"help.text"
msgid "Deleting Contents"
msgstr "ནང་ཐོན་ཚུ་བཏོན་གཏང་དོ།"
@@ -2058,7 +1908,6 @@ msgstr "ནང་ཐོན་ཚུ་བཏོན་གཏང་དོ།"
msgctxt ""
"02150000.xhp\n"
"par_id3149456\n"
-"2\n"
"help.text"
msgid "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Specifies the contents to be deleted from the active cell or from a selected cell range.</ahelp></variable> If several sheets are selected, all selected sheets will be affected."
msgstr "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\"> ཤུགས་ལྡན་ནང་ཐིག་ལས་ཡང་ན་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཁྱབ་ཚད་ལས་བཏོན་གཏང་ནི་ཨིན་པའི་ནང་དོན་ཚུ་གསལ་བཀོད་འབདཝ་ཨིན། </ahelp></variable> ཤོག་ཁྲམ་ལེ་ཤ་རང་སེལ་འཐུ་གྲུབ་སྟེ་ཡོད་པ་ཅིན་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཤོག་ཁྲམ་ཚུ་ཆ་མཉམ་རང་གནོད་སྐྱོན་བྱུང་ཡོདཔ་ཨིན།"
@@ -2067,7 +1916,6 @@ msgstr "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\"> ཤུ
msgctxt ""
"02150000.xhp\n"
"par_id3159154\n"
-"21\n"
"help.text"
msgid "This dialog is also called by pressing Backspace after the cell cursor has been activated on the sheet."
msgstr ""
@@ -2076,7 +1924,6 @@ msgstr ""
msgctxt ""
"02150000.xhp\n"
"par_id3145367\n"
-"22\n"
"help.text"
msgid "Pressing Delete deletes content without calling the dialog or changing formats."
msgstr ""
@@ -2085,7 +1932,6 @@ msgstr ""
msgctxt ""
"02150000.xhp\n"
"par_id3153951\n"
-"23\n"
"help.text"
msgid "Use <emph>Cut</emph> on the Standard bar to delete contents and formats without the dialog."
msgstr "ནང་ཐོན་ཚུ་དང་རྩ་སྒྲིག་ཚུ་ཌའི་ལོག་མེདཔ་སྦེ་བཏོན་གཏང་ནིའི་དོན་ལུ་ ཚད་ལྡན་ཕྲ་རིང་གུ་ལུ་ <emph> བཏོག་ </emph> ལག་ལེན་འཐབ།"
@@ -2094,7 +1940,6 @@ msgstr "ནང་ཐོན་ཚུ་དང་རྩ་སྒྲིག་ཚུ
msgctxt ""
"02150000.xhp\n"
"hd_id3148575\n"
-"3\n"
"help.text"
msgid "Selection"
msgstr "སེལ་འཐུ།"
@@ -2103,7 +1948,6 @@ msgstr "སེལ་འཐུ།"
msgctxt ""
"02150000.xhp\n"
"par_id3149665\n"
-"4\n"
"help.text"
msgid "This area lists the options for deleting contents."
msgstr "འ་ནི་མངའ་ཁོངས་ཀྱིས་ ནང་དོན་ཚུ་བཏོན་གཏང་ནིའི་དོན་ལུ་གདམ་ཁ་ཚུ་ཐོ་བཀོད་འབདཝ་ཨིན།"
@@ -2112,7 +1956,6 @@ msgstr "འ་ནི་མངའ་ཁོངས་ཀྱིས་ ནང་ད
msgctxt ""
"02150000.xhp\n"
"hd_id3146975\n"
-"5\n"
"help.text"
msgid "Delete All"
msgstr "ཆ་མཉམ་རང་བཏོན་གཏང་།"
@@ -2121,7 +1964,6 @@ msgstr "ཆ་མཉམ་རང་བཏོན་གཏང་།"
msgctxt ""
"02150000.xhp\n"
"par_id3154729\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/deleteall\">Deletes all content from the selected cell range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/deleteall\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཁྱབ་ཚད་ལས་ནང་དོན་ཆ་མཉམ་རང་བཏོན་གཏངམ་ཨིན། </ahelp>"
@@ -2130,7 +1972,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/deleteall\"> སེལ་
msgctxt ""
"02150000.xhp\n"
"hd_id3156286\n"
-"7\n"
"help.text"
msgid "Text"
msgstr "ཤུལ་མམ།"
@@ -2139,7 +1980,6 @@ msgstr "ཤུལ་མམ།"
msgctxt ""
"02150000.xhp\n"
"par_id3154015\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/text\">Deletes text only. Formats, formulas, numbers and dates are not affected.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/text\"> ཡིག་རྒྱུན་ཚུ་རྐྱངམ་ཅིག་བཏོན་གཏངམ་ཨིན། རྩ་སྒྲིག་ ཨང་དང་ཚེས་གྲངས་ཚུ་ གནོད་སྐྱོན་བྱུང་ཡོདཔ་ཨིན། </ahelp>"
@@ -2148,7 +1988,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/text\"> ཡིག་རྒ
msgctxt ""
"02150000.xhp\n"
"hd_id3153840\n"
-"9\n"
"help.text"
msgid "Numbers"
msgstr "ཨང་ཚུ།"
@@ -2157,7 +1996,6 @@ msgstr "ཨང་ཚུ།"
msgctxt ""
"02150000.xhp\n"
"par_id3148405\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/numbers\">Deletes numbers only. Formats and formulas remain unchanged.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/numbers\"> ཨང་ཚུ་རྐྱངམ་ཅིག་བཏོན་གཏངམ་ཨིན། རྩ་སྒྲིག་ཚུ་དང་མན་ངག་ཚུ་ བསྒྱུར་བཅོས་མེདཔ་སྦེ་ལུས་ནི་ཨིན། </ahelp>"
@@ -2166,7 +2004,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/numbers\"> ཨང་ཚུ
msgctxt ""
"02150000.xhp\n"
"hd_id3155764\n"
-"11\n"
"help.text"
msgid "Date & time"
msgstr "ཚེས་ དུས་ཚོད།(&t)"
@@ -2175,7 +2012,6 @@ msgstr "ཚེས་ དུས་ཚོད།(&t)"
msgctxt ""
"02150000.xhp\n"
"par_id3149567\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/datetime\">Deletes date and time values. Formats, text, numbers and formulas remain unchanged.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/datetime\"> ཚེས་དང་དུས་ཚོད་གནས་གོངཚུ་བཏོན་གཏངམ་ཨིན། རྩ་སྒྲིག་ ཚིག་ཡིག་ ཨང་དང་མན་ངག་ཚུ་ བསྒྱུར་བཅོས་མེདཔ་སྦེ་ལུས་ནི་ཨིན། </ahelp>"
@@ -2184,7 +2020,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/datetime\"> ཚེས་ད
msgctxt ""
"02150000.xhp\n"
"hd_id3154703\n"
-"13\n"
"help.text"
msgid "Formulas"
msgstr "མན་ངག་ཚུ།"
@@ -2193,7 +2028,6 @@ msgstr "མན་ངག་ཚུ།"
msgctxt ""
"02150000.xhp\n"
"par_id3148485\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/formulas\">Deletes formulas. Text, numbers, formats, dates and times remain unchanged.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/formulas\"> མན་ངག་ཚུ་བཏོན་གཏངམ་ཨིན། ཚིག་ཡིག་ ཨང་ རྩ་སྒྲིག་ ཚེས་དང་དུས་ཚོད་ཚུ་ བསྒྱུར་བཅོས་མེདཔ་སྦེ་ལུས་ནི་ཨིན། </ahelp>"
@@ -2202,7 +2036,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/formulas\"> མན་ངག
msgctxt ""
"02150000.xhp\n"
"hd_id3150300\n"
-"15\n"
"help.text"
msgid "Comments"
msgstr "བསམ་བཀོད།"
@@ -2211,7 +2044,6 @@ msgstr "བསམ་བཀོད།"
msgctxt ""
"02150000.xhp\n"
"par_id3154658\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/comments\">Deletes comments added to cells. All other elements remain unchanged.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/comments\"> ནང་ཐིག་ཚུ་ནང་ཁ་སྐོང་འབད་ཡོད་པའི་དྲན་འཛིན་ཚུ་བཏོན་གཏངམ་ཨིན། གཞན་མི་ཆ་ཤས་ཚུ་ཆ་མཉམ་རང་བསྒྱུར་བཅོས་མེདཔ་སྦེ་ལུས་ནི་ཨིན། </ahelp>"
@@ -2220,7 +2052,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/comments\"> ནང་ཐི
msgctxt ""
"02150000.xhp\n"
"hd_id3155112\n"
-"17\n"
"help.text"
msgid "Formats"
msgstr "རྩ་སྒྲིག་ཚུ།"
@@ -2229,7 +2060,6 @@ msgstr "རྩ་སྒྲིག་ཚུ།"
msgctxt ""
"02150000.xhp\n"
"par_id3146134\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/formats\">Deletes format attributes applied to cells. All cell content remains unchanged.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/formats\"> ནང་ཐིག་ཚུ་ནང་འཇུག་སྤྱོད་འབད་ཡོད་པའི་རྩ་སྒྲིག་ཁྱད་ཆོས་ཚུ་བཏོན་གཏངམ་ཨིན། ནང་ཐིག་ཆ་མཉམ་གྱི་ནང་དོན་ བསྒྱུར་བཅོས་མེདཔ་སྦེ་ལུསཔ་ཨིན། </ahelp>"
@@ -2238,7 +2068,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/formats\"> ནང་ཐི
msgctxt ""
"02150000.xhp\n"
"hd_id3150088\n"
-"19\n"
"help.text"
msgid "Objects"
msgstr "དངོས་པོ་ཚུ།"
@@ -2247,7 +2076,6 @@ msgstr "དངོས་པོ་ཚུ།"
msgctxt ""
"02150000.xhp\n"
"par_id3152990\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/objects\">Deletes objects. All cell content remains unchanged.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/objects\"> དངོས་པོ་ཚུ་བཏོན་གཏངམ་ཨིན། ནང་ཐིག་ནང་ཐོན་ཆ་མཉམ་རང་བསྒྱུར་བཅོས་མེདཔ་སྦེ་ལུསཔ་ཨིན། </ahelp>"
@@ -2272,7 +2100,6 @@ msgstr ""
msgctxt ""
"02160000.xhp\n"
"hd_id3153726\n"
-"1\n"
"help.text"
msgid "Delete Cells"
msgstr "ནང་ཐིག་ཚུ་བཏོན་གཏང་།"
@@ -2281,7 +2108,6 @@ msgstr "ནང་ཐིག་ཚུ་བཏོན་གཏང་།"
msgctxt ""
"02160000.xhp\n"
"par_id3154490\n"
-"2\n"
"help.text"
msgid "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">Completely deletes selected cells, columns or rows. The cells below or to the right of the deleted cells will fill the space.</ahelp></variable> Note that the selected delete option is stored and reloaded when the dialog is next called."
msgstr "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">ནང་ཐིག་ ཀེར་ཐིག་དང་གྲལ་ཐིག་ཚུ་རྩ་བ་ལས་རང་བཏོན་གཏངམ་ཨིན། འོག་གི་ནང་ཐིག་ཚུ་ཡང་ན་ བཏོན་གཏང་གཏངམ་མའི་ནང་ཐིག་ཚུ་གི་གཡས་ལུ་ བར་སྟོང་བཀངམ་ཨིན། </ahelp></variable> ཌའི་ལོག་འདི་ཤུལ་མ་འབོ་ཡོདཔ་ད་སེལ་འཐུ་གྲུབ་ཡོད་པའི་སྐབས་ལུ་བཏོན་གཏང་ནི་གདམ་ཁ་འདི་གསོག་འཇོག་དང་ཡང་བསྐྱར་མངོན་གསལ་འབད་ཡོདཔ་དེ་དྲན་དགོས།"
@@ -2298,7 +2124,6 @@ msgstr ""
msgctxt ""
"02160000.xhp\n"
"hd_id3149121\n"
-"3\n"
"help.text"
msgid "Selection"
msgstr "སེལ་འཐུ།"
@@ -2307,7 +2132,6 @@ msgstr "སེལ་འཐུ།"
msgctxt ""
"02160000.xhp\n"
"par_id3150751\n"
-"4\n"
"help.text"
msgid "This area contains options for specifying how sheets are displayed after deleting cells."
msgstr "འ་ནི་མངའ་ཁོངས་ནང་ན་ནང་ ཐིག་ཚུ་བཏོན་གཏང་ཚར་བའི་ཤུལ་ལུ་ ཤོག་ཁྲམ་ཚུ་ག་དེ་སྦེ་བཀྲམ་སྟོན་འབད་དེ་ཡོདཔ་ཨིན་ན་གསལབཀོད་འབད་ནིའི་དོན་ལུ་གདམ་ཁ་ཚུ་ཤོམ་ཏེ་ཡོདཔ་ཨིན།"
@@ -2316,7 +2140,6 @@ msgstr "འ་ནི་མངའ་ཁོངས་ནང་ན་ནང་ ཐ
msgctxt ""
"02160000.xhp\n"
"hd_id3155767\n"
-"5\n"
"help.text"
msgid "Shift cells up"
msgstr "ནང་ཐིག་ཚུ་ཡར་བཤུད།"
@@ -2325,7 +2148,6 @@ msgstr "ནང་ཐིག་ཚུ་ཡར་བཤུད།"
msgctxt ""
"02160000.xhp\n"
"par_id3153714\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecells/up\">Fills the space produced by the deleted cells with the cells underneath it.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecells/up\"> འདི་གི་འོག་གི་ནང་ཐིག་ཚུ་དང་བཅས་བཏོན་གཏང་སྟེ་ཡོད་པའི་ནང་ཐིག་ཚུ་གིས་བཟོ་བཏོན་འབད་དེ་ཡོད་པའི་བར་སྟོང་བཀངམ་ཨིན། </ahelp>"
@@ -2334,7 +2156,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/deletecells/up\"> འདི་གི་འ
msgctxt ""
"02160000.xhp\n"
"hd_id3156382\n"
-"7\n"
"help.text"
msgid "Shift cells left"
msgstr "ནང་ཐིག་ཚུ་གཡོན་ལུ་བཤུད།"
@@ -2343,7 +2164,6 @@ msgstr "ནང་ཐིག་ཚུ་གཡོན་ལུ་བཤུད།"
msgctxt ""
"02160000.xhp\n"
"par_id3154702\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecells/left\">Fills the resulting space by the cells to the right of the deleted cells.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/deletecells/left\"> བཏོན་གཏང་སྟེ་ཡོད་པའི་ནང་ཐིག་ཚུ་གི་གཡས་ལུ་ནང་ཐིག་ཚུ་གིས་འགྲུབ་འབྲས་འཐོན་ནིའི་རབ་སྟོང་འདི་བཀངམ་ཨིན། </ahelp>"
@@ -2352,7 +2172,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/deletecells/left\"> བཏོན་གཏ
msgctxt ""
"02160000.xhp\n"
"hd_id3146918\n"
-"9\n"
"help.text"
msgid "Delete entire row(s)"
msgstr "གྲལ་ཐིག་ཚུ་ཧྲིལ་བུ་བཏོན་གཏངམ་ཨིན།(s)"
@@ -2361,7 +2180,6 @@ msgstr "གྲལ་ཐིག་ཚུ་ཧྲིལ་བུ་བཏོན་
msgctxt ""
"02160000.xhp\n"
"par_id3148487\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\".uno:DeleteRows\">After selecting at least one cell, deletes the entire row from the sheet.</ahelp>"
msgstr "<ahelp hid=\".uno:DeleteRows\"> ཉུང་མཐའ་རང་ནག་ཐིག་གཅིག་སེལ་འཐུ་འབད་ཚར་བའི་ཤུལ་ལས་ ཤོག་ཁྲམ་ནང་ལས་གྲལ་ཐིག་ཧྲིལ་བུ་བཏོན་གཏངམ་ཨིན། </ahelp>"
@@ -2370,7 +2188,6 @@ msgstr "<ahelp hid=\".uno:DeleteRows\"> ཉུང་མཐའ་རང་ནག
msgctxt ""
"02160000.xhp\n"
"hd_id3155114\n"
-"11\n"
"help.text"
msgid "Delete entire column(s)"
msgstr "ཀེར་ཐིག་ཚུ་ཧྲིལ་བུ་བཏོན་གཏང་།(s)"
@@ -2379,7 +2196,6 @@ msgstr "ཀེར་ཐིག་ཚུ་ཧྲིལ་བུ་བཏོན་
msgctxt ""
"02160000.xhp\n"
"par_id3150086\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\".uno:DeleteColumns\">After selecting at least one cell, deletes the entire column from the sheet.</ahelp>"
msgstr "<ahelp hid=\".uno:DeleteColumns\"> ཤོག་ཁྲམ་ནང་ལས་ ཉུང་མཐའ་རང་ནང་ཐིག་གཅིག་སེལ་འཐུ་འབད་ཚར་བའི་ཤུལ་ལས་ ཀེར་ཐིག་ཧྲིལ་བུ་བཏོན་གཏངམ་ཨིན། </ahelp>"
@@ -2412,7 +2228,6 @@ msgstr "<bookmark_value> ཤོག་ཁྲམ་ཚུ་ ; བཏོན་ག
msgctxt ""
"02170000.xhp\n"
"hd_id3156424\n"
-"1\n"
"help.text"
msgid "Delete Sheet"
msgstr "ཤོག་ཁྲམ་བཏོན་གཏང་།"
@@ -2421,7 +2236,6 @@ msgstr "ཤོག་ཁྲམ་བཏོན་གཏང་།"
msgctxt ""
"02170000.xhp\n"
"par_id3153193\n"
-"2\n"
"help.text"
msgid "<variable id=\"tabelleloeschentext\"><ahelp hid=\".uno:Remove\">Deletes the current sheet after query confirmation.</ahelp></variable>"
msgstr "<variable id=\"tabelleloeschentext\"><ahelp hid=\".uno:Remove\"> འདྲི་དཔྱད་ངེས་དཔྱད་ཀྱི་ཤུལ་ལས་ད་ལྟོའི་ཤོག་ཁྲམ་བཏོན་གཏངམ་ཨིན། </ahelp></variable>"
@@ -2430,7 +2244,6 @@ msgstr "<variable id=\"tabelleloeschentext\"><ahelp hid=\".uno:Remove\"> འད
msgctxt ""
"02170000.xhp\n"
"par_id3145801\n"
-"7\n"
"help.text"
msgid "You cannot delete a sheet while <emph>Edit - Track Changes - Record Changes</emph> is activated."
msgstr ""
@@ -2439,7 +2252,6 @@ msgstr ""
msgctxt ""
"02170000.xhp\n"
"hd_id3147124\n"
-"3\n"
"help.text"
msgid "Yes"
msgstr "ཨིན།"
@@ -2448,7 +2260,6 @@ msgstr "ཨིན།"
msgctxt ""
"02170000.xhp\n"
"par_id3154943\n"
-"4\n"
"help.text"
msgid "Deletes the current sheet."
msgstr ""
@@ -2457,7 +2268,6 @@ msgstr ""
msgctxt ""
"02170000.xhp\n"
"hd_id3149412\n"
-"5\n"
"help.text"
msgid "No"
msgstr "མེན།"
@@ -2466,7 +2276,6 @@ msgstr "མེན།"
msgctxt ""
"02170000.xhp\n"
"par_id3154510\n"
-"6\n"
"help.text"
msgid "Cancels the dialog. No delete is performed."
msgstr "ཌའི་ལོག་ཆ་མེད་གཏངམ་ཨིན། བཏོན་གཏང་ནི་འདི་ལཱ་འགན་འགྲུབ་སྟེ་མེདཔ་ཨིན།"
@@ -2491,7 +2300,6 @@ msgstr "<bookmark_value>ཤོག་ཁྲམ་ཚུ་ ; སྤོ་དོ
msgctxt ""
"02180000.xhp\n"
"hd_id3153360\n"
-"1\n"
"help.text"
msgid "Move or Copy a Sheet"
msgstr "ལེབ་གྲངས་ཅིག་སྤོ་ ཡང་ན་འདྲ་བཤུས་རྐྱབས།"
@@ -2500,7 +2308,6 @@ msgstr "ལེབ་གྲངས་ཅིག་སྤོ་ ཡང་ན་འ
msgctxt ""
"02180000.xhp\n"
"par_id3154686\n"
-"2\n"
"help.text"
msgid "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Moves or copies a sheet to a new location in the document or to a different document.</ahelp></variable>"
msgstr "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">ཡིག་ཆ་འདི་ནང་ ཡང་ན་ ཡིག་ཆ་སོ་སོ་ཅིག་ནང་གི་ གནས་ཁོངས་གསརཔ་ཅིག་ནང་ལུ་ ལེབ་གྲངས་ཅིག་ སྤོ་བཤུད་ཡང་ན་འདྲ་བཤུས་རྐྱབས་ཨིན་</ahelp></variable>"
@@ -2517,7 +2324,6 @@ msgstr "ཁྱོད་ཀྱིས་ནང་ཐིག་ནང་ན་ <link
msgctxt ""
"02180000.xhp\n"
"hd_id3163710\n"
-"3\n"
"help.text"
msgid "To Document"
msgstr "ཡིག་ཆ་ལུ།"
@@ -2526,7 +2332,6 @@ msgstr "ཡིག་ཆ་ལུ།"
msgctxt ""
"02180000.xhp\n"
"par_id3148645\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/movecopysheet/toDocument\">Indicates where the current sheet is to be moved or copied to.</ahelp> Select <emph>- new document -</emph> if you want to create a new location for the sheet to be moved or copied."
msgstr "<ahelp hid=\"modules/scalc/ui/movecopysheet/toDocument\"> ད་ལྟོའི་ལེབ་གྲངས་འདི་ག་སྟེ་ སྤོ་བཤུད་དང་འདྲ་བཤུས་རྐྱབས་ནི་ཨིན་ན་ བརྡ་སྟོན་འབདཝ་ཨིན།</ahelp> <emph>ཡིག་ཆ་གསརཔ་</emph> འདི་ ཁྱོད་ཀྱིས་ ལེབ་གྲངས་འདི་སྤོ་བཤུད་ཡང་ན་འདྲ་བཤུས་རྐྱབས་ནིའི་དོན་ལས་ གནས་ཁོངས་གསརཔ་ཅིག་གསར་བསྐྲུན་འབད་ནི་ཨིན་པ་ཅིན་ སེལ་འཐུ་འབད།"
@@ -2535,7 +2340,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/movecopysheet/toDocument\"> ད་ལྟ
msgctxt ""
"02180000.xhp\n"
"hd_id3154012\n"
-"5\n"
"help.text"
msgid "Insert Before"
msgstr "ཧེ་མ་བཙུགས།"
@@ -2544,7 +2348,6 @@ msgstr "ཧེ་མ་བཙུགས།"
msgctxt ""
"02180000.xhp\n"
"par_id3145366\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/movecopysheet/insertBefore\">The current sheet is moved or copied in front of the selected sheet.</ahelp> The <emph>- move to end position -</emph> option places the current sheet at the end."
msgstr "<ahelp hid=\"modules/scalc/ui/movecopysheet/insertBefore\"> ད་ལྟོའི་ལེབ་གྲངས་འདི་ སེལ་འཐུ་འབད་ཡོད་པའི་ལེབ་གྲངས་འདི་གི་གདོང་ཁར་ སྤོ་བཤུད་ཡང་ན་འདྲ་བཤུས་རྐྱབས་ཡོད།.</ahelp> <emph>མཇུག་གི་གནས་ས་ལུ་སྤོ་</emph>གདམ་ཁ་འདི་གིས་ ད་ལྟོའི་ལེབ་གྲངས་འདི་ མཇུག་ལུ་བཞགཔ་ཨིན།"
@@ -2553,7 +2356,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/movecopysheet/insertBefore\"> ད་ལྟ
msgctxt ""
"02180000.xhp\n"
"hd_id3153726\n"
-"7\n"
"help.text"
msgid "Copy"
msgstr "འདྲ་བཤུས།"
@@ -2562,7 +2364,6 @@ msgstr "འདྲ་བཤུས།"
msgctxt ""
"02180000.xhp\n"
"par_id3144764\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/movecopysheet/copy\">Specifies that the sheet is to be copied. If the option is unmarked, the sheet is moved.</ahelp> Moving sheets is the default."
msgstr "<ahelp hid=\"modules/scalc/ui/movecopysheet/copy\"> ལེབ་གྲངས་འདི་འདྲ་བཤུས་རྐྱབས་དགོཔ་སྦེ་ གསལབཀོད་འབདཝ་ཨིན། གདམ་ཁ་འདི་རྟགས་མ་བཀལཝ་ཨིན་པ་ཅིན་ ལེབ་གྲངས་འདི་སྤོཝ་ཨིན།</ahelp> ལེབ་གྲངས་སྤོ་ནི་འདི་སྔོན་སྒྲིག་ཨིན།"
@@ -2584,7 +2385,6 @@ msgid "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Page Break\">Dele
msgstr ""
#: 02190000.xhp
-#, fuzzy
msgctxt ""
"02190000.xhp\n"
"par_id3154365\n"
@@ -2612,7 +2412,6 @@ msgstr "<bookmark_value>ཤོག་ཁྲམ་; བཏོན་གཏང་བ
msgctxt ""
"02190100.xhp\n"
"hd_id3156326\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/02190100.xhp\" name=\"Row Break\">Row Break</link>"
msgstr "<link href=\"text/scalc/01/02190100.xhp\" name=\"Row Break\"> གྲལ་ཐིག་མཚམས་ </link>"
@@ -2621,7 +2420,6 @@ msgstr "<link href=\"text/scalc/01/02190100.xhp\" name=\"Row Break\"> གྲལ
msgctxt ""
"02190100.xhp\n"
"par_id3154366\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DeleteRowbreak\">Removes the manual row break above the active cell.</ahelp>"
msgstr "<ahelp hid=\".uno:DeleteRowbreak\"> ལག་དེབ་གྲལ་ཐིག་མཚམས་འདི་ཤུགས་ལྡན་ནང་ཐིག་གི་ལྟག་ལུ་རྩ་བསྐྲད་གཏངམ་ཨིན། </ahelp>"
@@ -2654,7 +2452,6 @@ msgstr "<bookmark_value>ཤོག་ཁྲམ་; བཏོན་གཏང་བ
msgctxt ""
"02190200.xhp\n"
"hd_id3151384\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/02190200.xhp\" name=\"Column Break\">Column Break</link>"
msgstr "<link href=\"text/scalc/01/02190200.xhp\" name=\"Column Break\"> ཀེར་ཐིག་མཚམས་ </link>"
@@ -2663,7 +2460,6 @@ msgstr "<link href=\"text/scalc/01/02190200.xhp\" name=\"Column Break\"> ཀེ
msgctxt ""
"02190200.xhp\n"
"par_id3154124\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DeleteColumnbreak\">Removes a manual column break to the left of the active cell.</ahelp>"
msgstr "<ahelp hid=\".uno:DeleteColumnbreak\"> ཤུགས་ལྡན་ནང་ཐིག་གི་གཡོན་ལུ་ ལག་དེབ་ཀེར་ཐིག་མཚམས་གཅིག་རྩ་བསྐྲད་གཏངམ་ཨིན། </ahelp>"
@@ -2685,7 +2481,6 @@ msgid "Sheet"
msgstr "གསར་བསྐྲུན་འབད།"
#: 02200000.xhp
-#, fuzzy
msgctxt ""
"02200000.xhp\n"
"hd_id3146794\n"
@@ -2694,7 +2489,6 @@ msgid "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">Sheet</link>"
msgstr "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\"> ཤོག་ཁྲམ་ </link>"
#: 02200000.xhp
-#, fuzzy
msgctxt ""
"02200000.xhp\n"
"par_id3149456\n"
@@ -2714,7 +2508,6 @@ msgstr "ཤོག་ཁྲམ་ཚུ་སེལ་འཐུ་འབད་ད
msgctxt ""
"02210000.xhp\n"
"hd_id3156023\n"
-"5\n"
"help.text"
msgid "Selecting Sheets"
msgstr "ཤོག་ཁྲམ་ཚུ་སེལ་འཐུ་འབད་དོ།"
@@ -2723,7 +2516,6 @@ msgstr "ཤོག་ཁྲམ་ཚུ་སེལ་འཐུ་འབད་ད
msgctxt ""
"02210000.xhp\n"
"par_id3147265\n"
-"1\n"
"help.text"
msgid "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">Selects multiple sheets.</ahelp></variable>"
msgstr "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\"> ཤོག་ཁྲམ་སྣ་མང་ཚུ་སེལ་འཐུ་འབདཝ་ཨིན། </ahelp>.</variable>"
@@ -2732,17 +2524,14 @@ msgstr "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" vis
msgctxt ""
"02210000.xhp\n"
"hd_id3125863\n"
-"2\n"
"help.text"
msgid "Selected Sheets"
msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཤོག་ཁྲམ་ཚུ།"
#: 02210000.xhp
-#, fuzzy
msgctxt ""
"02210000.xhp\n"
"par_id3153969\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Lists the sheets in the current document. To select a sheet, press the up or down arrow keys to move to a sheet in the list. To add a sheet to the selection, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while pressing the arrow keys and then press Spacebar. To select a range of sheets, hold down Shift and press the arrow keys. </ahelp>"
msgstr "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\"> ད་ལྟོའི་ཡིག་ཆ་ནང་ལུ་ཤོག་ཁྲམ་ཚུ་ཐོ་བཀོད་འབདཝ་ཨིན། ཤོག་ཁྲམ་གཅིག་སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ ཡར་ཡང་ན་མར་མདའ་རྟགས་ལྡེ་མིག་ཚུ་ ཐོ་བཀོད་ནང་གི་ཤོག་ཁྲམ་གཅིག་ནང་སྤོ་ནིའི་དོན་ལུ་ ཨེབ། སེལ་འཐུ་ལུ་ཤོག་ཁྲམ་ཁ་སྐོང་རྐྱབ་ནིའི་དོན་ལུ་ མདའ་རྟགས་ལྡེ་མིག་ཚུ་ཨེབ་པའི་སྐབས་ ཚད་འཛིན་འདི་མར་འཆང་སྟེ་ བར་སྟོང་ཕྲ་རིང་ཨེབ། ཤོག་ཁྲམ་ཚུའི་ཁྱབ་ཚད་སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ སོར་ལྡེ་འདི་མར་འཆང་སྟེ་ མདའ་རྟགས་ལྡེ་མིག་ཚུ་ཨེབ། </ahelp>"
@@ -2756,7 +2545,6 @@ msgid "Column & Row Headers"
msgstr "ཀེར་ཐིག་ གྲལ་ཐིག་མགོ་ཡིག་ཚུ།(&R)"
#: 03070000.xhp
-#, fuzzy
msgctxt ""
"03070000.xhp\n"
"bm_id3156024\n"
@@ -2765,7 +2553,6 @@ msgid "<bookmark_value>spreadsheets; displaying headers of columns/rows</bookmar
msgstr "<bookmark_value> ཤོག་ཁྲམ་ཚུ་ ; མགོ་ཡིག་གི་ཀེར་ཐིག་/གྲལ་ཐིག་ཚུ་བཀྲམ་སྟོན་འབད་དོ་ </bookmark_value><bookmark_value> བཀྲམ་སྟོན་འབད་ནི་ ; ཀེར་ཐིག་/གྲལ་ཐིག་ཚུ་གི་མགོ་ཡིག་ </bookmark_value>"
#: 03070000.xhp
-#, fuzzy
msgctxt ""
"03070000.xhp\n"
"hd_id3156024\n"
@@ -2782,7 +2569,6 @@ msgid "<ahelp hid=\".\">Shows column headers and row headers.</ahelp>"
msgstr ""
#: 03070000.xhp
-#, fuzzy
msgctxt ""
"03070000.xhp\n"
"par_id3156280\n"
@@ -2807,7 +2593,6 @@ msgid "Value Highlighting"
msgstr "གནས་གོང་གཙོ་དམིགས་འབད་ནི།"
#: 03080000.xhp
-#, fuzzy
msgctxt ""
"03080000.xhp\n"
"bm_id3151384\n"
@@ -2864,7 +2649,6 @@ msgid "Formula Bar"
msgstr "མན་ངག་ཕྲ་་རིང་།"
#: 03090000.xhp
-#, fuzzy
msgctxt ""
"03090000.xhp\n"
"bm_id3147264\n"
@@ -2873,7 +2657,6 @@ msgid "<bookmark_value>formula bar;spreadsheets</bookmark_value> <bookmark_valu
msgstr "<bookmark_value> མན་ངག་ཕྲ་རིང་ ; ཤོག་ཁྲམ་ཚུ་ </bookmark_value><bookmark_value> ཤོག་ཁྲམ་ཚུ་ ; མན་ངག་ཕྲ་རིང་ </bookmark_value>"
#: 03090000.xhp
-#, fuzzy
msgctxt ""
"03090000.xhp\n"
"hd_id3147264\n"
@@ -2882,7 +2665,6 @@ msgid "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">Formula Ba
msgstr "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\"> མན་ངག་ཕྲ་རིང་ </link>"
#: 03090000.xhp
-#, fuzzy
msgctxt ""
"03090000.xhp\n"
"par_id3156423\n"
@@ -2891,7 +2673,6 @@ msgid "<ahelp hid=\".\">Shows or hides the Formula Bar, which is used for enteri
msgstr "<ahelp hid=\".uno:InputLineVisible\"> མན་ངག་ཚུ་ཐོ་བཀོད་དང་ཞུན་དག་འབད་ནི་ནང་ལུ་ལག་ལེན་འཐབ་སྟེ་ཡོད་པའི་ མན་ངག་ཕྲ་རིང་སྟོནམ་ཡང་ན་སྦཝ་ཨིན། </ahelp> ཤོག་ཁྲམ་ཚུ་དང་གཅིག་ཁར་ལཱ་འབདཝ་ད་མན་ངག་ཕྲ་རིང་འདི་ མང་ཤོས་གལ་ཅན་ལག་ཆས་ཨིན།"
#: 03090000.xhp
-#, fuzzy
msgctxt ""
"03090000.xhp\n"
"par_id3154686\n"
@@ -2900,7 +2681,6 @@ msgid "To hide the Formula Bar, unmark the menu item."
msgstr "མན་ངག་ཕྲ་རིང་སྦ་ནིའི་དོན་ལུ་ དཀར་ཆ་རྣམ་གྲངས་འདི་རྟགས་བཀལ་བཤོལ།"
#: 03090000.xhp
-#, fuzzy
msgctxt ""
"03090000.xhp\n"
"par_id3145787\n"
@@ -2909,7 +2689,6 @@ msgid "If the Formula Bar is hidden, you can still edit cells by activating the
msgstr "མན་ངག་ཕྲ་རིང་འདི་གསང་སྟེ་ཡོད་རུང་ ཁྱོད་ཀྱིས་ཞུན་དག་ཐབས་ལམ་ ཨེཕ་༢ ཤུགས་ལྡན་བཟོ་བའི་ཐོག་ལས་ནང་ཐིག་ཚུ་ཞུན་དག་འབད་ཚུགསཔ་ཨིན། ནང་ཐིག་ཚུ་ཞུན་དག་འབད་ཚར་བའི་ཤུལ་ལས་ ལོག་ལྡེ་ཨེབ་ཀྱི་ཐོག་ལས་བསྒྱུར་བཅོས་ཚུ་དང་ལེན་འབད་ཡང་ན་ ཐོ་བཀོད་ཚུ་གློག་ཐེམ་ཨེབ་ཀྱི་ཐོག་ལས་བཏོན་བཀོག གློག་ཐེམ་འདི་ ཞུན་དག་ཐབས་ལམ་ཕྱིར་ཐོན་ནིའི་དོན་ལུ་ཡང་ལག་ལེན་འཐབ་ཨིན།"
#: 03100000.xhp
-#, fuzzy
msgctxt ""
"03100000.xhp\n"
"tit\n"
@@ -2918,7 +2697,6 @@ msgid "Page Break View"
msgstr "ཤོག་ལེབ་མཚམས་སྔོན་བལྟ།"
#: 03100000.xhp
-#, fuzzy
msgctxt ""
"03100000.xhp\n"
"hd_id3151384\n"
@@ -2935,7 +2713,6 @@ msgid "<variable id=\"page_break_view_text\"><ahelp hid=\".\">Display the page b
msgstr ""
#: 03100000.xhp
-#, fuzzy
msgctxt ""
"03100000.xhp\n"
"par_id3153877\n"
@@ -2952,7 +2729,6 @@ msgid "Delete Page Breaks"
msgstr ""
#: 03100000.xhp
-#, fuzzy
msgctxt ""
"03100000.xhp\n"
"par_id3149400\n"
@@ -2961,7 +2737,6 @@ msgid "<ahelp hid=\".\">Deletes all manual breaks in the current sheet.</ahelp>"
msgstr "<ahelp hid=\".uno:DeleteAllBreaks\"> ལག་དེབ་མཚམས་ཚུ་ཆ་མཉམ་རང་ ད་ལྟོའི་ཤོག་ཁྲམ་ནང་ལུ་བཏོན་གཏངམ་ཨིན། </ahelp>"
#: 03100000.xhp
-#, fuzzy
msgctxt ""
"03100000.xhp\n"
"hd_id3155067\n"
@@ -2970,7 +2745,6 @@ msgid "Add Print Range"
msgstr "དཔར་བསྐྲུན་ཁྱབ་ཚད་ཁ་སྐོང་།"
#: 03100000.xhp
-#, fuzzy
msgctxt ""
"03100000.xhp\n"
"par_id3155764\n"
@@ -2998,7 +2772,6 @@ msgstr "<bookmark_value>ཤོག་ཁྲམ་ཚུ་ བར་མཚམས
msgctxt ""
"04010000.xhp\n"
"hd_id3153192\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/04010000.xhp\" name=\"Insert Page Break\">Insert Page Break</link>"
msgstr ""
@@ -3007,7 +2780,6 @@ msgstr ""
msgctxt ""
"04010000.xhp\n"
"par_id3125864\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">This command inserts manual row or column breaks to ensure that your data prints properly. You can insert a horizontal page break above, or a vertical page break to the left of, the active cell.</ahelp>"
msgstr "<ahelp hid=\".\"> ཁྱོད་ཀྱི་གནད་སྡུད་ཀྱིས་ཚུལ་ལྡན་སྦེ་དཔར་བསྐྲུན་འབད་ཡོདཔ་ངེས་བརྟན་བཟོ་ནིའི་དོན་ལུ་ འ་ནི་བརྡ་བཀོད་ཀྱིས་ལག་དེབ་གྲལ་ཐིག་ཡང་ན་ ཀེར་ཐིག་མཚམས་ཚུ་བཙུགསཔ་ཨིན། ཁྱོད་ཀྱིས་ ཤུགས་ལྡན་ནང་ཐིག་གི་་གཡོན་ཁ་ཐུག་ལུ་ཀེར་ཕྲང་ཤོག་ལེབ་མཚམས་ཡང་ན་ དེའི་ལྟག་ལུ་ ཐད་སྙོམས་ཤོག་ལེབ་མཚམས་ཚུ་བཙུགས་ཚུགསཔ་ཨིན། </ahelp>"
@@ -3040,7 +2812,6 @@ msgstr "<bookmark_value> ཤོག་ཁྲམ་ཚུ་ ; གྲལ་ཐི
msgctxt ""
"04010100.xhp\n"
"hd_id3153821\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Row Break</link>"
msgstr "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\"> གྲལ་ཐིག་མཚམས་ </link>"
@@ -3049,7 +2820,6 @@ msgstr "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\"> གྲལ
msgctxt ""
"04010100.xhp\n"
"par_id3149656\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertRowBreak\">Inserts a row break (horizontal page break) above the selected cell.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertRowBreak\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་གི་ལྟག་ལུ་ (ཤོག་ལེབ་མཚམས་ཐད་སྙོམས་) </ahelp> གྲལ་ཐིག་མཚམས་བཙུགསཔ་ཨིན།"
@@ -3058,7 +2828,6 @@ msgstr "<ahelp hid=\".uno:InsertRowBreak\"> སེལ་འཐུ་གྲུབ
msgctxt ""
"04010100.xhp\n"
"par_id3156422\n"
-"3\n"
"help.text"
msgid "The manual row break is indicated by a dark blue horizontal line."
msgstr "ལག་དེབ་མཚམས་འདི་ སྔོ་ནག་ཐད་སྙོམས་གྲལ་ཐིག་གཅིག་གིས་བརྡ་སྟོན་ཏེ་ཡོདཔ་ཨིན།"
@@ -3083,7 +2852,6 @@ msgstr "<bookmark_value> ཤོག་ཁམ་ཚུ་ ; ཀེར་ཐིག
msgctxt ""
"04010200.xhp\n"
"hd_id3155923\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Column Break</link>"
msgstr "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\"> ཀེར་ཐིག་མཚམས་ </link>"
@@ -3092,7 +2860,6 @@ msgstr "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\"> ཀེ
msgctxt ""
"04010200.xhp\n"
"par_id3150447\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertColumnBreak\">Inserts a column break (vertical page break) to the left of the active cell.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertColumnBreak\"> ཤུགས་ལྡན་ནང་ཐིག་གི་གཡོན་ཁ་ཐུག་ལུ་ (ཀེར་ཕྲང་ཤོག་ལེབ་མཚམས་) ཀེར་ཐིག་མཚམས་གཅིག་བཙུགསཔ་ཨིན།</ahelp>"
@@ -3101,7 +2868,6 @@ msgstr "<ahelp hid=\".uno:InsertColumnBreak\"> ཤུགས་ལྡན་ནང
msgctxt ""
"04010200.xhp\n"
"par_id3145171\n"
-"3\n"
"help.text"
msgid "The manual column break is indicated by a dark blue vertical line."
msgstr "ལག་དེབ་ཀེར་ཐིག་མཚམས་འདི་ སྔོ་ནག་ཀེར་ཕྲང་གྱལ་རིམ་གཅིག་གིས་བརྡ་སྟོན་ཏེ་ཡོདཔ་ཨིན།"
@@ -3126,7 +2892,6 @@ msgstr "<bookmark_value> ཤོག་ཁྲམ་ཚུ་ ; ནང་ཐིག
msgctxt ""
"04020000.xhp\n"
"hd_id3156023\n"
-"1\n"
"help.text"
msgid "Insert Cells"
msgstr "ནང་ཐིག་ཚུ་བཙུགས།"
@@ -3135,7 +2900,6 @@ msgstr "ནང་ཐིག་ཚུ་བཙུགས།"
msgctxt ""
"04020000.xhp\n"
"par_id3150542\n"
-"2\n"
"help.text"
msgid "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">Opens the<emph> Insert Cells </emph>dialog, in which you can insert new cells according to the options that you specify.</ahelp></variable> You can delete cells by choosing <link href=\"text/scalc/01/02160000.xhp\" name=\"Edit - Delete Cells\"><emph>Edit - Delete Cells</emph></link>."
msgstr "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\"> ཁ་ཕྱེ་སྟེ་<emph> ཁྱོད་ཀྱིས་གསལ་བཀོད་འབད་མི་གི་གདམ་ཁ་ཚུ་དང་འཁྲིལ་ཏེ་ནང་ཐིག་གསརཔ་ཚུ་བཙུགས་ཚུགས་སའི་ ཌའི་ལོག་ནང་ཐིག་ཚུ་བཙུགསཔ་ཨིན</emph> </ahelp></variable> ཁྱོད་ཀྱིས་ <link href=\"text/scalc/01/02160000.xhp\" name=\"Edit - Delete Cells\"><emph> ཞུན་དག་ - ནང་ཐིག་ཚུ་བཏོན་གཏང་ </emph></link> གདམ་ནི་ཐོག་ལས་ ནང་ཐིག་ཚུ་བཏོན་གཏང་ཚུགསཔ་ཨིན།"
@@ -3144,7 +2908,6 @@ msgstr "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\"> ཁ
msgctxt ""
"04020000.xhp\n"
"hd_id3153768\n"
-"3\n"
"help.text"
msgid "Selection"
msgstr "སེལ་འཐུ།"
@@ -3153,7 +2916,6 @@ msgstr "སེལ་འཐུ།"
msgctxt ""
"04020000.xhp\n"
"par_id3149262\n"
-"4\n"
"help.text"
msgid "This area contains the options available for inserting cells into a sheet. The cell quantity and position is defined by selecting a cell range in the sheet beforehand."
msgstr "འ་ནི་མངའ་ཁོངས་ཀྱི་ནང་ན་ལུ་ ཤོག་ཁྲམ་ནང་ན་ ནང་ཐིག་ཚུ་བཙུགས་ནིའི་གདམ་ཁ་ཚུ་འཐོབ་ཚུགསཔ་སྦེ་ཤོམ་ཏེ་ཡོད། ནང་ཐིག་སྤུས་ཚད་དང་ གནས་ས་འདི་ ཤོག་ཁྲམ་ནང་ལུ་དུས་མ་རནམ་ལས་ ནང་ཐིག་སེལ་འཐུ་ཐོག་ལས་ངེས་འཛིན་འབད་དེ་ཡོདཔ་ཨིན།"
@@ -3162,7 +2924,6 @@ msgstr "འ་ནི་མངའ་ཁོངས་ཀྱི་ནང་ན་ལ
msgctxt ""
"04020000.xhp\n"
"hd_id3146120\n"
-"5\n"
"help.text"
msgid "Shift cells down"
msgstr "ནང་ཐིག་ཚུ་མར་བཤུད།"
@@ -3171,7 +2932,6 @@ msgstr "ནང་ཐིག་ཚུ་མར་བཤུད།"
msgctxt ""
"04020000.xhp\n"
"par_id3152596\n"
-"6\n"
"help.text"
msgid "<variable id=\"zellenuntentext\"><ahelp hid=\"modules/scalc/ui/insertcells/down\">Moves the contents of the selected range downward when cells are inserted.</ahelp></variable>"
msgstr "<variable id=\"zellenuntentext\"><ahelp hid=\"modules/scalc/ui/insertcells/down\"> ནང་ཐིག་ཚུ་བཙུགས་པའི་སྐབས་ སེལ་་འཐུ་གྲུབ་ཡོད་པའི་ཁྱབ་ཚད་ཀྱི་ནང་དོན་ཚུ་ མར་ཕྱོགས་སྤོཝ་ཨིན། </ahelp></variable>"
@@ -3180,7 +2940,6 @@ msgstr "<variable id=\"zellenuntentext\"><ahelp hid=\"modules/scalc/ui/insertcel
msgctxt ""
"04020000.xhp\n"
"hd_id3147434\n"
-"7\n"
"help.text"
msgid "Shift cells right"
msgstr "ནང་ཐིག་ཚུ་གཡས་ལུ་བཤུད།"
@@ -3189,7 +2948,6 @@ msgstr "ནང་ཐིག་ཚུ་གཡས་ལུ་བཤུད།"
msgctxt ""
"04020000.xhp\n"
"par_id3144764\n"
-"8\n"
"help.text"
msgid "<variable id=\"zellenrechtstext\"><ahelp hid=\"modules/scalc/ui/insertcells/right\">Moves the contents of the selected range to the right when cells are inserted.</ahelp></variable>"
msgstr "<variable id=\"zellenrechtstext\"><ahelp hid=\"modules/scalc/ui/insertcells/right\"> ནང་ཐིག་ཚུ་བཙུགས་པའི་སྐབས་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཁྱབ་ཚད་ཀྱི་ནང་དོན་ཚུ་སྤོཝ་ཨིན། </ahelp></variable>"
@@ -3198,7 +2956,6 @@ msgstr "<variable id=\"zellenrechtstext\"><ahelp hid=\"modules/scalc/ui/insertce
msgctxt ""
"04020000.xhp\n"
"hd_id3153877\n"
-"9\n"
"help.text"
msgid "Entire row"
msgstr "གྲལ་ཐིག་ཧྲིལ་བུ།"
@@ -3207,7 +2964,6 @@ msgstr "གྲལ་ཐིག་ཧྲིལ་བུ།"
msgctxt ""
"04020000.xhp\n"
"par_id3155417\n"
-"10\n"
"help.text"
msgid "<variable id=\"zeilenganzetext\"><ahelp hid=\"modules/scalc/ui/insertcells/rows\">Inserts an entire row. The position of the row is determined by the selection on the sheet.</ahelp></variable> The number of rows inserted depends on how many rows are selected. The contents of the original rows are moved downward."
msgstr "<variable id=\"zeilenganzetext\"><ahelp hid=\"modules/scalc/ui/insertcells/rows\"> གྲལ་ཐིག་ཧྲིལ་བུ་བཙུགསཔ་ཨིན། གྲལ་ཐིག་གི་གནས་ས་འདི་ཤོག་ཁྲམ་གུ་ལུ་སེལ་འཐུ་གིས་ཐོག་ལས་ གཏན་འབེབས་བཟོ་ཡོདཔ་ཨིན། </ahelp></variable> བཙུགས་ཡོད་པའི་གྲལ་ཐིག་གི་གྱངས་ཁ་འདི་ གྲལ་ཐིག་ཚུ་ག་དེམ་ཅིག་སེལ་འཐུ་འབད་དེ་ཡོདཔ་ཨིན་ན་ལུ་རག་ལེགསཔ་ཨིན། གྲལ་ཐིག་ངོ་མ་ཚུ་གི་ནང་དོན་ཚུ་ མར་ཕྱོགས་ལུ་སྤོ་སྟེ་ཡོདཔ་ཨིན།"
@@ -3216,7 +2972,6 @@ msgstr "<variable id=\"zeilenganzetext\"><ahelp hid=\"modules/scalc/ui/insertcel
msgctxt ""
"04020000.xhp\n"
"hd_id3146971\n"
-"11\n"
"help.text"
msgid "Entire column"
msgstr "ཀེར་ཐིག་ཧྲིལ་བུ།"
@@ -3225,7 +2980,6 @@ msgstr "ཀེར་ཐིག་ཧྲིལ་བུ།"
msgctxt ""
"04020000.xhp\n"
"par_id3155068\n"
-"12\n"
"help.text"
msgid "<variable id=\"spaltenganzetext\"><ahelp hid=\"modules/scalc/ui/insertcells/cols\">Inserts an entire column. The number of columns to be inserted is determined by the selected number of columns.</ahelp></variable> The contents of the original columns are shifted to the right."
msgstr "<variable id=\"spaltenganzetext\"><ahelp hid=\"modules/scalc/ui/insertcells/cols\"> ཀེར་ཐིག་ཧྲིལ་བུ་བཙུགསཔ་ཨིན། བཙུགས་ནི་ཨིན་པའི་ཀེར་ཐིག་ཚུ་གི་གྱངས་ཁ་འདི་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཀེར་ཐིག་ཚུའི་གྱངས་ཁ་ལུ་རག་ལསཔ་ཨིན། </ahelp></variable> ཀེར་ཐིག་ངོ་མ་ཚུའི་ནང་དོན་ཚུ་ གཡས་ལུ་བཤུད་དེ་ཡོད།"
@@ -3239,7 +2993,6 @@ msgid "Insert Rows"
msgstr ""
#: 04030000.xhp
-#, fuzzy
msgctxt ""
"04030000.xhp\n"
"bm_id3150541\n"
@@ -3248,7 +3001,6 @@ msgid "<bookmark_value>spreadsheets; inserting rows</bookmark_value> <bookmark_
msgstr "<bookmark_value> ཤོག་ཁྲམ་ཚུ་ ; གྲལ་ཐིག་ཚུ་བཙུགས་དོ་ </bookmark_value><bookmark_value> གྲལ་ཐིག་ཚུ་ ; བཙུགས་དོ་ </bookmark_value><bookmark_value> བཙུགས་དོ་ ; གྲལ་ཐིག་ཚུ་ </bookmark_value>"
#: 04030000.xhp
-#, fuzzy
msgctxt ""
"04030000.xhp\n"
"hd_id3150541\n"
@@ -3305,7 +3057,6 @@ msgid "Insert Columns"
msgstr ""
#: 04040000.xhp
-#, fuzzy
msgctxt ""
"04040000.xhp\n"
"bm_id3155628\n"
@@ -3314,7 +3065,6 @@ msgid "<bookmark_value>spreadsheets; inserting columns</bookmark_value> <bookma
msgstr "<bookmark_value> ཤོག་ཁྲམ་ཚུ་ ; ཀེར་ཐིག་ཚུ་བཙུགས་དོ་ </bookmark_value><bookmark_value> བཙུགས་དོ་ ; ཀེར་ཐིག་ཚུ་ </bookmark_value><bookmark_value> ཀེར་ཐིག་ཚུ་ ; བཙུགས་དོ་ </bookmark_value>"
#: 04040000.xhp
-#, fuzzy
msgctxt ""
"04040000.xhp\n"
"hd_id3155628\n"
@@ -3382,7 +3132,6 @@ msgstr "<bookmark_value>RSQ རྩིས་ལས་ཚུ།</bookmark_value>"
msgctxt ""
"04050000.xhp\n"
"hd_id3155629\n"
-"1\n"
"help.text"
msgid "Insert Sheet"
msgstr "ཤོག་ཁྲམ་བཙུགས།"
@@ -3391,7 +3140,6 @@ msgstr "ཤོག་ཁྲམ་བཙུགས།"
msgctxt ""
"04050000.xhp\n"
"par_id3147264\n"
-"2\n"
"help.text"
msgid "<variable id=\"tabelleeinfuegentext\"><ahelp hid=\".uno:Insert\">Defines the options to be used to insert a new sheet.</ahelp> You can create a new sheet, or insert an existing sheet from a file.</variable>"
msgstr "<variable id=\"tabelleeinfuegentext\"><ahelp hid=\".uno:Insert\"> ཤོག་ཁྲམ་གསརཔ་གཅིག་བཙུགས་ནིའི་དོན་ལུ་ ལག་ལེན་འཐབ་ཡོད་པའི་གདམ་ཁ་ཚུ་ངེས་འཛིན་འབདཝ་ཨིན། </ahelp> ཁྱོད་ཀྱིས་ ཡིག་སྣོད་ལས་ཤོག་ཁྲམ་གསརཔ་གཅིག་གསར་བསྐྲུན་འབད་ནི་ ཡང་ན་ ཡོད་བཞིན་པའི་ཤོག་ཁྲམ་གཅིག་བཙུགས་ཚུགསཔ་ཨིན། </variable>"
@@ -3400,7 +3148,6 @@ msgstr "<variable id=\"tabelleeinfuegentext\"><ahelp hid=\".uno:Insert\"> ཤོ
msgctxt ""
"04050000.xhp\n"
"hd_id3154684\n"
-"19\n"
"help.text"
msgid "Position"
msgstr "གནས་ས།"
@@ -3409,7 +3156,6 @@ msgstr "གནས་ས།"
msgctxt ""
"04050000.xhp\n"
"par_id3156281\n"
-"20\n"
"help.text"
msgid "Specifies where the new sheet is to be inserted into your document."
msgstr "ཁྱོད་རའི་ཡིག་ཆ་ནང་ལུ་ ཤོག་ཁྲམ་གསརཔ་འདི་ག་ཏེ་བཙུགས་ནི་ཨིན་ན་གསལ་བཀོད་འབདཝ་ཨིན།"
@@ -3418,7 +3164,6 @@ msgstr "ཁྱོད་རའི་ཡིག་ཆ་ནང་ལུ་ ཤོ
msgctxt ""
"04050000.xhp\n"
"hd_id3154123\n"
-"21\n"
"help.text"
msgid "Before current sheet"
msgstr "ད་ལྟོའི་ཤོག་ཁྲམ་གྱི་ཧེ་མ།"
@@ -3427,7 +3172,6 @@ msgstr "ད་ལྟོའི་ཤོག་ཁྲམ་གྱི་ཧེ་མ
msgctxt ""
"04050000.xhp\n"
"par_id3145787\n"
-"22\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/before\">Inserts a new sheet directly before the current sheet.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/before\"> ད་ལྟོའི་ཤོག་ཁྲམ་གྱི་ཧེ་མ་ ཤོག་ཁྲམ་གསརཔ་གཅིག་ཐད་ཀར་དུ་བཙུགསཔ་ཨིན། </ahelp>"
@@ -3436,7 +3180,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/before\"> ད་ལྟོའ
msgctxt ""
"04050000.xhp\n"
"hd_id3155414\n"
-"23\n"
"help.text"
msgid "After current sheet"
msgstr "ད་ལྟོའི་ཤོག་ཁྲམ་གྱི་ཤུལ་མ།"
@@ -3445,7 +3188,6 @@ msgstr "ད་ལྟོའི་ཤོག་ཁྲམ་གྱི་ཤུལ་
msgctxt ""
"04050000.xhp\n"
"par_id3145271\n"
-"24\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/after\">Inserts a new sheet directly after the current sheet.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/after\"> ད་ལྟོའི་ཤོག་ཁྲམ་གྱི་ཤུལ་མ་ ཤོག་ཁྲམ་གསརཔ་གཅིག་ཐད་ཀར་དུ་བཙུགསཔ་ཨིན། </ahelp>"
@@ -3454,7 +3196,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/after\"> ད་ལྟོའི
msgctxt ""
"04050000.xhp\n"
"hd_id3147428\n"
-"25\n"
"help.text"
msgid "Sheet"
msgstr "གསར་བསྐྲུན་འབད།"
@@ -3463,7 +3204,6 @@ msgstr "གསར་བསྐྲུན་འབད།"
msgctxt ""
"04050000.xhp\n"
"par_id3154012\n"
-"26\n"
"help.text"
msgid "Specifies whether a new sheet or an existing sheet is inserted into the document."
msgstr "ཡིག་ཆ་ནང་ན་ ཤོག་ཁྲམ་གསརཔ་གཅིག་ཡང་ན་ ཡོད་བཞིན་པའི་ཤོག་ཁྲམ་གཅིག་ བཙུགས་ནི་ཨིན་ན་མེན་ན་གསལ་བཀོད་འབདཝ་ཨིན།"
@@ -3472,7 +3212,6 @@ msgstr "ཡིག་ཆ་ནང་ན་ ཤོག་ཁྲམ་གསརཔ
msgctxt ""
"04050000.xhp\n"
"hd_id3147350\n"
-"3\n"
"help.text"
msgid "New sheet"
msgstr "གསར་བསྐྲུན་འབད།"
@@ -3481,7 +3220,6 @@ msgstr "གསར་བསྐྲུན་འབད།"
msgctxt ""
"04050000.xhp\n"
"par_id3149262\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/new\">Creates a new sheet. Enter a sheet name in the <emph>Name</emph> field. Allowed characters are letters, numbers, spaces, and the underline character.</ahelp>"
msgstr ""
@@ -3490,7 +3228,6 @@ msgstr ""
msgctxt ""
"04050000.xhp\n"
"hd_id3155418\n"
-"27\n"
"help.text"
msgid "No. of sheets"
msgstr "ཤོག་ཁྲམ་ཚུ་གི་གྱངས་ཁ།"
@@ -3499,7 +3236,6 @@ msgstr "ཤོག་ཁྲམ་ཚུ་གི་གྱངས་ཁ།"
msgctxt ""
"04050000.xhp\n"
"par_id3148457\n"
-"28\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/countnf\">Specifies the number of sheets to be created.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/countnf\"> གསར་བསྐྲུན་འབད་ནི་ཨིན་པའི་ ཤོག་ཁྲམ་ཚུའི་གྱངས་ཁ་གསལ་བཀོད་འབདཝ་ཨིན། </ahelp>"
@@ -3508,17 +3244,14 @@ msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/countnf\"> གསར་བས
msgctxt ""
"04050000.xhp\n"
"hd_id3149379\n"
-"7\n"
"help.text"
msgid "Name"
msgstr "མིང་།"
#: 04050000.xhp
-#, fuzzy
msgctxt ""
"04050000.xhp\n"
"par_id3150718\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/nameed\">Specifies the name of the new sheet.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/countnf\"> གསར་བསྐྲུན་འབད་ནི་ཨིན་པའི་ ཤོག་ཁྲམ་ཚུའི་གྱངས་ཁ་གསལ་བཀོད་འབདཝ་ཨིན། </ahelp>"
@@ -3527,7 +3260,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/countnf\"> གསར་བས
msgctxt ""
"04050000.xhp\n"
"hd_id3155066\n"
-"9\n"
"help.text"
msgid "From File"
msgstr "ཡིག་སྣོད་ལས།"
@@ -3536,7 +3268,6 @@ msgstr "ཡིག་སྣོད་ལས།"
msgctxt ""
"04050000.xhp\n"
"par_id3153714\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/fromfile\">Inserts a sheet from an existing file into the current document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/fromfile\"> ཡོད་བཞིན་པའི་ཡིག་ཆ་ལས་ ད་ལྟོའི་ཡིག་ཆ་ནང་ན་ཤོག་ཁྲམ་གཅིག་བཙུགསཔ་ཨིན། </ahelp>"
@@ -3545,7 +3276,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/fromfile\"> ཡོད་བཞ
msgctxt ""
"04050000.xhp\n"
"hd_id3149020\n"
-"15\n"
"help.text"
msgid "Browse"
msgstr "བརྡ་འཚོལ།"
@@ -3554,7 +3284,6 @@ msgstr "བརྡ་འཚོལ།"
msgctxt ""
"04050000.xhp\n"
"par_id3159267\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/browse\">Opens a dialog for selecting a file.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/browse\"> ཡིག་སྣོད་གཅིག་སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ ཌའི་ལོག་གཅིག་ཁ་ཕྱེཝ་ཨིན། </ahelp>"
@@ -3563,7 +3292,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/browse\"> ཡིག་སྣ
msgctxt ""
"04050000.xhp\n"
"hd_id3149255\n"
-"29\n"
"help.text"
msgid "Available Sheets"
msgstr "འཐོབ་ཚུགས་པའི་ལེབ་གྲངས་ཚུ།"
@@ -3572,7 +3300,6 @@ msgstr "འཐོབ་ཚུགས་པའི་ལེབ་གྲངས་ཚ
msgctxt ""
"04050000.xhp\n"
"par_id3155336\n"
-"30\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/tables\">If you selected a file by using the <emph>Browse</emph> button, the sheets contained in it are displayed in the list box. The file path is displayed below this box. Select the sheet to be inserted from the list box.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/tables\"> ཁྱོད་ཀྱིས་ <emph> བརྡ་འཚོལ་ </emph> ཨེབ་རྟ་ལག་ལེན་ཐོག་ལས་ཡིག་སྣོད་གཅིག་སེལ་འཐུ་གྲུབ་པ་ཅིན་ དེ་ནང་ལུ་ཤོམ་ཏེ་ཡོད་པའི་ཤོག་ཁྲམ་ཚུ་ ཐོ་བཀོད་སྒྲོམ་ནང་ལུ་བཀྲམ་སྟོན་འབད་ཡོདཔ་ཨིན། ཡིག་སྣོད་འགྲུལ་ལམ་འདི་ འ་ནི་སྒྲོམ་གྱི་འོག་ལུ་བཀྲམ་སྟོན་འབད་དེ་ཡོདཔ་ཨིན། ཐོ་བཀོད་སྒྲོམ་ནང་ལས་ བཙུགས་ནི་ཨིན་པའི་ཤོག་ཁྲམ་ སེལ་འཐུ་འབད། </ahelp>"
@@ -3581,7 +3308,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/tables\"> ཁྱོད་ཀ
msgctxt ""
"04050000.xhp\n"
"hd_id3145791\n"
-"17\n"
"help.text"
msgid "Link"
msgstr "འབྲེལ་མཐུད།"
@@ -3590,7 +3316,6 @@ msgstr "འབྲེལ་མཐུད།"
msgctxt ""
"04050000.xhp\n"
"par_id3152580\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/link\">Select to insert the sheet as a link instead as a copy. The links can be updated to show the current contents.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/link\"> ཤོག་ཁྲམ་འདི་འདྲ་བཤུས་ཀྱི་ཚབ་མ་འབྲེལ་ལམ་སྦེ་བཙུགས་ནིའི་དོན་ལུ་ སེལ་འཐུ་འབད། ད་ལྟོའི་ནང་དོན་ཚུ་སྟོན་ནིའི་དོན་ལུ་ འབྲེལ་ལམ་ཚུ་ དུས་མཐུན་བཟོ་ཚུགསཔ་ཨིན། </ahelp>"
@@ -3616,8 +3341,8 @@ msgctxt ""
"04050100.xhp\n"
"par_idN105D1\n"
"help.text"
-msgid "<ahelp hid=\"26275\">Inserts a sheet from a different spreadsheet file.</ahelp>"
-msgstr "<ahelp hid=\"26275\"> ཤོག་ཁྲམ་ཡིག་སྣོད་སོ་སོ་གཅིག་ལས་ ལེབ་གྲངས་གཅིག་བཙུགསཔ་ཨིན།</ahelp>"
+msgid "<ahelp hid=\".\">Inserts a sheet from a different spreadsheet file.</ahelp>"
+msgstr ""
#: 04050100.xhp
msgctxt ""
@@ -3655,7 +3380,6 @@ msgstr "<bookmark_value> ལས་འགན་ཚུ་བཙུགས་དོ
msgctxt ""
"04060000.xhp\n"
"hd_id3147426\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\"> ལས་འགན་ཝི་ཛརཌི་ </link>"
@@ -3664,10 +3388,9 @@ msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">
msgctxt ""
"04060000.xhp\n"
"par_id3145271\n"
-"2\n"
"help.text"
-msgid "<variable id=\"funktionsautopilottext\"><ahelp hid=\".uno:FunctionDialog\">Opens the <emph>Function Wizard</emph>, which helps you to interactively create formulas.</ahelp></variable> Before you start the Wizard, select a cell or a range of cells from the current sheet, in order to determine the position at which the formula will be inserted."
-msgstr "<variable id=\"funktionsautopilottext\"><ahelp hid=\".uno:FunctionDialog\"> ཁྱོད་ལུ་ མན་ངག་ཚུ་ཕན་ཚུན་འབྲེལ་ལྡན་སྦེ་གསར་བསྐྲུན་འབད་ནིའི་དོན་ལུ་ གྲོགས་རམ་འབད་ནིའི་ <emph>ལས་འགན་ཝི་ཛརཌི་</emph> ཁ་ཕྱེཝ་ཨིན། </ahelp></variable> མན་ངག་བཙུགས་ནི་ཨིན་པའི་གནས་ས་གཏན་འབེབས་བཟོ་ནིའི་དོན་ལུ་ ཁྱོད་ཀྱིས་ ཝི་ཛརཌི་འདི་འགོ་མ་བཙུགས་པའི་ཧེ་མ་ ད་ལྟོའི་ཤོག་ཁྲམ་ལས་ནང་ཐིག་ཡང་ན་ ནང་ཐིག་ཚུའི་ཁྱབ་ཚད་སེལ་འཐུ་འབད།"
+msgid "<variable id=\"funktionsautopilottext\"><ahelp hid=\".\">Opens the <emph>Function Wizard</emph>, which helps you to interactively create formulas.</ahelp></variable> Before you start the Wizard, select a cell or a range of cells from the current sheet, in order to determine the position at which the formula will be inserted."
+msgstr ""
#: 04060000.xhp
msgctxt ""
@@ -3681,7 +3404,6 @@ msgstr ""
msgctxt ""
"04060000.xhp\n"
"par_id3159153\n"
-"60\n"
"help.text"
msgid "The <emph>Function Wizard</emph> has two tabs: <emph>Functions</emph> is used to create formulas, and <emph>Structure</emph> is used to check the formula build."
msgstr "ཝི་ཛརཌི་ལས་འགན་འདི་ལུ་ <emph> མཆོང་ལྡེ་གཉིས་ </emph> ཡོད་: <emph> ལས་འགན་ཚུ་ </emph> མན་ངག་ཚུ་གསར་བསྐྲུན་འབད་ནི་ནང་ལག་ལེན་འཐབ་ཡོདཔ་དང་ <emph> གཞི་བཀོད་ </emph> འདི་མན་ངག་གཟུགས་ཞིབ་དཔྱད་འབད་ནི་ནང་ལུ་ལག་ལེན་འཐབ་སྟེ་ཡོདཔ་ཨིན།"
@@ -3690,7 +3412,6 @@ msgstr "ཝི་ཛརཌི་ལས་འགན་འདི་ལུ་ <emph
msgctxt ""
"04060000.xhp\n"
"hd_id3154490\n"
-"3\n"
"help.text"
msgid "Functions Tab"
msgstr "ལས་འགན་ཚུའི་མཆོང་ལྡེ།"
@@ -3698,17 +3419,23 @@ msgstr "ལས་འགན་ཚུའི་མཆོང་ལྡེ།"
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
-"par_id3149378\n"
-"5\n"
+"hd_id3154731\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
-msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\"> དབྱེ་རིམ་དང་ལས་འགན་ཚུའི་ཐོ་བཀོད་ </link>"
+msgid "Search"
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3155440\n"
+"help.text"
+msgid "<ahelp hid=\"formula/ui/functionpage/search\">Search for a part of the function name.</ahelp>"
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3154730\n"
-"36\n"
"help.text"
msgid "Category"
msgstr "དབྱེ་རིམ།"
@@ -3717,16 +3444,22 @@ msgstr "དབྱེ་རིམ།"
msgctxt ""
"04060000.xhp\n"
"par_id3153417\n"
-"37\n"
"help.text"
-msgid "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below.</ahelp> Select \"All\" to view all functions in alphabetical order, irrespective of category. \"Last Used\" lists the functions you have most recently used. </variable>"
-msgstr "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\"> འགན་སྤྲོད་དེ་ཡོད་མི་ལས་འགན་སོ་སོ་ཚུའི་དབྱེ་རིམ་ཚུ་ཆ་མཉམ་རང་ཐོ་བཀོད་འབདཝ་ཨིན། འོག་གི་ས་སྒོ་ཐོ་ཡིག་ནང་ལུ་འོས་ལྡན་ལས་འགན་ཚུ་བལྟ་ནིའི་དོན་ལུ་དབྱེ་རིམ་སེལ་འཐུ་འབད། དབྱེ་རིམ་མ་བརྩིས་པར་་</ahelp> ལས་འགན་ཚུ་ཆ་མཉམ་རང་ཀ་ཁའི་གོ་རིམ་ནང་བལྟ་ནིའི་དོན་ལས \"All\" སེལ་འཐུ་འབད། \"Last Used\" ཁྱོད་ཀྱིས་འཕྲལ་ཁམ་ཅིག་ཁར་ ལག་ལེན་འཐབ་ཡོད་མི་ལས་འགན་ཚུ་ཐོ་བཀོད་འབད། </variable>"
+msgid "<variable id=\"kategorienliste\"><ahelp hid=\"formula/ui/functionpage/category\">Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below.</ahelp> Select \"All\" to view all functions in alphabetical order, irrespective of category. \"Last Used\" lists the functions you have most recently used. </variable>"
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3149378\n"
+"help.text"
+msgid "You can browse the full <link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3150749\n"
-"6\n"
"help.text"
msgid "Function"
msgstr "ལས་འགན།"
@@ -3735,16 +3468,14 @@ msgstr "ལས་འགན།"
msgctxt ""
"04060000.xhp\n"
"par_id3155445\n"
-"7\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_FUNCTION\">Displays the functions found under the selected category. Double-click to select a function.</ahelp> A single-click displays a short function description."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_FUNCTION\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་དབྱེ་རིམ་འོག་ལུ་ཐོབ་ཡོད་པའི་ལས་འགན་ཚུ་བཀྲམ་སྟོན་འབདཝ་ཨིན། ལས་འགན་སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ལོག་བལྟབ་ཨེབ་གཏང་། </ahelp> ཨེབ་གཏང་རྐྱང་པ་གིས་ ལས་འགན་འགྲེལ་བཤད་ཐུང་ཀུ་ཅིག་བཀྲམ་སྟོན་འབདཝ་ཨིན།"
+msgid "<ahelp hid=\"formula/ui/functionpage/function\">Displays the functions found under the selected category. Double-click to select a function.</ahelp> A single-click displays a short function description."
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3159264\n"
-"8\n"
"help.text"
msgid "Array"
msgstr "ཨེ་རེ།"
@@ -3753,16 +3484,14 @@ msgstr "ཨེ་རེ།"
msgctxt ""
"04060000.xhp\n"
"par_id3149566\n"
-"9\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FORMULA:BTN_MATRIX\">Specifies that the selected function is inserted into the selected cell range as an array formula. </ahelp> Array formulas operate on multiple cells. Each cell in the array contains the formula, not as a copy but as a common formula shared by all matrix cells."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FORMULA:BTN_MATRIX\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ལས་འགན་འདི་སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཁྱབ་ཚད་ནང་ན་ ཨེ་རེ་མན་ངག་སྦེ་བཙུགས་ཡོདཔ་སྦེ་གསལ་བཀོད་འབདཝ་ཨིན། </ahelp> ཨེ་རེ་མན་ངག་ཚུ་གིས་ ནང་ཐིག་སྣ་མང་ཚུ་གུ་བཀོལ་སྤྱོད་འབད་ནི་ཨིན། ཨེ་རེ་ནང་ལུ་ནང་ཐིག་རེ་རེ་གི་ནང་ན་འདྲ་བཤུས་སྦེ་མེན་པར་ མེ་ཊིགསི་ནང་ཐིག་ཚུ་ཆ་མཉམ་གྱི་རུབ་སྤྱོད་འབད་ཡོད་པའི་མན་ངག་ཤོམ་ཏེ་ཡོད།"
+msgid "<ahelp hid=\"formula/ui/formuladialog/array\">Specifies that the selected function is inserted into the selected cell range as an array formula. </ahelp> Array formulas operate on multiple cells. Each cell in the array contains the formula, not as a copy but as a common formula shared by all matrix cells."
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"par_id3155959\n"
-"61\n"
"help.text"
msgid "The <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter command, which is used to enter and confirm formulas in the sheet. The formula is inserted as a matrix formula indicated by two braces { }."
msgstr "གདམ་ཁ་འདི་ <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\"> བརྡ་བཀོད་ </caseinline><defaultinline> ཚད་འཛིན་ </defaultinline></switchinline>+ སོར་ལྡེ་ +བརྡ་བཀོད་བཙུགས་ ཤོག་ཁྲམ་ནང་ལུ་མན་ངག་ཚུ་ངེས་དཔྱད་འབད་ནི་དང་བཙུགས་ནི་ལུ་ལག་ལེན་འཐབ་ཡོད་མི་ལུ་དབྱེར་མེདཔ་ཨིན་ : མན་ངག་འདི་གུག་ཤད་གཉིས་ཀྱིས་བརྡ་མཚོན་ཏེ་ཡོད་པའི་མེ་ཊིགསི་མན་ངག་བཟེམ་སྦེ་བཙུགས་ཏེ་ཡོདཔ་ཨིན། { }."
@@ -3771,7 +3500,6 @@ msgstr "གདམ་ཁ་འདི་ <emph>Array</emph> option is identical to
msgctxt ""
"04060000.xhp\n"
"par_id3152993\n"
-"40\n"
"help.text"
msgid "The maximum size of an array range is 128 by 128 cells."
msgstr "ཨེ་རེ་ཁྱབ་ཚད་ཀྱི་ ཚད་མང་མཐའ་འདི་ ༡༢༨ ཀྱི་༡༢༨ ནང་ཐིག་ཚུ་ཨིན།"
@@ -3780,7 +3508,6 @@ msgstr "ཨེ་རེ་ཁྱབ་ཚད་ཀྱི་ ཚད་མང་
msgctxt ""
"04060000.xhp\n"
"hd_id3150367\n"
-"41\n"
"help.text"
msgid "Argument Input Fields"
msgstr "སྒྲུབ་རྟགས་ཚུ་ཨིན་པུཊི་ས་སྒོ།"
@@ -3789,7 +3516,6 @@ msgstr "སྒྲུབ་རྟགས་ཚུ་ཨིན་པུཊི་ས
msgctxt ""
"04060000.xhp\n"
"par_id3145587\n"
-"15\n"
"help.text"
msgid "When you double-click a function, the argument input field(s) appear on the right side of the dialog. To select a cell reference as an argument, click directly into the cell, or drag across the required range on the sheet while holding down the mouse button. You can also enter numerical and other values or references directly into the corresponding fields in the dialog. When using <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\">date entries</link>, make sure you use the correct format. Click OK to insert the result into the spreadsheet."
msgstr "ཁྱོད་ཀྱིས་ལས་འགན་གཅིག་ལོག་བལྟབ་ཨེབ་གཏངམ་ད་ སྒྲུབ་རྟགས་ཨིན་པུཊི་ས་སྒོ་ཚུ་ཌའི་ལོག་གི་གཡས་ཕྱོགས་ལུ་བྱུངམ་ཨིན། ནང་ཐིག་གཞི་བསྟུན་འདི་སྒྲུབ་རྟགས་བཟུམ་སྦེ་སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ ནང་ཐིག་ནང་ལུ་ཐད་ཀར་དུ་ཨེབ་གཏང་ཡང་ན་ མཱའུསི་ཨེབ་རྟ་མར་འཆང་བའི་སྐབས་ལུ་ དགོས་མཁོ་བའི་ཁྱབ་ཚད་ ཤོག་ཁྲམ་ནང་འདྲུད། ཁྱོད་ཀྱིས་ཨང་གྲངས་དང་གནས་གོང་ཚུ་ཡང་ན་གཞི་བསྟུན་ཚུ་ཡང་ ཌའི་ལོག་ནང་གི་མཉམ་པའི་ས་སྒོ་ཚུ་ནང་ལུ་ཐད་ཀར་དུ་བཙུགས་ཚུགསཔ་ཨིན། <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\"> གནས་སྡུད་ཐོ་བཀོད་ཚུ་ </link> ལག་ལེན་འཐབ་པའི་སྐབས་ལུ་ ཁྱོད་ཀྱིས་རྩ་སྒྲིག་ངེས་བདེན་ལག་ལེན་འཐབ་ཡོདཔ་ངེས་ཏིག་བཟོ། གྲུབ་འབྲས་འདི་ཤོག་ཁྲམ་ནང་ན་བཙུགས་ནིའི་དོན་ལུ་ བཏུབ་ ཨེབ་གཏང་།"
@@ -3798,7 +3524,6 @@ msgstr "ཁྱོད་ཀྱིས་ལས་འགན་གཅིག་ལོ
msgctxt ""
"04060000.xhp\n"
"hd_id3149408\n"
-"18\n"
"help.text"
msgid "Function Result"
msgstr "ལས་འགན་གྲུབ་འབྲས།"
@@ -3807,7 +3532,6 @@ msgstr "ལས་འགན་གྲུབ་འབྲས།"
msgctxt ""
"04060000.xhp\n"
"par_id3155809\n"
-"19\n"
"help.text"
msgid "As soon you enter arguments in the function, the result is calculated. This preview informs you if the calculation can be carried out with the arguments given. If the arguments result in an error, the corresponding <link href=\"text/scalc/05/02140000.xhp\" name=\"error code\">error code</link> is displayed."
msgstr "ཁྱོད་ཀྱིས་ལས་འགན་ནང་ལུ་སྒྲུབ་རྟགས་ཚུ་བཙུགས་ཚརཝ་ཅིག་ གྲུབ་འབྲས་འདི་རྩིས་སྟོན་ཡོདཔ་ཨིན། འ་ནི་སྔོན་བལྟ་འདི་གིས་ཁྱོད་ལུ་ རྩིས་སྟོན་འདི་གྲ་སྒྲིག་འབད་ཡོད་པའི་སྒྲུབ་རྟགས་ཚུ་དང་བཅསཔ་སྦེ་འབད་ཚུགས་མི་ཚུགས་བརྡ་སླབ་འབདཝ་ཨིན། སྒྲུབ་རྟགས་ཚུའི་གྲུབ་འབྲས་འདི་འཛོལ་བ་ཨིན་པ་ཅིན་ མཉམ་པའི་ <link href=\"text/scalc/05/02140000.xhp\" name=\"error code\"> ཨང་རྟགས་འཛོལ་བ་ </link> འདི་བཀྲམ་སྟོན་འབད་ཡོདཔ་ཨིན།"
@@ -3816,7 +3540,6 @@ msgstr "ཁྱོད་ཀྱིས་ལས་འགན་ནང་ལུ་ས
msgctxt ""
"04060000.xhp\n"
"par_id3148700\n"
-"23\n"
"help.text"
msgid "The required arguments are indicated by names in bold print."
msgstr ""
@@ -3825,7 +3548,6 @@ msgstr ""
msgctxt ""
"04060000.xhp\n"
"hd_id3153064\n"
-"22\n"
"help.text"
msgid "f(x) (depending on the selected function)"
msgstr "ཨེཕ(ཨེགསི) སེལའཐུ་གྲུབ་ཡོད་པའི་ལས་འགན་ལུ་གཞན་རྟེན།)"
@@ -3834,16 +3556,14 @@ msgstr "ཨེཕ(ཨེགསི) སེལའཐུ་གྲུབ་ཡོད
msgctxt ""
"04060000.xhp\n"
"par_id3157980\n"
-"24\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_FAP_BTN_FX4\">Allows you to access a subordinate level of the <emph>Function Wizard</emph> in order to nest another function within the function, instead of a value or reference.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_FAP_BTN_FX4\"> ལས་འགན་ནང་འཁོད་ནང་ལུ་ གནས་གོང་ཡང་ན་ གཞི་བསྟུན་གྱི་ཚབ་མ་ལུ་ ཅིག་ཁར་འདུ་ཡོད་པའི་ལས་འགན་བཙུགས་ནི་ལུ་ <emph> ལས་འགན་ཝི་ཛརཌི་ </emph> གི་ཚད་འོག་མམ་འཛུལ་སྤྱོད་འབད་བཅུགཔ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\".\">Allows you to access a subordinate level of the <emph>Function Wizard</emph> in order to nest another function within the function, instead of a value or reference.</ahelp>"
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3145076\n"
-"25\n"
"help.text"
msgid "Argument/Parameter/Cell Reference (depending on the selected function)"
msgstr "སྒྲུབ་རྟགས་ / ཚད་བཟུང་ / ནང་ཐིག་གཞི་བསྟུན་ (སེལ་འཐུ་གྲུབ་ཡོད་པའི་ལས་འགན་ལུ་གཞན་རྟེན།)"
@@ -3852,16 +3572,14 @@ msgstr "སྒྲུབ་རྟགས་ / ཚད་བཟུང་ / ནང་
msgctxt ""
"04060000.xhp\n"
"par_id3159097\n"
-"26\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">The number of visible text fields depends on the function. Enter arguments either directly into the argument fields or by clicking a cell in the table.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">མཐོང་ཚུགས་པའི་ཚིག་ཡིག་ས་སྒོ་ཚུའི་གྱངས་ཁ་འདི་ལས་འགན་ལུ་རྟེནམ་ཨིན། སྒྲུབ་རྟགས་ཚུ་ ཐད་ཀར་དུ་སྒྲུབ་རྟགས་ས་སྒོ་ཚུ་ནང་ན་བཙུགས་ད་ཡང་ན་ ཐིག་ཁྲམ་ནང་ལུ་ནང་ཐིག་གཅིག་ཨེབ་གཏང་། </ahelp>"
+msgid "The number of visible text fields depends on the function. Enter arguments either directly into the argument fields or by clicking a cell in the table."
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3154957\n"
-"51\n"
"help.text"
msgid "Result"
msgstr "གྲུབ་འབྲས།"
@@ -3870,16 +3588,14 @@ msgstr "གྲུབ་འབྲས།"
msgctxt ""
"04060000.xhp\n"
"par_id3150211\n"
-"52\n"
"help.text"
-msgid "Displays the calculation result or an error message."
-msgstr "རྩིས་སྟོན་གྲུབ་འབྲས་ཡང་ན་ འཕྲིན་དོན་འཛོལ་བ་གཅིག་བཀྲམ་སྟོན་འབདཝ་ཨིན།"
+msgid "<ahelp hid=\"formula/ui/formuladialog/formula_result\">Displays the calculation result or an error message.</ahelp>"
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3151304\n"
-"43\n"
"help.text"
msgid "Formula"
msgstr "མན་ངག"
@@ -3888,16 +3604,14 @@ msgstr "མན་ངག"
msgctxt ""
"04060000.xhp\n"
"par_id3149898\n"
-"44\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_FAP_FORMULA\">Displays the created formula. Type your entries directly, or create the formula using the wizard.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_FAP_FORMULA\"> གསར་བསྐྲུན་འབད་ཡོད་པའི་མན་ངག་བཀྲམ་སྟོན་འབདཝ་ཨིན། ཁྱོད་རའི་ཐོ་བཀོད་ཚུ་ཐད་ཀར་དུ་ཡིག་དཔར་རྐྱབ་ད་ཡང་ན་ ཝི་ཛརཌི་གི་ཕན་གྲོགས་དང་བཅསཔ་སྦེ་མན་ངག་གསར་བསྐྲུན་འབད། </ahelp>"
+msgid "<ahelp hid=\"formula/ui/formuladialog/ed_formula\">Displays the created formula. Type your entries directly, or create the formula using the wizard.</ahelp>"
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3153249\n"
-"45\n"
"help.text"
msgid "Back"
msgstr "རྒྱབ།"
@@ -3906,16 +3620,14 @@ msgstr "རྒྱབ།"
msgctxt ""
"04060000.xhp\n"
"par_id3152869\n"
-"53\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">Moves the focus back through the formula components, marking them as it does so.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\"> མན་ངག་ཆ་ཤས་ཚུ་རྒྱུད་དེ་འདི་གིས་འབད་དོ་བཟུམ་སྦེ་རང་ ཆེད་དམིགས་འདི་རྒྱབ་ཁར་སྤོཝ་ཨིན།</ahelp>"
+msgid "<ahelp hid=\"formula/ui/formuladialog/back\">Moves the focus back through the formula components, marking them as it does so.</ahelp>"
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"par_id3146966\n"
-"56\n"
"help.text"
msgid "To select a single function from a complex formula consisting of several functions, double-click the function in the formula window."
msgstr "ལས་འགན་ལེ་ཤ་དང་ལྡན་པའི་གོ་དཀའ་བའི་མན་ངག་ལས་ ལས་འགན་རྐྱང་པ་གཅིག་སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ མན་ངག་སྒོ་སྒྲིག་ནང་གི་ལས་འགན་ལུ་ལོག་བལྟབ་ཨེབ་གཏང་།"
@@ -3924,7 +3636,6 @@ msgstr "ལས་འགན་ལེ་ཤ་དང་ལྡན་པའི་ག
msgctxt ""
"04060000.xhp\n"
"hd_id3155762\n"
-"54\n"
"help.text"
msgid "Next"
msgstr "ཤུལ་མམ།"
@@ -3933,16 +3644,14 @@ msgstr "ཤུལ་མམ།"
msgctxt ""
"04060000.xhp\n"
"par_id3149316\n"
-"55\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">Moves forward through the formula components in the formula window.</ahelp> This button can also be used to assign functions to the formula. If you select a function and click the <emph>Next </emph>button, the selection appears in the formula window."
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\"> མན་ངག་སྒོ་སྒྲིག་ནང་ལུ་ མན་ངག་ཆ་ཤས་ཚུ་རྒྱུད་དེ་གདོང་བསྐྱོད་སྤོཝ་ཨིན། </ahelp> འ་ནི་ཨེབ་རྟ་འདི་མན་ངག་ལུ་ལས་འགན་ འགན་སྤྲོད་ནིའི་དོན་ལུ་ཡང་ལག་ལེན་འཐབ་བཏུབ་ཨིན། ཁྱོད་ཀྱིས་ལས་འགན་གཅིིག་སེལ་འཐུ་འབད་བཞིནམ་ལས་ <emph> ཤུལ་མམ་གྱི་ </emph> ཨེབ་རྟ་འདི་ཨེབ་གཏང་པ་ཅིན་ མན་ངག་སྒོ་སྒྲིག་ནང་ལུ་སེལ་འཐུ་བྱུངམ་ཨིན།"
+msgid "<ahelp hid=\"formula/ui/formuladialog/next\">Moves forward through the formula components in the formula window.</ahelp> This button can also be used to assign functions to the formula. If you select a function and click the <emph>Next </emph>button, the selection appears in the formula window."
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"par_id3159262\n"
-"57\n"
"help.text"
msgid "Double-click a function in the selection window to transfer it to the formula window."
msgstr "འདི་མན་ངག་སྒོ་སྒྲིག་ནང་ལུ་གནས་སོར་འབད་ནིའི་དོན་ལུ་ སེལ་འཐུ་སྒོ་སྒྲིག་ནང་ལས་འགན་གཅིག་ལོག་བལྟབ་ཨེབ་གཏང་།"
@@ -3950,53 +3659,39 @@ msgstr "འདི་མན་ངག་སྒོ་སྒྲིག་ནང་ལ
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
-"hd_id3148745\n"
-"58\n"
-"help.text"
-msgid "Cancel"
-msgstr "ཆ་མེད་གཏང་།"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3147402\n"
-"59\n"
+"hd_id3150534\n"
"help.text"
-msgid "Closes the dialog without implementing the formula."
-msgstr "ཌའི་ལོག་འདི་མན་ངག་བསྟར་སྤྱོད་འབད་དེ་མེདཔ་སྦེ་ཁ་བསྡམས་ཨིན།"
+msgid "OK"
+msgstr "བཏུབ།"
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
-"hd_id3150534\n"
-"32\n"
+"par_id3153029\n"
"help.text"
-msgid "OK"
-msgstr "བཏུབ།"
+msgid "<ahelp hid=\"formula/ui/formuladialog/ok\">Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells.</ahelp>"
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
-"par_id3153029\n"
-"33\n"
+"hd_id3148745\n"
"help.text"
-msgid "Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells."
-msgstr "Ends <emph> ལས་འགན་ཝི་ཛརཌི་ </emph> རྫོགསཔ་ཨིནམ་དང་ མན་ངག་འདི་སེལ་འཐུ་འབད་ཡོད་པའི་ནང་ཐིག་ཡང་ན་ནང་ཐིག་ཚུ་ནང་ལུ་ གནས་སོར་འབདཝ་ཨིན།"
+msgid "Cancel"
+msgstr "ཆ་མེད་གཏང་།"
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
-"par_id3156400\n"
-"34\n"
+"par_id3147402\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
-msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\"> དབྱེ་རིམ་དང་ལས་འགན་ཚུའི་ཐོ་བཀོད་ </link>"
+msgid "<ahelp hid=\"formula/ui/formuladialog/cancel\">Closes the dialog without implementing the formula.</ahelp>"
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3147610\n"
-"47\n"
"help.text"
msgid "Structure tab"
msgstr "གཞི་བཀོད་མཆོང་ལྡེ།"
@@ -4005,7 +3700,6 @@ msgstr "གཞི་བཀོད་མཆོང་ལྡེ།"
msgctxt ""
"04060000.xhp\n"
"par_id3153122\n"
-"48\n"
"help.text"
msgid "On this page, you can view the structure of the function."
msgstr "འ་ནི་ཤོག་ལེབ་ནང་ལུ་ ཁྱོད་ཀྱིས་ལས་འགན་གྱི་གཞི་བཀོད་བལྟ་ཚུགསཔ་ཨིན།"
@@ -4014,7 +3708,6 @@ msgstr "འ་ནི་ཤོག་ལེབ་ནང་ལུ་ ཁྱོད
msgctxt ""
"04060000.xhp\n"
"par_id3149350\n"
-"4\n"
"help.text"
msgid "If you start the <emph>Function Wizard</emph> while the cell cursor is positioned in a cell that already contains a function, the <emph>Structure</emph> tab is opened and shows the composition of the current formula."
msgstr "ཁྱོད་ཀྱིས་ <emph> ནང་ཐིག་འོད་རྟགས་འདི་ ཧེ་མ་ལས་རང་ལས་འགན་ཤོམ་ཏེ་ཡོད་པའི་ནང་ཐིག་གཅིག་ནང་གནས་ས་བཟོ་ཡོད་པའི་སྐབས་ལུ་ </emph> ལས་འགན་ཝི་ཛརཌི་འགོ་བཙུགས་པ་ཅིན་ <emph> གཞི་བཀོད་ </emph> མཆོང་ལྡེ་འདི་ཁ་ཕྱེ་སྟེ་ད་ལྟོའི་མན་ངག་གི་སྣ་སྡུད་སྟོནམ་ཨིན།"
@@ -4023,7 +3716,6 @@ msgstr "ཁྱོད་ཀྱིས་ <emph> ནང་ཐིག་འོད་
msgctxt ""
"04060000.xhp\n"
"hd_id3149014\n"
-"49\n"
"help.text"
msgid "Structure"
msgstr "གཞི་བཀོད།"
@@ -4032,16 +3724,14 @@ msgstr "གཞི་བཀོད།"
msgctxt ""
"04060000.xhp\n"
"par_id3150481\n"
-"50\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_FAP_STRUCT\">Displays a hierarchical representation of the current function.</ahelp> You can hide or show the arguments by a click on the plus or minus sign in front."
-msgstr "<ahelp hid=\"HID_SC_FAP_STRUCT\"> ད་ལྟོའི་ལས་འགན་གྱི་ལྡེ་རིམ་ཁྱད་ཚད་བཀྲམ་སྟོན་འབདཝ་ཨིན། </ahelp> གདོང་ཁར་ལུ་བསྡོམས་རྟགས་ཡང་ན་ཕབ་རྟགས་ཚར་གཅིག་ཨེབ་གཏང་གི་ཐོག་ལས་ ཁྱོད་ཀྱིས་སྒྲུབ་རྟགས་འདི་སྦ་ཡང་ན་སྟོན་ཚུགསཔ་ཨིན།"
+msgid "<ahelp hid=\"formula/ui/structpage/struct\">Displays a hierarchical representation of the current function.</ahelp> You can hide or show the arguments by a click on the plus or minus sign in front."
+msgstr ""
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"par_id3148886\n"
-"63\n"
"help.text"
msgid "Blue dots denote correctly entered arguments. Red dots indicate incorrect data types. For example: if the SUM function has one argument entered as text, this is highlighted in red as SUM only permits number entries."
msgstr "ཚག་སྔོན་ཚུ་གིས་ངེས་བདེན་སྦེ་བཙུགས་ཡོད་པའི་སྒྲུབ་རྟགས་ཚུ་མཚོན་རྟགས་སྟོནམ་ཨིན། ཚག་དམརཔོ་ཚུ་གིས་ བདེན་མེད་གནད་སྡུད་དབྱེ་བ་ཚུ་བརྡ་སྟོནམ་ཨིན། དཔེ་འབད་བ་ཅིན་ དངུལ་བསྡོམས་ལས་འགན་ལུ་སྒྲུབ་རྟགས་གཅིག་ཚིག་ཡིག་སྦེ་བཙུགས་ཏེ་ཡོད་པ་ཅིན་ དངུལ་བསྡོམས་ཀྱིས་ཨང་གྲངས་ཐོ་བཀོད་ཚུ་རྐྱངམ་ཅིག་ཆོགཔ་ལས་འ་ནི་འདི་དམརཔོ་ནང་གཙོ་དམིགས་འབད་དེ་ཡོདཔ་ཨིན།"
@@ -4066,7 +3756,6 @@ msgstr "<bookmark_value>ལས་འགན་ཚུ་;དབྱེ་རིམ
msgctxt ""
"04060100.xhp\n"
"hd_id3154944\n"
-"16\n"
"help.text"
msgid "<variable id=\"drking\"><link href=\"text/scalc/01/04060100.xhp\" name=\"Functions by Category\">Functions by Category</link></variable>"
msgstr ""
@@ -4075,7 +3764,6 @@ msgstr ""
msgctxt ""
"04060100.xhp\n"
"par_id3149378\n"
-"2\n"
"help.text"
msgid "This section describes the functions of $[officename] Calc. The various functions are divided into categories in the Function Wizard."
msgstr "དབྱེ་ཚན་དེ་ཚུ་གིས་ $[officename] སི་ཨེལ་ཨེལ་སི་གི་ལས་འགན་ཚུ་འགྲེལ་བཤད་བརྐྱབ་ཨིན། འདྲ་མིན་སྣ་ཚོགས་ཀྱི་ལས་འགན་ཚུ་ ལས་འགན་ཝི་ཛརཌི་ནང་དབྱེ་རིམ་སྦེ་བགོ་བཏུབ་ཨིན།"
@@ -4084,7 +3772,6 @@ msgstr "དབྱེ་ཚན་དེ་ཚུ་གིས་ $[officename]
msgctxt ""
"04060100.xhp\n"
"hd_id3146972\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\">Database</link>"
msgstr "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\"> གནད་སྡུད་གཞི་རྟེན་ </link>"
@@ -4093,7 +3780,6 @@ msgstr "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\"> གནད
msgctxt ""
"04060100.xhp\n"
"hd_id3155443\n"
-"4\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\">Date & Time</link>"
msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\"> ཚེས་ དུས་ཚོད་ </link>(&T)"
@@ -4102,7 +3788,6 @@ msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\"> ཚེ
msgctxt ""
"04060100.xhp\n"
"hd_id3147339\n"
-"5\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\">Financial</link>"
msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\"> དངུལ་འབྲེལ་ </link>"
@@ -4111,7 +3796,6 @@ msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\"> དངུ
msgctxt ""
"04060100.xhp\n"
"hd_id3153963\n"
-"6\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\">Information</link>"
msgstr "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\"> བརྡ་དོན་ </link>"
@@ -4120,7 +3804,6 @@ msgstr "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\"> བར
msgctxt ""
"04060100.xhp\n"
"hd_id3146316\n"
-"7\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\">Logical</link>"
msgstr "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\"> གཏན་ཚིག་ཅན་ </link>"
@@ -4129,7 +3812,6 @@ msgstr "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\"> གཏན་
msgctxt ""
"04060100.xhp\n"
"hd_id3148485\n"
-"8\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\">Mathematical</link>"
msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\"> ཨང་རྩིས་ </link>"
@@ -4138,7 +3820,6 @@ msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\"> ཨང
msgctxt ""
"04060100.xhp\n"
"hd_id3150363\n"
-"9\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\">Array</link>"
msgstr "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\"> ཨེ་རེ་ </link>"
@@ -4147,7 +3828,6 @@ msgstr "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\"> ཨེ་ར
msgctxt ""
"04060100.xhp\n"
"hd_id3150208\n"
-"10\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\">Statistical</link>"
msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\"> གྲངས་ཀྱི་ </link>"
@@ -4156,7 +3836,6 @@ msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\"> གྲ
msgctxt ""
"04060100.xhp\n"
"hd_id3166428\n"
-"11\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\">Spreadsheet</link>"
msgstr "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\"> ཤོག་ཁྲམ་ </link>"
@@ -4165,7 +3844,6 @@ msgstr "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\"> ཤོ
msgctxt ""
"04060100.xhp\n"
"hd_id3145585\n"
-"12\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Text</link>"
msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\"> ཚིག་ཡིག་ </link>"
@@ -4174,7 +3852,6 @@ msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\"> ཚིག་ཡ
msgctxt ""
"04060100.xhp\n"
"hd_id3156449\n"
-"13\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in\">Add-in</link>"
msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in\"> ཁ་སྐོང་རྐྱབས། </link>"
@@ -4183,7 +3860,6 @@ msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in\"> ཁ་སྐ
msgctxt ""
"04060100.xhp\n"
"par_id3150715\n"
-"14\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operators</link>"
msgstr ""
@@ -4208,13 +3884,11 @@ msgstr "<bookmark_value>ལས་འགན་ཝི་ཛརཌི་; གནས
msgctxt ""
"04060101.xhp\n"
"hd_id3148946\n"
-"1\n"
"help.text"
msgid "Database Functions"
msgstr "གནད་སྡུད་གཞི་རྟེན་ལས་འགན་ཚུ།"
#: 04060101.xhp
-#, fuzzy
msgctxt ""
"04060101.xhp\n"
"par_id3145173\n"
@@ -4226,7 +3900,6 @@ msgstr "<variable id=\"datenbanktext\"> འ་ནི་དབྱེ་ཚན་
msgctxt ""
"04060101.xhp\n"
"par_id3154016\n"
-"186\n"
"help.text"
msgid "The Database category may be confused with a database integrated in $[officename]. However, there is no connection between a database in $[officename] and the Database category in $[officename] Calc."
msgstr "The <emph> གནད་སྡུད་གཞི་རྟེན་ </emph> དབྱེ་རིམ་འདི་ $[officename] ནང་ལུ་གཅིག་སྒྲིལ་འབད་ཡོད་པའི་གནད་སྡུད་དང་གཅིག་ཁར་མགུ་ཐོམས་འོང་ནི་འོང་། ཨིན་རུང་ $[officename] ནང་གི་གནད་སྡུད་གཞི་རྟེན་དང་ $[officename] ཀེལ་སི་ནང་གི་ <emph> གནད་སྡུད་གཞི་རྟེན་ </emph> དབྱེ་རིམ་བར་ན་མཐུད་ལམ་མེདཔ་ཨིན།"
@@ -4235,7 +3908,6 @@ msgstr "The <emph> གནད་སྡུད་གཞི་རྟེན་ </emph
msgctxt ""
"04060101.xhp\n"
"hd_id3150329\n"
-"190\n"
"help.text"
msgid "Example Data:"
msgstr "གནད་སྡུད་དཔེར་བརྗོད།"
@@ -4244,7 +3916,6 @@ msgstr "གནད་སྡུད་དཔེར་བརྗོད།"
msgctxt ""
"04060101.xhp\n"
"par_id3153713\n"
-"191\n"
"help.text"
msgid "The following data will be used in some of the function description examples:"
msgstr "འོག་གི་གནད་སྡུད་འདི་ལས་འགན་འགྲེལ་བཤད་དཔེར་བརྗོད་ལ་ལོ་ཅིག་ནང་ལག་ལེན་འཐབ་ནི་ཨིན།"
@@ -4253,7 +3924,6 @@ msgstr "འོག་གི་གནད་སྡུད་འདི་ལས་འ
msgctxt ""
"04060101.xhp\n"
"par_id3155766\n"
-"3\n"
"help.text"
msgid "The range A1:E10 lists the children invited to Joe's birthday party. The following information is given for each entry: column A shows the name, B the grade, then age in years, distance to school in meters and weight in kilograms."
msgstr "ཨེ་༡:ཨི་ ༡༠ ཁྱབ་ཚད་ཀྱིས་ ཇོ་གི་ སྐྱེ་བའི་ཉིནམ་གྱི་སྡེ་ཚོགས་ནང་ལུ་མགྲོན་བརྡ་འབད་ཡོད་པའི་ཆ་ལག་ཚུ་ཐོ་ཡིག་འབདཝ་ཨིན། ཐོ་བཀོད་རེ་རེའི་དོན་ལུ་ འོག་གི་བརྡ་དོན་འདི་གྲ་སྒྲིག་འབད་ཡོད་ཀེར་ཐིག་ཀ་པམ་གྱིས་མིང་དང་ ཁ་པ་གིས་རིམ་པ་དང་ དེ་ལས་སྐྱེས་ལོ་ནང་ན་ལོ་ སློབ་གྲྭ་གི་གྱང་ཚད་འདི་མི་ཊར་དང་ ལྗིད་ཚད་འདི་ཀི་ལོ་གརམ་ཚུ་ནང་སྟོནམ་ཨིན།"
@@ -4262,7 +3932,6 @@ msgstr "ཨེ་༡:ཨི་ ༡༠ ཁྱབ་ཚད་ཀྱིས་ ཇ
msgctxt ""
"04060101.xhp\n"
"par_id3145232\n"
-"4\n"
"help.text"
msgid "A"
msgstr ""
@@ -4271,7 +3940,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3146316\n"
-"5\n"
"help.text"
msgid "B"
msgstr ""
@@ -4280,7 +3948,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3150297\n"
-"6\n"
"help.text"
msgid "C"
msgstr ""
@@ -4289,7 +3956,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3150344\n"
-"7\n"
"help.text"
msgid "D"
msgstr ""
@@ -4298,7 +3964,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3150785\n"
-"8\n"
"help.text"
msgid "E"
msgstr ""
@@ -4307,7 +3972,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3150090\n"
-"9\n"
"help.text"
msgid "1"
msgstr ""
@@ -4316,7 +3980,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3152992\n"
-"10\n"
"help.text"
msgid "<item type=\"input\">Name</item>"
msgstr ""
@@ -4325,7 +3988,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3155532\n"
-"11\n"
"help.text"
msgid "<item type=\"input\">Grade</item>"
msgstr ""
@@ -4334,7 +3996,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3156448\n"
-"12\n"
"help.text"
msgid "<item type=\"input\">Age</item>"
msgstr ""
@@ -4343,7 +4004,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3154486\n"
-"13\n"
"help.text"
msgid "<item type=\"input\">Distance to School</item>"
msgstr ""
@@ -4352,7 +4012,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3152899\n"
-"14\n"
"help.text"
msgid "<item type=\"input\">Weight</item>"
msgstr ""
@@ -4361,7 +4020,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3151240\n"
-"16\n"
"help.text"
msgid "<item type=\"input\">Andy</item>"
msgstr ""
@@ -4370,7 +4028,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3152870\n"
-"22\n"
"help.text"
msgid "<item type=\"input\">Betty</item>"
msgstr ""
@@ -4379,7 +4036,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3155596\n"
-"28\n"
"help.text"
msgid "<item type=\"input\">Charles</item>"
msgstr ""
@@ -4388,7 +4044,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3147296\n"
-"34\n"
"help.text"
msgid "<item type=\"input\">Daniel</item>"
msgstr ""
@@ -4397,7 +4052,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3150456\n"
-"40\n"
"help.text"
msgid "<item type=\"input\">Eva</item>"
msgstr ""
@@ -4406,7 +4060,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3145826\n"
-"46\n"
"help.text"
msgid "<item type=\"input\">Frank</item>"
msgstr ""
@@ -4415,7 +4068,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3146137\n"
-"52\n"
"help.text"
msgid "<item type=\"input\">Greta</item>"
msgstr ""
@@ -4424,7 +4076,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3153078\n"
-"58\n"
"help.text"
msgid "<item type=\"input\">Harry</item>"
msgstr ""
@@ -4433,7 +4084,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3148761\n"
-"64\n"
"help.text"
msgid "<item type=\"input\">Irene</item>"
msgstr ""
@@ -4442,7 +4092,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3153544\n"
-"72\n"
"help.text"
msgid "<item type=\"input\">Name</item>"
msgstr ""
@@ -4451,7 +4100,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3158414\n"
-"73\n"
"help.text"
msgid "<item type=\"input\">Grade</item>"
msgstr ""
@@ -4460,7 +4108,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3152820\n"
-"74\n"
"help.text"
msgid "<item type=\"input\">Age</item>"
msgstr ""
@@ -4469,7 +4116,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3154866\n"
-"75\n"
"help.text"
msgid "<item type=\"input\">Distance to School</item>"
msgstr ""
@@ -4478,7 +4124,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3150471\n"
-"76\n"
"help.text"
msgid "<item type=\"input\">Weight</item>"
msgstr ""
@@ -4487,17 +4132,14 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3163823\n"
-"81\n"
"help.text"
msgid "<item type=\"input\">DCOUNT</item>"
msgstr ""
#: 04060101.xhp
-#, fuzzy
msgctxt ""
"04060101.xhp\n"
"par_id3149282\n"
-"83\n"
"help.text"
msgid "The formula in cell B16 is =DCOUNT(A1:E10;D1;A13:E14)"
msgstr "ནང་ཐིག་B16 ནང་གི་མན་ངག་ནི་ =DCOUNT(A1:E10;0;A13:E14) ཨིན།"
@@ -4506,7 +4148,6 @@ msgstr "ནང་ཐིག་B16 ནང་གི་མན་ངག་ནི་ =
msgctxt ""
"04060101.xhp\n"
"hd_id3150962\n"
-"192\n"
"help.text"
msgid "Database Function Parameters:"
msgstr "གནད་སྡུད་གཞི་རྟེན་ལས་འགན་ཚད་བཟུང་ཚུ།:"
@@ -4515,7 +4156,6 @@ msgstr "གནད་སྡུད་གཞི་རྟེན་ལས་འགན
msgctxt ""
"04060101.xhp\n"
"par_id3155837\n"
-"84\n"
"help.text"
msgid "The following items are the parameter definitions for all database functions:"
msgstr "འོག་ལུ་ཡོད་མི་ཚུ་ གནད་སྡུད་གཞི་རྟེན་ལས་འགན་ཚུ་ཆ་མཉམ་ལུ་ ཚད་བཟུང་འགྲེལ་བཤད་ཚུ་ཨིན།"
@@ -4524,7 +4164,6 @@ msgstr "འོག་ལུ་ཡོད་མི་ཚུ་ གནད་སྡ
msgctxt ""
"04060101.xhp\n"
"par_id3149453\n"
-"85\n"
"help.text"
msgid "<emph>Database</emph> is the cell range defining the database."
msgstr "<emph> གནད་སྡུད་གཞི་རྟེན་ </emph> འདི་གནད་སྡུད་གཞི་རྟེན་འགྲེལ་བཤད་རྐྱབ་ནིའི་ནང་ཐིག་ཁྱབ་ཚད་ཨིན།"
@@ -4533,7 +4172,6 @@ msgstr "<emph> གནད་སྡུད་གཞི་རྟེན་ </emph>
msgctxt ""
"04060101.xhp\n"
"par_id3151272\n"
-"86\n"
"help.text"
msgid "<emph>DatabaseField</emph> specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. <variable id=\"quotes\">For the DatabaseField parameter you can enter a reference to a header cell or a number to specify the column within the Database area, starting with 1. To reference a column by means of the literal column header name, place quotation marks around the header name.</variable>"
msgstr ""
@@ -4542,7 +4180,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3147083\n"
-"87\n"
"help.text"
msgid "<emph>SearchCriteria</emph> is the cell range containing search criteria. If you write several criteria in one row they are connected by AND. If you write the criteria in different rows they are connected by OR. Empty cells in the search criteria range will be ignored."
msgstr "<emph> འཚོལ་ཞིབ་ཁྱད་ཚད་ </emph> འདི་ནང་ན་འཚོལ་ཞིབ་ཁྱད་ཚད་ཤོམ་ཏེ་ཡོད་པའི་ནང་ཐིག་ཁྱབ་ཚད་ཨིན། ཁྱོད་ཀྱིས་གྲལ་ཐིག་གཅིག་ནང་ལུ་ཁྱད་ཚད་ལེ་ཤ་འབྲི་བ་ཅིན་འ་ནི་ཚུ་ AND གིས་མཐུད་དེ་ཡོདཔ་ཨིན། ཁྱོད་ཀྱིས་ ཁྱད་ཚད་འདི་གྲལ་ཐིག་སོ་སོར་ཚུ་ནང་འབྲི་བ་ཅིན་ འ་ནི་ཚུ་ OR གིས་མཐུད་དེ་ཡོདཔ་ཨིན། འཚོལ་ཞིབ་ཁྱད་ཚད་ཁྱབ་ཚད་ནང་གི་ནང་ཐིག་སྟོངམ་ཚུ་སྣང་མེད་བཞག་ནི་ཨིན།"
@@ -4551,7 +4188,6 @@ msgstr "<emph> འཚོལ་ཞིབ་ཁྱད་ཚད་ </emph> འད
msgctxt ""
"04060101.xhp\n"
"par_id3151188\n"
-"188\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\">%PRODUCTNAME Calc - Calculate</link> to define how $[officename] Calc acts when searching for identical entries."
msgstr ""
@@ -4576,17 +4212,14 @@ msgstr "<bookmark_value>DCOUNT ལས་འགན་</bookmark_value><bookmark_v
msgctxt ""
"04060101.xhp\n"
"hd_id3150882\n"
-"88\n"
"help.text"
msgid "DCOUNT"
msgstr "DCOUNT"
#: 04060101.xhp
-#, fuzzy
msgctxt ""
"04060101.xhp\n"
"par_id3156133\n"
-"89\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT counts the number of rows (records) in a database that match the specified search criteria and contain numerical values in the DatabaseField column.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT གསལ་བཀོད་འབད་ཡོད་པའི་འཚོལ་ཞིབ་ཁྱད་ཚད་དང་ཨང་གནས་གོང་མཐུན་མི་གནས་སྡུད་གཞི་རྟེན་ནང་ གྲལ་ཐིག་(དྲན་ཐོ་) གི་ཨང་གྲངས་འདི་གྱངས་ཁ་བརྐྱབ་ཨིན།</ahelp>"
@@ -4595,17 +4228,14 @@ msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT གསལ་བཀོད་འ
msgctxt ""
"04060101.xhp\n"
"hd_id3156099\n"
-"90\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060101.xhp
-#, fuzzy
msgctxt ""
"04060101.xhp\n"
"par_id3153218\n"
-"91\n"
"help.text"
msgid "DCOUNT(Database; [DatabaseField]; SearchCriteria)"
msgstr "DCOUNT(གནད་སྡུད་གཞི་རྟེན་ ; གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་ ; ཁྱད་ཚད་འཚོལ།)"
@@ -4614,7 +4244,6 @@ msgstr "DCOUNT(གནད་སྡུད་གཞི་རྟེན་ ; གན
msgctxt ""
"04060101.xhp\n"
"par_id3153273\n"
-"187\n"
"help.text"
msgid "If the DatabaseField argument is omitted, DCOUNT returns the count of all records that satisfy Criteria. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
msgstr ""
@@ -4623,27 +4252,22 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"hd_id3154743\n"
-"92\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
#: 04060101.xhp
-#, fuzzy
msgctxt ""
"04060101.xhp\n"
"par_id3153623\n"
-"93\n"
"help.text"
msgid "In the example above (scroll up, please), we want to know how many children have to travel more than 600 meters to school. The result is to be stored in cell B16. Set the cursor in cell B16. Enter the formula <item type=\"input\">=DCOUNT(A1:E10;D1;A13:E14)</item> in B16. The <emph>Function Wizard</emph> helps you to input ranges."
msgstr "ལྟག་ལུ་ཡོད་པའི་དཔེར་བརྗོད་ནང་(ཡར་བཤུད་སྒྲིལ་འབད་གནང་) ང་བཅས་ཀྱིས་ ཆ་ལག་ཚུ་ག་དེམ་ཅིག་གིས་ སློབ་གྲྭ་ནང་ལུ་མི་ཊར་ ༦༠༠ ལས་ལྷག་སྟེ་ལས་འགྲུལ་འབད་དགོསཔ་འདུག་ག་ཤེས་དགོ་མནོ་ཡི། གྲུབ་འབྲས་འདི་ ནང་ཐིག་ བི་ ༡༦ ནང་ལུ་ གསོག་འཇོག་འབད་ནི་ཨིན། བི་ ༡༦ ནང་ལུ་ མན་ངག་ =DCOUNT(ཨེ་ ༡ : ཨི་ ༡༠ ; ༠ ; ཨེ་ ༡༣ : ཨི་ ༡༤) བཙུགས། <emph> ལས་འགན་ཝི་ཛརཌི་གིས་ </emph> ཁྱོད་ལུ་ཨིན་པུཊི་ཁྱབ་ཚད་ཚུ་ནང་གྲོགས་རམ་འབདཝ་ཨིན།"
#: 04060101.xhp
-#, fuzzy
msgctxt ""
"04060101.xhp\n"
"par_id3149142\n"
-"94\n"
"help.text"
msgid "<emph>Database</emph> is the range of data to be evaluated, including its headers: in this case A1:E10. <emph>DatabaseField</emph> specifies the column for the search criteria: in this case, the column with the numerical distance values. <emph>SearchCriteria</emph> is the range where you can enter the search parameters: in this case, A13:E14."
msgstr "<emph> གནད་སྡུད་གཞི་རྟེན་ </emph> འ་ནི་གནད་དོན་ ཨེ་༡: ཨི་ ༡༠ ནང་ལུ་ འདི་བརྟག་ཞིབ་འབད་ནི་ཨིན་པའི་ མགོ་ཡིག་ཚུ་གྲངས་སུ་བཙུགས་ཏེ་གནད་སྡུད་ཀྱི་ཁྱབ་ཚད་ཨིན། འ་ནི་གནད་དོན་ནང་ལུ་: གནད་སྡུད་གཞི་རྟེན་ཧྲིལ་བུའི་ <emph> གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་ </emph> གིས་འཚོལ་ཞིབ་ཁྱད་ཚད་དོན་ལུ་ཀེར་ཐིག་གསལ་བཀོད་འབདཝ་ཨིན། <emph> འཚོལ་ཞིབ་ཁྱད་ཚད་ </emph> འདི་ གནད་དོན་ ཨེ་༡༣ :ཨི་༡༤ ནང་ལུ་ ཁྱོད་ཀྱིས་འཚོལ་ཞིབ་ཚད་བཟུང་:བཙུགས་ཚུགསཔ་སའི་ཁྱབ་ཚད་ཨིན།"
@@ -4652,7 +4276,6 @@ msgstr "<emph> གནད་སྡུད་གཞི་རྟེན་ </emph>
msgctxt ""
"04060101.xhp\n"
"par_id3145652\n"
-"95\n"
"help.text"
msgid "To learn how many children in second grade are over 7 years of age, delete the entry >600 in cell D14 and enter <item type=\"input\">2</item> in cell B14 under Grade, and enter <item type=\"input\">>7</item> in cell C14 to the right. The result is 2. Two children are in second grade and over 7 years of age. As both criteria are in the same row, they are connected by AND."
msgstr "རིམ་པ་གཉིས་པ་ནང་ཡོད་པའི་ཆ་ལག་ཚུ་སྐྱེ་ལོ་ ༧ ལས་ཡར་འབད་མི་ག་དེམ་ཅིག་འདུག་ག་ཤེས་ནིའི་དོན་ལུ་ ནང་ཐིག་ ཌི་ ༡༤ གི་ཐོ་བཀོད་ >༦༠༠ འདི་བཏོན་གཏང་སྟེ་ ནང་ཐིག་བི་ ༡༤ རིམ་པའི་འོག་ལུ་ \"2\" བཙུགས་ཏེ་ ནང་ཐིག་ སི་ ༡༤ ནང་ལུ་ > ༧ གཡས་ཁ་ཐུག་བཙུགས། གྲུབ་འབྲས་འདི་ ༢ ཨིན། རིམ་པ་གཉིས་པ་ནང་སྐྱེ་ལོ་ ༧ ལས་ཡར་བལྟ་འབད་མི་ཆ་ལག་གཉིས་འདུག ཁྱད་ཚད་གཉིས་ཆ་རང་གྲལ་ཐིག་གཅིག་ནང་འབད་ནི་དེ་གིས་ AND གིས་མཐུད་དེ་ཡོདཔ་ཨིན།"
@@ -4669,7 +4292,6 @@ msgstr "<bookmark_value>ཌི་གྱངས་ཁ་རྐྱབས་ནི
msgctxt ""
"04060101.xhp\n"
"hd_id3156123\n"
-"97\n"
"help.text"
msgid "DCOUNTA"
msgstr "DCOUNTA"
@@ -4678,7 +4300,6 @@ msgstr "DCOUNTA"
msgctxt ""
"04060101.xhp\n"
"par_id3156110\n"
-"98\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA counts the number of rows (records) in a database that match the specified search conditions, and contain numeric or alphanumeric values.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA (དྲན་ཐོ་ཚུ་)གསལ་བཀོད་གྲུབ་ཡོད་པའི་འཚོལ་ཞིབ་གནས་སྟངས་ཚུ་དང་ ཨང་གྲངས་ཀྱི་ཡང་ན་ ཨཱལ་ཕ་ཨང་གྲངས་ཀྱི་གནས་གོང་ཚུ་ནང་ན་ཤོམ་ཏེ་ཡོད་མི་དང་མཐུན་སྒྲིག་འབད་མི་ གནད་སྡུད་ནང་ལུ་ཡོད་མི་གྲལ་ཐིག་ཚུའི་གྱངས་ཁ་རྐྱབ་ཨིན། </ahelp>"
@@ -4687,17 +4308,14 @@ msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA (དྲན་ཐོ་ཚུ
msgctxt ""
"04060101.xhp\n"
"hd_id3143228\n"
-"99\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060101.xhp
-#, fuzzy
msgctxt ""
"04060101.xhp\n"
"par_id3146893\n"
-"100\n"
"help.text"
msgid "DCOUNTA(Database; [DatabaseField]; SearchCriteria)"
msgstr "DCOUNTA(གནད་སྡུད་གཞི་རྟེན་ ; གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་ ; འཚོལ་ཞིབ་ཁྱད་ཚད།)"
@@ -4706,7 +4324,6 @@ msgstr "DCOUNTA(གནད་སྡུད་གཞི་རྟེན་ ; གན
msgctxt ""
"04060101.xhp\n"
"par_id3153274\n"
-"189\n"
"help.text"
msgid "If the DatabaseField argument is omitted, DCOUNTA returns the count of all records that satisfy Criteria. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
msgstr ""
@@ -4715,7 +4332,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"hd_id3149751\n"
-"101\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -4724,7 +4340,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060101.xhp\n"
"par_id3153982\n"
-"102\n"
"help.text"
msgid "In the example above (scroll up, please), you can search for the number of children whose name starts with an E or a subsequent letter. Edit the formula in B16 to read <item type=\"input\">=DCOUNTA(A1:E10;\"Name\";A13:E14)</item>. Delete the old search criteria and enter <item type=\"input\">>=E</item> under Name in field A14. The result is 5. If you now delete all number values for Greta in row 8, the result changes to 4. Row 8 is no longer included in the count because it does not contain any values. The name Greta is text, not a value. Note that the DatabaseField parameter must point to a column that can contain values."
msgstr "དཔེའི་གྲལ་ཐིག་ནང་ (scroll up, please), མིང་ ཨི་ཡང་ན་ཤུལ་ལུ་ཡོད་པའི་ཡི་གུ་དང་ཅིག་ཁར་འགོ་བཙུགས་མི་ཨ་ལུ་གི་ཨང་གྲངས་ཀྱི་དོན་ལུ་ ཁྱོད་ཀྱིས་འཚོལ་ཞིབ་འབད། =DCOUNTA(A1:E10;\"Age\";A13:E14) ལྷག་ནིའི་དོན་ལུ་ B16 ནང་མན་ངག་འདི་ཞུན་དག་འབད། འཚོལ་ཞིབ་འབད་ནི་རྙིངམ་གྱི་ཁྱད་ཚད་བཏོན་གཏང་ནི་དང་ >=E under <emph>མིང་</emph> འདི་ ས་སྒོ་A14 ནང་ཐོ་བཀོད་འབད། ལེན་ ༥་ འདི་ཨིན། གིརི་ཊ་གི་དོན་ལུ་གྲལ་ཐིག་ ༨་ ནང་ཨང་གྲངས་ཚུ་ཆ་མཉམ་ཁྱོད་ཀྱིས་བཏོན་གཏང་པ་ཅིན་ གྲུབ་འབྲས་འདི་ ༤་ ལུ་བསྒྱུར་བཅོས་འབདཝ་ཨིན། གྲལ་ཐིག་ ༨་ འདི་གྱངས་ཁའི་གྲངས་སུ་མི་ཚུད་ ག་ཅི་སྦེ་ཟེར་བ་ཅིན་ དེ་ལུ་གནས་གོང་གང་རུང་ཡང་མེདཔ་ཨིན། གིརི་ཊ་ཟེར་བའི་མིངི་འདི་ཚིག་ཡིག་ཨིན་ གནས་གོང་མེན། <item type=\"literal\">གནས་སྡུད་གཞི་རྟེན་ས་སྒོ་</item>ཚད་བཟུང་འདི་ གནས་གོང་གནས་ཚུགས་པའི་ཀེར་ཐིག་ཅིག་དཔག་དགོ་ཟེར་དྲན་འཛིན་འབད།"
@@ -4741,7 +4356,6 @@ msgstr "<bookmark_value>ཌི་གེཊི་ལས་འགན་</bookmark_
msgctxt ""
"04060101.xhp\n"
"hd_id3147256\n"
-"104\n"
"help.text"
msgid "DGET"
msgstr "DGET"
@@ -4750,7 +4364,6 @@ msgstr "DGET"
msgctxt ""
"04060101.xhp\n"
"par_id3152801\n"
-"105\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET returns the contents of the referenced cell in a database which matches the specified search criteria.</ahelp> In case of an error, the function returns either #VALUE! for no row found, or Err502 for more than one cell found."
msgstr "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET གིས་གསལ་བཀོད་འབད་ཡོད་པའི་འཚོལ་ཞིབ་ཁྱད་ཚད་མཐུན་སྒྲིག་འབད་བའི་གནད་སྡུད་གཞི་རྟེེན་ནང་གི་གཞི་བསྟུན་འབད་འབདཝ་བའི་ནང་ཐིག་གི་ནང་དོན་ཚུ་སླར་ལོག་འབདཝ་ཨིན། </ahelp> འཛོལ་བའི་ཐད་ཀར་ལྷོདཔ་དང་ལས་འགན་གྱིས་ གྲལ་ཐིག་ཐོབ་ཀྱི་དོན་ལུ་ #VALUE! དང་ཡང་ན་ ནང་ཐིག་གཅིག་ལས་ལྷག་སྟེ་ཐོབ་ཡོད་པའི་དོན་ལུ་ Err502 སླར་ལོག་འབདཝ་ཨིན།"
@@ -4759,7 +4372,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET གིས་གསལ་བཀོ
msgctxt ""
"04060101.xhp\n"
"hd_id3159344\n"
-"106\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -4768,7 +4380,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060101.xhp\n"
"par_id3154696\n"
-"107\n"
"help.text"
msgid "DGET(Database; DatabaseField; SearchCriteria)"
msgstr "DGET(གནད་སྡུད་གཞི་རྟེན་ ; གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་ ; ཁྱད་ཚད་འཚོལ།)"
@@ -4777,7 +4388,6 @@ msgstr "DGET(གནད་སྡུད་གཞི་རྟེན་ ; གནད
msgctxt ""
"04060101.xhp\n"
"hd_id3153909\n"
-"108\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -4786,7 +4396,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060101.xhp\n"
"par_id3155388\n"
-"109\n"
"help.text"
msgid "In the above example (scroll up, please), we want to determine what grade a child is in, whose name was entered in cell A14. The formula is entered in cell B16 and differs slightly from the earlier examples because only one column (one database field) can be entered for <emph>DatabaseField</emph>. Enter the following formula:"
msgstr "ལྟག་གི་དཔེར་བརྗོད་ནང་ལུ་(ཡར་སྒྲིལ་འབད་གནང་) ང་བཅས་ཀྱིས་ ཆ་ལག་འདི་རིམ་པ་ག་ཅིག་ནང་ཨིན་ན་ དང་ ག་དང་ག་གི་མིང་རང་ ནང་ཐིག་ ཨེ་ ༡༤ ནང་བཙུགས་ཏེ་ཡོདཔ་ཨིན་ན་གཏན་འབེབས་བཟོ་ནི་དགོས་འདོད་ཡོད། མན་ངག་འདི་ ནང་ཐིག་ བི་ ༡༦ ནང་བཙུགས་ཡོདཔ་དང་ ཧེ་མའི་དཔེར་བརྗོད་ཚུ་ལས་དུམ་གྲ་ཅིག་སོ་སོ་སྦེ་འཐོནམ་ཨིན་ ག་ཅི་སྦེ་ཟེར་བ་ཅིན་ <emph> གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་ </emph> གི་དོན་ལུ་ ཀེར་ཐིག་གཅིག་རྐྱངམ་ཅིག་(གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་) བཙུགས་བཏུབ་ལས་བརྟེན་ཏེ་ཨིན། འོག་ལུ་ཡོད་པའི་མན་ངག་བཙུགས།:"
@@ -4795,7 +4404,6 @@ msgstr "ལྟག་གི་དཔེར་བརྗོད་ནང་ལུ་
msgctxt ""
"04060101.xhp\n"
"par_id3153096\n"
-"110\n"
"help.text"
msgid "<item type=\"input\">=DGET(A1:E10;\"Grade\";A13:E14)</item>"
msgstr ""
@@ -4804,7 +4412,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3150524\n"
-"111\n"
"help.text"
msgid "Enter the name <item type=\"input\">Frank</item> in A14, and you see the result 2. Frank is in second grade. Enter <item type=\"input\">\"Age\"</item> instead of \"Grade\" and you will get Frank's age."
msgstr ""
@@ -4813,7 +4420,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3148833\n"
-"112\n"
"help.text"
msgid "Or enter the value <item type=\"input\">11</item> in cell C14 only, and delete the other entries in this row. Edit the formula in B16 as follows:"
msgstr "ཡང་ན་ གནས་གོང་ ༡༡ འདི་ནང་ཐིག་སི་༡༤ ནང་རྐྱངམ་ཅིག་བཙུགས་བཞིནམ་ལས་ འ་ནི་གྲལ་ཐིག་ནང་ལུ་ཐོ་བཀོད་གཞན་མི་ཚུ་བཏོན་གཏང་། བི་༡༦ ནང་ཡོད་པའི་མན་གང་འདི་འོག་གི་ལྟར་ཞུན་དག་འབད།"
@@ -4822,7 +4428,6 @@ msgstr "ཡང་ན་ གནས་གོང་ ༡༡ འདི་ནང་ཐ
msgctxt ""
"04060101.xhp\n"
"par_id3149912\n"
-"113\n"
"help.text"
msgid "<item type=\"input\">=DGET(A1:E10;\"Name\";A13:E14)</item>"
msgstr ""
@@ -4831,7 +4436,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3148813\n"
-"114\n"
"help.text"
msgid "Instead of the grade, the name is queried. The answer appears at once: Daniel is the only child aged 11."
msgstr "རིམ་པ་གི་ཚབ་མ་ལུ་མིང་འདི་འདྲི་དཔྱད་འབད་ཡོདཔ་ཨིན། ལན་འདི་ཚར་གཅིག་ལུ་བྱུངམ་ཨིན་: སྐྱེས་ལོ་༡༡ འབད་མི་ཆ་ལག་ཌེ་ནིལ་རྐྱངམ་ཅིག་ཨིན།"
@@ -4848,7 +4452,6 @@ msgstr "<bookmark_value>DMAX ལས་འགན་</bookmark_value><bookmark_val
msgctxt ""
"04060101.xhp\n"
"hd_id3149766\n"
-"115\n"
"help.text"
msgid "DMAX"
msgstr "DMAX"
@@ -4857,7 +4460,6 @@ msgstr "DMAX"
msgctxt ""
"04060101.xhp\n"
"par_id3154903\n"
-"116\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBMAX\">DMAX returns the maximum content of a cell (field) in a database (all records) that matches the specified search conditions.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DBMAX\">DMAX གིས་ གསལ་བཀོད་འབད་ཡོད་པའི་འཚོལ་ཞིབ་གནས་སྟངས་ཚུ་མཐུན་སྒྲིག་འབད་བའི་གནད་སྡུད་གཞི་རྟེན་ནང་གི་ནང་ཐིག་གི་(ས་སྒོ་)ནང་དོན་མང་མཐའ་ (དྲན་ཐོ་ཚུ་ཆ་མཉམ་རང་)སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -4866,7 +4468,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBMAX\">DMAX གིས་ གསལ་བཀོ
msgctxt ""
"04060101.xhp\n"
"hd_id3150771\n"
-"117\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -4875,7 +4476,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060101.xhp\n"
"par_id3159157\n"
-"118\n"
"help.text"
msgid "DMAX(Database; DatabaseField; SearchCriteria)"
msgstr "DMAX (གནད་སྡུད་གཞི་རྟེན་; གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་; ཁྱད་ཚད་འཚོལ།)"
@@ -4884,7 +4484,6 @@ msgstr "DMAX (གནད་སྡུད་གཞི་རྟེན་; གནད
msgctxt ""
"04060101.xhp\n"
"hd_id3145420\n"
-"119\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -4893,7 +4492,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060101.xhp\n"
"par_id3148442\n"
-"120\n"
"help.text"
msgid "To find out how much the heaviest child in each grade weighed in the above example (scroll up, please), enter the following formula in B16:"
msgstr "ལྟག་གི་དཔེར་བརྗོད་ནང་ལྗིད་ཚད་འཇལ་བའི་ཚེས་ན་རིམ་པ་རེ་རེ་ནངཆ་ལག་ལྗིད་ལྕིད་ཤོས་རང་ག་དེ་རེ་འདུག་ག་འཚོལ་ནིའི་དོན་ལུ་ (ཡར་སྒྲིལ་གནང་) འོག་ལུ་ཡོད་པའི་མན་ངག་བི་ ༡༦ ནང་བཙུགས།"
@@ -4902,7 +4500,6 @@ msgstr "ལྟག་གི་དཔེར་བརྗོད་ནང་ལྗི
msgctxt ""
"04060101.xhp\n"
"par_id3148804\n"
-"121\n"
"help.text"
msgid "<item type=\"input\">=DMAX(A1:E10;\"Weight\";A13:E14)</item>"
msgstr ""
@@ -4911,7 +4508,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3150510\n"
-"122\n"
"help.text"
msgid "Under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. After entering a grade number, the weight of the heaviest child in that grade appears."
msgstr "'Grade' གི་འོག་ལུ་ ༡, ༢, ༣, ལ་སོགས་གཅིག་ཤུལ་གཅིག་སྦེ་བཙུགས། རིམ་པའི་ཨང་བཙུགས་ཚར་བའི་ཤུལ་ལུ་ རིམ་པ་འདིའི་ནང་གི་ཆ་ལག་ལྗིད་ལྕིད་ཤོས་ཀྱི་ལྗིད་ཚད་བྱུངམ་ཨིན།"
@@ -4928,7 +4524,6 @@ msgstr "<bookmark_value>DMIN ལས་འགན་</bookmark_value><bookmark_val
msgctxt ""
"04060101.xhp\n"
"hd_id3159141\n"
-"123\n"
"help.text"
msgid "DMIN"
msgstr "DMIN"
@@ -4937,7 +4532,6 @@ msgstr "DMIN"
msgctxt ""
"04060101.xhp\n"
"par_id3154261\n"
-"124\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBMIN\">DMIN returns the minimum content of a cell (field) in a database that matches the specified search criteria.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DBMIN\">DMIN གིས གནད་སྡུད་ནང་ལུ་ གསལ་བཀོད་འབད་ཡོད་པའི་འཚོལ་ཞིབ་ཁྱད་ཚད་དང་མཐུན་སྒྲིག་འབད་མི་ ་ནང་ཐིག་གཅིག་གི་ནང་དོན་ཉུང་མཐའ་(ས་སྒོ་) སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -4946,7 +4540,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBMIN\">DMIN གིས གནད་སྡུད་
msgctxt ""
"04060101.xhp\n"
"hd_id3147238\n"
-"125\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -4955,7 +4548,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060101.xhp\n"
"par_id3148479\n"
-"126\n"
"help.text"
msgid "DMIN(Database; DatabaseField; SearchCriteria)"
msgstr "DMIN(གནད་སྡུད་གཞི་རྟེན་ ; གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་ ; ཁྱད་ཚད་འཚོལ།)"
@@ -4964,7 +4556,6 @@ msgstr "DMIN(གནད་སྡུད་གཞི་རྟེན་ ; གནད
msgctxt ""
"04060101.xhp\n"
"hd_id3151050\n"
-"127\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -4973,7 +4564,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060101.xhp\n"
"par_id3148925\n"
-"128\n"
"help.text"
msgid "To find the shortest distance to school for the children in each grade in the above example (scroll up, please), enter the following formula in B16:"
msgstr "ལྟག་གི་དཔེར་བརྗོད་ནང་ལུ་ རིམ་པ་རེ་རེ་ནང་ཆ་ལག་ཚུའི་དོན་ལུ་ སློབ་གྲྭ་ལུ་གྱང་ཚད་ཐུང་ཤོས་འཚོལ་ནིའི་དོན་ལུ་ (ཡར་སྒྲིལ་གནང་) འོག་ལུ་ཡོད་པའི་མན་ངག་ བི་ ༡༦ ནང་བཙུགས།"
@@ -4982,7 +4572,6 @@ msgstr "ལྟག་གི་དཔེར་བརྗོད་ནང་ལུ་
msgctxt ""
"04060101.xhp\n"
"par_id3149161\n"
-"129\n"
"help.text"
msgid "<item type=\"input\">=DMIN(A1:E10;\"Distance to School\";A13:E14)</item>"
msgstr ""
@@ -4991,7 +4580,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3148917\n"
-"130\n"
"help.text"
msgid "In row 14, under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. The shortest distance to school for each grade appears."
msgstr "གྲལ་ཐིག་ ༡༤་ ནང་ལུ་ རིམ་འོག་ ༡ ༢ ༣ དང་ལ་སོགས་གཅིག་ཤུལ་གཅིག་སྦེ་བཙུགས། རིམ་པ་རེ་རེ་ལུ་སློབ་གྲྭ་གི་གྱང་ཚད་ཐུང་ཤོས་བྱུངམ་ཨིན།"
@@ -5008,7 +4596,6 @@ msgstr "<bookmark_value>ཌི་ཆ་སྙོམས་ལས་འགན་</
msgctxt ""
"04060101.xhp\n"
"hd_id3154274\n"
-"131\n"
"help.text"
msgid "DAVERAGE"
msgstr "DAVERAGE"
@@ -5017,7 +4604,6 @@ msgstr "DAVERAGE"
msgctxt ""
"04060101.xhp\n"
"par_id3166453\n"
-"132\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">DAVERAGE returns the average of the values of all cells (fields) in all rows (database records) that match the specified search criteria.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">DAVERAGE གིས་གསལབཀོད་འབད་དེ་ཡོད་པའི་འཚོལ་ཞིབ་ཁྱད་ཚད་མཐུན་སྒྲིག་འབད་བའི་ གྲལ་ཐིག་ཆ་མཉམ་ནང་ (ས་སྒོ་ཚུ་) ནང་ཐིག་ཚུ་ཆ་མཉམ་(གནད་སྡུད་གཞི་རྟེན་དྲན་ཐོ་ཚུ་) གྱི་གནས་གོང་ཚུའི་ཆ་སྙོམས་ སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -5026,7 +4612,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">DAVERAGE གིས་གསལབ
msgctxt ""
"04060101.xhp\n"
"hd_id3146955\n"
-"133\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -5035,7 +4620,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060101.xhp\n"
"par_id3150710\n"
-"134\n"
"help.text"
msgid "DAVERAGE(Database; DatabaseField; SearchCriteria)"
msgstr "DAVERAGE(གནད་སྡུད་གཞི་རྟེན་ ; གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་ ; ཁྱད་ཚད་འཚོལ།)"
@@ -5044,7 +4628,6 @@ msgstr "DAVERAGE(གནད་སྡུད་གཞི་རྟེན་ ; གན
msgctxt ""
"04060101.xhp\n"
"hd_id3152943\n"
-"135\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -5053,7 +4636,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060101.xhp\n"
"par_id3149104\n"
-"136\n"
"help.text"
msgid "To find the average weight of all children of the same age in the above example (scroll up, please), enter the following formula in B16:"
msgstr "ལྟག་གི་དཔེར་བརྗོད་ནང་ལུ་ སྐྱེ་ལོ་གཅིག་པའི་ཆ་ལག་ཚུ་ཆ་མཉམ་གྱི་ལྗིད་ཚད་ཆ་སྙོམས་འཚོལ་ནིའི་དོན་ལུ་ (ཡར་སྒྲིལ་གནང་) འོག་ལུ་ཡོད་པའི་མན་ངག་འདི་ བི་ ༡༦ ནང་བཙུགས།:"
@@ -5062,7 +4644,6 @@ msgstr "ལྟག་གི་དཔེར་བརྗོད་ནང་ལུ་
msgctxt ""
"04060101.xhp\n"
"par_id3153688\n"
-"137\n"
"help.text"
msgid "<item type=\"input\">=DAVERAGE(A1:E10;\"Weight\";A13:E14)</item>"
msgstr ""
@@ -5071,7 +4652,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3155587\n"
-"138\n"
"help.text"
msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The average weight of all children of the same age appears."
msgstr "གྲལ་ཐིག་ ༡༤ ནང་ ལོའི་འོག་ལུ་ ༧, ༨, ༩, ལ་སོགས་ གཅིག་ཤུལ་གཅིག་སྦེ་བཙུགས། ལོ་གཅིག་པའི་ཆ་ལག་ཆ་མཉམ་གྱི་ལྗིད་ཚད་ཆ་སྙོམས་བྱུངམ་ཨིན།"
@@ -5088,7 +4668,6 @@ msgstr "<bookmark_value>ཌི་ཐོན་སྐྱེད་ལས་འག
msgctxt ""
"04060101.xhp\n"
"hd_id3159269\n"
-"139\n"
"help.text"
msgid "DPRODUCT"
msgstr "DPRODUCT"
@@ -5097,7 +4676,6 @@ msgstr "DPRODUCT"
msgctxt ""
"04060101.xhp\n"
"par_id3152879\n"
-"140\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBPRODUKT\">DPRODUCT multiplies all cells of a data range where the cell contents match the search criteria.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DBPRODUKT\">DPRODUCT ནང་ཐིག་ཚུའི་ནང་དོན་གྱིས་འཚོལ་ཞིབ་ཁྱད་ཚད་མཐུན་སྒྲིག་འབད་བའི་གནད་སྡུད་ཁྱབ་ཚད་ཀྱི་ནང་ཐིག་ཚུ་ཆ་མཉམ་རང་ དགུ་མཐའ་རྐྱབ་ཨིན། </ahelp>"
@@ -5106,7 +4684,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBPRODUKT\">DPRODUCT ནང་ཐིག་ཚུ
msgctxt ""
"04060101.xhp\n"
"hd_id3149966\n"
-"141\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -5115,7 +4692,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060101.xhp\n"
"par_id3154854\n"
-"142\n"
"help.text"
msgid "DPRODUCT(Database; DatabaseField; SearchCriteria)"
msgstr "DPRODUCT(གནད་སྡུད་གཞི་རྟེན་ ; གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་ ; ཁྱད་ཚད་འཚོལ།)"
@@ -5124,7 +4700,6 @@ msgstr "DPRODUCT(གནད་སྡུད་གཞི་རྟེན་ ; གན
msgctxt ""
"04060101.xhp\n"
"hd_id3149802\n"
-"143\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -5133,7 +4708,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060101.xhp\n"
"par_id3148986\n"
-"144\n"
"help.text"
msgid "With the birthday party example above (scroll up, please), there is no meaningful application of this function."
msgstr "ལྟག་གི་སྐྱེ་བའི་ཉིནམ་སྡེ་ཚོགས་དང་བཅས་ (ཡར་སྒྲིལ་) འ་ནི་ལས་འགན་གྱིས་འཇུག་སྤྱོད་དོན་ལྡན་མིན་འདུག"
@@ -5150,7 +4724,6 @@ msgstr "<bookmark_value>STDEV ལས་འགན་</bookmark_value><bookmark_va
msgctxt ""
"04060101.xhp\n"
"hd_id3148462\n"
-"145\n"
"help.text"
msgid "DSTDEV"
msgstr "DSTDEV"
@@ -5159,7 +4732,6 @@ msgstr "DSTDEV"
msgctxt ""
"04060101.xhp\n"
"par_id3154605\n"
-"146\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBSTDABW\">DSTDEV calculates the standard deviation of a population based on a sample, using the numbers in a database column that match the given conditions.</ahelp> The records are treated as a sample of data. That means that the children in the example represent a cross section of all children. Note that a representative result can not be obtained from a sample of less than one thousand."
msgstr "<ahelp hid=\"HID_FUNC_DBSTDABW\">DSTDEV གིས་ དཔེ་ཚད་ལུ་གཞི་བཞག་སྟེ་མི་རློབས་ཀྱི་ཚད་ལྡན་ཁ་བསྒྱུར་བ་རྩིས་སྟོན་འབདཝ་ཨིན་ དེ་ཡང་གྲ་སྒྲིག་འབད་ཡོད་པའི་གནས་སྟངས་ཚུ་མཐུན་སྒྲིག་འབད་བའི་ གནད་སྡུད་གཞི་རྟེན་ཀེར་ཐིག་ནང་ཨང་ཚུ་ལག་ལེན་གྱི་ཐོག་ལས་ཨིན། </ahelp> དྲན་ཐོ་ཚུ་གནད་སྡུད་ཀྱི་དཔེ་ཚད་སྦེ་བརྩི་་འཇོག་འབད་དོ་ཡོདཔ་ཨིན། འ་ནི་གིས་ག་ཅི་གོཝ་སྨོ་ཟེར་བ་ཅིན་ དཔེར་བརྗོད་ནང་ཡོད་པའི་ཅ་ཆ་ལག་ཚུ་གིས་ ཆ་ལག་ཚུ་ཆ་མཉམ་གྱི་ཕན་ཚུན་དབྱེ་ཚན་ཁྱད་ཚབ་འབདཝ་ཨིན་ཟེར་ཨིན་པས། ཁྱད་ཚབ་གྲུབ་འབྲས་འདི་ དཔེ་ཚད་སྟོང་ཕྲག་གཅིག་ལས་ཉུང་བའི་ནང་ལས་ལེན་མི་ཚུགས་ཨིནམ་འདི་དྲན་དགོཔ།"
@@ -5168,7 +4740,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBSTDABW\">DSTDEV གིས་ དཔེ་ཚད
msgctxt ""
"04060101.xhp\n"
"hd_id3149427\n"
-"147\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -5177,7 +4748,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060101.xhp\n"
"par_id3148661\n"
-"148\n"
"help.text"
msgid "DSTDEV(Database; DatabaseField; SearchCriteria)"
msgstr "DSTDEV(གནད་སྡུད་གཞི་རྟེན་ ; གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་ ; ཁྱད་ཚད་འཚོལ།)"
@@ -5186,7 +4756,6 @@ msgstr "DSTDEV(གནད་སྡུད་གཞི་རྟེན་ ; གན
msgctxt ""
"04060101.xhp\n"
"hd_id3153945\n"
-"149\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -5195,7 +4764,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060101.xhp\n"
"par_id3149934\n"
-"150\n"
"help.text"
msgid "To find the standard deviation of the weight for all children of the same age in the example (scroll up, please), enter the following formula in B16:"
msgstr "དཔེར་བརྗོད་ནང་ལུ་སྐྱེ་ལོ་གཅིག་པའི་ཆ་ལག་ཚུ་ལུ་ལྗིད་ཚད་ཀྱི་ཚད་ལྡན་ཁ་བསྒྱུར་བ་འཚོལ་ནིའི་དོན་ལུ་ (ཡར་སྒྲིལ་གནང་) བི་ ༡༦ ནང་མན་ངག་འདི་བཙུགས། :"
@@ -5204,7 +4772,6 @@ msgstr "དཔེར་བརྗོད་ནང་ལུ་སྐྱེ་ལོ
msgctxt ""
"04060101.xhp\n"
"par_id3150630\n"
-"151\n"
"help.text"
msgid "<item type=\"input\">=DSTDEV(A1:E10;\"Weight\";A13:E14)</item>"
msgstr ""
@@ -5213,7 +4780,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3153536\n"
-"152\n"
"help.text"
msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result shown is the standard deviation of the weight of all children of this age."
msgstr "གྲལ་ཐིག་ ༡༤ ནང་ལོའི་འོག་ལུ་ ༧, ༨, ༩, ལ་སོགས་ གཅིག་ཤུལ་གཅིག་སྦེ་བཙུགས། སྟོན་ཏེ་ཡོད་པའི་གྲུབ་འབྲས་འདི་ འ་ནི་སྐྱེ་ལོའི་ཆ་ལག་ཚུའི་ལྗིད་ཚད་ཀྱི་ཚད་ལྡན་ཁ་བསྒྱུར་བ་ཨིན།"
@@ -5230,7 +4796,6 @@ msgstr "<bookmark_value>ཌི་ཨེསི་ཊི་ཌི་ཨི་ཝ
msgctxt ""
"04060101.xhp\n"
"hd_id3150429\n"
-"153\n"
"help.text"
msgid "DSTDEVP"
msgstr "DSTDEVP"
@@ -5239,7 +4804,6 @@ msgstr "DSTDEVP"
msgctxt ""
"04060101.xhp\n"
"par_id3145598\n"
-"154\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBSTDABWN\">DSTDEVP calculates the standard deviation of a population based on all cells of a data range which match the search criteria.</ahelp> The records from the example are treated as the whole population."
msgstr "<ahelp hid=\"HID_FUNC_DBSTDABWN\">DSTDEVP འཚོལ་ཞིབ་ཁྱད་ཚད་དང་མཐུན་སྒྲིག་འབད་མི་གནད་སྡུད་ཁྱབ་ཚད་ཀྱི་ནང་ཐིག་ཚུ་ཆ་མཉམ་ལུ་གཞི་བཞག་སྟེ་ མི་རློབས་ཀྱི་ཚད་ལྡན་ཁ་བསྒྱུར་བ་རྩིས་སྟོནམ་ཨིན། </ahelp> དཔེར་བརྗོད་ལས་ཐོན་ཡོད་པའི་ དྲན་ཐོ་ཚུ་མི་རློབས་ཧྲིལ་བུ་སྦེ་བརྩི་འཇོག་འབད་ཡོདཔ་ཨིན།"
@@ -5248,7 +4812,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBSTDABWN\">DSTDEVP འཚོལ་ཞིབ་ཁ
msgctxt ""
"04060101.xhp\n"
"hd_id3145307\n"
-"155\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -5257,7 +4820,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060101.xhp\n"
"par_id3149484\n"
-"156\n"
"help.text"
msgid "DSTDEVP(Database; DatabaseField; SearchCriteria)"
msgstr "DSTDEVP(གནད་སྡུད་གཞི་རྟེན་ ; གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་ ; ཁྱད་ཚད་འཚོལ།)"
@@ -5266,7 +4828,6 @@ msgstr "DSTDEVP(གནད་སྡུད་གཞི་རྟེན་ ; གན
msgctxt ""
"04060101.xhp\n"
"hd_id3153322\n"
-"157\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -5275,7 +4836,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060101.xhp\n"
"par_id3155431\n"
-"158\n"
"help.text"
msgid "To find the standard deviation of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
msgstr "ཇོ་གི་སྐྱེ་བའི་ཉིནམ་གྱི་སྡེ་ཚོགས་ནང་ལུ་འཛོམས་ཡོད་པའི་སྐྱེ་ལོ་གཅིག་པའི་ཆ་ལག་ཚུ་དོན་ལུ་ལྗིད་ཚད་ཀྱི་ཚད་ལྡན་ཁ་བསྒྱུར་བ་འཚོལ་ནིའི་དོན་ལུ་ (ཡར་སྒྲིལ་གནང་) འོག་ལུ་ཡོད་པའི་མན་ངག་འདི་ བི་ ༡༦ ནང་བཙུགས།:"
@@ -5284,7 +4844,6 @@ msgstr "ཇོ་གི་སྐྱེ་བའི་ཉིནམ་གྱི་
msgctxt ""
"04060101.xhp\n"
"par_id3148411\n"
-"159\n"
"help.text"
msgid "<item type=\"input\">=DSTDEVP(A1:E10;\"Weight\";A13:E14)</item>"
msgstr ""
@@ -5293,7 +4852,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3143271\n"
-"160\n"
"help.text"
msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result is the standard deviation of the weight for all same-aged children whose weight was checked."
msgstr "གྲལ་ཐིག་ ༡༤་ ནང་ ལོ་མ་ལངམ་ ༧ ༨ ༩་ དང་དེ་ལས་ལྷག་སྟེ་ གཅིག་གི་ཤུལ་མ་གཅིག་ཐོ་བཀོད་འབད། གྲུབ་འབྲས་འདི་ ལྗིད་ཚད་ཞིབ་དཔྱད་འབད་ཡོད་མི་ ལོ་གཅིག་པའི་ཨ་ལུ་ཆ་མཉམ་གྱི་དོན་ལུ་ ལྗིད་ཚད་འདི་གི་ ཚད་ལྡན་ཁ་བསྒྱུར་འདི་ཨིན།"
@@ -5310,7 +4868,6 @@ msgstr "<bookmark_value>ཌི་སམ་ལས་འགན་</bookmark_value>
msgctxt ""
"04060101.xhp\n"
"hd_id3154794\n"
-"161\n"
"help.text"
msgid "DSUM"
msgstr "DSUM"
@@ -5319,7 +4876,6 @@ msgstr "DSUM"
msgctxt ""
"04060101.xhp\n"
"par_id3149591\n"
-"162\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBSUMME\">DSUM returns the total of all cells in a database field in all rows (records) that match the specified search criteria.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DBSUMME\">DSUM གསལ་བཀོད་འབད་ཡོད་པའི་འཚོལ་ཞིབ་ཁྱད་ཚད་མཐུན་སྒྲིག་འབད་མི་གྲལ་ཐིག་དྲན་ཐོ་ཚུ) ཆ་མཉམ་ནང་ གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་ནང་གི་ནང་ཐིག་ཆ་མཉམ་གྱི་ཡོངས་བསྡོམས་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -5328,7 +4884,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBSUMME\">DSUM གསལ་བཀོད་འབ
msgctxt ""
"04060101.xhp\n"
"hd_id3146128\n"
-"163\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -5337,7 +4892,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060101.xhp\n"
"par_id3150989\n"
-"164\n"
"help.text"
msgid "DSUM(Database; DatabaseField; SearchCriteria)"
msgstr "DSUM(གནད་སྡུད་གཞི་རྟེན་ ; གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་ ; ཁྱད་ཚད་འཚོལ།)"
@@ -5346,7 +4900,6 @@ msgstr "DSUM(གནད་སྡུད་གཞི་རྟེན་ ; གནད
msgctxt ""
"04060101.xhp\n"
"hd_id3159079\n"
-"165\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -5355,7 +4908,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060101.xhp\n"
"par_id3152766\n"
-"166\n"
"help.text"
msgid "To find the length of the combined distance to school of all children at Joe's birthday party (scroll up, please) who are in second grade, enter the following formula in B16:"
msgstr "ཇོ་གི་སྐྱེ་བའི་ཉིནམ་གྱི་སྡེ་ཚོགས་ནང་རིམ་པ་གཉིས་པ་ནང་ཡོད་པའི་ཆ་ལག་ཚུ་ཆ་མཉམ་གྱི་སློབ་གྲྭ་ཚུན་གྱི་མཉམ་སྦྲགས་འབད་ཡོད་པའི་རིང་ཚད་འཚོལ་ནིའི་དོན་ལུ་ (ཡར་བཤུད་སྒྲིལ་འབད་གནང་།) བི་ ༡༦ ནང་འོག་ལུ་ཡོད་པའི་མན་ངག་བཙུགས།:"
@@ -5364,7 +4916,6 @@ msgstr "ཇོ་གི་སྐྱེ་བའི་ཉིནམ་གྱི་
msgctxt ""
"04060101.xhp\n"
"par_id3151312\n"
-"167\n"
"help.text"
msgid "<item type=\"input\">=DSUM(A1:E10;\"Distance to School\";A13:E14)</item>"
msgstr ""
@@ -5373,7 +4924,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3150596\n"
-"168\n"
"help.text"
msgid "Enter <item type=\"input\">2</item> in row 14 under Grade. The sum (1950) of the distances to school of all the children who are in second grade is displayed."
msgstr "\"Grade\" གི་འོག་གི་གྲལ་ཐིག་ ༡༤ ནང་ལུ་ \"2\" བཙུགས། རིམ་པ་གཉིས་པ་ནང་ཡོད་པའི་ཆ་ལག་ཚུའི་སློབ་གྲྭ་ཚུན་གྱི་གྱང་ཚད་བསྡོམས་(༡༩༥༠)བཀྲམ་སྟོན་འབད་ཡོདཔ་ཨིན།"
@@ -5390,7 +4940,6 @@ msgstr "<bookmark_value>DVAR ལས་འགན་</bookmark_value><bookmark_val
msgctxt ""
"04060101.xhp\n"
"hd_id3155614\n"
-"170\n"
"help.text"
msgid "DVAR"
msgstr "DVAR"
@@ -5399,7 +4948,6 @@ msgstr "DVAR"
msgctxt ""
"04060101.xhp\n"
"par_id3154418\n"
-"171\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBVARIANZ\">DVAR returns the variance of all cells of a database field in all records that match the specified search criteria.</ahelp> The records from the example are treated as a sample of data. A representative result cannot be obtained from a sample population of less than one thousand."
msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZ\">DVAR གསལ་བཀོད་འབད་དེ་ཡོད་པའི་འཚོལ་ཞིབ་ཁྱད་ཚད་མཐུན་སྒྲིག་འབད་མི་དྲན་ཐོ་ཚུ་ཆ་མཉམ་ནང་གནད་སྡུད་གཞི་རྟེན་ས་སྒོའི་ནང་ཐིག་ཚུ་ཆ་མཉམ་གྱི་མི་མཐུན་པ་སླར་ལོག་འབདཝ་ཨིན། </ahelp> དཔེར་བརྗོད་ལས་ཐོན་པའི་དྲན་ཐོ་ཚུ་ གནད་སྡུད་ཀྱི་དཔེ་ཚད་སྦེ་ བརྩི་འཇོག་འབད་ཡོདཔ་ཨིན། ཁྱད་ཚབ་གྲུབ་འབྲས་གཅིག་ སྟོང་ཕྲག་གཅིག་ལས་ཉུང་མི་ མི་རློབས་དཔེ་ཚད་ལས་ལེན་མི་ཚུགསཔ་ཨིན།"
@@ -5408,7 +4956,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZ\">DVAR གསལ་བཀོད་འབ
msgctxt ""
"04060101.xhp\n"
"hd_id3154825\n"
-"172\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -5417,7 +4964,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060101.xhp\n"
"par_id3156138\n"
-"173\n"
"help.text"
msgid "DVAR(Database; DatabaseField; SearchCriteria)"
msgstr "DVAR(གནད་སྡུད་གཞི་རྟེན་ ; གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་ ; ཁྱད་ཚད་འཚོལ།)"
@@ -5426,7 +4972,6 @@ msgstr "DVAR(གནད་སྡུད་གཞི་རྟེན་ ; གནད
msgctxt ""
"04060101.xhp\n"
"hd_id3151257\n"
-"174\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -5435,7 +4980,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060101.xhp\n"
"par_id3153701\n"
-"175\n"
"help.text"
msgid "To find the variance of the weight of all children of the same age of the above example (scroll up, please), enter the following formula in B16:"
msgstr "ལྟག་གི་དཔེར་བརྗོད་ནང་ལུ་བཀོད་དེ་ཡོད་པའི་ སྐྱེ་ལོ་གཅིག་པའི་ཆ་ལག་ཆ་མཉམ་གྱི་ལྗིད་ཚད་ཀྱི་མི་མཐུན་པ་འཚོལ་ནིའི་དོན་ལུ་ (ཡར་བཤུད་སྒྲིལ་འབད་གནང་) བི་ ༡༦ འདི་འོག་ལུ་ཡོད་པའི་མན་ངག་ནང་བཙུགས།:"
@@ -5444,7 +4988,6 @@ msgstr "ལྟག་གི་དཔེར་བརྗོད་ནང་ལུ་
msgctxt ""
"04060101.xhp\n"
"par_id3153676\n"
-"176\n"
"help.text"
msgid "<item type=\"input\">=DVAR(A1:E10;\"Weight\";A13:E14)</item>"
msgstr ""
@@ -5453,7 +4996,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3153798\n"
-"177\n"
"help.text"
msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. You will see as a result the variance of the weight values for all children of this age."
msgstr "གྲལ་ཐིག་ ༡༤ ནང་ སྐྱེ་ལོའི་འོག་ལུ་ ༧ ༨ ༩ ལ་སོགས་ གཅིག་ཤུལ་གཅིག་སྦེ་བཙུགས། གྲུབ་འབྲས་སྦེ་ ཁྱོད་ཀྱིས་ འ་ནི་སྐྱེ་ལོའི་ཆ་ལག་ཆ་མཉམ་གྱི་དོན་ལུ་ ལྗིད་ཚད་གནས་གོང་ཚུའི་མི་མཐུན་པ་མཐོངམ་ཨིན།"
@@ -5470,7 +5012,6 @@ msgstr "<bookmark_value>DVARP ལས་འགན་</bookmark_value><bookmark_va
msgctxt ""
"04060101.xhp\n"
"hd_id3153880\n"
-"178\n"
"help.text"
msgid "DVARP"
msgstr "DVARP"
@@ -5479,7 +5020,6 @@ msgstr "DVARP"
msgctxt ""
"04060101.xhp\n"
"par_id3155119\n"
-"179\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">DVARP calculates the variance of all cell values in a database field in all records that match the specified search criteria.</ahelp> The records are from the example are treated as an entire population."
msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">DVARP གསལ་བཀོད་འབད་དེ་ཡོད་པའི་ འཚོལ་ཞིབ་ཁྱད་ཚད་དང་མཐུན་སྒྲིག་འབད་མི་ དྲན་ཐོ་ཚུ་ཆ་མཉམ་ནང་ གནད་སྡུད་གཞི་རྟེན་ས་སྒོའི་ནང་ཐིག་གནས་གོང་ཚུའི་ མི་མཐུན་པ་རྩིས་སྟོནམ་ཨིན། </ahelp> དྲན་ཐོ་ཚུ་དཔེར་བརྗོད་ལས་ཨིནམ་ལས་ དེ་ཚུ་ མི་རློབས་ཧྲིལ་བུ་སྦེ་བརྩི་འཇོག་འབད་དེ་ཡོདཔ་ཨིན།"
@@ -5488,7 +5028,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">DVARP གསལ་བཀོད་འ
msgctxt ""
"04060101.xhp\n"
"hd_id3145774\n"
-"180\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -5497,7 +5036,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060101.xhp\n"
"par_id3153776\n"
-"181\n"
"help.text"
msgid "DVARP(Database; DatabaseField; SearchCriteria)"
msgstr "DVARP(གནད་སྡུད་གཞི་རྟེན་ ; གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་ ; འཚོལ་ཞིབ་ཁྱད་ཚད།)"
@@ -5506,7 +5044,6 @@ msgstr "DVARP(གནད་སྡུད་གཞི་རྟེན་ ; གནད
msgctxt ""
"04060101.xhp\n"
"hd_id3151110\n"
-"182\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -5515,7 +5052,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060101.xhp\n"
"par_id3147099\n"
-"183\n"
"help.text"
msgid "To find the variance of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
msgstr "ཇོ་གི་སྐྱེ་བའི་ཉིནམ་གྱི་སྡེ་ཚོགས་ནང་ འཛོམས་ཡོད་པའི་སྐྱེ་ལོ་གཅིག་པའི་ཆ་ལག་ཚུ་ཆ་མཉམ་གྱི་ལྗིད་ཚད་ཀྱི་མི་མཐུན་པ་འཚོལ་ནིའི་དོན་ལུ་ (ཡར་བཤུད་སྒྲིལ་གནང་) བི་ ༡༦ ནང་འོག་ལུ་ཡོད་པའི་མན་ངག་བཙུགས།"
@@ -5524,7 +5060,6 @@ msgstr "ཇོ་གི་སྐྱེ་བའི་ཉིནམ་གྱི་
msgctxt ""
"04060101.xhp\n"
"par_id3147322\n"
-"184\n"
"help.text"
msgid "<item type=\"input\">=DVARP(A1:E10;\"Weight\";A13:E14)</item>"
msgstr ""
@@ -5533,7 +5068,6 @@ msgstr ""
msgctxt ""
"04060101.xhp\n"
"par_id3146902\n"
-"185\n"
"help.text"
msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The variance of the weight values for all children of this age attending Joe's birthday party appears."
msgstr "གྲལ་ཐིག་ ༡༤ ནང་ སྐྱེ་ལོའི་འོག་ལུ་ ༧ ༨ ༩ ལ་སོགས་གཅིག་ཤུལ་གཅིག་སྦེ་བཙུགས། ཇོ་གི་སྐྱེ་བའི་ཉིནམ་གྱི་སྡེ་ཚོགས་ནང་ འཛོམས་ཡོད་པའི་ འ་ནི་སྐྱེ་ལོའི་ཆ་ལག་ཆ་མཉམ་གྱི་དོན་ལུ་ ལྗིད་ཚད་གནས་གོང་ཚུའི་ མི་མཐུན་པ་འབྱུངམ་ཨིན།"
@@ -5714,22 +5248,6 @@ msgctxt ""
msgid "Functions"
msgstr "ལས་འགན་ཚུ།"
-#: 04060102.xhp
-msgctxt ""
-"04060102.xhp\n"
-"par_id231020162315043955\n"
-"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr ""
-
-#: 04060102.xhp
-msgctxt ""
-"04060102.xhp\n"
-"par_id231020163315043955\n"
-"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr ""
-
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -5750,17 +5268,14 @@ msgstr "<bookmark_value>དངུལ་འབྲེལ་ལས་འགན་
msgctxt ""
"04060103.xhp\n"
"hd_id3143284\n"
-"1\n"
"help.text"
msgid "Financial Functions Part One"
msgstr "དངུལ་འབྲེལ་ལས་འགན་གྱི་ཡན་ལག་དང་པ།"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3149095\n"
-"2\n"
"help.text"
msgid "<variable id=\"finanztext\">This category contains the mathematical finance functions of <item type=\"productname\">%PRODUCTNAME</item> Calc.</variable>"
msgstr "<variable id=\"finanztext\"> འ་ནི་དབྱེ་རིམ་ནང་ན་ <item type=\"productname\">%PRODUCTNAME</item> ཀེལ་སི་གི་ཨང་རྩིས་དངུལ་འབྲེལ་ལས་འགན་ཚུ་ཤོམ་ཏེ་ཡོདཔ་ཨིན། </variable>"
@@ -5777,7 +5292,6 @@ msgstr "<bookmark_value>AMORDEGRC ལས་འགན་</bookmark_value><bookmar
msgctxt ""
"04060103.xhp\n"
"hd_id3153366\n"
-"359\n"
"help.text"
msgid "AMORDEGRC"
msgstr "AMORDEGRC"
@@ -5786,7 +5300,6 @@ msgstr "AMORDEGRC"
msgctxt ""
"04060103.xhp\n"
"par_id3147434\n"
-"360\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">Calculates the amount of depreciation for a settlement period as degressive amortization.</ahelp> Unlike AMORLINC, a depreciation coefficient that is independent of the depreciable life is used here."
msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\"> བུ་ལོན་སྤྲོད་འཇལ་དུས་ཡུན་དོན་ལུ་ གོང་ཐང་ཆག་པའི་དངུལ་བསྡོམས་འདི མར་འབབ་བུ་ལོན་བཏབ་པ་སྦེ་རྩིས་སྟོན་འབདཝ་ཨིན། </ahelp> AMORLINC བཟུམ་མེན་པར་ གོང་ཐང་ཆག་པའི་ཚེ་ལས་རང་དབང་ཨིན་པའི་ གོང་ཐང་ཆག་པའི་གྲངས་རྟགས་འདི་ནཱ་ལུ་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན།"
@@ -5795,7 +5308,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\"> བུ་ལོན་སྤྲོ
msgctxt ""
"04060103.xhp\n"
"hd_id3155855\n"
-"361\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -5804,7 +5316,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060103.xhp\n"
"par_id3147427\n"
-"362\n"
"help.text"
msgid "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
msgstr "AMORDEGRC(རིན་ ; ཉོ་ཚོང་འབད་ཡོད་པའི་ཚེས་གྲངས་ ; དུས་ཡུན་དང་པ་ ; ཉེན་སྐྱོབ་ ; དུས་ཡུན་ ; གོང་ཚད་ ; གཞི་རྩ།)"
@@ -5813,7 +5324,6 @@ msgstr "AMORDEGRC(རིན་ ; ཉོ་ཚོང་འབད་ཡོད་
msgctxt ""
"04060103.xhp\n"
"par_id3147125\n"
-"363\n"
"help.text"
msgid "<emph>Cost</emph> is the acquisition costs."
msgstr "<emph> གླ་ཆ་ </emph>: ཉོ་སྒྲུབ་གླ་ཆ་ཚུ།"
@@ -5822,7 +5332,6 @@ msgstr "<emph> གླ་ཆ་ </emph>: ཉོ་སྒྲུབ་གླ་ཆ
msgctxt ""
"04060103.xhp\n"
"par_id3151074\n"
-"364\n"
"help.text"
msgid "<emph>DatePurchased</emph> is the date of acquisition."
msgstr "<emph> ཉོ་ཚོང་འབད་བའི་ཚེས་ </emph>: ཉོ་སྒྲུབ་ཀྱི་ཚེས།"
@@ -5831,7 +5340,6 @@ msgstr "<emph> ཉོ་ཚོང་འབད་བའི་ཚེས་ </emph>
msgctxt ""
"04060103.xhp\n"
"par_id3144765\n"
-"365\n"
"help.text"
msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
msgstr "<emph> དུས་ཡུན་དང་པམ་ </emph>: བུ་ལོན་སྤྲོད་འཇལ་དུས་ཡུན་དང་པམ་གྱི་ཚེས་མཇུག"
@@ -5840,7 +5348,6 @@ msgstr "<emph> དུས་ཡུན་དང་པམ་ </emph>: བུ་ལ
msgctxt ""
"04060103.xhp\n"
"par_id3156286\n"
-"366\n"
"help.text"
msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
msgstr "<emph> ཉེན་སྐྱོབ་ </emph>: མར་འབབ་འབད་ནི་ཚེས་ཀྱི་མཇུག་ལུ་ཉེན་སྐྱོབ་གནས་གོང་གི་བདོག་གཏད་གཙོ་བོ།"
@@ -5849,7 +5356,6 @@ msgstr "<emph> ཉེན་སྐྱོབ་ </emph>: མར་འབབ་འ
msgctxt ""
"04060103.xhp\n"
"par_id3153415\n"
-"367\n"
"help.text"
msgid "<emph>Period</emph> is the settlement period to be considered."
msgstr "<emph> དུས་ཡུན་ </emph>: ཆ་འཇོག་འབད་དགོསཔ་ཨིན་པའི་བུ་ལོན་སྤྲོད་འཇལ་འབད་ནིའི་དུས་ཡུན།"
@@ -5858,7 +5364,6 @@ msgstr "<emph> དུས་ཡུན་ </emph>: ཆ་འཇོག་འབད
msgctxt ""
"04060103.xhp\n"
"par_id3155064\n"
-"368\n"
"help.text"
msgid "<emph>Rate</emph> is the rate of depreciation."
msgstr "<emph> གོང་ཚད་ </emph>: མར་འབབ་ཀྱི་མགྱོགས་ཚད།"
@@ -5875,7 +5380,6 @@ msgstr "<bookmark_value>AMORLINC ལས་འགན་</bookmark_value><bookmark
msgctxt ""
"04060103.xhp\n"
"hd_id3153765\n"
-"369\n"
"help.text"
msgid "AMORLINC"
msgstr "AMORLINC"
@@ -5884,7 +5388,6 @@ msgstr "AMORLINC"
msgctxt ""
"04060103.xhp\n"
"par_id3159264\n"
-"370\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Calculates the amount of depreciation for a settlement period as linear amortization. If the capital asset is purchased during the settlement period, the proportional amount of depreciation is considered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\"> བུ་ལོན་སྤྲོད་འཇལ་དུས་ཡུན་གྱི་དོན་ལུ་ གོང་ཐང་ཆག་པའི་དངུལ་བསྡོམས་ རིང་ཚད་ཀྱི་བུ་ལོན་བཏབ་པ་སྦེ་རྩིས་སྟོནམ་ཨིན། དངུལ་བདོག་གཏད་འདི་ བུ་ལོན་སྤྲོད་འཇལ་དུས་ཡུན་སྐབས་ལུ་ ཉོ་ཚོང་འབད་འབདཝ་ཨིན་པ་ཅིན་ གོང་ཐང་ཆག་པ་གི་ སྙོམས་ཚད་ཀྱི་དངུལ་བསྡོམས་འདི་ ཆ་འཇོག་འབད་ནི་ཨིན། </ahelp>"
@@ -5893,7 +5396,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\"> བུ་ལོན་སྤྲོ
msgctxt ""
"04060103.xhp\n"
"hd_id3150044\n"
-"371\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -5902,7 +5404,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060103.xhp\n"
"par_id3147363\n"
-"372\n"
"help.text"
msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
msgstr "AMORLINC(རིན་ ; ཉོ་ཚོང་འབད་ཡོད་པའི་ཚེས་ ; དུས་ཡུན་དང་པམ་ ; ཉེན་སྐྱོབ་ ; དུས་ཡུན་ ; གོང་ཚད་ ; གཞི་རྩ།)"
@@ -5911,7 +5412,6 @@ msgstr "AMORLINC(རིན་ ; ཉོ་ཚོང་འབད་ཡོད་པ
msgctxt ""
"04060103.xhp\n"
"par_id3146920\n"
-"373\n"
"help.text"
msgid "<emph>Cost</emph> means the acquisition costs."
msgstr "<emph> གླ་ཆ་ </emph>: ཉོ་སྒྲུབ་གླ་ཆ་ཚུ།"
@@ -5920,7 +5420,6 @@ msgstr "<emph> གླ་ཆ་ </emph>: ཉོ་སྒྲུབ་གླ་ཆ
msgctxt ""
"04060103.xhp\n"
"par_id3163807\n"
-"374\n"
"help.text"
msgid "<emph>DatePurchased</emph> is the date of acquisition."
msgstr "<emph> ཉོ་ཚོང་འབད་བའི་ཚེས་ </emph>: ཉོ་སྒྲུབ་ཀྱི་ཚེས།"
@@ -5929,7 +5428,6 @@ msgstr "<emph> ཉོ་ཚོང་འབད་བའི་ཚེས་ </emph>
msgctxt ""
"04060103.xhp\n"
"par_id3148488\n"
-"375\n"
"help.text"
msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
msgstr "<emph> དུས་ཡུན་དང་པམ་ </emph>: བུ་ལོན་སྤྲོད་འཇལ་དུས་ཡུན་དང་པམ་གྱི་ཚེས་མཇུག"
@@ -5938,7 +5436,6 @@ msgstr "<emph> དུས་ཡུན་དང་པམ་ </emph>: བུ་ལ
msgctxt ""
"04060103.xhp\n"
"par_id3149530\n"
-"376\n"
"help.text"
msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
msgstr "<emph> ཉེན་སྐྱོབ་ </emph>: མར་འབབ་འབད་ནི་ཚེས་ཀྱི་མཇུག་ལུ་ཉེན་སྐྱོབ་གནས་གོང་གི་བདོག་གཏད་གཙོ་བོ།"
@@ -5947,7 +5444,6 @@ msgstr "<emph> ཉེན་སྐྱོབ་ </emph>: མར་འབབ་འ
msgctxt ""
"04060103.xhp\n"
"par_id3148633\n"
-"377\n"
"help.text"
msgid "<emph>Period</emph> is the settlement period to be considered."
msgstr "<emph> དུས་ཡུན་ </emph>: ཆ་འཇོག་འབད་དགོསཔ་ཨིན་པའི་བུ་ལོན་སྤྲོད་འཇལ་འབད་ནིའི་དུས་ཡུན།"
@@ -5956,7 +5452,6 @@ msgstr "<emph> དུས་ཡུན་ </emph>: ཆ་འཇོག་འབད
msgctxt ""
"04060103.xhp\n"
"par_id3150982\n"
-"378\n"
"help.text"
msgid "<emph>Rate</emph> is the rate of depreciation."
msgstr "<emph> གོང་ཚད་ </emph>: མར་འབབ་ཀྱི་མགྱོགས་ཚད།"
@@ -5973,7 +5468,6 @@ msgstr "<bookmark_value>ACCRINT ལས་འགན།</bookmark_value>"
msgctxt ""
"04060103.xhp\n"
"hd_id3145257\n"
-"335\n"
"help.text"
msgid "ACCRINT"
msgstr "ACCRINT"
@@ -5990,7 +5484,6 @@ msgstr "<bookmark_value>འཕེལ་ཡོད་པའི་དངུལ་
msgctxt ""
"04060103.xhp\n"
"par_id3151276\n"
-"336\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Calculates the accrued interest of a security in the case of periodic payments.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\"> དུས་མཚམས་གླ་དངུལ་ཚུའི་ ཐད་ཀར་ སྲུང་སྐྱོབ་ཀྱི་ སྐྱེད་འཕེལ་ཡོད་མི་རྩིས་སྟོན་འབདཝ་ཨིན། </ahelp>"
@@ -5999,7 +5492,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\"> དུས་མཚམས་གླ
msgctxt ""
"04060103.xhp\n"
"hd_id3152581\n"
-"337\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -6008,67 +5500,54 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060103.xhp\n"
"par_id3159092\n"
-"338\n"
"help.text"
msgid "ACCRINT(Issue; FirstInterest; Settlement; Rate; Par; Frequency; Basis)"
msgstr "ACCRINT(སྤྲོད་ ; སྐྱེད་དང་པམ་ ; བུ་ལོན་སྤྲོད་འཇལ་ ; གོང་ཚད་ ; མཉམ་པ་ ; འབྱུང་ཐེངས་ ; གཞི་རྩ།)"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3150519\n"
-"339\n"
"help.text"
msgid "<emph>Issue</emph> (required) is the issue date of the security."
msgstr "<emph> སྤྲོད་ </emph>: སྲུང་སྐྱོབ་ཀྱི་སྤྲོད་ཚེས།"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3155376\n"
-"340\n"
"help.text"
msgid "<emph>FirstInterest</emph> (required) is the first interest date of the security."
msgstr "<emph> སྐྱེད་དང་པམ་ </emph>: སྲུང་སྐྱོབ་ཀྱི་སྐྱེད་ཚེས་དང་པམ།"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3166431\n"
-"341\n"
"help.text"
msgid "<emph>Settlement</emph> (required) is the date at which the interest accrued up until then is to be calculated."
msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: རྩིས་སྟོན་འབད་ནི་ཨིནམ་ཚུན་གྱི་ སྐྱེད་ཡར་འཕེལ་ཡོད་པའི་ཚེས་གྲངས།"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3154486\n"
-"342\n"
"help.text"
msgid "<emph>Rate</emph> (required) is the annual nominal rate of interest (coupon interest rate)"
msgstr "<emph> གོང་ཚད་ </emph>: སྐྱེད་ཀྱི་ལོ་བསྟར་གོང་ཚད་ཆུང་བ། (འཛིན་ཤོག་སྐྱེད་ཀྱི་གོང་ཚད།)"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3156445\n"
-"343\n"
"help.text"
msgid "<emph>Par</emph> (optional) is the par value of the security."
msgstr "<emph> མཉམ་པ་ </emph>: སྲུང་སྐྱོབ་ཀྱི་གནས་གོང་མཉམ་པ།"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3149406\n"
-"344\n"
"help.text"
msgid "<emph>Frequency</emph> (required) is the number of interest payments per year (1, 2 or 4)."
msgstr "<emph> འབྱུང་ཐེངས་ </emph>: ལོ་རེ་རེ་ལུ་སྐྱེད་གླ་དངུལ་ཚུའི་གྱངས་ཁ། (༡, ༢ ཡང་ན་ ༤།)."
@@ -6077,7 +5556,6 @@ msgstr "<emph> འབྱུང་ཐེངས་ </emph>: ལོ་རེ་ར
msgctxt ""
"04060103.xhp\n"
"hd_id3148699\n"
-"345\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -6086,7 +5564,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060103.xhp\n"
"par_id3148599\n"
-"346\n"
"help.text"
msgid "A security is issued on 2001-02-28. First interest is set for 2001-08-31. The settlement date is 2001-05-01. The Rate is 0.1 or 10% and Par is 1000 currency units. Interest is paid half-yearly (frequency is 2). The basis is the US method (0). How much interest has accrued?"
msgstr "སྲུང་སྐྱོབ་འདི་༢་༢༨་༢༠༠༡ ལུ་སྤྲོད་ཡོདཔ་ཨིན། སྐྱེད་དང་པམ་འདི་ ༨་༣༡་༢༠༠༡ ལུ་གཞི་སྒྲིག་འབད་ཡོདཔ་ཨིན། བུ་ལོན་སྤྲོད་འཇལ་གནད་སྡུད་འདི་ ༥་༡་༢༠༠༡ ལུ་ཨིན། གོང་ཚད་འདི་༠་༡ ཡང་ན་ ༡༠% དང་མཉམ་པ་འདི་ ༡༠༠༠ དངུལ་ཆ་ཕྲན་ཚུ་ཨིན། སྐྱེད་དངུལ་འདི་ལོ་ཕྱེད་ཀ་སྦེ་སྤྲོད་ཡོདཔ་ཨིན་(འབྱུང་ཐེངས་འདི་ ༢ )། གཞི་རྩ་འདི་ ཡུ་ཨེསི་ཐབས་ལམ་(༠)ཨིན། སྐྱེད་ག་དེམ་ཅིག་འཕེལ་ཡོདཔ?"
@@ -6095,7 +5572,6 @@ msgstr "སྲུང་སྐྱོབ་འདི་༢་༢༨་༢༠༠༡
msgctxt ""
"04060103.xhp\n"
"par_id3148840\n"
-"347\n"
"help.text"
msgid "<item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> returns 16.94444."
msgstr ""
@@ -6112,7 +5588,6 @@ msgstr "<bookmark_value>ACCRINTM ལས་འགན་</bookmark_value><bookmark
msgctxt ""
"04060103.xhp\n"
"hd_id3151240\n"
-"348\n"
"help.text"
msgid "ACCRINTM"
msgstr "ACCRINTM"
@@ -6121,7 +5596,6 @@ msgstr "ACCRINTM"
msgctxt ""
"04060103.xhp\n"
"par_id3157981\n"
-"349\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Calculates the accrued interest of a security in the case of one-off payment at the settlement date.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\"> བུ་ལོན་སྤྲོད་འཇལ་ཚེས་གྲངས་གུ་ལུ་ one-off གླ་་དངུལ་གྱི་ ཐད་ཀར་ལུ་ སྲུང་སྐྱོབ་ཀྱི་ ཡར་འཕེལ་ཡོད་པའི་སྐྱེད་རྩིས་སྟོན་འབདཝ་ཨིན། </ahelp>"
@@ -6130,7 +5604,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\"> བུ་ལོན་སྤྲོ
msgctxt ""
"04060103.xhp\n"
"hd_id3159097\n"
-"350\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -6139,47 +5612,38 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060103.xhp\n"
"par_id3147074\n"
-"351\n"
"help.text"
msgid "ACCRINTM(Issue; Settlement; Rate; Par; Basis)"
msgstr "ACCRINTM(སྤྲོད་ ; བུ་ལོན་སྤྲོད་འཇལ་ ; གོང་ཚད་ ; མཉམ་པ་ ; གཞི་རྩ།)"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3144773\n"
-"352\n"
"help.text"
msgid "<emph>Issue</emph> (required) is the issue date of the security."
msgstr "<emph> སྤྲོད་ </emph>: སྲུང་སྐྱོབ་ཀྱི་སྤྲོད་ཚེས།"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3154956\n"
-"353\n"
"help.text"
msgid "<emph>Settlement</emph> (required) is the date at which the interest accrued up until then is to be calculated."
msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: རྩིས་སྟོན་འབད་ནི་ཨིནམ་ཚུན་གྱི་ སྐྱེད་ཡར་འཕེལ་ཡོད་པའི་ཚེས་གྲངས།"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3153972\n"
-"354\n"
"help.text"
msgid "<emph>Rate</emph> (required) is the annual nominal rate of interest (coupon interest rate)."
msgstr "<emph> གོང་ཚད་ </emph>: སྐྱེད་ཀྱི་ལོ་བསྟར་གོང་ཚད་ཆུང་བ་ (འཛིན་ཤོག་སྐྱེད་ཀྱི་གོང་ཚད།)"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3159204\n"
-"355\n"
"help.text"
msgid "<emph>Par</emph> (optional) is the par value of the security."
msgstr "<emph> མཉམ་པ་ </emph>: སྲུང་སྐྱོབ་ཀྱི་གནས་གོང་མཉམ་པ།"
@@ -6188,7 +5652,6 @@ msgstr "<emph> མཉམ་པ་ </emph>: སྲུང་སྐྱོབ་ཀ
msgctxt ""
"04060103.xhp\n"
"hd_id3155384\n"
-"356\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -6197,7 +5660,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060103.xhp\n"
"par_id3154541\n"
-"357\n"
"help.text"
msgid "A security is issued on 2001-04-01. The maturity date is set for 2001-06-15. The Rate is 0.1 or 10% and Par is 1000 currency units. The basis of the daily/annual calculation is the daily balance (3). How much interest has accrued?"
msgstr "༤/༡/༢༠༠༡ ལུ་ སྲུང་སྐྱོབ་གཅིག་སྤྲོད་དེ་ཡོདཔ་ཨིན། དུས་ཡུན་ཚང་བའི་ཚེས་གྲངས་འདི་ ༦/༡༥/༢༠༠༡ ལུ་གཞི་སྒྲིག་འབད་ཡོད། གོང་ཚད་འདི་ ༠་༡ ཡང་ན་ ༡༠% དང་ མཉམ་པ་འདི་ ༡༠༠༠ དངུལ་ཆ་ཕྲན་ཨིན། ཉིན་བསྟར་/ལོ་བསྟར་རྩིས་ལས་ཀྱི་ གཞི་རྩ་འདི་ ཉིན་བསྟར་ལྷག་ལུས་ (༣) ཨིན། སྐྱེད་ག་དེམ་ཅིག་འཕེལ་ཡོད?"
@@ -6206,7 +5668,6 @@ msgstr "༤/༡/༢༠༠༡ ལུ་ སྲུང་སྐྱོབ་གཅ
msgctxt ""
"04060103.xhp\n"
"par_id3149128\n"
-"358\n"
"help.text"
msgid "<item type=\"input\">=ACCRINTM(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> returns 20.54795."
msgstr ""
@@ -6223,7 +5684,6 @@ msgstr "<bookmark_value>RECEIVED ལས་འགན་</bookmark_value><bookmark
msgctxt ""
"04060103.xhp\n"
"hd_id3145753\n"
-"390\n"
"help.text"
msgid "RECEIVED"
msgstr "RECEIVED"
@@ -6232,7 +5692,6 @@ msgstr "RECEIVED"
msgctxt ""
"04060103.xhp\n"
"par_id3150051\n"
-"391\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">Calculates the amount received that is paid for a fixed-interest security at a given point in time.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\"> གྲ་སྒྲིག་འབད་ཡོད་པའི་དུས་ཚོད་ཀྱི་ས་ཚིགས་ལུ་ སྲུང་སྐྱོབ་སྐྱེད་གཏན་བཟོས་ཀྱི་དོན་ དངུལ་སྤྲོད་འབད་ཡོད་པའི་ལེན་པའི་དངུལ་བསྡོམས་རྩིས་སྟོན་འབདཝ་ཨིན། </ahelp>"
@@ -6241,7 +5700,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\"> གྲ་སྒྲིག་འབ
msgctxt ""
"04060103.xhp\n"
"hd_id3149385\n"
-"392\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -6250,7 +5708,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060103.xhp\n"
"par_id3145362\n"
-"393\n"
"help.text"
msgid "RECEIVED(\"Settlement\"; \"Maturity\"; Investment; Discount; Basis)"
msgstr "RECEIVED(བུ་ལོན་སྤྲོད་འཇལ་; དུས་ཡུན་ཚང་བ་; མ་རྩ་བཙུགས་པ་; མར་བཅག་; གཞི་རྩ།)"
@@ -6259,7 +5716,6 @@ msgstr "RECEIVED(བུ་ལོན་སྤྲོད་འཇལ་; དུས
msgctxt ""
"04060103.xhp\n"
"par_id3154654\n"
-"394\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ཉོ་ཚོང་འབད་བའི་ཚེས།"
@@ -6268,7 +5724,6 @@ msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: ས
msgctxt ""
"04060103.xhp\n"
"par_id3153011\n"
-"395\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་སྐྱོབ་དུས་ཡུན་ཚང་ནིའི་ཚེས། (དུས་ཡོལཝ་ཨིན།)."
@@ -6277,7 +5732,6 @@ msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་
msgctxt ""
"04060103.xhp\n"
"par_id3155525\n"
-"396\n"
"help.text"
msgid "<emph>Investment</emph> is the purchase sum."
msgstr "<emph> མ་རྩ་བཙུགས་པ་ </emph>: ཉོ་ཚོང་འབད་བའི་དངུལ་བསྡོམས།"
@@ -6286,7 +5740,6 @@ msgstr "<emph> མ་རྩ་བཙུགས་པ་ </emph>: ཉོ་ཚོ
msgctxt ""
"04060103.xhp\n"
"par_id3155760\n"
-"397\n"
"help.text"
msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
msgstr "<emph> མར་བཅག་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ཉོ་སྒྲུབ་གུ་ལུ་ མར་བཅག་བརྒྱ་ཆ།"
@@ -6295,7 +5748,6 @@ msgstr "<emph> མར་བཅག་ </emph>: སྲུང་སྐྱོབ་
msgctxt ""
"04060103.xhp\n"
"hd_id3154710\n"
-"398\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -6304,7 +5756,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060103.xhp\n"
"par_id3154735\n"
-"399\n"
"help.text"
msgid "Settlement date: February 15 1999, maturity date: May 15 1999, investment sum: 1000 currency units, discount: 5.75 per cent, basis: Daily balance/360 = 2."
msgstr "བུ་ལོན་སྤྲོད་འཇལ་ཚེས་གྲངས་ : དབྱིན་ལོ་ ༡༩༩༩ དབྱིན་ཟླ་ ༢ པའི་དབྱིན་ཚེས་ ༡༥ དུས་ཡུན་ཚང་བའི་ཚེས་གྲངས་ : དབྱིན་ལོ་ ༡༩༩༩ དབྱིན་ཟླ་ ༥ པའི་ དབྱིན་ཚེས་ ༡༥ དངུལ་སྡོམས་ མ་རྩ་བཙུགས་པ་: ༡༠༠༠ དངུལ་ཆ་ཕྲན་ མར་བཅག་ : བརྒྱ་ཆ་ ༥་༧༥་ གཞི་རྩ་ : ཉིན་བསྟར་ལྷག་ལུས་/༣༦༠ = ༢"
@@ -6313,7 +5764,6 @@ msgstr "བུ་ལོན་སྤྲོད་འཇལ་ཚེས་གྲང
msgctxt ""
"04060103.xhp\n"
"par_id3146108\n"
-"400\n"
"help.text"
msgid "The amount received on the maturity date is calculated as follows:"
msgstr "དུས་ཡུན་ཚང་བའི་ཚེས་གྲངས་ལུ་ལེན་པའི་དངུལ་བསྡོམས་འདི་འོག་ལུ་ཡོད་མི་བཟུམ་སྦེ་རྩིས་སྟོན་ཡོདཔ་ཨིན།:"
@@ -6322,7 +5772,6 @@ msgstr "དུས་ཡུན་ཚང་བའི་ཚེས་གྲངས་
msgctxt ""
"04060103.xhp\n"
"par_id3147246\n"
-"401\n"
"help.text"
msgid "<item type=\"input\">=RECEIVED(\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> returns 1014.420266."
msgstr ""
@@ -6339,7 +5788,6 @@ msgstr "<bookmark_value>PV ལས་འགན་</bookmark_value><bookmark_value
msgctxt ""
"04060103.xhp\n"
"hd_id3147556\n"
-"3\n"
"help.text"
msgid "PV"
msgstr "PV"
@@ -6348,7 +5796,6 @@ msgstr "PV"
msgctxt ""
"04060103.xhp\n"
"par_id3153301\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BW\">Returns the present value of an investment resulting from a series of regular payments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_BW\"> རྒྱུན་རིམ་གྱི་ དུས་རྒྱུན་གླ་དངུལ་ལས་འབྱུང་བའི་ མ་རྩ་བཙུགས་པའི་ ད་ལྟོའི་གནས་གོང་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -6357,7 +5804,6 @@ msgstr "<ahelp hid=\"HID_FUNC_BW\"> རྒྱུན་རིམ་གྱི་
msgctxt ""
"04060103.xhp\n"
"par_id3146099\n"
-"5\n"
"help.text"
msgid "Use this function to calculate the amount of money needed to be invested at a fixed rate today, to receive a specific amount, an annuity, over a specified number of periods. You can also determine how much money is to remain after the elapse of the period. Specify as well if the amount is to be paid out at the beginning or at the end of each period."
msgstr "འ་ནི་ལས་འགན་དེ་ གསལ་བཀོད་འབད་ཡོད་པའི་དུས་ཡུན་གྱི་དུས་མཚམས་ལུ་ ད་རིས་གཏན་བཟོས་གོང་ཚད་ལུ་ མ་རྩ་བཙུགས་ནིའི་དོན་ལུ་ དགོ་པའི་དངུལ་བསྡོམས་ དམིགས་གསལ་དངུལ་བསྡོམས་ལེན་ནི་ རྩིས་སྟོན་འབད་ནིའི་དོན་ལུ་ ལག་ལེན་འཐབ། ཁྱོད་ཀྱིས་ དུས་ཡུན་སོང་བའི་ཤུལ་ལས་ དངུལ་ག་དེམ་ཅིག་ལྷག་ལུས་ནི་ཨིན་ན་ གཏན་འབེབས་བཟོ་ཚུགསཔ་ཨིན། དངུལ་བསྡོམས་དེ་ དུས་ཡུན་རེ་རེའི་ འགོ་བཙུགསཔ་ད་ལུ་ ཡང་ན་ མཇུག་ལུ་སྤྲོད་ནི་ཚུ་ཡང་ གསལ་བཀོད་འབད།"
@@ -6366,7 +5812,6 @@ msgstr "འ་ནི་ལས་འགན་དེ་ གསལ་བཀོད
msgctxt ""
"04060103.xhp\n"
"par_id3153334\n"
-"6\n"
"help.text"
msgid "Enter these values either as numbers, expressions or references. If, for example, interest is paid annually at 8%, but you want to use month as your period, enter 8%/12 under <emph>Rate</emph> and <item type=\"productname\">%PRODUCTNAME</item> Calc with automatically calculate the correct factor."
msgstr "འ་ནི་གནས་གོང་ཚུ་ ཨང་གྲངས་ གསལ་བརྗོད་ ཡང་ན་ གཞི་བསྟུན་ཚུ་བཟུམ་སྦེ་བཙུགས། དཔེ་ཡབད་བ་ཅིན་ ལོ་བསྟར་སྐྱེད་དེ་ བརྒྱ་ཆ་ ༨% སྤྲོད་ཡོདཔ་ཨིན་རུང་ ཁྱོད་ཀྱིས་ ཟླཝ་དེ་དུས་མཚམས་སྦེ་ལག་ལོན་འཐབ་ནི་ཨིན་པ་ཅིན་ <emph> གོང་ཚད་ </emph> དང་ <item type=\"productname\">%PRODUCTNAME</item> ཀེལ་སི་ རང་བཞིན་གྱིས་ ཆ་རྐྱེན་ངེས་བདེན་རྩིས་སྟོན་འབད་དེ་ ༨%/༡༢ གི་འོག་ལུ་བཙུགས།"
@@ -6375,7 +5820,6 @@ msgstr "འ་ནི་གནས་གོང་ཚུ་ ཨང་གྲངས
msgctxt ""
"04060103.xhp\n"
"hd_id3147407\n"
-"7\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -6384,7 +5828,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060103.xhp\n"
"par_id3150395\n"
-"8\n"
"help.text"
msgid "PV(Rate; NPer; Pmt; FV; Type)"
msgstr "PV(Rate; NPER; PMT; FV; Type)"
@@ -6393,7 +5836,6 @@ msgstr "PV(Rate; NPER; PMT; FV; Type)"
msgctxt ""
"04060103.xhp\n"
"par_id3151341\n"
-"9\n"
"help.text"
msgid "<emph>Rate</emph> defines the interest rate per period."
msgstr "<emph> གོང་ཚད་ </emph> ཀྱིས་ དུས་ཡུན་རེ་རེའི་སྐྱེད་ཀྱི་གོང་ཚད་ངེས་འཛིན་འབདཝ་ཨིན།"
@@ -6402,7 +5844,6 @@ msgstr "<emph> གོང་ཚད་ </emph> ཀྱིས་ དུས་ཡུ
msgctxt ""
"04060103.xhp\n"
"par_id3153023\n"
-"10\n"
"help.text"
msgid "<emph>NPer</emph> is the total number of periods (payment period)."
msgstr "<emph>NPER</emph> འདི་དུས་ཡུན་ཚུའི་གྱངས་ཁ་བསྡོམས་ཨིན། (གླ་དངུལ་དུས་ཡུན་)།"
@@ -6411,7 +5852,6 @@ msgstr "<emph>NPER</emph> འདི་དུས་ཡུན་ཚུའི་ག
msgctxt ""
"04060103.xhp\n"
"par_id3146323\n"
-"11\n"
"help.text"
msgid "<emph>Pmt</emph> is the regular payment made per period."
msgstr "<emph>PMT</emph> འདི་དུས་ཡུན་རེ་རེ་ལུ་དུས་རྒྱུན་གླ་དངུལ་བཟོ་ཡོད་མི་འདི་ཨིན།"
@@ -6420,7 +5860,6 @@ msgstr "<emph>PMT</emph> འདི་དུས་ཡུན་རེ་རེ་
msgctxt ""
"04060103.xhp\n"
"par_id3150536\n"
-"12\n"
"help.text"
msgid "<emph>FV</emph> (optional) defines the future value remaining after the final installment has been made."
msgstr "<emph> FV </emph> (གདམ་ཁ་ཅན་) གྱིས་ མཐའ་མཇུག་གི་གཞི་བཙུགས་འབད་ཚར་བའི་ཤུལ་ལས་ ལྷག་ལུས་ མ་འོངས་གནས་གོང་ངེས་འཛིན་འབདཝ་ཨིན།"
@@ -6429,7 +5868,6 @@ msgstr "<emph> FV </emph> (གདམ་ཁ་ཅན་) གྱིས་ མཐ
msgctxt ""
"04060103.xhp\n"
"par_id3146883\n"
-"13\n"
"help.text"
msgid "<emph>Type</emph> (optional) denotes due date for payments. Type = 1 means due at the beginning of a period and Type = 0 (default) means due at the end of the period."
msgstr "<emph> དབྱེ་བ་ </emph> (གདམ་ཁ་ཅན་) གླ་དངུལ་ཚུ་ལུ་ ཚེས་གྲངས་རན་པ་ མཚོན་རྟགས་སྟོནམ་ཨིན། དབྱེ་བ་ = ༡ གི་ རན་པ་དེ་ དུས་ཡུན་འགོ་བཙུགས་ལུ་གོ་ནི་ཨིནམ་ད་ དབྱེ་བ = ༠ (སྔོན་སྒྲིག་) གི་ རན་པ་དེ་དུས་ཡུན་མཇུག་ལུ་ཨིནམ་སྦེ་ ཧ་གོཝ་ཨིན།"
@@ -6438,7 +5876,6 @@ msgstr "<emph> དབྱེ་བ་ </emph> (གདམ་ཁ་ཅན་) ག
msgctxt ""
"04060103.xhp\n"
"hd_id3150037\n"
-"14\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -6447,7 +5884,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060103.xhp\n"
"par_id3145225\n"
-"15\n"
"help.text"
msgid "What is the present value of an investment, if 500 currency units are paid out monthly and the annual interest rate is 8%? The payment period is 48 months and 20,000 currency units are to remain at the end of the payment period."
msgstr "ལོ་བསྟར་སྐྱེད་ཀྱི་གོང་ཚད་དེ་ ༨% དང་ ཟླ་རིམ་བཞིན་ དངུལ་ཆ་ཕྲན་ ༥༠༠ སྤྲོད་ཡོད་པ་ཅིན་ མ་རྩ་བཙུགས་པ་གི་ ད་ལྟོའི་གནས་གོང་ ག་ཅི་སྨོ? གླ་དངུལ་སྤྲོད་ནི་དུས་ཚོད་དེ་ ཟླཝ་ ༤༨ དང་ དངུལ་ཆ་ཕྲན་ ༢༠,༠༠༠ དེ་ གླ་དངུལ་དུས་ཡུན་གྱི་མཇུག་ལུ་ལྷག་ལུས་ནི་ཨིན།"
@@ -6456,7 +5892,6 @@ msgstr "ལོ་བསྟར་སྐྱེད་ཀྱི་གོང་ཚད
msgctxt ""
"04060103.xhp\n"
"par_id3155907\n"
-"16\n"
"help.text"
msgid "<item type=\"input\">=PV(8%/12;48;500;20000)</item> = -35,019.37 currency units. Under the named conditions, you must deposit 35,019.37 currency units today, if you want to receive 500 currency units per month for 48 months and have 20,000 currency units left over at the end. Cross-checking shows that 48 x 500 currency units + 20,000 currency units = 44,000 currency units. The difference between this amount and the 35,000 currency units deposited represents the interest paid."
msgstr "པི་ཝི་ (༨%/༡༢;༤༨;༥༠༠;༢༠༠༠༠) = -༣༥,༠༡༩.༣༧ དངུལ་ཆ་ཕྲན་ཚུ། མིང་བཏགས་ཡོད་པའི་གནས་སྟངས་ཚུའི་འོག་ལུ་ ཁྱོད་ཀྱིས ཟླཝ་རེ་རེ་ནང་ལུ་ དངུལ་ཆ་ཕྲན་ ༥༠༠ སྦེ་ཟླཝ་ ༤༨ རིང་ལུ་ལེན་ཏེ་ མཇུག་ལུ་ལྷག་ལུད་ ༢༠,༠༠༠ ཡོད་དགོས་མནོ་ཅིན་ད་རིས་དངུལ་ཆ་ཕྲན་ ༣༥,༠༡༩.༣༧ བཙུགས་དགོས། ཕན་ཚུན་དཔྱད་ཀྱིས་ ༤༨ x ༥༠༠ དངུལ་ཆ་ཕྲན་ + ༢༠,༠༠༠ དངུལ་ཆ་ཕྲན་ =༤༤,༠༠༠ ཨིནམ་སྦེ་སྟོནམ་མས། འ་དི་དངུལ་བསྡོམས་དང་ ༣༥,༠༠༠ བཙུགས་ཡོད་པའི་དངུལ་ཆ་ཕྲན་གྱིས་ སྤྲོད་ཡོད་པའི་སྐྱེད་ཁྱད་ཚབ་འབདཝ་ཨིན་པས།"
@@ -6465,7 +5900,6 @@ msgstr "པི་ཝི་ (༨%/༡༢;༤༨;༥༠༠;༢༠༠༠༠) = -༣
msgctxt ""
"04060103.xhp\n"
"par_id3149150\n"
-"17\n"
"help.text"
msgid "If you enter references instead of these values into the formula, you can calculate any number of \"If-then\" scenarios. Please note: references to constants must be defined as absolute references. Examples of this type of application are found under the depreciation functions."
msgstr "ཁྱོད་ཀྱིས་ མན་ངག་ནང་ལུ་ གནས་གོང་ཚུའི་ཚབ་མ་ལུ་ གཞི་བསྟུན་ཚུ་བཙུགས་པ་ཅིན་ ཁྱོད་ཀྱིས་ \"If-then\" འཆར་བཤད་གང་རུང་ཚུའི་གྱངས་ཁ་རྩིས་སྟོན་འབད་ཚུགསཔ་ཨིན། དྲན་དགོཔ་: གཞི་བསྟུན་ཚུ་ལས་ ཆད་མེད་ཚུ་ གཞི་བསྟུན་ཡང་དག་སྦེ་ ངེས་འཛིན་འབད་དགོཔ་ཨིན། དབྱེ་བ་ནི་བཟུམ་མའི་ འཇུག་སྤྱོད་ཀྱི་ དཔེར་བརྗོད་ཚུ་ གོང་ཐང་ཆག་པའི་ལས་འགན་ཚུའི་འོག་ལུ་ཐོབ་ཨིན།"
@@ -6482,7 +5916,6 @@ msgstr "<bookmark_value> རྩིས་སྟོོན་འབད་ནི།
msgctxt ""
"04060103.xhp\n"
"hd_id3152978\n"
-"19\n"
"help.text"
msgid "SYD"
msgstr "ཨེསི་ཝའི་ཌི།"
@@ -6491,7 +5924,6 @@ msgstr "ཨེསི་ཝའི་ཌི།"
msgctxt ""
"04060103.xhp\n"
"par_id3148732\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DIA\">Returns the arithmetic-declining depreciation rate.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DIA\"> ཨང་རྩིས་ཁ་མི་བཟོད་ནི་གོང་ཐང་ཆག་པའི་གོང་ཚད་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -6500,7 +5932,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DIA\"> ཨང་རྩིས་ཁ་མི་བ
msgctxt ""
"04060103.xhp\n"
"par_id3149886\n"
-"21\n"
"help.text"
msgid "Use this function to calculate the depreciation amount for one period of the total depreciation span of an object. Arithmetic declining depreciation reduces the depreciation amount from period to period by a fixed sum."
msgstr "དངོས་པོ་གཅིག་གི་ གོང་ཐང་ཆག་པའི་འཕར་ཚད་བསྡོམས་ཀྱི་ དུས་ཡུན་གཅིག་གི་དོན་ལུ་ གོང་ཐང་ཆག་པའི་དངུལ་བསྡོམས་རྩིས་སྟོན་འབད་ནིའི་དོན་ལུ་ ལས་འགན་དེ་ལག་ལེན་འཐབ། ཨང་རྩིས་ཁ་མི་བཟེད་ནི་གོང་ཐང་ཆག་པ་གིས་ དུས་ཡུན་ལས་དུས་ཡུན་ལུ་ གཏན་བཟོས་དངུལ་བསྡོམས་ཐོག་ལས་ དངུལ་བསྡོམས་གོང་ཐང་ཆག་པ་ མར་ཕབ་འབདཝ་ཨིན།"
@@ -6509,7 +5940,6 @@ msgstr "དངོས་པོ་གཅིག་གི་ གོང་ཐང་
msgctxt ""
"04060103.xhp\n"
"hd_id3149431\n"
-"22\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -6518,7 +5948,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060103.xhp\n"
"par_id3150483\n"
-"23\n"
"help.text"
msgid "SYD(Cost; Salvage; Life; Period)"
msgstr "SYD(རིན་; ཉེན་སྐྱོབ་; ཚེ་; དུས་ཡུན།)"
@@ -6527,7 +5956,6 @@ msgstr "SYD(རིན་; ཉེན་སྐྱོབ་; ཚེ་; དུས
msgctxt ""
"04060103.xhp\n"
"par_id3146879\n"
-"24\n"
"help.text"
msgid "<emph>Cost</emph> is the initial cost of an asset."
msgstr "<emph> རིན་ </emph> འདི་བདོག་གཏད་ཀྱི་འགོ་ཐོག་རིན་ཨིན།"
@@ -6536,7 +5964,6 @@ msgstr "<emph> རིན་ </emph> འདི་བདོག་གཏད་ཀ
msgctxt ""
"04060103.xhp\n"
"par_id3147423\n"
-"25\n"
"help.text"
msgid "<emph>Salvage</emph> is the value of an asset after depreciation."
msgstr "<emph> ཉེན་སྐྱོབ་ </emph> འདི་གོང་ཐང་ཆག་པའི་ཤུལ་མ་གི་བདོག་གཏད་ཀྱི་གནས་གོང་ཨིན།"
@@ -6545,7 +5972,6 @@ msgstr "<emph> ཉེན་སྐྱོབ་ </emph> འདི་གོང་
msgctxt ""
"04060103.xhp\n"
"par_id3151229\n"
-"26\n"
"help.text"
msgid "<emph>Life</emph> is the period fixing the time span over which an asset is depreciated."
msgstr "<emph> ཚེ་དེ་ </emph> བདོག་གཏད་དེ་གོང་ཐང་ཆག་པའི་ དུས་ཚོད་འཕར་ཚད་གཏན་བཟོ་ནིའི་དུས་ཡུན་ཨིན།"
@@ -6554,7 +5980,6 @@ msgstr "<emph> ཚེ་དེ་ </emph> བདོག་གཏད་དེ་
msgctxt ""
"04060103.xhp\n"
"par_id3147473\n"
-"27\n"
"help.text"
msgid "<emph>Period</emph> defines the period for which the depreciation is to be calculated."
msgstr "<emph> དུས་ཡུན་ </emph> གིས་གོང་ཐང་ཆག་པ་འདི་རྩིས་སྟོན་འབད་ནི་ཨིན་པའི་དུས་ཡུན་ངེས་འཛིན་འབདཝ་ཨིན།"
@@ -6563,7 +5988,6 @@ msgstr "<emph> དུས་ཡུན་ </emph> གིས་གོང་ཐང
msgctxt ""
"04060103.xhp\n"
"hd_id3148434\n"
-"28\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -6572,7 +5996,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060103.xhp\n"
"par_id3149688\n"
-"29\n"
"help.text"
msgid "A video system initially costing 50,000 currency units is to be depreciated annually for the next 5 years. The salvage value is to be 10,000 currency units. You want to calculate depreciation for the first year."
msgstr "ཝི་ཌིའོ་རིམ་ལུགས་ འགོ་ཐོག་བསྒང་ རིན་གོང་ ༥༠,༠༠༠ དངུལ་ཆ་ཕྲན་གནས་མི་དེ་ ལོ་བསྟར་སྦེ་ཤུལ་མམ་གྱི་ལོ་ ༥ གི་རིང་ གོང་ཐང་ཆག་ནི་ཨིན་པས། ཉེན་སྐྱོབ་གནས་གོང་དེ་ དངུལ་ཆ་ཕྲན་ ༡༠,༠༠༠ ཨིན་དགོཔ་ཨིན། ཁྱོད་ཀྱིས་ གོང་ཐང་ཆག་པའི་གནས་གོང་ ལོ་ངོ་དང་པ་ནང་ རྩིས་སྟོན་འབད་ནི་ཨིན་མི།"
@@ -6581,7 +6004,6 @@ msgstr "ཝི་ཌིའོ་རིམ་ལུགས་ འགོ་ཐོ
msgctxt ""
"04060103.xhp\n"
"par_id3150900\n"
-"30\n"
"help.text"
msgid "<item type=\"input\">=SYD(50000;10000;5;1)</item>=13,333.33 currency units. The depreciation amount for the first year is 13,333.33 currency units."
msgstr "SYD(༥༠༠༠༠;༡༠༠༠༠;༥;༡)=༡༣,༣༣༣.༣༣ དངུལ་ཆ་ཕྲན། ལོ་ངོ་དང་པམ་གྱི་གོང་ཐང་ཆག་པ་འདི་ ༡༣,༣༣༣.༣༣ དངུལ་ཆ་ཕྲན་ཨིན།"
@@ -6590,7 +6012,6 @@ msgstr "SYD(༥༠༠༠༠;༡༠༠༠༠;༥;༡)=༡༣,༣༣༣.༣༣ ད
msgctxt ""
"04060103.xhp\n"
"par_id3146142\n"
-"31\n"
"help.text"
msgid "To have an overview of depreciation rates per period, it is best to define a depreciation table. By entering the different depreciation formulas available in <item type=\"productname\">%PRODUCTNAME</item> Calc next to each other, you can see which depreciation form is the most appropriate. Enter the table as follows:"
msgstr "དུས་ཡུན་རེ་རེའི་གོང་ཐང་ཆག་པའི་གོང་ཚད་ཀྱི་ སྤྱི་མཐོངཡོདཔ་བཟོ་ནིའི་དོན་ལུ་ གོང་ཐང་ཆག་པའི་ཐིག་ཁྲམ་ངེས་འཛིན་འབད་ནི་དེ་དྲག་ཤོས་ཨིན། <item type=\"productname\">%PRODUCTNAME</item> ཀེལ་སི་རང་སོའི་ཤུལ་མམ་ནང་ འཐོབ་ཚུགས་པའི་ གོང་ཐང་ཆག་པའི་མན་ངག་སོ་སོ་ཚུ་བཙུགས་ཐོག་ལས་ ཁྱོད་ཀྱིས་ གོང་ཐང་ཆག་པའི་རྣམ་པ་ག་དེ་མང་ཤོས་འོད་ལྡན་འདུག་ག་མཐོང་ཚུགསཔ་ཨིན། ཐིག་ཁྲམ་དེ་ ཡོག་ལུ་ཡོདཔ་བཟུམ་སྦེ་བཙུགས།:"
@@ -6599,7 +6020,6 @@ msgstr "དུས་ཡུན་རེ་རེའི་གོང་ཐང་ཆ
msgctxt ""
"04060103.xhp\n"
"par_id3155258\n"
-"32\n"
"help.text"
msgid "<emph>A</emph>"
msgstr "<emph> ཨེ། </emph>"
@@ -6608,7 +6028,6 @@ msgstr "<emph> ཨེ། </emph>"
msgctxt ""
"04060103.xhp\n"
"par_id3154558\n"
-"33\n"
"help.text"
msgid "<emph>B</emph>"
msgstr "<emph> བི། </emph>"
@@ -6617,7 +6036,6 @@ msgstr "<emph> བི། </emph>"
msgctxt ""
"04060103.xhp\n"
"par_id3152372\n"
-"34\n"
"help.text"
msgid "<emph>C</emph>"
msgstr "<emph> སི། </emph>"
@@ -6626,7 +6044,6 @@ msgstr "<emph> སི། </emph>"
msgctxt ""
"04060103.xhp\n"
"par_id3149949\n"
-"35\n"
"help.text"
msgid "<emph>D</emph>"
msgstr "<emph> ཨེ། </emph>"
@@ -6635,7 +6052,6 @@ msgstr "<emph> ཨེ། </emph>"
msgctxt ""
"04060103.xhp\n"
"par_id3145123\n"
-"36\n"
"help.text"
msgid "<emph>E</emph>"
msgstr "<emph> ཨེ། </emph>"
@@ -6644,7 +6060,6 @@ msgstr "<emph> ཨེ། </emph>"
msgctxt ""
"04060103.xhp\n"
"par_id3149504\n"
-"37\n"
"help.text"
msgid "1"
msgstr ""
@@ -6653,7 +6068,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3153778\n"
-"38\n"
"help.text"
msgid "<item type=\"input\">Initial Cost</item>"
msgstr ""
@@ -6662,7 +6076,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3159083\n"
-"39\n"
"help.text"
msgid "<item type=\"input\">Salvage Value</item>"
msgstr ""
@@ -6671,7 +6084,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3150002\n"
-"40\n"
"help.text"
msgid "<item type=\"input\">Useful Life</item>"
msgstr ""
@@ -6680,7 +6092,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3153006\n"
-"41\n"
"help.text"
msgid "<item type=\"input\">Time Period</item>"
msgstr ""
@@ -6689,7 +6100,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3154505\n"
-"42\n"
"help.text"
msgid "<item type=\"input\">Deprec. SYD</item>"
msgstr ""
@@ -6698,7 +6108,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3150336\n"
-"43\n"
"help.text"
msgid "2"
msgstr ""
@@ -6707,7 +6116,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3155926\n"
-"44\n"
"help.text"
msgid "<item type=\"input\">50,000 currency units</item>"
msgstr ""
@@ -6716,7 +6124,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3153736\n"
-"45\n"
"help.text"
msgid "<item type=\"input\">10,000 currency units</item>"
msgstr ""
@@ -6725,7 +6132,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3150131\n"
-"46\n"
"help.text"
msgid "<item type=\"input\">5</item>"
msgstr ""
@@ -6734,7 +6140,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3148766\n"
-"47\n"
"help.text"
msgid "<item type=\"input\">1</item>"
msgstr ""
@@ -6743,7 +6148,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3159136\n"
-"48\n"
"help.text"
msgid "<item type=\"input\">13,333.33 currency units</item>"
msgstr ""
@@ -6752,7 +6156,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3151018\n"
-"49\n"
"help.text"
msgid "3"
msgstr ""
@@ -6761,7 +6164,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3148397\n"
-"50\n"
"help.text"
msgid "<item type=\"input\">2</item>"
msgstr ""
@@ -6770,7 +6172,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3146907\n"
-"51\n"
"help.text"
msgid "<item type=\"input\">10,666.67 currency units</item>"
msgstr ""
@@ -6779,7 +6180,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3147356\n"
-"52\n"
"help.text"
msgid "4"
msgstr ""
@@ -6788,7 +6188,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3150267\n"
-"53\n"
"help.text"
msgid "<item type=\"input\">3</item>"
msgstr ""
@@ -6797,7 +6196,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3145628\n"
-"54\n"
"help.text"
msgid "<item type=\"input\">8,000.00 currency units</item>"
msgstr ""
@@ -6806,7 +6204,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3149004\n"
-"55\n"
"help.text"
msgid "5"
msgstr ""
@@ -6815,7 +6212,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3153545\n"
-"56\n"
"help.text"
msgid "<item type=\"input\">4</item>"
msgstr ""
@@ -6824,7 +6220,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3154634\n"
-"57\n"
"help.text"
msgid "<item type=\"input\">5,333.33 currency units</item>"
msgstr ""
@@ -6833,7 +6228,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3147537\n"
-"58\n"
"help.text"
msgid "6"
msgstr ""
@@ -6842,7 +6236,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3155085\n"
-"59\n"
"help.text"
msgid "<item type=\"input\">5</item>"
msgstr ""
@@ -6851,7 +6244,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3158413\n"
-"60\n"
"help.text"
msgid "<item type=\"input\">2,666.67 currency units</item>"
msgstr ""
@@ -6860,7 +6252,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3154866\n"
-"61\n"
"help.text"
msgid "7"
msgstr ""
@@ -6869,7 +6260,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3155404\n"
-"62\n"
"help.text"
msgid "<item type=\"input\">6</item>"
msgstr ""
@@ -6878,7 +6268,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3148431\n"
-"63\n"
"help.text"
msgid "<item type=\"input\">0.00 currency units</item>"
msgstr ""
@@ -6887,7 +6276,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3156261\n"
-"64\n"
"help.text"
msgid "8"
msgstr ""
@@ -6896,7 +6284,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3083286\n"
-"65\n"
"help.text"
msgid "<item type=\"input\">7</item>"
msgstr ""
@@ -6905,7 +6292,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3083443\n"
-"67\n"
"help.text"
msgid "9"
msgstr ""
@@ -6914,7 +6300,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3154815\n"
-"68\n"
"help.text"
msgid "<item type=\"input\">8</item>"
msgstr ""
@@ -6923,7 +6308,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3145082\n"
-"70\n"
"help.text"
msgid "10"
msgstr "༡༠"
@@ -6932,7 +6316,6 @@ msgstr "༡༠"
msgctxt ""
"04060103.xhp\n"
"par_id3156307\n"
-"71\n"
"help.text"
msgid "<item type=\"input\">9</item>"
msgstr ""
@@ -6941,7 +6324,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3147564\n"
-"73\n"
"help.text"
msgid "11"
msgstr "༡༡"
@@ -6950,7 +6332,6 @@ msgstr "༡༡"
msgctxt ""
"04060103.xhp\n"
"par_id3146856\n"
-"74\n"
"help.text"
msgid "<item type=\"input\">10</item>"
msgstr ""
@@ -6959,7 +6340,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3150880\n"
-"76\n"
"help.text"
msgid "12"
msgstr "༡༢"
@@ -6968,7 +6348,6 @@ msgstr "༡༢"
msgctxt ""
"04060103.xhp\n"
"par_id3145208\n"
-"77\n"
"help.text"
msgid "13"
msgstr "༡༣"
@@ -6977,7 +6356,6 @@ msgstr "༡༣"
msgctxt ""
"04060103.xhp\n"
"par_id3156113\n"
-"78\n"
"help.text"
msgid "<item type=\"input\">>0</item>"
msgstr ""
@@ -6986,7 +6364,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3153625\n"
-"79\n"
"help.text"
msgid "<item type=\"input\">Total</item>"
msgstr ""
@@ -6995,7 +6372,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3151297\n"
-"80\n"
"help.text"
msgid "<item type=\"input\">40,000.00 currency units</item>"
msgstr ""
@@ -7004,7 +6380,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3149979\n"
-"81\n"
"help.text"
msgid "The formula in E2 is as follows:"
msgstr "ཨི་ ༢ ནང་གི་མན་ངག་འདི་འོག་ལུ་ཡོད་དོ་བཟུམ་ཨིན།:"
@@ -7013,7 +6388,6 @@ msgstr "ཨི་ ༢ ནང་གི་མན་ངག་འདི་འོག
msgctxt ""
"04060103.xhp\n"
"par_id3155849\n"
-"82\n"
"help.text"
msgid "<item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item>"
msgstr ""
@@ -7022,7 +6396,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3156124\n"
-"83\n"
"help.text"
msgid "This formula is duplicated in column E down to E11 (select E2, then drag down the lower right corner with the mouse)."
msgstr "འ་ནི་མན་ངག་དེ་ ཀེར་ཐིག་ ཨི་ལས་མར་ ཨི་༡༡ ལུ་ ངོ་བཤུས་འབད་ཡོད་ (ཨི་ ༢ སེལ་འཐུ་འབད་ཞིནམ་ལས་ མཱའུསི་དང་བཅསཔ་སྦོ་ འོག་གི་གཡས་སྒྱིད་ཁུག་དེ་ མར་འདྲུད།)"
@@ -7031,7 +6404,6 @@ msgstr "འ་ནི་མན་ངག་དེ་ ཀེར་ཐིག་ ཨ
msgctxt ""
"04060103.xhp\n"
"par_id3147270\n"
-"84\n"
"help.text"
msgid "Cell E13 contains the formula used to check the total of the depreciation amounts. It uses the SUMIF function as the negative values in E8:E11 must not be considered. The condition >0 is contained in cell A13. The formula in E13 is as follows:"
msgstr "ནང་ཐིག་ ཨི་ ༡༣ ནང་ན་ གོང་ཐང་ཆག་པའི་དངུལ་བསྡོམས་ཀྱི་བསྡོམས་ཞིབ་དཔྱད་འབད་ནིའི་མན་ངག་ཤོམ་ཏེ་ཡོདཔ་ཨིན། དེ་གིས་ཨེསི་ ཡུ་ ཨེམ་ ཨའི་ ཨེཕ་ལས་འགན་དེ་ ཨི་ ༨ :ཨི་ ༡༡ ནང་ གནས་གོང་མེད་ཆ་སྦེ་ལག་ལེན་འཐབ་ཨིནམ་ལས་ དེ་ཆ་འཇོག་འབད་མི་བཏུབ། གནས་སྟངས་ >༠ དེ་ ནང་ཐིག་ ཨེ་ ༡༣ ནང་ཤོམ་ཏ་ཡོད། ཨི་ ༡༣ ནང་ཡོད་པའི་མན་ངག་ཚུ་ འོག་ལུ་ཡོདཔ་བཟུམ་ཨིན།:"
@@ -7040,7 +6412,6 @@ msgstr "ནང་ཐིག་ ཨི་ ༡༣ ནང་ན་ གོང་ཐ
msgctxt ""
"04060103.xhp\n"
"par_id3152811\n"
-"85\n"
"help.text"
msgid "<item type=\"input\">=SUMIF(E2:E11;A13)</item>"
msgstr ""
@@ -7049,7 +6420,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3155998\n"
-"86\n"
"help.text"
msgid "Now view the depreciation for a 10 year period, or at a salvage value of 1 currency unit, or enter a different initial cost, and so on."
msgstr "ད་འབདན་ གོང་ཐང་ཆག་པ་དེ་ དུས་ཡུན་ལོ་ངོ་ ༡༠ ཚུན་བལྟ་ནི་ ཡང་ན་ དངུལ་ཆ་ཕྲན་ ༡ གི་ཉེན་སྐྱོབ་གནས་གོང་ ཡང་ན་ འགོ་ཐོག་གླ་ཆ་སོ་སོ་བཙུགས་ནི་ལ་སོགས།"
@@ -7066,7 +6436,6 @@ msgstr "<bookmark_value>ཌིཀསི་ལས་འགན་</bookmark_value>
msgctxt ""
"04060103.xhp\n"
"hd_id3155104\n"
-"379\n"
"help.text"
msgid "DISC"
msgstr "ཌིསིཀ"
@@ -7075,7 +6444,6 @@ msgstr "ཌིསིཀ"
msgctxt ""
"04060103.xhp\n"
"par_id3153891\n"
-"380\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DISC\">Calculates the allowance (discount) of a security as a percentage.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DISC\"> སྲུང་སྐྱོབ་ཀྱི་ འཐུས་དེ་ བརྒྱ་ཆ་སྦེ་ རྩིས་སྟོན་འབདཝ་ཨིན། (མར་བཅག་)།</ahelp>"
@@ -7084,7 +6452,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_DISC\"> སྲུང་སྐྱོབ་ཀ
msgctxt ""
"04060103.xhp\n"
"hd_id3153982\n"
-"381\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -7093,7 +6460,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060103.xhp\n"
"par_id3149756\n"
-"382\n"
"help.text"
msgid "DISC(\"Settlement\"; \"Maturity\"; Price; Redemption; Basis)"
msgstr "DISC(བུ་ལོན་སྤྲོད་འཇལ་;དུས་ཡུན་ཚང་བ་; གོང་ཚད་; བུན་ཚབ་; གཞི་རྩ)"
@@ -7102,7 +6468,6 @@ msgstr "DISC(བུ་ལོན་སྤྲོད་འཇལ་;དུས་ཡ
msgctxt ""
"04060103.xhp\n"
"par_id3156014\n"
-"383\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ཉོ་ཚོང་འབད་བའི་ཚེས།"
@@ -7111,7 +6476,6 @@ msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: ས
msgctxt ""
"04060103.xhp\n"
"par_id3154304\n"
-"384\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་སྐྱོབ་དུས་ཡུན་ཚང་ནིའི་ཚེས། (དུས་ཡོལཝ་ཨིན།)."
@@ -7120,7 +6484,6 @@ msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་
msgctxt ""
"04060103.xhp\n"
"par_id3159180\n"
-"385\n"
"help.text"
msgid "<emph>Price</emph> is the price of the security per 100 currency units of par value."
msgstr "<emph> གོང་ཚད་ </emph>: མཉམ་པའི་གནས་གོང་གི་༡༠༠ དངུལ་ཆ་ཕྲན་རེ་རེའི་སྲུང་སྐྱོབ་ཀྱི་གོང་ཚད།"
@@ -7129,7 +6492,6 @@ msgstr "<emph> གོང་ཚད་ </emph>: མཉམ་པའི་གནས
msgctxt ""
"04060103.xhp\n"
"par_id3147253\n"
-"386\n"
"help.text"
msgid "<emph>Redemption</emph> is the redemption value of the security per 100 currency units of par value."
msgstr "<emph> བུན་ཚབ་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ དངུལ་གྱི་ཆ་ཕྲན་༡༠༠ རེ་རེ་ལུ་ གནས་གོང་མཉམ་པ་གི་ བུན་ཚབ་གནས་གོང་།"
@@ -7138,7 +6500,6 @@ msgstr "<emph> བུན་ཚབ་ </emph>: སྲུང་སྐྱོབ་
msgctxt ""
"04060103.xhp\n"
"hd_id3151174\n"
-"387\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -7147,7 +6508,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060103.xhp\n"
"par_id3155902\n"
-"388\n"
"help.text"
msgid "A security is purchased on 2001-01-25; the maturity date is 2001-11-15. The price (purchase price) is 97, the redemption value is 100. Using daily balance calculation (basis 3) how high is the settlement (discount)?"
msgstr "སྲུང་སྐྱོབ་གཅིག་ ༡/༢༥/༢༠༠༡ ལུ་ཉོ་ཚོང་འབད་ཡོདཔ་ད་ དུས་ཡུན་ཚང་བའི་ཚེས་གྲངས་ འདི་ ༡༡/༡༥/༢༠༠༡ ལུ་ཨིན་པས། གོང་ཚད་(ཉོ་ཚོང་གོང་ཚད་) དེ་ ༩༧ དང་ བུན་ཚབ་གནས་གོང་དེ་ ༡༠༠ ཨིན་པས། ཉིན་བསྟར་ལྷག་ལུས་རྩིས་ལས་ལག་ལེན་ཐོག་ལས་ (གཞི་རྩ་ ༣) བུ་ལོན་སྤྲོད་འཇལ་འདི་མཐོ་བ་ག་དེམ་ཅིག་འདུག(མར་བཅག)?"
@@ -7156,7 +6516,6 @@ msgstr "སྲུང་སྐྱོབ་གཅིག་ ༡/༢༥/༢༠༠༡
msgctxt ""
"04060103.xhp\n"
"par_id3152797\n"
-"389\n"
"help.text"
msgid "<item type=\"input\">=DISC(\"2001-01-25\";\"2001-11-15\";97;100;3)</item> returns about 0.0372 or 3.72 per cent."
msgstr ""
@@ -7173,7 +6532,6 @@ msgstr "<bookmark_value>DURATION_ADD ལས་འགན་</bookmark_value><book
msgctxt ""
"04060103.xhp\n"
"hd_id3154695\n"
-"402\n"
"help.text"
msgid "DURATION_ADD"
msgstr "DURATION_ADD"
@@ -7182,7 +6540,6 @@ msgstr "DURATION_ADD"
msgctxt ""
"04060103.xhp\n"
"par_id3145768\n"
-"403\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Calculates the duration of a fixed interest security in years.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DURATION\"> ལོ་ཚུ་ནངགི་གཏན་བཟོས་ཀྱི་སྐྱེད་སྲུང་སྐྱོབ་དུས་ཡུན་རྩིས་སྟོན་འབདཝ་ཨིན། </ahelp>"
@@ -7191,7 +6548,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_DURATION\"> ལོ་ཚུ་ནངགི་
msgctxt ""
"04060103.xhp\n"
"hd_id3153904\n"
-"404\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -7200,7 +6556,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060103.xhp\n"
"par_id3153373\n"
-"405\n"
"help.text"
msgid "DURATION_ADD(\"Settlement\"; \"Maturity\"; Coupon; Yield; Frequency; Basis)"
msgstr "DURATION_ADD(བུ་ལོན་སྤྲོད་འཇལ་;དུས་ཡུན་ཚང་བ་; འཛིན་ཤོག་; ཐོན་འབྲས་; འབྱུང་ཐེགས་; གཞི་རྩ།)"
@@ -7209,7 +6564,6 @@ msgstr "DURATION_ADD(བུ་ལོན་སྤྲོད་འཇལ་;དུ
msgctxt ""
"04060103.xhp\n"
"par_id3155397\n"
-"406\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ཉོ་ཚོང་འབད་བའི་ཚེས།"
@@ -7218,7 +6572,6 @@ msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: ས
msgctxt ""
"04060103.xhp\n"
"par_id3148558\n"
-"407\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་སྐྱོབ་དུས་ཡུན་ཚང་ནིའི་ཚེས། (དུས་ཡོལཝ་ཨིན།)."
@@ -7227,7 +6580,6 @@ msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་
msgctxt ""
"04060103.xhp\n"
"par_id3153096\n"
-"408\n"
"help.text"
msgid "<emph>Coupon</emph> is the annual coupon interest rate (nominal rate of interest)"
msgstr "<emph> འཛིན་ཤོག་ </emph>: ལོ་བསྟར་འཛིན་ཤོག་ སྐྱེད་གོང་ཚད་(སྐྱེད་ཀྱི་ གོང་ཚད་ཆུང་བ )།"
@@ -7236,7 +6588,6 @@ msgstr "<emph> འཛིན་ཤོག་ </emph>: ལོ་བསྟར་འ
msgctxt ""
"04060103.xhp\n"
"par_id3154594\n"
-"409\n"
"help.text"
msgid "<emph>Yield</emph> is the annual yield of the security."
msgstr "<emph> ཐོན་འབྲས་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ ལོ་བསྟར་ཐོན་འབྲས།"
@@ -7245,7 +6596,6 @@ msgstr "<emph> ཐོན་འབྲས་ </emph>: སྲུང་སྐྱོ
msgctxt ""
"04060103.xhp\n"
"par_id3149906\n"
-"410\n"
"help.text"
msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
msgstr "<emph> འབྱུང་ཐེངས་ </emph>: ལོ་རེ་རེ་ལུ་སྐྱེད་གླ་དངུལ་ཚུའི་གྱངས་ཁ། (༡, ༢ ཡང་ན་ ༤།)."
@@ -7254,7 +6604,6 @@ msgstr "<emph> འབྱུང་ཐེངས་ </emph>: ལོ་རེ་ར
msgctxt ""
"04060103.xhp\n"
"hd_id3146995\n"
-"411\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -7263,7 +6612,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060103.xhp\n"
"par_id3148834\n"
-"412\n"
"help.text"
msgid "A security is purchased on 2001-01-01; the maturity date is 2006-01-01. The Coupon rate of interest is 8%. The yield is 9.0%. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how long is the duration?"
msgstr "སྲུང་སྐྱོབ་གཅིག་ ༡/༡/༢༠༠༡ ལུ་ཉོ་ཚོང་འབད་ཡོདཔ་ཨིནམ་ད་ དུས་ཡུན་ཚང་བའི་ཚེས་གྲངས་དེ་ ༡/༡/༢༠༠༦ ལུ་ཨིན་པས། སྐྱེད་ཀྱི་གོང་ཚད་ཆུང་བ་དེ་ ༨% ཨིན་པས། ཐོན་འབྲས་དེ་ ༩་༠% ཨིན་པས། སྐྱེད་དེ་ ལོ་ཕྱེད་སྦེ་སྤྲོད་ཡོདཔ་མས་(འབྱུང་ཐེངས་དེ་ ༢ ཨིན)། ཉིན་བསྟར་སྐྱེད་ལྷག་ལུས་རྩིས་ལས་ (གཞི་རྩ་ ༣) ལག་ལེན་འཐབ་ཐོག་ལས་ ལེགས་བཅོས་འབད་ཡོད་པའི་དུས་ཡུན་དེ་ རིང་ཐུང་ག་དེམ་ཅིག་འདུག?"
@@ -7272,7 +6620,6 @@ msgstr "སྲུང་སྐྱོབ་གཅིག་ ༡/༡/༢༠༠༡
msgctxt ""
"04060103.xhp\n"
"par_id3154902\n"
-"413\n"
"help.text"
msgid "<item type=\"input\">=DURATION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item>"
msgstr ""
@@ -7289,7 +6636,6 @@ msgstr "<bookmark_value>ལོ་བསྟར་ངེས་ཏིག་དང
msgctxt ""
"04060103.xhp\n"
"hd_id3159147\n"
-"88\n"
"help.text"
msgid "EFFECTIVE"
msgstr "EFFECTIVE"
@@ -7298,7 +6644,6 @@ msgstr "EFFECTIVE"
msgctxt ""
"04060103.xhp\n"
"par_id3154204\n"
-"89\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_EFFEKTIV\">Returns the net annual interest rate for a nominal interest rate.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_EFFEKTIV\"> སྐྱེད་ཀྱི་གོང་ཚད་ཆུང་བའི་དོན་ལུ་ ལོ་བསྟར་ནེཊི་སྐྱེད་གོང་ཚད་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -7307,7 +6652,6 @@ msgstr "<ahelp hid=\"HID_FUNC_EFFEKTIV\"> སྐྱེད་ཀྱི་གོ
msgctxt ""
"04060103.xhp\n"
"par_id3145417\n"
-"90\n"
"help.text"
msgid "Nominal interest refers to the amount of interest due at the end of a calculation period. Effective interest increases with the number of payments made. In other words, interest is often paid in installments (for example, monthly or quarterly) before the end of the calculation period."
msgstr "སྐྱེད་ཆུང་བ་དེ་ རྩིས་ལས་དུས་ཡུན་གྱི་མཇུག་ཀྱི་ དངུལ་བསྡོམས་སྐྱེད་ཀྱི་ཆད་ལུ་གཞི་བསྟུན་འབདཝ་ཨིན། ནུས་ཅན་སྐྱེད་དེ་ བྱིན་ཡོད་པའི་གླ་དངུལ་གྱི་གྱངས་ཁ་དང་བཅསཔ་སྦེ་ཡར་འཕརཝ་ཨིན། མིང་ཚིག་སོ་སོར་ནང་འབད་བ་ཅིན་ སྐྱེད་དེ་འཕྲལ་འཕྲལ་རང་ རྩིས་ལས་དུས་ཡུན་མཇུག་གི་ཧེ་མ་ གཞི་བཙུགས་ནང་སྦེ་སྤྲོད་ཡོདཔ་ཨིན། (དཔེ་འབད་བ་ཅིན་ ཟླ་རིམ་བཞིན་ ཡང་ན་ དཔྱ་གསུམ་བཞིན།)"
@@ -7316,7 +6660,6 @@ msgstr "སྐྱེད་ཆུང་བ་དེ་ རྩིས་ལས་
msgctxt ""
"04060103.xhp\n"
"hd_id3150510\n"
-"91\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -7325,7 +6668,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060103.xhp\n"
"par_id3148805\n"
-"92\n"
"help.text"
msgid "EFFECTIVE(Nom; P)"
msgstr "EFFECTIVE(NOM;P)"
@@ -7334,7 +6676,6 @@ msgstr "EFFECTIVE(NOM;P)"
msgctxt ""
"04060103.xhp\n"
"par_id3149768\n"
-"93\n"
"help.text"
msgid "<emph>Nom</emph> is the nominal interest."
msgstr "<emph>NOM</emph> འདི་སྐྱེད་ཆུང་བ་ཨིན།"
@@ -7343,7 +6684,6 @@ msgstr "<emph>NOM</emph> འདི་སྐྱེད་ཆུང་བ་ཨི
msgctxt ""
"04060103.xhp\n"
"par_id3149334\n"
-"94\n"
"help.text"
msgid "<emph>P</emph> is the number of interest payment periods per year."
msgstr "<emph> པི་ </emph> འདི་ ལོ་བསྟར་ སྐྱེད་གླ་དངུལ་ དུས་ཡུན་གྱི་གྱངས་ཁ་ཨིན།"
@@ -7352,7 +6692,6 @@ msgstr "<emph> པི་ </emph> འདི་ ལོ་བསྟར་ སྐྱ
msgctxt ""
"04060103.xhp\n"
"hd_id3154223\n"
-"95\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -7361,7 +6700,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060103.xhp\n"
"par_id3144499\n"
-"96\n"
"help.text"
msgid "If the annual nominal interest rate is 9.75% and four interest calculation periods are defined, what is the actual interest rate (effective rate)?"
msgstr "ལོ་བསྟར་སྐྱེད་གོང་ཚད་ཆུང་བ་དེ་ ༩་༧༥% དང་ སྐྱེད་ཀྱི་རྩིས་ལས་དུས་ཡུན་བཞི་ཚུ་ངེས་འཛིན་འབད་དེ་ཡོད་པ་ཅིན་ སྐྱེད་གོང་ཚད་ངོ་མ་ག་དེམ་ཅིག་སྨོ་ (ནུས་ཅན་གོང་ཚད་)?"
@@ -7370,7 +6708,6 @@ msgstr "ལོ་བསྟར་སྐྱེད་གོང་ཚད་ཆུང
msgctxt ""
"04060103.xhp\n"
"par_id3150772\n"
-"97\n"
"help.text"
msgid "<item type=\"input\">=EFFECTIVE(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
msgstr ""
@@ -7387,7 +6724,6 @@ msgstr "<bookmark_value>ནུས་ཅན་དངུལ་སྐྱེད་
msgctxt ""
"04060103.xhp\n"
"hd_id3147241\n"
-"414\n"
"help.text"
msgid "EFFECT_ADD"
msgstr "EFFECT_ADD"
@@ -7396,7 +6732,6 @@ msgstr "EFFECT_ADD"
msgctxt ""
"04060103.xhp\n"
"par_id3147524\n"
-"415\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Calculates the effective annual rate of interest on the basis of the nominal interest rate and the number of interest payments per annum.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_EFFECT\"> སྐྱེད་གོང་ཚད་ཆུང་བ་དང་ ལོ་རེ་རེའི་གླ་དངུལ་སྐྱེད་ཀྱི་གྱངས་ཁ་གུ་ལུ་གཞི་རྩ་སྟེ་ སྐྱེད་ཀྱི་ལོ་བསྟར་གོང་ཚད་ནུས་ཅན་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -7405,7 +6740,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_EFFECT\"> སྐྱེད་གོང་ཚད
msgctxt ""
"04060103.xhp\n"
"hd_id3155364\n"
-"416\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -7414,7 +6748,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060103.xhp\n"
"par_id3155118\n"
-"417\n"
"help.text"
msgid "EFFECT_ADD(NominalRate; NPerY)"
msgstr "EFFECT_ADD(གོང་ཚད་ཆུང་བ་;Npery)"
@@ -7423,7 +6756,6 @@ msgstr "EFFECT_ADD(གོང་ཚད་ཆུང་བ་;Npery)"
msgctxt ""
"04060103.xhp\n"
"par_id3148907\n"
-"418\n"
"help.text"
msgid "<emph>NominalRate</emph> is the annual nominal rate of interest."
msgstr ""
@@ -7432,7 +6764,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3154274\n"
-"419\n"
"help.text"
msgid "<emph>NPerY </emph>is the number of interest payments per year."
msgstr "<emph> པི་ </emph> འདི་ ལོ་བསྟར་ སྐྱེད་གླ་དངུལ་ དུས་ཡུན་གྱི་གྱངས་ཁ་ཨིན།"
@@ -7441,7 +6772,6 @@ msgstr "<emph> པི་ </emph> འདི་ ལོ་བསྟར་ སྐྱ
msgctxt ""
"04060103.xhp\n"
"hd_id3149156\n"
-"420\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -7450,7 +6780,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060103.xhp\n"
"par_id3158426\n"
-"421\n"
"help.text"
msgid "What is the effective annual rate of interest for a 5.25% nominal rate and quarterly payment."
msgstr "༥་༢༥% གོང་ཚད་ཆུང་བ་དང་ དཔྱ་གསུམ་བསྟར་གླ་དངུལ་གྱི་ ལོ་བསྟར་ནུས་ཅན་སྐྱེད་ཀྱི་གོང་ཚད་ག་ཅི་སྨོ།"
@@ -7459,7 +6788,6 @@ msgstr "༥་༢༥% གོང་ཚད་ཆུང་བ་དང་ དཔྱ
msgctxt ""
"04060103.xhp\n"
"par_id3148927\n"
-"422\n"
"help.text"
msgid "<item type=\"input\">=EFFECT_ADD(0.0525;4)</item> returns 0.053543 or 5.3543%."
msgstr ""
@@ -7476,7 +6804,6 @@ msgstr "<bookmark_value>རྩིས་སྟོན་འབད་དོ་ ཨ
msgctxt ""
"04060103.xhp\n"
"hd_id3149998\n"
-"99\n"
"help.text"
msgid "DDB"
msgstr "DDB"
@@ -7485,7 +6812,6 @@ msgstr "DDB"
msgctxt ""
"04060103.xhp\n"
"par_id3159190\n"
-"100\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GDA\">Returns the depreciation of an asset for a specified period using the arithmetic-declining method.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GDA\"> ཨང་རྩིས་མར་འབབ་ཐབས་ལམ་ ལག་ལེན་ཐོག་ལས་ གསལ་བཀོད་གྲུབ་ཡོད་པའི་དུས་ཡུན་གྱི་དོན་ལུ་ བདོག་གཏད་ཀྱི་ གོང་ཐང་ཆག་པ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -7494,7 +6820,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GDA\"> ཨང་རྩིས་མར་འབབ
msgctxt ""
"04060103.xhp\n"
"par_id3152361\n"
-"101\n"
"help.text"
msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
msgstr "ཁྱོད་ཀྱི་འགོ་ཐོག་གོང་ཐང་ཆག་པའི་གནས་གོང་མཐོ་མི་གཅིག་ རིང་ཚད་ཀྱི་གོང་ཐང་ཆག་པ་ལུ་རྒྱབ་འགལ་སྦེ་དགོས་མཁོ་བ་ཅིན་ གོང་ཐང་ཆག་པའི་རྣམ་པ་འ་ནི་བཟུམ་ལག་ལེན་འཐབ། གོང་ཐང་ཆག་པའི་གནས་གོང་འདི་དུས་ཡུན་རེ་རེ་དང་བཅས་ཉུང་སུ་སྦེ་འགྱོཝ་ཨིནམ་ལས་ སྤྱིར་བཏང་ལུ་ ཉོ་ཚོང་འབད་དེ་(དཔེ་འབད་བ་ཆིན་ སྣུམ་འཁོར་ཚུ་ གློག་རིག་ཚུ་) དུམ་གྲ་ཅིག་གི་ཤུལ་ལས་ གནས་གོང་གྱོང་རྒུད་འདི་ མཐོ་མི་བདོག་གཏད་ཚུའི་དོན་ལུ་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན། འ་ནི་རྩིས་སྟོན་དབྱེ་བའི་འོག་ལུ་ ཀི་དེབ་གནས་གོང་འདི་ཀླད་ཀོར་ལུ་ནམ་ཡང་མི་ལྷོདན་ཨིན་དྲན་གནང་།"
@@ -7503,7 +6828,6 @@ msgstr "ཁྱོད་ཀྱི་འགོ་ཐོག་གོང་ཐང་
msgctxt ""
"04060103.xhp\n"
"hd_id3156038\n"
-"102\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -7512,7 +6836,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060103.xhp\n"
"par_id3166452\n"
-"103\n"
"help.text"
msgid "DDB(Cost; Salvage; Life; Period; Factor)"
msgstr "DDB(རིན་;ཉེན་སྐྱོབ་;ཚེ་;དུས་ཡུན་;ཆ་རྐྱེན།)"
@@ -7521,7 +6844,6 @@ msgstr "DDB(རིན་;ཉེན་སྐྱོབ་;ཚེ་;དུས་
msgctxt ""
"04060103.xhp\n"
"par_id3153237\n"
-"104\n"
"help.text"
msgid "<emph>Cost</emph> fixes the initial cost of an asset."
msgstr "<emph> རིན་ </emph> གིས་ བདོག་གཏད་ཀྱི་འགོ་ཐོག་རིན་ གཏན་བཟོཝ་ཨིན།"
@@ -7530,7 +6852,6 @@ msgstr "<emph> རིན་ </emph> གིས་ བདོག་གཏད་ཀ
msgctxt ""
"04060103.xhp\n"
"par_id3149787\n"
-"105\n"
"help.text"
msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
msgstr "<emph> ཉེན་སྐྱོབ་ </emph> གིས་ དེའི་ཚེ་མཇུག་ལུ་བདོག་གཏད་ཀྱི་གནས་གོང་གཏན་བཟོཝ་ཨིན།"
@@ -7539,7 +6860,6 @@ msgstr "<emph> ཉེན་སྐྱོབ་ </emph> གིས་ དེའི
msgctxt ""
"04060103.xhp\n"
"par_id3152945\n"
-"106\n"
"help.text"
msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
msgstr ""
@@ -7548,7 +6868,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3149736\n"
-"107\n"
"help.text"
msgid "<emph>Period</emph> states the period for which the value is to be calculated."
msgstr "<emph> དུས་ཡུན་ </emph> གིས་གོང་ཐང་ཆག་པ་འདི་རྩིས་སྟོན་འབད་ནི་ཨིན་པའི་དུས་ཡུན་ངེས་འཛིན་འབདཝ་ཨིན།"
@@ -7557,7 +6876,6 @@ msgstr "<emph> དུས་ཡུན་ </emph> གིས་གོང་ཐང
msgctxt ""
"04060103.xhp\n"
"par_id3150243\n"
-"108\n"
"help.text"
msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
msgstr "<emph> ཆ་རྐྱེན་ </emph> (གདམ་ཁ་ཅན་) གོང་ཐང་ཆག་པ་མར་ཕབ་འབད་བའི་ཆ་རྐྱེན་ཨིན། གནས་གོང་འདི་ཐོ་བཀོད་འབད་དེ་མེད་ན་ཅིན་ སྔོན་སྒྲིག་འདི་ཆ་རྐྱེན་ ༢ ཨིན།"
@@ -7566,7 +6884,6 @@ msgstr "<emph> ཆ་རྐྱེན་ </emph> (གདམ་ཁ་ཅན་)
msgctxt ""
"04060103.xhp\n"
"hd_id3159274\n"
-"109\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -7575,7 +6892,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060103.xhp\n"
"par_id3152882\n"
-"110\n"
"help.text"
msgid "A computer system with an initial cost of 75,000 currency units is to be depreciated monthly over 5 years. The value at the end of the depreciation is to be 1 currency unit. The factor is 2."
msgstr "འགོ་ཐོག་གོང་ཚད་ ༧༥༠༠༠ དངུལ་ཆ་ཕྲན་འབད་མི་ གློག་རིག་རིམ་ལུགས་དེ་ཟླ་རིམ་སྦེ་ ལོ་ངོ་ ༥ གི་རིང་ གོང་ཐང་ཆག་ནི་ཨིན་པས། གོང་ཐང་ཆག་པའི་མཇུག་ལུ་ གནས་གོང་དེ་ ༡ དངུལ་ཆ་ཕྲན་འོང་ནི་ཨིན་པས། ཆ་རྐྱེན་དེ་ ༢ ཨིན།"
@@ -7584,7 +6900,6 @@ msgstr "འགོ་ཐོག་གོང་ཚད་ ༧༥༠༠༠ དངུ
msgctxt ""
"04060103.xhp\n"
"par_id3154106\n"
-"111\n"
"help.text"
msgid "<item type=\"input\">=DDB(75000;1;60;12;2) </item>= 1,721.81 currency units. Therefore, the double-declining depreciation in the twelfth month after purchase is 1,721.81 currency units."
msgstr "DDB(75000;1;60;12;2) = ༡,༧༢༡་༨༡ དངུལ་ཆ་ཕྲན། ནི་འབདཝ་ལས་ ཉོ་ཚོང་གྲུབ་པའི་ཤུལ་གྱི་ ཟླཝ་དང་པའི་སྐབས་ ལོག་བལྟབ་མར་འབབ་གོང་ཐང་ཆག་པ་དེ་ ༡,༧༢༡་༨༡ དངུལ་ཆ་ཕྲན་ཚུ་ཨིན།"
@@ -7601,17 +6916,14 @@ msgstr "<bookmark_value>རྩིས་སྟོན་འབད་དོ་ ཐ
msgctxt ""
"04060103.xhp\n"
"hd_id3149962\n"
-"113\n"
"help.text"
msgid "DB"
msgstr "DB"
#: 04060103.xhp
-#, fuzzy
msgctxt ""
"04060103.xhp\n"
"par_id3148989\n"
-"114\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GDA2\">Returns the depreciation of an asset for a specified period using the fixed-declining balance method.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GDA\"> ཨང་རྩིས་མར་འབབ་ཐབས་ལམ་ ལག་ལེན་ཐོག་ལས་ གསལ་བཀོད་གྲུབ་ཡོད་པའི་དུས་ཡུན་གྱི་དོན་ལུ་ བདོག་གཏད་ཀྱི་ གོང་ཐང་ཆག་པ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -7620,7 +6932,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GDA\"> ཨང་རྩིས་མར་འབབ
msgctxt ""
"04060103.xhp\n"
"par_id3156213\n"
-"115\n"
"help.text"
msgid "This form of depreciation is used if you want to get a higher depreciation value at the beginning of the depreciation (as opposed to linear depreciation). The depreciation value is reduced with every depreciation period by the depreciation already deducted from the initial cost."
msgstr "འ་ནི་གོང་ཐང་ཆག་པའི་རྣམ་པ་འདི་ ཁྱོད་ཀྱི་གོང་ཐང་ཆག་པ་འགོ་བཙུགས་གུ་ གོང་ཐང་ཆག་པའི་གནས་གོང་མཐོ་མི་གཅིག་འཐོབ་དགོས་འདོད་ན་ལག་ལེན་འཐབ་ཨིན་ (རིང་ཚད་ཀྱི་གོང་ཐང་ཆག་པ་ལུ་རྒྱབ་འགལ་འབད་ཡོད་བཟུམ་སྦེ་) ། འགོ་ཐོག་རིན་ནང་ལས་ཧེ་མ་ལས་རང་ཕབ་ཡོད་པའི་གོང་ཐང་ཆག་པ་གི་ཐོག་ལས་ གོང་ཐང་ཆག་པའི་དུས་རེ་རེ་དང་བཅས་ གོང་ཐང་ཆག་པའི་གནས་གོང་འདི་མར་ཕབ་འབད་ཡོདཔ་ཨིན།"
@@ -7629,7 +6940,6 @@ msgstr "འ་ནི་གོང་ཐང་ཆག་པའི་རྣམ་པ
msgctxt ""
"04060103.xhp\n"
"hd_id3149807\n"
-"116\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -7638,7 +6948,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060103.xhp\n"
"par_id3153349\n"
-"117\n"
"help.text"
msgid "DB(Cost; Salvage; Life; Period; Month)"
msgstr "DB(རིན་; ཉེན་སྐྱོབ་; ཚེ་; དུས་ཡུན་;ཟླཝ།)"
@@ -7647,7 +6956,6 @@ msgstr "DB(རིན་; ཉེན་སྐྱོབ་; ཚེ་; དུས་
msgctxt ""
"04060103.xhp\n"
"par_id3148462\n"
-"118\n"
"help.text"
msgid "<emph>Cost</emph> is the initial cost of an asset."
msgstr "<emph> རིན་ </emph> འདི་བདོག་གཏད་ཀྱི་འགོ་ཐོག་རིན་ཨིན།"
@@ -7656,7 +6964,6 @@ msgstr "<emph> རིན་ </emph> འདི་བདོག་གཏད་ཀ
msgctxt ""
"04060103.xhp\n"
"par_id3148658\n"
-"119\n"
"help.text"
msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
msgstr "<emph> ཉེན་སྐྱོབ་ </emph> འདི་ གོང་ཐང་ཆག་པའི་མཇུག་གི་ བདོག་གཏད་ཀྱི་གནས་གོང་ཨིན།"
@@ -7665,7 +6972,6 @@ msgstr "<emph> ཉེན་སྐྱོབ་ </emph> འདི་ གོང་
msgctxt ""
"04060103.xhp\n"
"par_id3145371\n"
-"120\n"
"help.text"
msgid "<emph>Life</emph> defines the period over which an asset is depreciated."
msgstr "<emph> ཚེ་ </emph> ཚེ་ཀྱིས་ བདོག་གཏད་དེ་ གོང་ཐང་ཆག་པའི་ དུས་ཡུན་ངེས་འཛིན་འབདཝ་ཨིན།"
@@ -7674,7 +6980,6 @@ msgstr "<emph> ཚེ་ </emph> ཚེ་ཀྱིས་ བདོག་གཏ
msgctxt ""
"04060103.xhp\n"
"par_id3154608\n"
-"121\n"
"help.text"
msgid "<emph>Period</emph> is the length of each period. The length must be entered in the same date unit as the depreciation period."
msgstr "<emph> དུས་ཡུན་ </emph> འདི་དུས་ཡུན་རེ་རེའི་ རིང་ཚད་ཨིན། རིང་ཚད་འདི་གོང་ཐང་ཆག་པའི་དུས་ཡུན་བཟུམ་སྦེ་ ཚེས་ཆ་ཕྲན་གཅིག་པུ་ནང་ལུ་བཙུགས་དགོསཔ་ཨིན།"
@@ -7683,7 +6988,6 @@ msgstr "<emph> དུས་ཡུན་ </emph> འདི་དུས་ཡུ
msgctxt ""
"04060103.xhp\n"
"par_id3150829\n"
-"122\n"
"help.text"
msgid "<emph>Month</emph> (optional) denotes the number of months for the first year of depreciation. If an entry is not defined, 12 is used as the default."
msgstr "<emph> ཟླཝ་ </emph> (གདམ་ཁ་ཅན་) གིས་ གོང་ཐང་ཆག་པའི་ལོ་ངོ་དང་པའི་ཟླཝ་གི་གྱངས་ཁ་མཚོན་རྟགས་སྟོནམ་ཨིན། ཐོ་བཀོད་དེ་ ངེས་འཛིན་འབད་དེ་མེད་པ་ཅིན་ ༡༢ འདི་ སྔོན་སྒྲིག་སྦེ་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན།"
@@ -7692,7 +6996,6 @@ msgstr "<emph> ཟླཝ་ </emph> (གདམ་ཁ་ཅན་) གིས་
msgctxt ""
"04060103.xhp\n"
"hd_id3151130\n"
-"123\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -7701,7 +7004,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060103.xhp\n"
"par_id3156147\n"
-"124\n"
"help.text"
msgid "A computer system with an initial cost of 25,000 currency units is to be depreciated over a three year period. The salvage value is to be 1,000 currency units. One period is 30 days."
msgstr "འགོ་ཐོག་གོང་ཚད་ ༢༥༠༠༠ དངུལ་ཆ་ཕྲན་འབད་མི་ གློག་རིག་རིམ་ལུགས་གཅིག་ དུས་ཡུན་ ལོ་ངོ་ གསུམ་གྱི་རིང་ལུ་ གོང་ཐང་ཆག་ནི་ཨིན་པས། ཉེན་སྐྱོབ་གནས་གོང་དེ་ ༡༠༠༠ དངུལ་ཆ་ཕྲན་འོང་ནི་ཨིན་པས། དུས་ཡུན་གཅིག་དེ་ ཉིན་གྲངས་ ༣༠ ཨིན།"
@@ -7710,7 +7012,6 @@ msgstr "འགོ་ཐོག་གོང་ཚད་ ༢༥༠༠༠ དངུ
msgctxt ""
"04060103.xhp\n"
"par_id3149513\n"
-"125\n"
"help.text"
msgid "<item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1,075.00 currency units"
msgstr ""
@@ -7719,7 +7020,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"par_id3159242\n"
-"126\n"
"help.text"
msgid "The fixed-declining depreciation of the computer system is 1,075.00 currency units."
msgstr "གློག་རིག་རིམ་ལུགས་ཀྱི་ གཏན་བཟོས་མར་འབབ་གོང་ཐང་ཆག་པ་དེ་ ༡,༠༧༥་༠༠ དངུལ་ཆ་ཕྲན་ཨིན།"
@@ -7736,7 +7036,6 @@ msgstr "<bookmark_value>ཨའི་ཨར་ཨར་ལས་འགན་</boo
msgctxt ""
"04060103.xhp\n"
"hd_id3153948\n"
-"128\n"
"help.text"
msgid "IRR"
msgstr "IRR"
@@ -7745,7 +7044,6 @@ msgstr "IRR"
msgctxt ""
"04060103.xhp\n"
"par_id3143282\n"
-"129\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_IKV\">Calculates the internal rate of return for an investment.</ahelp> The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
msgstr "<ahelp hid=\"HID_FUNC_IKV\"> མ་རྩ་བཙུགས་པའི་དོན་ལུ་ སླར་ལོག་གི་ནང་འཁོད་གོང་ཚད་རྩིས་སྟོན་འབདཝ་ཨིན། </ahelp> གནས་གོང་ཚུ་གིས་དུས་རྒྱུན་བར་མཚམས་ལུ་ མ་དངུལ་འབབ་རྒྱུན་ཁྱད་ཚབ་འབདཝ་ཨིནམ་ད་ ཉུང་མཐའ་རང་ གནས་གོང་གཅིག་དེ་ མེད་ཆ་འོང་དགོཔ་ད་ (གླ་དངུལ་ཚུ་) ཉུང་མཐའ་རང་གནས་གོང་གཅིག་ ཡོད་ཆ་འོང་དགོཔ་ཨིན་(འབབ་ཁུངས་) །"
@@ -7762,7 +7060,6 @@ msgstr ""
msgctxt ""
"04060103.xhp\n"
"hd_id3150599\n"
-"130\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -7771,7 +7068,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060103.xhp\n"
"par_id3155427\n"
-"131\n"
"help.text"
msgid "IRR(Values; Guess)"
msgstr "IRR(གནས་གོང་ཚུ་ ; ཕོག་ཚོད་དཔག་ནི།)"
@@ -7780,7 +7076,6 @@ msgstr "IRR(གནས་གོང་ཚུ་ ; ཕོག་ཚོད་དཔ
msgctxt ""
"04060103.xhp\n"
"par_id3144758\n"
-"132\n"
"help.text"
msgid "<emph>Values</emph> represents an array containing the values."
msgstr "<emph> གནས་གོང་ཚུ་ </emph> ནང་ན་གནས་གོང་ཤོམ་ཏེ་ཡོད་པའི་ཨེ་རེ་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -7789,7 +7084,6 @@ msgstr "<emph> གནས་གོང་ཚུ་ </emph> ནང་ན་གན
msgctxt ""
"04060103.xhp\n"
"par_id3149233\n"
-"133\n"
"help.text"
msgid "<emph>Guess</emph> (optional) is the estimated value. An iterative method is used to calculate the internal rate of return. If you can provide only few values, you should provide an initial guess to enable the iteration."
msgstr "<emph> ཕོག་ཚོད་དཔག་ནི་ </emph> (གདམ་ཁ་ཅན་) དེ་ ཕོག་ཚོད་འབད་ཡོད་པའི་གནས་གོང་ཨིན། སླར་ལོག་གི་ནང་འཁོད་གོང་ཚད་རྩིས་སྟོན་འབད་ནིའི་དོན་ལུ་ ཁས་ལན་ཅན་ཐབས་ལམ་གཅིག་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན། ཁྱོད་ཀྱིས་ གནས་གོང་དག་པ་ཅིག་ལས་ལྷག་སྟེ་བྱིན་མ་ཚུགས་པ་ཅིན་ ཁས་ལན་ཅན་དེ་ ལྕོགས་ཅན་བཟོ་ནིའི་དོན་ལུ་ ཁྱོད་ཀྱིས་ འགོ་ཐོག་ཕོག་ཚོད་དཔག་ནི་གཅིག་བྱིན་དགོཔ་ཨིན།"
@@ -7798,7 +7092,6 @@ msgstr "<emph> ཕོག་ཚོད་དཔག་ནི་ </emph> (གདམ
msgctxt ""
"04060103.xhp\n"
"hd_id3151258\n"
-"134\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -7807,7 +7100,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060103.xhp\n"
"par_id3150630\n"
-"135\n"
"help.text"
msgid "Under the assumption that cell contents are A1=<item type=\"input\">-10000</item>, A2=<item type=\"input\">3500</item>, A3=<item type=\"input\">7600</item> and A4=<item type=\"input\">1000</item>, the formula <item type=\"input\">=IRR(A1:A4)</item> gives a result of 11,33%."
msgstr ""
@@ -7824,7 +7116,6 @@ msgstr "<bookmark_value> རྩིས་སྟོན་འབད་ནི། བ
msgctxt ""
"04060103.xhp\n"
"hd_id3151012\n"
-"314\n"
"help.text"
msgid "ISPMT"
msgstr "ISPMT"
@@ -7833,7 +7124,6 @@ msgstr "ISPMT"
msgctxt ""
"04060103.xhp\n"
"par_id3148693\n"
-"315\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ISPMT\">Calculates the level of interest for unchanged amortization installments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_ISPMT\"> བསྒྱུར་བཅོས་མ་འབད་བའི་བུ་ལོན་བཏབ་པའི་གཞི་བཙུགས་འབད་ནི་ཚུ་གི་དོན་ལུ་ སྐྱེད་ཀྱི་གནས་རིམ་རྩིས་སྟོན་འབདཝ་ཨིན། </ahelp>"
@@ -7842,7 +7132,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ISPMT\"> བསྒྱུར་བཅོས་མ
msgctxt ""
"04060103.xhp\n"
"hd_id3154661\n"
-"316\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -7851,7 +7140,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060103.xhp\n"
"par_id3146070\n"
-"317\n"
"help.text"
msgid "ISPMT(Rate; Period; TotalPeriods; Invest)"
msgstr "ISPMT(གོང་ཚད་; དུས་ཡུན་; བསྡོམས་_དུས་ཡུན་ཚུ་; མ་རྩ་འཇོག་པ་)"
@@ -7860,7 +7148,6 @@ msgstr "ISPMT(གོང་ཚད་; དུས་ཡུན་; བསྡོམ
msgctxt ""
"04060103.xhp\n"
"par_id3148672\n"
-"318\n"
"help.text"
msgid "<emph>Rate</emph> sets the periodic interest rate."
msgstr "<emph> གོང་ཚད་ </emph> དུས་མཚམས་སྐྱེད་གོང་ཚད་གཞི་སྒྲིག་འབདཝ་ཨིན།"
@@ -7869,7 +7156,6 @@ msgstr "<emph> གོང་ཚད་ </emph> དུས་མཚམས་སྐ
msgctxt ""
"04060103.xhp\n"
"par_id3145777\n"
-"319\n"
"help.text"
msgid "<emph>Period</emph> is the number of installments for calculation of interest."
msgstr "<emph> དུས་ཡུན་འདི་ </emph> སྐྱེད་ཀྱི་རྩིས་སྟོན་ནིའི་དོན་ལུ་གཞི་བཙུགས་འབད་ནི་ཚུའི་གྱངས་ཁ་ཨིན།"
@@ -7878,7 +7164,6 @@ msgstr "<emph> དུས་ཡུན་འདི་ </emph> སྐྱེད་
msgctxt ""
"04060103.xhp\n"
"par_id3153678\n"
-"320\n"
"help.text"
msgid "<emph>TotalPeriods</emph> is the total number of installment periods."
msgstr "<emph> དུས་ཡུན་ _ བསྡོམས་ </emph> འདི་ གཞི་བཙུགས་འབད་ནིའི་དུས་ཡུན་ཚུའི་གྱངས་ཁ་བསྡོམས་ཨིན།"
@@ -7887,7 +7172,6 @@ msgstr "<emph> དུས་ཡུན་ _ བསྡོམས་ </emph> འད
msgctxt ""
"04060103.xhp\n"
"par_id3159390\n"
-"321\n"
"help.text"
msgid "<emph>Invest</emph> is the amount of the investment."
msgstr "<emph> མ་རྩ་འཇོག་པ་ </emph> འདི་མ་རྩ་བཙུགས་པའི་དངུལ་བསྡོམས་ཨིན།"
@@ -7896,7 +7180,6 @@ msgstr "<emph> མ་རྩ་འཇོག་པ་ </emph> འདི་མ་
msgctxt ""
"04060103.xhp\n"
"hd_id3156162\n"
-"322\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -7905,7 +7188,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060103.xhp\n"
"par_id3149558\n"
-"323\n"
"help.text"
msgid "For a credit amount of 120,000 currency units with a two-year term and monthly installments, at a yearly interest rate of 12% the level of interest after 1.5 years is required."
msgstr "ངོ་བསྟོད་དངུལ་བསྡོམས་ ༡༢༠,༠༠༠ དངུལ་ཆ་ཕྲན་ ལོ་ངོ་གཉིས་ཀྱི་དུས་ཡུན་དང་ ལོ་བསྟར་སྐྱེད་གོང་ཚད་ ༡༢% དེ་ལས་ ཟླ་རིམ་གཞི་བཙུགས་འབད་ནི་དང་བཅསཔ་པའི་དོན་ལུ་ ལོ་ངོ་ ༡་༥ གི་ཤུལ་ལས་སྐྱེད་ཀྱི་ གནས་རིམ་དེ་དགོས་མཁོ་ཡོདཔ་ཨིན།"
@@ -7914,7 +7196,6 @@ msgstr "ངོ་བསྟོད་དངུལ་བསྡོམས་ ༡༢
msgctxt ""
"04060103.xhp\n"
"par_id3150949\n"
-"324\n"
"help.text"
msgid "<item type=\"input\">=ISPMT(1%;18;24;120000)</item> = -300 currency units. The monthly interest after 1.5 years amounts to 300 currency units."
msgstr "ISPMT(༡% ; ༡༨ ; ༢༤ ; ༡༢༠༠༠༠) = -༣༠༠ དངུལ་ཆ་ཕྲན་ཚུ། ལོ་ ༡་ ༥ གི་ཤུལ་ལས་ ཟླ་རིམ་དངུལ་སྐྱེད་ འདི་༣༠༠ དངུལ་ཆ་ཕྲན་ལུ་ཁྱོད་འབོརཝ་ཨིན།"
@@ -7923,7 +7204,6 @@ msgstr "ISPMT(༡% ; ༡༨ ; ༢༤ ; ༡༢༠༠༠༠) = -༣༠༠ དང
msgctxt ""
"04060103.xhp\n"
"par_id3146812\n"
-"426\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">Financial Functions Part Two</link>"
msgstr "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\"> དངུལ་འབྲེལ་ལས་འགན་ཚུའི་ཡན་ལག་གཉིས་པ། </link>"
@@ -7932,7 +7212,6 @@ msgstr "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Fu
msgctxt ""
"04060103.xhp\n"
"par_id3154411\n"
-"427\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Financial Functions Part Three</link>"
msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\"> དངུལ་འབྲེལ་ལས་འགན་ཚུའི་ཡན་ལག་གསུམ་པ། </link>"
@@ -7946,7 +7225,6 @@ msgid "Information Functions"
msgstr "བརྡ་དོན་ལས་འགན་ཚུ།"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3147247\n"
@@ -7963,7 +7241,6 @@ msgid "Information Functions"
msgstr "བརྡ་དོན་ལས་འགན་ཚུ།"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id3147499\n"
@@ -8460,7 +7737,6 @@ msgid "The example returns choochoo."
msgstr ""
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3150688\n"
@@ -8541,7 +7817,6 @@ msgid "<item type=\"input\">=FORMULA(A8)</item> returns the text =SUM(1;2;3)."
msgstr ""
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3155409\n"
@@ -8638,7 +7913,6 @@ msgid "<item type=\"input\">=ISREF(ADDRESS(1; 1; 2;\"Sheet2\"))</item> returns F
msgstr ""
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3154812\n"
@@ -8711,7 +7985,6 @@ msgid "<item type=\"input\">=ISERR(C9)</item> where cell C9 contains <item type=
msgstr ""
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3147081\n"
@@ -8784,7 +8057,6 @@ msgid "<item type=\"input\">=ISERROR(C9)</item> where cell C9 contains <item typ
msgstr ""
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id31470811\n"
@@ -8793,7 +8065,6 @@ msgid "<bookmark_value>IFERROR function</bookmark_value> <bookmark_value>testin
msgstr "<bookmark_value>ཨའི་ཨེསི་འཛོལ་བ་ལས་འགན་</bookmark_value><bookmark_value>ངོས་འཛིན་འབད་དོ་ ཡོངས་ཁྱབ་འཛོལ་བ་ཚུ་</bookmark_value>"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"hd_id31470811\n"
@@ -8866,7 +8137,6 @@ msgid "<item type=\"input\">=IFERROR(C8;C9)</item> where cell C8 contains <item
msgstr ""
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3153618\n"
@@ -8931,7 +8201,6 @@ msgid "<item type=\"input\">=ISFORMULA(C4)</item> returns FALSE if the cell C4 c
msgstr ""
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3156048\n"
@@ -8948,7 +8217,6 @@ msgid "ISEVEN"
msgstr "ISEVEN"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id3149170\n"
@@ -8981,7 +8249,6 @@ msgid "<emph>Value</emph> is the value to be checked."
msgstr "<emph> གནས་གོང་ </emph> འདི་ཞིབ་དཔྱད་འབད་ནི་ཨིན་པའི་གནས་གོང་ཨིན།"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id3445844\n"
@@ -9110,7 +8377,6 @@ msgid "<item type=\"input\">=ISEVEN_ADD(A1)</item> returns 1 if cell A1 contains
msgstr ""
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3154692\n"
@@ -9191,7 +8457,6 @@ msgid "<item type=\"input\">=ISNONTEXT(D9)</item> returns TRUE if cell D9 contai
msgstr ""
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3159148\n"
@@ -9256,7 +8521,6 @@ msgid "<item type=\"input\">=ISBLANK(D2)</item> returns FALSE as a result."
msgstr ""
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3155356\n"
@@ -9337,7 +8601,6 @@ msgid "<item type=\"input\">=ISLOGICAL(ISNA(D4))</item> returns TRUE whatever th
msgstr "ISLOGICAL(ISNA(D4)) ནང་ཐིག་D4གི་ ནང་དོན་ཚུ་ག་བཟུམ་ཨིན་རུང་TRUE སླར་ལོག་འབདཝ་ཨིན་ ག་ཅི་འབད་ཟེར་བ་ཅིན་ISNA() དེ་གིས་ གཏན་ཚིག་གནས་གོང་འདི་སླར་ལོག་འབདཝ་ཨིན།"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3153685\n"
@@ -9410,7 +8673,6 @@ msgid "<item type=\"input\">=ISNA(D3)</item> returns FALSE as a result."
msgstr ""
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id31536851\n"
@@ -9419,7 +8681,6 @@ msgid "<bookmark_value>IFNA function</bookmark_value> <bookmark_value>#N/A erro
msgstr "<bookmark_value>ཨའི་ཨེསི་ཨེན་ཨེ་ ལས་འགན་</bookmark_value><bookmark_value>#N/A འཛོལ་བ་ ངོས་འཛིན་འབད་དོ་</bookmark_value>"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"hd_id31536851\n"
@@ -9484,7 +8745,6 @@ msgid "<item type=\"input\">=IFNA(D3;D4)</item> returns the value of D3 if D3 do
msgstr ""
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3149426\n"
@@ -9565,7 +8825,6 @@ msgid "<item type=\"input\">=ISTEXT(C3)</item> returns FALSE if cell C3 contains
msgstr ""
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3156034\n"
@@ -9582,7 +8841,6 @@ msgid "ISODD"
msgstr "ISODD"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id3155920\n"
@@ -9615,7 +8873,6 @@ msgid "<emph>Value</emph> is the value to be checked."
msgstr "<emph> གནས་གོང་ </emph> འདི་ཞིབ་དཔྱད་འབད་ནི་ཨིན་པའི་གནས་གོང་ཨིན།"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id9027680\n"
@@ -9728,7 +8985,6 @@ msgid "<item type=\"input\">=ISODD_ADD(5)</item> returns 1."
msgstr ""
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3148688\n"
@@ -9905,7 +9161,6 @@ msgid "=N(1/0) returns #DIV/0!"
msgstr ""
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3156275\n"
@@ -10034,7 +9289,6 @@ msgid "<item type=\"input\">=TYPE(D9)</item> returns 1 as a result."
msgstr ""
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"bm_id3155509\n"
@@ -10646,7 +9900,6 @@ msgstr "<bookmark_value>གཏན་ཚིག་ཅན་གྱི་ལས་
msgctxt ""
"04060105.xhp\n"
"hd_id3153484\n"
-"1\n"
"help.text"
msgid "Logical Functions"
msgstr "ལས་འགན་གཏན་ཚིག་ཅན་ཚུ།"
@@ -10655,7 +9908,6 @@ msgstr "ལས་འགན་གཏན་ཚིག་ཅན་ཚུ།"
msgctxt ""
"04060105.xhp\n"
"par_id3149312\n"
-"2\n"
"help.text"
msgid "<variable id=\"logischtext\">This category contains the <emph>Logical</emph> functions. </variable>"
msgstr "<variable id=\"logischtext\"> འ་ནི་དབྱེ་རིམ་ནང་ན་ <emph> ལས་འགན་གཏན་ཚིག་ཅན་ཚུ་ </emph> ཤོམ་ཏེ་ཡོདཔ་ཨིན། </variable>"
@@ -10672,7 +9924,6 @@ msgstr "<bookmark_value>AND ལས་འགན།</bookmark_value>"
msgctxt ""
"04060105.xhp\n"
"hd_id3147505\n"
-"29\n"
"help.text"
msgid "AND"
msgstr "AND"
@@ -10681,7 +9932,6 @@ msgstr "AND"
msgctxt ""
"04060105.xhp\n"
"par_id3153959\n"
-"65\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_UND\">Returns TRUE if all arguments are TRUE.</ahelp> If one of the elements is FALSE, this function returns the FALSE value."
msgstr "<ahelp hid=\"HID_FUNC_UND\"> སྒྲུབ་རྟགས་ཚུ་ཆ་མཉམ་རང་ TRUE ཨིན་པ་ཅིན་ TRUE སླར་ལོག་འབདཝ་ཨིན། </ahelp> ཆ་ཤས་གཅིག་ FALSE ཨིན་པ་ཅིན་ FALSE གནས་གོང་སླར་ལོག་འབདཝ་ཨིན།"
@@ -10690,7 +9940,6 @@ msgstr "<ahelp hid=\"HID_FUNC_UND\"> སྒྲུབ་རྟགས་ཚུ་
msgctxt ""
"04060105.xhp\n"
"par_id3146100\n"
-"66\n"
"help.text"
msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
msgstr "སྒྲུབ་རྟགས་ཚུ་ ཁོང་ར་ གཏན་ཚིག་ཅན་གནས་གོང་ཚུ་སླར་ལོག་འབད་མི་ གཏན་ཚིག་ཅན་གསལ་བརྗོད་ཚུ་ཨིནམ་དང་ ཡང་ན་ (TRUE, 1<5, 2+3=7, B8<10) ནང་ན་གཏན་ཚིག་ཅན་ གནས་གོང་ཚུ་ཤོམ་ཏེ་ཡོད་པའི་ ཨེ་རེ་ (A1:C3) ཚུ་ཨིན།"
@@ -10699,7 +9948,6 @@ msgstr "སྒྲུབ་རྟགས་ཚུ་ ཁོང་ར་ གཏན
msgctxt ""
"04060105.xhp\n"
"hd_id3150374\n"
-"31\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -10708,7 +9956,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060105.xhp\n"
"par_id3159123\n"
-"32\n"
"help.text"
msgid "AND(LogicalValue1; LogicalValue2 ...LogicalValue30)"
msgstr "AND(གནས་གོང་གཏན་ཚིག་ཅན་ ༡ ; གནས་གོང་གཏན་ཚིག་ཅན་ ༢ ...གནས་གོང་གཏན་ཚིག་ཅན་ ༣༠)"
@@ -10717,7 +9964,6 @@ msgstr "AND(གནས་གོང་གཏན་ཚིག་ཅན་ ༡ ; ག
msgctxt ""
"04060105.xhp\n"
"par_id3150038\n"
-"33\n"
"help.text"
msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row. The result is TRUE if the logical value in all cells within the cell range is TRUE."
msgstr "<emph> གཏན་ཚིག་ཅན་གནས་གོང་༡ གཏན་ཚིག་ཅན་གནས་གོང་༢ གཏན་ཚིག་ཅན་གནས་གོང་༣༠ ཚུ་ དཔྱད་ཞིབ་འབད་ནི་ཨིན་པའི་གནས་སྟངས་ཚུ་ཨིན། </emph> གནས་སྟངས་ཚུ་ཆ་མཉམ་རང་ TRUE ཡང་ན་ FALSE འོང་ཚུགསཔ་ཨིན། ཁྱབ་ཚད་དེ་ ཚད་བཟུང་སྦེ་བཙུགས་ཡོད་པ་ཅིན་ ལས་འགན་གྱིས་ ད་ལྟོའི་ཀེར་ཐིག་ ཡང་ན་ གྲལ་ཐིག་ནང་ཡོད་པའི་ ཁྱབ་ཚད་ལས་གནས་གོང་ལག་ལེན་འཐབ་ཨིན། ནང་ཐིག་ཁྱབ་ཚད་ནང་འཁོད་ནང་ཡོད་པའི་ གཏན་ཚིག་ཅན་གནས་གོང་དེ་ TRUE ཨིན་པ་ཅིན་ གྲུབ་འབྲས་དེ་ TRUE ཨིན།"
@@ -10726,7 +9972,6 @@ msgstr "<emph> གཏན་ཚིག་ཅན་གནས་གོང་༡ ག
msgctxt ""
"04060105.xhp\n"
"hd_id3149143\n"
-"34\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -10735,7 +9980,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060105.xhp\n"
"par_id3153123\n"
-"35\n"
"help.text"
msgid "The logical values of entries 12<13; 14>12, and 7<6 are to be checked:"
msgstr "གནས་གོང་གཏན་ཚིག་ཅན་ཚུའི་ཐོ་བཀོད་ 12<13; 14>12 དང་ 7<6 ཚུ་ཞིབ་དཔྱད་འབད་ནི་ཨིན།"
@@ -10744,7 +9988,6 @@ msgstr "གནས་གོང་གཏན་ཚིག་ཅན་ཚུའི་
msgctxt ""
"04060105.xhp\n"
"par_id3145632\n"
-"36\n"
"help.text"
msgid "<item type=\"input\">=AND(12<13;14>12;7<6)</item> returns FALSE."
msgstr ""
@@ -10753,7 +9996,6 @@ msgstr ""
msgctxt ""
"04060105.xhp\n"
"par_id3149946\n"
-"60\n"
"help.text"
msgid "<item type=\"input\">=AND (FALSE;TRUE)</item> returns FALSE."
msgstr ""
@@ -10770,7 +10012,6 @@ msgstr "<bookmark_value>FALSE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060105.xhp\n"
"hd_id3149015\n"
-"3\n"
"help.text"
msgid "FALSE"
msgstr "FALSE"
@@ -10779,7 +10020,6 @@ msgstr "FALSE"
msgctxt ""
"04060105.xhp\n"
"par_id3149890\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FALSCH\">Returns the logical value FALSE.</ahelp> The FALSE() function does not require any arguments, and always returns the logical value FALSE."
msgstr "<ahelp hid=\"HID_FUNC_FALSCH\"> གནས་གོང་གཏན་ཚིག་ཅན་ FALSE སླར་ལོག་འབདཝ་ཨིན། </ahelp> FALSE() ལས་འགན་གྱིས་ སྒྲུབ་རྟགས་ཚུ་དགོས་མཁོ་མེདཔ་མ་ཚད་ ཨ་རྟག་རང་གནས་གོང་གཏན་ཚིག་ཅན་ FALSE སླར་ལོག་འབདཝ་ཨིན།"
@@ -10788,7 +10028,6 @@ msgstr "<ahelp hid=\"HID_FUNC_FALSCH\"> གནས་གོང་གཏན་ཚ
msgctxt ""
"04060105.xhp\n"
"hd_id3146939\n"
-"5\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -10797,7 +10036,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060105.xhp\n"
"par_id3150030\n"
-"6\n"
"help.text"
msgid "FALSE()"
msgstr "FALSE()"
@@ -10806,7 +10044,6 @@ msgstr "FALSE()"
msgctxt ""
"04060105.xhp\n"
"hd_id3150697\n"
-"7\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -10815,7 +10052,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060105.xhp\n"
"par_id3154842\n"
-"8\n"
"help.text"
msgid "<item type=\"input\">=FALSE()</item> returns FALSE"
msgstr ""
@@ -10824,7 +10060,6 @@ msgstr ""
msgctxt ""
"04060105.xhp\n"
"par_id3147468\n"
-"9\n"
"help.text"
msgid "<item type=\"input\">=NOT(FALSE())</item> returns TRUE"
msgstr ""
@@ -10841,7 +10076,6 @@ msgstr "<bookmark_value>IF ལས་འགན།</bookmark_value>"
msgctxt ""
"04060105.xhp\n"
"hd_id3150141\n"
-"48\n"
"help.text"
msgid "IF"
msgstr "IF"
@@ -10850,7 +10084,6 @@ msgstr "IF"
msgctxt ""
"04060105.xhp\n"
"par_id3148740\n"
-"49\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WENN\">Specifies a logical test to be performed.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_WENN\"> ལཱ་འགན་འགྲུབ་ནི་ཨིན་པའི་ བརྟག་ཞིབ་གཏན་ཚིག་ཅན་ཅིག་གསལ་བཀོད་འབདཝ་ཨིན། </ahelp>"
@@ -10859,7 +10092,6 @@ msgstr "<ahelp hid=\"HID_FUNC_WENN\"> ལཱ་འགན་འགྲུབ་ན
msgctxt ""
"04060105.xhp\n"
"hd_id3153325\n"
-"50\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -10868,7 +10100,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060105.xhp\n"
"par_id3154558\n"
-"51\n"
"help.text"
msgid "IF(Test; ThenValue; OtherwiseValue)"
msgstr "IF(Test; Then_value; Otherwise_value)"
@@ -10877,7 +10108,6 @@ msgstr "IF(Test; Then_value; Otherwise_value)"
msgctxt ""
"04060105.xhp\n"
"par_id3149727\n"
-"52\n"
"help.text"
msgid "<emph>Test</emph> is any value or expression that can be TRUE or FALSE."
msgstr "<emph> བརྟག་ཞིབ་ </emph> འདི་ TRUE ཡང་ན་ FALSE འོང་སྲིད་པའི་ གནས་གོང་གང་རུང་ཡང་ན་ གསལ་བརྗོད་ཨིན།"
@@ -10886,7 +10116,6 @@ msgstr "<emph> བརྟག་ཞིབ་ </emph> འདི་ TRUE ཡང་
msgctxt ""
"04060105.xhp\n"
"par_id3155828\n"
-"53\n"
"help.text"
msgid "<emph>ThenValue</emph> (optional) is the value that is returned if the logical test is TRUE."
msgstr "<emph>Then_value</emph> (གདམ་ཁ་ཅན་) འདི་ གཏན་ཚིག་ཅན་བརྟག་ཞིབ་འདི་ TRUE ཨིན་པ་ཅིན་ སླར་ལོག་འབད་ཡོད་པའི་གནས་གོང་།"
@@ -10895,7 +10124,6 @@ msgstr "<emph>Then_value</emph> (གདམ་ཁ་ཅན་) འདི་ ག
msgctxt ""
"04060105.xhp\n"
"par_id3154811\n"
-"54\n"
"help.text"
msgid "<emph>OtherwiseValue</emph> (optional) is the value that is returned if the logical test is FALSE."
msgstr "<emph>Otherwise_value</emph> (གདམ་ཁ་ཅན་) འདི་གཏན་ཚིག་ཅན་བརྟག་ཞིབ་འདི་ FALSE ཨིན་པ་སླར་ལོག་འབད་ཡོད་པའི་ གནས་གོང་།"
@@ -10904,7 +10132,6 @@ msgstr "<emph>Otherwise_value</emph> (གདམ་ཁ་ཅན་) འདི་
msgctxt ""
"04060105.xhp\n"
"hd_id3149507\n"
-"55\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
@@ -10913,7 +10140,6 @@ msgstr "དཔེར་བརྗོད་ཚུ།"
msgctxt ""
"04060105.xhp\n"
"par_id3150867\n"
-"57\n"
"help.text"
msgid "<item type=\"input\">=IF(A1>5;100;\"too small\")</item> If the value in A1 is higher than 5, the value 100 is entered in the current cell; otherwise, the text “too small” (without quotes) is entered."
msgstr ""
@@ -10930,7 +10156,6 @@ msgstr "<bookmark_value>NOT ལས་འགན།</bookmark_value>"
msgctxt ""
"04060105.xhp\n"
"hd_id3155954\n"
-"12\n"
"help.text"
msgid "NOT"
msgstr "NOT"
@@ -10939,7 +10164,6 @@ msgstr "NOT"
msgctxt ""
"04060105.xhp\n"
"par_id3153570\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NICHT\">Complements (inverts) a logical value.</ahelp>"
msgstr ""
@@ -10948,7 +10172,6 @@ msgstr ""
msgctxt ""
"04060105.xhp\n"
"hd_id3147372\n"
-"14\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -10957,7 +10180,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060105.xhp\n"
"par_id3157996\n"
-"15\n"
"help.text"
msgid "NOT(LogicalValue)"
msgstr "NOT(གནས་གོང་གཏན་ཚིག་ཅན།)"
@@ -10966,7 +10188,6 @@ msgstr "NOT(གནས་གོང་གཏན་ཚིག་ཅན།)"
msgctxt ""
"04060105.xhp\n"
"par_id3148766\n"
-"16\n"
"help.text"
msgid "<emph>LogicalValue</emph> is any value to be complemented."
msgstr ""
@@ -10975,7 +10196,6 @@ msgstr ""
msgctxt ""
"04060105.xhp\n"
"hd_id3149884\n"
-"17\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -10984,7 +10204,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060105.xhp\n"
"par_id3150132\n"
-"18\n"
"help.text"
msgid "<item type=\"input\">=NOT(A)</item>. If A=TRUE then NOT(A) will evaluate FALSE."
msgstr ""
@@ -11001,7 +10220,6 @@ msgstr "<bookmark_value>OR ལས་འགན།</bookmark_value>"
msgctxt ""
"04060105.xhp\n"
"hd_id3148394\n"
-"20\n"
"help.text"
msgid "OR"
msgstr "OR"
@@ -11010,7 +10228,6 @@ msgstr "OR"
msgctxt ""
"04060105.xhp\n"
"par_id3156060\n"
-"61\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ODER\">Returns TRUE if at least one argument is TRUE.</ahelp> This function returns the value FALSE, if all the arguments have the logical value FALSE."
msgstr "<ahelp hid=\"HID_FUNC_ODER\"> ཉུང་མཐའ་རང་ སྒྲུབ་རྟགས་གཅིག་ TRUE ཨིན་པ་ཅིན་ TRUE སླར་ལོག་འབདཝ་ཨིན། </ahelp> སྒྲུབ་རྟགས་ཆ་མཉམ་ལུ་ གནས་གོང་གཏན་ཚིག་ཅན་ FALSE ཡོད་པ་ཅིན་ འ་ནི་ལས་འགན་གྱིས་ གནས་གོང་ FALSE སླར་ལོག་འབདཝ་ཨིན།"
@@ -11019,7 +10236,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ODER\"> ཉུང་མཐའ་རང་ སྒ
msgctxt ""
"04060105.xhp\n"
"par_id3148771\n"
-"62\n"
"help.text"
msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
msgstr "སྒྲུབ་རྟགས་ཚུ་ ཁོང་ར་ གཏན་ཚིག་ཅན་གནས་གོང་ཚུ་སླར་ལོག་འབད་མི་ གཏན་ཚིག་ཅན་གསལ་བརྗོད་ཚུ་ཨིནམ་དང་ ཡང་ན་ (TRUE, 1<5, 2+3=7, B8<10) ནང་ན་གཏན་ཚིག་ཅན་ གནས་གོང་ཚུ་ཤོམ་ཏེ་ཡོད་པའི་ ཨེ་རེ་ (A1:C3) ཚུ་ཨིན།"
@@ -11028,7 +10244,6 @@ msgstr "སྒྲུབ་རྟགས་ཚུ་ ཁོང་ར་ གཏན
msgctxt ""
"04060105.xhp\n"
"hd_id3155517\n"
-"22\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -11037,7 +10252,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060105.xhp\n"
"par_id3150468\n"
-"23\n"
"help.text"
msgid "OR(LogicalValue1; LogicalValue2 ...LogicalValue30)"
msgstr "OR(གཏན་ཚིག་ཅན་གནས་གོང་ ༡ ; གཏན་ཚིག་ཅན་གནས་གོང་ ༢ ...གཏན་ཚིག་ཅན་གནས་གོང་ ༣༠)"
@@ -11046,7 +10260,6 @@ msgstr "OR(གཏན་ཚིག་ཅན་གནས་གོང་ ༡ ; ག
msgctxt ""
"04060105.xhp\n"
"par_id3155819\n"
-"24\n"
"help.text"
msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row."
msgstr "<emph>་གཏན་ཚིག་ཅན་གནས་གོང་ ༡ གཏན་ཚིག་ཅན་གནས་གོང་ ༢ གཏན་ཚིག་ཅན་གནས་གོང་ ༣༠ ཚུ་ ཞིབ་དཔྱད་འབད་ནི་ཨིན་པའི་ གནས་སྟངས་ཚུ་ཨིན། </emph> གནས་སྟངས་ཚུ་ཆ་མཉམ་རང་ TRUE ཡང་ན་ FALSE གང་རུང་ཨིན། ཁྱབ་ཚད་དེ་ ཚད་བཟུང་སྦེ་བཙུགས་ཏེ་ཡོད་པ་ཅིན་ ལས་འགན་གྱིས་ ད་ལྟོའི་ཀེར་ཐིག་ ཡང་ན་ གྲལ་ཐིག་ནང་ཡོད་པའི་ ཁྱབ་ཚད་ལས་གནས་གོང་ལག་ལེན་འཐབ་ཨིན།"
@@ -11055,7 +10268,6 @@ msgstr "<emph>་གཏན་ཚིག་ཅན་གནས་གོང་ ༡
msgctxt ""
"04060105.xhp\n"
"hd_id3153228\n"
-"25\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -11064,7 +10276,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060105.xhp\n"
"par_id3154870\n"
-"26\n"
"help.text"
msgid "The logical values of entries 12<11; 13>22, and 45=45 are to be checked."
msgstr "ཐོ་བཀོད་ཚུའི་གནས་གོང་གཏན་ཚིག་ཅན་ 12<11; 13>22 དང་ 45=45 ཚུ་ཞིབ་དཔྱད་འབད་ནི་ཨིན།"
@@ -11073,7 +10284,6 @@ msgstr "ཐོ་བཀོད་ཚུའི་གནས་གོང་གཏན
msgctxt ""
"04060105.xhp\n"
"par_id3155371\n"
-"27\n"
"help.text"
msgid "<item type=\"input\">=OR(12<11;13>22;45=45)</item> returns TRUE."
msgstr ""
@@ -11082,7 +10292,6 @@ msgstr ""
msgctxt ""
"04060105.xhp\n"
"par_id3158412\n"
-"59\n"
"help.text"
msgid "<item type=\"input\">=OR(FALSE;TRUE)</item> returns TRUE."
msgstr ""
@@ -11099,7 +10308,6 @@ msgstr "<bookmark_value>TRUE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060105.xhp\n"
"hd_id3156256\n"
-"38\n"
"help.text"
msgid "TRUE"
msgstr "TRUE"
@@ -11108,7 +10316,6 @@ msgstr "TRUE"
msgctxt ""
"04060105.xhp\n"
"par_id3155985\n"
-"39\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WAHR\">The logical value is set to TRUE.</ahelp> The TRUE() function does not require any arguments, and always returns the logical value TRUE."
msgstr "<ahelp hid=\"HID_FUNC_WAHR\"> གཏན་ཚིག་ཅན་གནས་གོང་དེ་ TRUE ལུ་གཞི་སྒྲིག་འབད་ཡོད། </ahelp> TRUE() ལས་འགན་ལུ་ སྒྲུབ་རྟགས་ཚུ་དགོས་མ་མཁོ་བའི་ཁར་ ཨ་རྟག་རང་ གཏན་ཚིག་ཅན་གནས་གོང་ TRUE སླར་ལོག་འབདཝ་ཨིན།"
@@ -11117,7 +10324,6 @@ msgstr "<ahelp hid=\"HID_FUNC_WAHR\"> གཏན་ཚིག་ཅན་གནས
msgctxt ""
"04060105.xhp\n"
"hd_id3153717\n"
-"40\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -11126,7 +10332,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060105.xhp\n"
"par_id3152590\n"
-"41\n"
"help.text"
msgid "TRUE()"
msgstr "TRUE()"
@@ -11135,7 +10340,6 @@ msgstr "TRUE()"
msgctxt ""
"04060105.xhp\n"
"hd_id3147175\n"
-"42\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -11144,7 +10348,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060105.xhp\n"
"par_id3146148\n"
-"43\n"
"help.text"
msgid "If A=TRUE and B=FALSE the following examples appear:"
msgstr "A=TRUE དང་ B=FALSE ཨིན་པ་ཅིན་ འོག་གི་དཔེ་ཚུ་བྱུངམ་ཨིན:"
@@ -11153,7 +10356,6 @@ msgstr "A=TRUE དང་ B=FALSE ཨིན་པ་ཅིན་ འོག་ག
msgctxt ""
"04060105.xhp\n"
"par_id3083285\n"
-"44\n"
"help.text"
msgid "<item type=\"input\">=AND(A;B)</item> returns FALSE"
msgstr ""
@@ -11162,7 +10364,6 @@ msgstr ""
msgctxt ""
"04060105.xhp\n"
"par_id3083444\n"
-"45\n"
"help.text"
msgid "<item type=\"input\">=OR(A;B)</item> returns TRUE"
msgstr ""
@@ -11171,13 +10372,11 @@ msgstr ""
msgctxt ""
"04060105.xhp\n"
"par_id3154314\n"
-"46\n"
"help.text"
msgid "<item type=\"input\">=NOT(AND(A;B))</item> returns TRUE"
msgstr ""
#: 04060105.xhp
-#, fuzzy
msgctxt ""
"04060105.xhp\n"
"bm_id3156257\n"
@@ -11202,7 +10401,6 @@ msgid "<ahelp hid=\"HID_FUNC_XOR\">Returns true if an odd number of arguments ev
msgstr ""
#: 04060105.xhp
-#, fuzzy
msgctxt ""
"04060105.xhp\n"
"par_id3148772\n"
@@ -11219,7 +10417,6 @@ msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060105.xhp
-#, fuzzy
msgctxt ""
"04060105.xhp\n"
"par_id3150469\n"
@@ -11268,7 +10465,6 @@ msgid "Mathematical Functions"
msgstr "ཨང་རྩིས་ལས་འགན་ཚུ།"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3147124\n"
@@ -11293,7 +10489,6 @@ msgid "<variable id=\"mathematiktext\">This category contains the <emph>Mathemat
msgstr "<variable id=\"mathematiktext\"> འ་ནི་དབྱེ་རིམ་གྱི་ནང་ན་This category contains the <emph> ཀེལ་སི་དོན་ལུ་ </emph> ཨང་རྩིས་ལས་འགན་ཚུ་ཤོམ་ཏེ་ཡོད། </variable> ལས་འགན་ཝི་ཛརཌི་ <emph> ཁ་ཕྱེ་ནིའི་དོན་ལུ་ </emph> ལས་འགན་-བཙུགས་ <link href=\"text/scalc/01/04060000.xhp\" name=\"Insert - Function\"><emph> གདམ། </emph></link>."
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3146944\n"
@@ -12534,7 +11729,6 @@ msgid "<item type=\"input\">=CSCH(1)</item> returns approximately 0.8509181282,
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3145314\n"
@@ -12663,7 +11857,6 @@ msgid "<item type=\"input\">=EXP(1)</item> returns 2.71828182845904, the mathema
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3145781\n"
@@ -12752,7 +11945,6 @@ msgid "<item type=\"input\">=FACT(0)</item> returns 1."
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3159084\n"
@@ -12833,7 +12025,6 @@ msgid "<item type=\"input\">=INT(-1.3)</item> returns -2."
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3150938\n"
@@ -12922,7 +12113,6 @@ msgid "<item type=\"input\">=EVEN(-0.5)</item> returns -2."
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3147356\n"
@@ -13067,7 +12257,6 @@ msgid "<item type=\"input\">=GCD_EXCEL2003(5;15;25)</item> returns 5."
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3145213\n"
@@ -13196,7 +12385,6 @@ msgid "<item type=\"input\">=LCM_EXCEL2003(5;15;25)</item> returns 75."
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3155802\n"
@@ -13285,7 +12473,6 @@ msgid "<item type=\"input\">=COMBIN(3;2)</item> returns 3."
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3150284\n"
@@ -13374,7 +12561,6 @@ msgid "<item type=\"input\">=COMBINA(3;2)</item> returns 6."
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3156086\n"
@@ -13463,7 +12649,6 @@ msgid "<item type=\"input\">=TRUNC(-1.234999;3)</item> returns -1.234. All the 9
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3153601\n"
@@ -13536,7 +12721,6 @@ msgid "<item type=\"input\">=LN(EXP(321))</item> returns 321."
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3109813\n"
@@ -13617,7 +12801,6 @@ msgid "<item type=\"input\">=LOG(7^4;7)</item> returns 4."
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3154187\n"
@@ -13682,7 +12865,6 @@ msgid "<item type=\"input\">=LOG10(5)</item> returns the base-10 logarithm of 5
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3152518\n"
@@ -13787,7 +12969,6 @@ msgid "<item type=\"input\">=CEILING(-11;-2;1)</item> returns -12"
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id2952518\n"
@@ -13828,7 +13009,6 @@ msgid "CEILING.PRECISE(Number; Significance)"
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"par_id2953467\n"
@@ -13837,7 +13017,6 @@ msgid "<emph>Number</emph> (required) is the number that is to be rounded up."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> སྐོར་ཐེངས་རྐྱབ་ནི་ཨིན་པའི་ཨང་གྲངས་ཨིན།"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"par_id2955000\n"
@@ -13862,7 +13041,6 @@ msgid "<item type=\"input\">=CEILING.PRECISE(-11;-2)</item> returns -10"
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id8952518\n"
@@ -13903,7 +13081,6 @@ msgid "ISO.CEILING(Number; Significance)"
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"par_id8953467\n"
@@ -13912,7 +13089,6 @@ msgid "<emph>Number</emph> (required) is the number that is to be rounded up."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> སྐོར་ཐེངས་རྐྱབ་ནི་ཨིན་པའི་ཨང་གྲངས་ཨིན།"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"par_id8955000\n"
@@ -14225,7 +13401,6 @@ msgid "<emph>Coefficients</emph> is a series of coefficients. For each coefficie
msgstr "གྲངས་རྟགས་ཚུ། གྲངས་རྟགས་ཀྱི་ རྒྱུན་རིམ། གྲངས་རྟགས་རེ་རེའི་དོན་ལུ་ རྒྱུན་རིམ་དངུལ་བསྡོམས་དེ་ དབྱེ་ཚན་གཅིག་གི་རྒྱ་བསྐྱེད་འབད་དེ་ཡོད།"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3144386\n"
@@ -14298,7 +13473,6 @@ msgid "<item type=\"input\">=PRODUCT(2;3;4)</item> returns 24."
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3160340\n"
@@ -14363,7 +13537,6 @@ msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"inpu
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3158247\n"
@@ -14444,7 +13617,6 @@ msgid "<item type=\"input\">=MOD(11.25;2.5)</item> returns 1.25."
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3144592\n"
@@ -14517,7 +13689,6 @@ msgid "<item type=\"input\">=QUOTIENT(11;3)</item> returns 3. The remainder of 2
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3144702\n"
@@ -15174,7 +14345,6 @@ msgid "<item type=\"input\">=SINH(0)</item> returns 0, the hyperbolic sine of 0.
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3163596\n"
@@ -15279,7 +14449,6 @@ msgid "<item type=\"input\">=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"par_id3151828\n"
@@ -15304,7 +14473,6 @@ msgid "The formula is based on the fact that the result of a comparison is 1 if
msgstr "མན་ངག་འདི་གནས་སྟངས་གུ་གཞི་རྟེན་འབད་དེ་ ཁྱད་ཚད་ཚང་པ་ཅིན་ ག་བསྡུར་གྱི་གྲུབ་འབྲས་འདི་ ༡་ ཨིནམ་དང་ མ་ཚང་པ་ཅིན་ ༠་ ཨིན། ངོ་རྐྱང་ག་བསྡུར་གྱི་གྲུབ་འབྲས་འདི་ཚུ་ ཨ་རེ་སྦེ་བརྩི་འཇོག་འབད་ནི་དང་ མེ་ཊིགསི་དགུ་འཐབ་བརྐྱབ་ནི་ནང་ལུ་ ལག་ལེན་འཐབ་ཨིན་ དེ་ལས་ མཇུག་ལུ་ངོ་རྐྱང་གནས་གོང་དེ་ཚུ་ གྲུབ་འབྲས་སྟོན་ནི་དོན་ལུ་ བསྡོམ་ཨིན།"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3151957\n"
@@ -15553,7 +14721,6 @@ msgid "<item type=\"input\">=TANH(0)</item> returns 0, the hyperbolic tangent of
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3165633\n"
@@ -15826,7 +14993,6 @@ msgid "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3143672\n"
@@ -15995,7 +15161,6 @@ msgid "=CONVERT(100;\"EUR\";\"DEM\") converts 100 Euros into German Marks."
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3157177\n"
@@ -16084,7 +15249,6 @@ msgid "<item type=\"input\">=ODD(-3.1)</item> returns -5."
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id2957404\n"
@@ -16133,7 +15297,6 @@ msgid "<emph>Number</emph> is the number that is to be rounded down."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> མར་སྐོར་ཐེངས་རྐྱབ་ནི་ཨིན་པའི་ ཨང་གྲངས་ཨིན།"
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"par_id2957497\n"
@@ -16158,7 +15321,6 @@ msgid "<item type=\"input\">=FLOOR.PRECISE( -11;-2)</item> returns -12"
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3157404\n"
@@ -16263,7 +15425,6 @@ msgid "<item type=\"input\">=FLOOR( -11;-2;1)</item> returns -10"
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3164086\n"
@@ -16336,7 +15497,6 @@ msgid "<item type=\"input\">=SIGN(-4.5)</item> returns -1."
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3164252\n"
@@ -16417,7 +15577,6 @@ msgid "<item type=\"input\">=MROUND(1.4;0.5)</item> returns 1.5 (= 0.5*3)."
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3164375\n"
@@ -16498,7 +15657,6 @@ msgid "<item type=\"input\">=SQRT(-16)</item> returns an <item type=\"literal\">
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3164560\n"
@@ -16571,7 +15729,6 @@ msgid "<item type=\"input\">=SQRTPI(2)</item> returns the squareroot of (2PI), a
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3164669\n"
@@ -16652,7 +15809,6 @@ msgid "<item type=\"input\">=RANDBETWEEN(20;30)</item> returns an integer of bet
msgstr ""
#: 04060106.xhp
-#, fuzzy
msgctxt ""
"04060106.xhp\n"
"bm_id3164800\n"
@@ -16733,7 +15889,6 @@ msgid "Array Functions"
msgstr "ཨེ་རེ་ལས་འགན་ཚུ།"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"bm_id3147273\n"
@@ -16750,7 +15905,6 @@ msgid "Array Functions"
msgstr "ཨེ་རེ་ལས་འགན་ཚུ།"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3154744\n"
@@ -16767,7 +15921,6 @@ msgid "What is an Array?"
msgstr "ཨེ་རེ་འདི་ག་ཅི་སྨོ?"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3154298\n"
@@ -18088,7 +17241,6 @@ msgid "Select a single column range in which to enter the frequency according to
msgstr "ལྟག་གི་དབྱེ་རིགས་བཅད་མཚམས་ལས་ སྦོམ་མི་ གནས་གོང་ཚུའི་དོན་ལུ་ འབྱུང་ཐེངས་བཙུགས་ནི་ཨིན་པའི་ཀེར་ཐིག་ཁྱབ་ཚད་རྐྱང་པ་སེལ་འཐུ་འབད། ཁྱོད་ཀྱིས་ དབྱེ་རིགས་མཐོ་ཚད་ལས་ ས་སྒོ་གཅིག་མངམ་སྦེ་སེལ་འཐུ་འབད་དགོཔ་ཨིན། འ་ནི་དཔེར་བརྗོད་ནང་ལུ་ ཁྱབ་ཚད་ C1:C6 སེལ་འཐུ་འབད། <emph> ལས་འགན་ཝི་ཛརཌི་ནང་ལུ་ </emph> FREQUENCY ལས་འགན་བཀུག་ད། (A1:A11) ནང་ <emph> གནད་སྡུད་ཁྱབ་ཚད་བཙུགས་བཞིནམ་ལས་ </emph> ཁྱོད་ཀྱིས་ ཁྱབ་ཚད་དབྱེ་རིགས་ཚུ་ནང་ <emph> དབྱེ་རིགས་བཅད་མཚམས་ཚུ་ (B1:B6) </emph> བཙུགས་ཡོད་མི་སེལ་འཐུ་འབད། <emph> ཨེ་རེ་ཞིབ་དཔྱད་སྒྲོམ་ </emph> སེལ་འཐུ་འབད་བཞིནམ་ལས་ <emph> བཏུབ་ </emph> ཨེབ་གཏང་། ཁྱོད་ཀྱིས་ ཁྱབ་ཚད་ C1:C6 ནང་འབྱུང་ཐེངས་གྱངས་མཐོངམ་ཨིན།"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"bm_id3151030\n"
@@ -18145,7 +17297,6 @@ msgid "You can find a general introduction to using Array functions on top of th
msgstr ""
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"bm_id3151348\n"
@@ -19002,7 +18153,6 @@ msgid "<emph>This represents the calculated LINEST values:</emph>"
msgstr "<emph> འ་ནི་གིས་ རྩིས་སྟོན་འབད་ཡོད་པའི་ LINEST གནས་གོང་ཚུ་ ཁྱད་ཚབ་འབདཝ་ཨིན། </emph>"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"bm_id3158146\n"
@@ -19195,7 +18345,6 @@ msgid "See LINEST. However, no square sum will be returned."
msgstr "LINEST བལྟ། ཨིན་རུང་ གྲུ་བཞི་བསྡོམས་དེ་སླར་ལོག་འབད་ནི་མེདཔ་ཨིན།"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"bm_id3163286\n"
@@ -19700,7 +18849,6 @@ msgid "Select a spreadsheet range in which the trend data will appear. Select th
msgstr "ཁ་ཕྱོགས་གནད་སྡུད་འབྱུང་བའི་ ཤོག་ཁྲམ་གཅིག་ཁྱབ་ཚད་སེལ་འཐུ་འབད། ལས་འགན་སེལ་འཐུ་འབད། ཨའུཊི་པུཊི་གནད་སྡུད་བཙུགས་ ཡང་ན་ མཱའུསི་གི་ཐོག་ལས་སེལ་འཐུ་འབད། ཨེ་རེ་ <emph> ས་སྒོ་ </emph> རྟགས་བཀལ། <emph>OK</emph> ཨེབ་གཏང་། ཨའུཊི་པུཊི་གནད་སྡུད་ལས་རྩིས་སྟོན་ཡོད་པའི་ ཁ་ཕྱོགས་གནད་སྡུད་དེ་བཀྲམ་སྟོན་འབད་ཡོད།"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"bm_id3166317\n"
@@ -19808,7 +18956,6 @@ msgstr "<bookmark_value>ཚད་རྩིས་ལས་འགན་ཚུ་</
msgctxt ""
"04060108.xhp\n"
"hd_id3153018\n"
-"1\n"
"help.text"
msgid "<variable id=\"head_statistic\"><link href=\"text/scalc/01/04060108.xhp\" name=\"Statistics Functions\">Statistics Functions</link></variable>"
msgstr ""
@@ -19817,7 +18964,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3157874\n"
-"2\n"
"help.text"
msgid "<variable id=\"statistiktext\">This category contains the <emph>Statistics</emph> functions. </variable>"
msgstr "<variable id=\"statistiktext\"> འ་ནི་ དབྱེ་རིམ་ནང་ན་ <emph> གྲངས་ཀྱི་ </emph> ལས་འགན་ཚུ་ཤོམ་ཏེ་ཡོདཔ་ཨིན། </variable>"
@@ -19826,7 +18972,6 @@ msgstr "<variable id=\"statistiktext\"> འ་ནི་ དབྱེ་རིམ
msgctxt ""
"04060108.xhp\n"
"par_id3149001\n"
-"9\n"
"help.text"
msgid "Some of the examples use the following data table:"
msgstr "དཔེར་བརྗོད་ལ་ལོ་ཅིག་གིས་ འོག་ལུ་ཡོད་པའི་ གནད་སྡུད་ཐིག་ཁྲམ་ལག་ལེན་འཐབ་ཨིན།"
@@ -19835,7 +18980,6 @@ msgstr "དཔེར་བརྗོད་ལ་ལོ་ཅིག་གིས་
msgctxt ""
"04060108.xhp\n"
"par_id3148775\n"
-"10\n"
"help.text"
msgid "C"
msgstr ""
@@ -19844,7 +18988,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3145297\n"
-"11\n"
"help.text"
msgid "D"
msgstr ""
@@ -19853,7 +18996,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3150661\n"
-"12\n"
"help.text"
msgid "2"
msgstr ""
@@ -19862,7 +19004,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3153551\n"
-"13\n"
"help.text"
msgid "x value"
msgstr "ཨེགསི་ གནས་གོང་།"
@@ -19871,7 +19012,6 @@ msgstr "ཨེགསི་ གནས་གོང་།"
msgctxt ""
"04060108.xhp\n"
"par_id3147536\n"
-"14\n"
"help.text"
msgid "y value"
msgstr "ཝཡི་གནས་གོང་།"
@@ -19880,7 +19020,6 @@ msgstr "ཝཡི་གནས་གོང་།"
msgctxt ""
"04060108.xhp\n"
"par_id3153224\n"
-"15\n"
"help.text"
msgid "3"
msgstr ""
@@ -19889,7 +19028,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3150475\n"
-"16\n"
"help.text"
msgid "-5"
msgstr "-༥"
@@ -19898,7 +19036,6 @@ msgstr "-༥"
msgctxt ""
"04060108.xhp\n"
"par_id3155367\n"
-"17\n"
"help.text"
msgid "-3"
msgstr "-༣"
@@ -19907,7 +19044,6 @@ msgstr "-༣"
msgctxt ""
"04060108.xhp\n"
"par_id3149783\n"
-"18\n"
"help.text"
msgid "4"
msgstr ""
@@ -19916,7 +19052,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3153181\n"
-"19\n"
"help.text"
msgid "-2"
msgstr "-༢"
@@ -19925,7 +19060,6 @@ msgstr "-༢"
msgctxt ""
"04060108.xhp\n"
"par_id3148429\n"
-"20\n"
"help.text"
msgid "0"
msgstr ""
@@ -19934,7 +19068,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3152588\n"
-"21\n"
"help.text"
msgid "5"
msgstr ""
@@ -19943,7 +19076,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3147483\n"
-"22\n"
"help.text"
msgid "-1"
msgstr "-༡"
@@ -19952,7 +19084,6 @@ msgstr "-༡"
msgctxt ""
"04060108.xhp\n"
"par_id3083443\n"
-"23\n"
"help.text"
msgid "1"
msgstr ""
@@ -19961,7 +19092,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3149826\n"
-"24\n"
"help.text"
msgid "6"
msgstr ""
@@ -19970,7 +19100,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3163820\n"
-"25\n"
"help.text"
msgid "0"
msgstr ""
@@ -19979,7 +19108,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3154816\n"
-"26\n"
"help.text"
msgid "3"
msgstr ""
@@ -19988,7 +19116,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3149276\n"
-"27\n"
"help.text"
msgid "7"
msgstr ""
@@ -19997,7 +19124,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3149267\n"
-"28\n"
"help.text"
msgid "2"
msgstr ""
@@ -20006,7 +19132,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3156310\n"
-"29\n"
"help.text"
msgid "4"
msgstr ""
@@ -20015,7 +19140,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3154639\n"
-"30\n"
"help.text"
msgid "8"
msgstr ""
@@ -20024,7 +19148,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3145205\n"
-"31\n"
"help.text"
msgid "4"
msgstr ""
@@ -20033,7 +19156,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3153276\n"
-"32\n"
"help.text"
msgid "6"
msgstr ""
@@ -20042,7 +19164,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3150756\n"
-"33\n"
"help.text"
msgid "9"
msgstr ""
@@ -20051,7 +19172,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3156095\n"
-"34\n"
"help.text"
msgid "6"
msgstr ""
@@ -20060,7 +19180,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3152929\n"
-"35\n"
"help.text"
msgid "8"
msgstr ""
@@ -20069,7 +19188,6 @@ msgstr ""
msgctxt ""
"04060108.xhp\n"
"par_id3156324\n"
-"36\n"
"help.text"
msgid "The statistical functions are described in the following subsections."
msgstr "གནད་སྡུད་ལས་འགན་ཚུ་ འོག་ལུ་ཡོད་པའི་ཡན་ལག་དབྱེ་ཚན་ཚུ་ནང་ འགྲེལ་བཤད་རྐྱབ་སྟེ་ཡོདཔ་ཨིན།"
@@ -20094,7 +19212,6 @@ msgstr "<bookmark_value> ཤོག་ཁྲམ་ཚུ་; ལས་འགན
msgctxt ""
"04060109.xhp\n"
"hd_id3148522\n"
-"1\n"
"help.text"
msgid "Spreadsheet Functions"
msgstr "ཤོག་ཁྲམ་ལས་འགན་ཚུ།"
@@ -20103,7 +19220,6 @@ msgstr "ཤོག་ཁྲམ་ལས་འགན་ཚུ།"
msgctxt ""
"04060109.xhp\n"
"par_id3144508\n"
-"2\n"
"help.text"
msgid "<variable id=\"tabelletext\">This section contains descriptions of the <emph>Spreadsheet</emph> functions together with an example.</variable>"
msgstr "<variable id=\"tabelletext\"> འ་ནི་དབྱེ་ཚན་ནང་ན་ དཔེར་བརྗོད་དང་བཅས་པའི་ <emph> ཤོག་ཁྲམ་ </emph> ལས་འགན་ཚུའི་ འགྲེལ་བཤད་ཚུ་ཤོམ་ཏེ་ཡོདཔ་ཨིན། </variable>"
@@ -20120,7 +19236,6 @@ msgstr "<bookmark_value>ADDRESS ལས་འགན།</bookmark_value>unctio"
msgctxt ""
"04060109.xhp\n"
"hd_id3146968\n"
-"3\n"
"help.text"
msgid "ADDRESS"
msgstr "ཁ་བྱང་།"
@@ -20129,7 +19244,6 @@ msgstr "ཁ་བྱང་།"
msgctxt ""
"04060109.xhp\n"
"par_id3155762\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ADRESSE\">Returns a cell address (reference) as text, according to the specified row and column numbers.</ahelp> You can determine whether the address is interpreted as an absolute address (for example, $A$1) or as a relative address (as A1) or in a mixed form (A$1 or $A1). You can also specify the name of the sheet."
msgstr "<ahelp hid=\"HID_FUNC_ADRESSE\"> གསལ་བཀོད་འབད་ཡོད་པའི་ གྲལ་ཐིག་དང་ཀེར་ཐིག་གྱངས་ཁ་ཚུ་དང་འཁྲིལ་ཏེ་ ནང་ཐིག་ཁ་བྱང་(གཞི་བསྟུན་)གཅིག་ཚིག་ཡིག་སྦེ་སླར་ལོག་འབདཝ་ཨིན། </ahelp> ཁྱོད་ཀྱིས་ ཁ་བྱང་དེ་ ཁ་བྱང་ཡང་དག་སྦེ་ (དཔེ་འབད་བ་ཅིན་ $A$1 བཟུམ་) ཡང་ན་ ཕན་ཚུན་འབྲེལ་བའི་ཁ་བྱང་(A1 སྦེ་) ཡང་ན་ སླ་བསྲེ་རྣམ་པ་ནང་ཁ་སྒྱུར་འབད་ཡོདཔ་ཨིན་ན་གཏན་འབེབས་བཟོཝ་ཨིན(A$1 ཡང་ན་ $A1)། ཁྱོད་ཀྱིས་ ཤོག་ལེབ་མིང་ཡང་ གསལ་བཀོད་འབད་ཚུགསཔ་ཨིན།"
@@ -20210,7 +19324,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"hd_id3151196\n"
-"5\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -20219,7 +19332,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3154707\n"
-"6\n"
"help.text"
msgid "ADDRESS(Row; Column; Abs; A1; \"Sheet\")"
msgstr ""
@@ -20228,7 +19340,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3147505\n"
-"7\n"
"help.text"
msgid "<emph>Row</emph> represents the row number for the cell reference"
msgstr "<emph> གྲལ་ཐིག་ </emph> གིས་ ནང་ཐིག་གཞི་བསྟུན་ལུ་ གྲལ་ཐིག་གྱངས་ཁ་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -20237,7 +19348,6 @@ msgstr "<emph> གྲལ་ཐིག་ </emph> གིས་ ནང་ཐིག
msgctxt ""
"04060109.xhp\n"
"par_id3145323\n"
-"8\n"
"help.text"
msgid "<emph>Column</emph> represents the column number for the cell reference (the number, not the letter)"
msgstr "<emph> ཀེར་ཐིག་ </emph> གིས་ ནང་ཐིག་གཞི་བསྟུན་དོན་ལུ་ ཀེར་ཐིག་གྱངས་ཁ་ཁྱད་ཚབ་འབདཝ་ཨིན་ (ཡི་གུ་མེན་པར་ གྱངས་ཁ)།"
@@ -20246,7 +19356,6 @@ msgstr "<emph> ཀེར་ཐིག་ </emph> གིས་ ནང་ཐིག
msgctxt ""
"04060109.xhp\n"
"par_id3153074\n"
-"9\n"
"help.text"
msgid "<emph>Abs</emph> determines the type of reference:"
msgstr "<emph> ཨེ་བི་ཨེསི་ </emph> གིས་ གཞི་བསྟུན་དབྱེ་བ་གཏན་འབེབས་བཟོཝ་ཨིན།:"
@@ -20255,7 +19364,6 @@ msgstr "<emph> ཨེ་བི་ཨེསི་ </emph> གིས་ གཞི
msgctxt ""
"04060109.xhp\n"
"par_id3153298\n"
-"10\n"
"help.text"
msgid "1: absolute ($A$1)"
msgstr "༡: ཡང་དག ($A$1)"
@@ -20264,7 +19372,6 @@ msgstr "༡: ཡང་དག ($A$1)"
msgctxt ""
"04060109.xhp\n"
"par_id3150431\n"
-"11\n"
"help.text"
msgid "2: row reference type is absolute; column reference is relative (A$1)"
msgstr "༢: གྲལ་ཐིག་གཞི་བསྟུན་དབྱེ་བ་དེ་ ཡང་དག ཀེར་ཐིག་གཞི་བསྟུན་དེ་ འབྲེལ་བ་ཨིན།(A$1)"
@@ -20273,7 +19380,6 @@ msgstr "༢: གྲལ་ཐིག་གཞི་བསྟུན་དབྱེ
msgctxt ""
"04060109.xhp\n"
"par_id3146096\n"
-"12\n"
"help.text"
msgid "3: row (relative); column (absolute) ($A1)"
msgstr "༣: གྲལ་ཐིག (འབྲེལ་བའི)། ཀེར་ཐིག (ཡང་དག) ($A1)"
@@ -20282,7 +19388,6 @@ msgstr "༣: གྲལ་ཐིག (འབྲེལ་བའི)། ཀེར་
msgctxt ""
"04060109.xhp\n"
"par_id3153334\n"
-"13\n"
"help.text"
msgid "4: relative (A1)"
msgstr "༤: འབྲེལ་བའི། (ཨེ་ ༡)།"
@@ -20299,7 +19404,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3153962\n"
-"14\n"
"help.text"
msgid "<emph>Sheet</emph> represents the name of the sheet. It must be placed in double quotes."
msgstr "<emph> ཤོག་ལེབ་ </emph> གིས་ ཤོག་ལེབ་ཀྱི་མིང་ཁྱད་ཚབ་འབདཝ་ཨིན། འདི་ འདྲེན་ཚིག་གཉིས་ལྡན་ ནང་བཙུགས་དགོཔ་ཨིན།"
@@ -20308,7 +19412,6 @@ msgstr "<emph> ཤོག་ལེབ་ </emph> གིས་ ཤོག་ལེ
msgctxt ""
"04060109.xhp\n"
"hd_id3147299\n"
-"15\n"
"help.text"
msgid "Example:"
msgstr "དཔེར་བརྗོད།:"
@@ -20317,7 +19420,6 @@ msgstr "དཔེར་བརྗོད།:"
msgctxt ""
"04060109.xhp\n"
"par_id3148744\n"
-"16\n"
"help.text"
msgid "<item type=\"input\">=ADDRESS(1;1;2;;\"Sheet2\")</item> returns the following: Sheet2.A$1"
msgstr ""
@@ -20326,7 +19428,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3159260\n"
-"17\n"
"help.text"
msgid "If the cell A1 in sheet 2 contains the value <item type=\"input\">-6</item>, you can refer indirectly to the referenced cell using a function in B2 by entering <item type=\"input\">=ABS(INDIRECT(B2))</item>. The result is the absolute value of the cell reference specified in B2, which in this case is 6."
msgstr "ཤོག་ལེབ་ ༢ ནང་གི་ ནང་ཐིག་ A1 ནང་ གནས་གོང་ -༦ ཤོམ་ཏེ་ཡོད་པ་ཅིན་ ཁྱོད་ཀྱིས་ B2 ནང་ =ABS(INDIRECT(B2)) བཙུགས་ཏེ་ ལས་འགན་གཅིག་ལག་ལེན་ཐོག་ལས་ ཐད་སྐོརམ་སྦེ་གཞི་བསྟུན་འབད་ཡོད་པའི་ནང་ཐིག་ལུ་གཞི་བསྟུན་འབད་བཏུབ་ཨིན། གྲུབ་འབྲས་དེ་ འ་ནི་གནད་དོན་ནང་ལུ་ ༦ ཨིན་པའི་ B2 ནང་ གསལ་བཀོད་འབད་ཡོད་པའི་ནང་ཐིག་གཞི་བསྟུན་གྱི་ གནས་གོང་ཡང་དག་ཨིན།"
@@ -20343,7 +19444,6 @@ msgstr "<bookmark_value>AREAS ལས་འགན།</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3150372\n"
-"19\n"
"help.text"
msgid "AREAS"
msgstr "AREAS"
@@ -20352,7 +19452,6 @@ msgstr "AREAS"
msgctxt ""
"04060109.xhp\n"
"par_id3150036\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BEREICHE\">Returns the number of individual ranges that belong to a multiple range.</ahelp> A range can consist of contiguous cells or a single cell."
msgstr "<ahelp hid=\"HID_FUNC_BEREICHE\"> སྣ་མང་ཁྱབ་ཚད་ལུ་བང་བའི་ ཁྱབ་ཚད་ངོ་རྐྱང་ཚུའི་གྱངས་ཁ་སླར་ལོག་འབདཝ་ཨིན། </ahelp> ཁྱབ་ཚད་དེ་ ཉེ་འདབས་ནང་ཐིག་ཚུའམ་ ནང་ཐིག་རྐྱང་པ་དང་ལྡནམ་ཨིན།"
@@ -20369,7 +19468,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"hd_id3145222\n"
-"21\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -20378,7 +19476,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3155907\n"
-"22\n"
"help.text"
msgid "AREAS(Reference)"
msgstr "AREAS(གཞི་བསྟུན།)"
@@ -20387,7 +19484,6 @@ msgstr "AREAS(གཞི་བསྟུན།)"
msgctxt ""
"04060109.xhp\n"
"par_id3153118\n"
-"23\n"
"help.text"
msgid "Reference represents the reference to a cell or cell range."
msgstr "གཞི་བསྟུན་གྱིས་ ནང་ཐིག་གམ་ ནང་ཐིག་ཁྱབ་ཚད་ལུ་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -20396,7 +19492,6 @@ msgstr "གཞི་བསྟུན་གྱིས་ ནང་ཐིག་ག
msgctxt ""
"04060109.xhp\n"
"hd_id3148891\n"
-"24\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -20405,7 +19500,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060109.xhp\n"
"par_id3149946\n"
-"25\n"
"help.text"
msgid "<item type=\"input\">=AREAS((A1:B3;F2;G1))</item> returns 3, as it is a reference to three cells and/or areas. After entry this gets converted to =AREAS((A1:B3~F2~G1))."
msgstr ""
@@ -20414,7 +19508,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3146820\n"
-"26\n"
"help.text"
msgid "<item type=\"input\">=AREAS(All)</item> returns 1 if you have defined an area named All under <emph>Data - Define Range</emph>."
msgstr "ཁྱོད་ཀྱིས་ མིང་བཏགས་ཡོད་པའི་མངའ་ཁོངས་གཅིག་ <emph> གནད་སྡུད་ - ཁྱབ་ཚད་ངེས་འཛིན་ </emph> ཚུའི་འོག་ལུ་ག་ར་ ངེས་འཛིན་འབད་དེ་ཡོད་པ་ཅིན་ =AREAS(All) གིས་ ༡ སླར་ལོག་འབདཝ་ཨིན།"
@@ -20431,7 +19524,6 @@ msgstr "<bookmark_value>DDE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3148727\n"
-"28\n"
"help.text"
msgid "DDE"
msgstr "DDE"
@@ -20440,7 +19532,6 @@ msgstr "DDE"
msgctxt ""
"04060109.xhp\n"
"par_id3149434\n"
-"29\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DDE\">Returns the result of a DDE-based link.</ahelp> If the contents of the linked range or section changes, the returned value will also change. You must reload the spreadsheet or choose <emph>Edit - Links</emph> to see the updated links. Cross-platform links, for example from a <item type=\"productname\">%PRODUCTNAME</item> installation running on a Windows machine to a document created on a Linux machine, are not allowed."
msgstr "<ahelp hid=\"HID_FUNC_DDE\"> ཌི་ཌི་ཨི་-གཞི་བཞག་འབྲེལ་ལམ་གྱི་གྲུབ་འབྲས་སླར་ལོག་འབདཝ་ཨིན། </ahelp> འབྲེལ་མཐུད་འབད་ཡོད་པའི་ཁྱབ་ཚད་ ཡང་ན་ དབྱེ་ཚན་བསྒྱུར་བཅོས་འགྱོ་བ་ཅིན་ སླར་ལོག་འབད་དེ་ཡོད་པའི་གནས་གོང་ཡང་ བསྒྱུར་བཅོས་འགྱོཝ་ཨིན། ཁྱོད་ཀྱིས་ ཤོག་ཁྲམ་དེ་ཡང་བསྐྱར་མངོན་གསལ་འབད་དགོ་ ཡང་ན་ <emph> དུས་མཐུནམ་བཟོ་ཡོད་པའི་འབྲེལ་ལམ་ཚུ་བལྟ་ནིའི་དོན་ལུ་ </emph> ཞུན་དག་ - འབྲེལ་ལམ་ཚུ་ གདམ་དགོཔ་ཨིན། ལམ་མདོ་- མཉེན་རིམ་འབྲེལ་ལམ་ཚུ་ དཔེ་འབད་བ་ཅིན་ <item type=\"productname\">%PRODUCTNAME</item> ལས་ ལའི་ནགསི་གློག་འཕྲུལ་གུ་ལུ་གསར་བསྐྲུན་འབད་ཡོད་པའི་ཡིག་ཆ་ལུ་ཝིན་ཌོསི་གུ་ལུ་གཞི་བཙུགས་གཡོག་བཀོལ་ནི་ མ་ཆོགཔ་ཨིན།"
@@ -20449,7 +19540,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DDE\"> ཌི་ཌི་ཨི་-གཞི་བ
msgctxt ""
"04060109.xhp\n"
"hd_id3150700\n"
-"30\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -20458,7 +19548,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3148886\n"
-"31\n"
"help.text"
msgid "DDE(\"Server\"; \"File\"; \"Range\"; Mode)"
msgstr ""
@@ -20467,16 +19556,14 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3154842\n"
-"32\n"
"help.text"
-msgid "<emph>Server</emph> is the name of a server application. <item type=\"productname\">%PRODUCTNAME</item>applications have the server name \"soffice\"."
+msgid "<emph>Server</emph> is the name of a server application. <item type=\"productname\">%PRODUCTNAME</item> applications have the server name \"soffice\"."
msgstr ""
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3153034\n"
-"33\n"
"help.text"
msgid "<emph>File</emph> is the complete file name, including path specification."
msgstr "<emph> ཡིག་སྣོད་ </emph> དེ་ ལམ་གསལ་བཀོད་གྲངས་སུ་བཙུགས་པའི་ ཡིག་སྣོད་མིང་ཡོངས་རྫོགས་ཨིན།"
@@ -20485,7 +19572,6 @@ msgstr "<emph> ཡིག་སྣོད་ </emph> དེ་ ལམ་གསལ
msgctxt ""
"04060109.xhp\n"
"par_id3147472\n"
-"34\n"
"help.text"
msgid "<emph>Range</emph> is the area containing the data to be evaluated."
msgstr "<emph> ཁྱབ་ཚད་ </emph> དེ་ ནང་ན་བརྟག་ཞིབ་འབད་ནི་ཨིན་པའི་ གནད་སྡུད་ཤོམ་ཏེ་ཡོད་པའི་ མངའ་ཁོངས་ཨིན།"
@@ -20494,7 +19580,6 @@ msgstr "<emph> ཁྱབ་ཚད་ </emph> དེ་ ནང་ན་བརྟ
msgctxt ""
"04060109.xhp\n"
"par_id3152773\n"
-"184\n"
"help.text"
msgid "<emph>Mode</emph> is an optional parameter that controls the method by which the DDE server converts its data into numbers."
msgstr "<emph> ཐབས་ལམ་ </emph> དེ་ ཌི་ཌི་ཨི་ སར་བར་གྱིས་ དེའི་གནད་སྡུད་དེ་ཨང་གྲངས་ཚུ་ནང་གཞི་བསྒྱུར་འབད་བའི་ ཐབས་ལམ་ཚད་འཛིན་འབད་བའི་ཚད་བཟུང་གདམ་ཁ་ཨིན།"
@@ -20503,7 +19588,6 @@ msgstr "<emph> ཐབས་ལམ་ </emph> དེ་ ཌི་ཌི་ཨི
msgctxt ""
"04060109.xhp\n"
"par_id3154383\n"
-"185\n"
"help.text"
msgid "<emph>Mode</emph>"
msgstr "<emph> མིང་། </emph>"
@@ -20512,7 +19596,6 @@ msgstr "<emph> མིང་། </emph>"
msgctxt ""
"04060109.xhp\n"
"par_id3145146\n"
-"186\n"
"help.text"
msgid "<emph>Effect</emph>"
msgstr "<emph> པར་ལེན། </emph>"
@@ -20521,7 +19604,6 @@ msgstr "<emph> པར་ལེན། </emph>"
msgctxt ""
"04060109.xhp\n"
"par_id3154558\n"
-"187\n"
"help.text"
msgid "0 or missing"
msgstr "༠ ཡང་ན་ བརླག་སྟོར་ཞུགས་ཡོདཔ།"
@@ -20530,7 +19612,6 @@ msgstr "༠ ཡང་ན་ བརླག་སྟོར་ཞུགས་ཡོ
msgctxt ""
"04060109.xhp\n"
"par_id3145596\n"
-"188\n"
"help.text"
msgid "Number format from the \"Default\" cell style"
msgstr "ཨང་གྲངས་ རྩ་སྒྲིག་ \"Default\" ནང་ཐིག་བཟོ་རྣམ་ལས།"
@@ -20539,7 +19620,6 @@ msgstr "ཨང་གྲངས་ རྩ་སྒྲིག་ \"Default\" ནང
msgctxt ""
"04060109.xhp\n"
"par_id3152785\n"
-"189\n"
"help.text"
msgid "1"
msgstr ""
@@ -20548,7 +19628,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3154380\n"
-"190\n"
"help.text"
msgid "Data are always interpreted in the standard format for US English"
msgstr "ཡུ་ཨེསི་ དབྱིན་སྐད་ཀྱི་དོན་ལུ་ གནད་སྡུད་དེ་ ཨ་རྟག་རང་ཚད་ལྡན་རྩ་སྒྲིག་སྦེ་ཁ་སྒྱུར་ཏེ་ཡོདཔ་ཨིན།"
@@ -20557,7 +19636,6 @@ msgstr "ཡུ་ཨེསི་ དབྱིན་སྐད་ཀྱི་ད
msgctxt ""
"04060109.xhp\n"
"par_id3150279\n"
-"191\n"
"help.text"
msgid "2"
msgstr ""
@@ -20566,7 +19644,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3153775\n"
-"192\n"
"help.text"
msgid "Data are retrieved as text; no conversion to numbers"
msgstr "གནད་སྡུད་ཚུ་ ཚིག་ཡིག་སྦེ་སླར་འདྲེན་འབད་ཡོདཔ་ཨིན། ཨང་གྲངས་ཚུ་ལུ་གཞི་བསྒྱུར་མེད།"
@@ -20575,7 +19652,6 @@ msgstr "གནད་སྡུད་ཚུ་ ཚིག་ཡིག་སྦེ
msgctxt ""
"04060109.xhp\n"
"hd_id3149546\n"
-"35\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -20584,7 +19660,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060109.xhp\n"
"par_id3148734\n"
-"36\n"
"help.text"
msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.ods\";\"sheet1.A1\")</item> reads the contents of cell A1 in sheet1 of the <item type=\"productname\">%PRODUCTNAME</item> Calc spreadsheet data1.ods."
msgstr ""
@@ -20593,7 +19668,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3153081\n"
-"37\n"
"help.text"
msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.odt\";\"Today's motto\")</item> returns a motto in the cell containing this formula. First, you must enter a line in the motto.odt document containing the motto text and define it as the first line of a section named <item type=\"literal\">Today's Motto</item> (in <item type=\"productname\">%PRODUCTNAME</item> Writer under <emph>Insert - Section</emph>). If the motto is modified (and saved) in the <item type=\"productname\">%PRODUCTNAME</item> Writer document, the motto is updated in all <item type=\"productname\">%PRODUCTNAME</item> Calc cells in which this DDE link is defined."
msgstr ""
@@ -20610,7 +19684,6 @@ msgstr "<bookmark_value>ERRORTYPE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3153114\n"
-"38\n"
"help.text"
msgid "ERRORTYPE"
msgstr "ERRORTYPE"
@@ -20619,7 +19692,6 @@ msgstr "ERRORTYPE"
msgctxt ""
"04060109.xhp\n"
"par_id3148568\n"
-"39\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Returns the number corresponding to an <link href=\"text/scalc/05/02140000.xhp\" name=\"error value\">error value</link> occurring in a different cell.</ahelp> With the aid of this number, you can generate an error message text."
msgstr "<ahelp hid=\"HID_FUNC_FEHLERTYP\"> ནང་ཐིག་སོ་སོར་ནང་འབྱུང་སྟེ་ཡོད་པའི་ <link href=\"text/scalc/05/02140000.xhp\" name=\"error value\"> གནས་གོང་འཛོལ་བ་ལུ་ </link> མཚུངས་པའི་ཨང་གྲངས་སླར་ལོག་འབདཝ་ཨིན། </ahelp> འ་ནི་ཨང་གྲངས་ཀྱིས་ གྲོགས་རམ་ཐོག་ལས་ ཁྱོད་ཀྱིས་ འཕྲིན་དོན་ཚིག་ཡིག་འཛོལ་བ་བཟོ་བཏོན་འབད་བཏུབ་ཨིན།"
@@ -20628,7 +19700,6 @@ msgstr "<ahelp hid=\"HID_FUNC_FEHLERTYP\"> ནང་ཐིག་སོ་སོ
msgctxt ""
"04060109.xhp\n"
"par_id3149877\n"
-"40\n"
"help.text"
msgid "The Status Bar displays the predefined error code from <item type=\"productname\">%PRODUCTNAME</item> if you click the cell containing the error."
msgstr "ཁྱོད་ཀྱིས་ ནང་ན་འཛོལ་བ་ཤོམ་ཏེ་ཡོད་པའི་ནང་ཐིག་ཨེབ་གཏང་པ་ཅིན་ གནས་ཚད་ཕྲ་རིང་གི་ <item type=\"productname\">%PRODUCTNAME</item> ལས་ སྔ་གོང་ངེས་འཛིན་འབད་ཡོད་པའི་འཛོལ་བ་གསང་ཡིག་གཅིག་བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -20637,7 +19708,6 @@ msgstr "ཁྱོད་ཀྱིས་ ནང་ན་འཛོལ་བ་ཤ
msgctxt ""
"04060109.xhp\n"
"hd_id3154327\n"
-"41\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -20646,7 +19716,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3151322\n"
-"42\n"
"help.text"
msgid "ERRORTYPE(Reference)"
msgstr "ERRORTYPE(གཞི་བསྟུན།)"
@@ -20655,7 +19724,6 @@ msgstr "ERRORTYPE(གཞི་བསྟུན།)"
msgctxt ""
"04060109.xhp\n"
"par_id3150132\n"
-"43\n"
"help.text"
msgid "<emph>Reference</emph> contains the address of the cell in which the error occurs."
msgstr "<emph>གཞི་བསྟུན་</emph> དེ་གིས་ འཛོལ་བ་འབྱུང་མི་ནང་ཐིག་གི་ཁ་བྱང་འདི་གནས་དེ་ཡོདཔ་ཨིན།"
@@ -20664,7 +19732,6 @@ msgstr "<emph>གཞི་བསྟུན་</emph> དེ་གིས་ འ
msgctxt ""
"04060109.xhp\n"
"hd_id3145248\n"
-"44\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -20673,7 +19740,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060109.xhp\n"
"par_id3146904\n"
-"45\n"
"help.text"
msgid "If cell A1 displays Err:518, the function <item type=\"input\">=ERRORTYPE(A1)</item> returns the number 518."
msgstr "ནང་ཐིག་ཨེ་ ༡ དེ་གིས་s Err:518བཀྲམ་སྟོན་འབད་བ་ཅིན་ ལས་འགན་ =ERRORTYPE(A1)གིས་ ཨང་གྲངས་ ༥༡༨་འདི་སླར་ལོག་འབདཝ་ཨིན།"
@@ -20690,7 +19756,6 @@ msgstr "<bookmark_value>INDEX ལས་འགན།</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3151221\n"
-"47\n"
"help.text"
msgid "INDEX"
msgstr "INDEX"
@@ -20699,7 +19764,6 @@ msgstr "INDEX"
msgctxt ""
"04060109.xhp\n"
"par_id3150268\n"
-"48\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_INDEX\">INDEX returns a sub range, specified by row and column number, or an optional range index. Depending on context, INDEX returns a reference or content.</ahelp>"
msgstr ""
@@ -20708,7 +19772,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"hd_id3156063\n"
-"49\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -20717,7 +19780,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3149007\n"
-"50\n"
"help.text"
msgid "INDEX(Reference; Row; Column; Range)"
msgstr "INDEX(གཞི་བསྟུན་; གྲལ་ཐིག་; ཀེར་ཐིག་; ཁྱབ་ཚད།)"
@@ -20726,7 +19788,6 @@ msgstr "INDEX(གཞི་བསྟུན་; གྲལ་ཐིག་; ཀེ
msgctxt ""
"04060109.xhp\n"
"par_id3153260\n"
-"51\n"
"help.text"
msgid "<emph>Reference</emph> is a reference, entered either directly or by specifying a range name. If the reference consists of multiple ranges, you must enclose the reference or range name in parentheses."
msgstr "<emph> གཞི་བསྟུན་ </emph> དེ་ ཐད་ཀར་དུ་ཡང་ན་ ཁྱབ་ཚད་མིང་གསལ་བཀོད་ཐོག་ལས་བཙུགས་ཡོད་པའི་ནང་ཐིག་གཞི་བསྟུན་ཨིན། གཞི་བསྟུན་དེ་ ཁྱབ་ཚད་སྣ་མང་དང་ལྡན་པ་ཅིན་ ཁྱོད་ཀྱིས་ གུག་ཤད་ནང་ལུ་ གཞི་བསྟུན་ནམ་ཁྱབ་ཚད་མིང་ཚུ་ནང་ན་བཙུགས་དགོཔ་ཨིན།"
@@ -20735,7 +19796,6 @@ msgstr "<emph> གཞི་བསྟུན་ </emph> དེ་ ཐད་ཀར
msgctxt ""
"04060109.xhp\n"
"par_id3145302\n"
-"52\n"
"help.text"
msgid "<emph>Row</emph> (optional) represents the row index of the reference range, for which to return a value. In case of zero (no specific row) all referenced rows are returned."
msgstr ""
@@ -20744,7 +19804,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3154628\n"
-"53\n"
"help.text"
msgid "<emph>Column</emph> (optional) represents the column index of the reference range, for which to return a value. In case of zero (no specific column) all referenced columns are returned."
msgstr ""
@@ -20753,7 +19812,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3155514\n"
-"54\n"
"help.text"
msgid "<emph>Range</emph> (optional) represents the index of the subrange if referring to a multiple range."
msgstr "<emph>ཁྱབ་ཚད་</emph> (གདམ་ཁ་ཅན་) དེ་གིས་ སྣ་མང་ཁྱབ་ཚད་ཅིག་ལུ་གཞི་བསྟུན་འབད་དོ་ཡོད་པ་ཅིན་ ཡན་ལག་ཁྱབ་ཚད་ཀྱི་ཟུར་ཐོ་ལུ་ཚབ་འབདཝ་ཨིན།"
@@ -20762,7 +19820,6 @@ msgstr "<emph>ཁྱབ་ཚད་</emph> (གདམ་ཁ་ཅན་) དེ
msgctxt ""
"04060109.xhp\n"
"hd_id3145264\n"
-"55\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -20771,7 +19828,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060109.xhp\n"
"par_id3159112\n"
-"56\n"
"help.text"
msgid "<item type=\"input\">=INDEX(Prices;4;1)</item> returns the value from row 4 and column 1 of the database range defined in <emph>Data - Define</emph> as <emph>Prices</emph>."
msgstr "=INDEX(Prices;4;1) གིས་ གོང་ཚད་ཚུ་སྦེ་ <emph> གནད་སྡུད་ - ངེས་འཛིན་འབད་ </emph> ནང་ <emph> ངེས་འཛིན་འབད་ཡོད་པའི་ </emph> གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་ཀྱི་ གྲལ་ཐིག་ ༤ དང་ ཀེར་ཐིག་ ༡ ལས་ གནས་གོང་སླར་ལོག་འབདཝ་ཨིན།"
@@ -20780,7 +19836,6 @@ msgstr "=INDEX(Prices;4;1) གིས་ གོང་ཚད་ཚུ་སྦེ
msgctxt ""
"04060109.xhp\n"
"par_id3150691\n"
-"57\n"
"help.text"
msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
msgstr ""
@@ -20805,7 +19860,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3158419\n"
-"58\n"
"help.text"
msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
msgstr ""
@@ -20814,7 +19868,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3148595\n"
-"59\n"
"help.text"
msgid "<item type=\"input\">=INDEX(A1:B6;1;1)</item> indicates the value in the upper-left of the A1:B6 range."
msgstr ""
@@ -20839,7 +19892,6 @@ msgstr "<bookmark_value>INDIRECT ལས་འགན།</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3153181\n"
-"62\n"
"help.text"
msgid "INDIRECT"
msgstr "INDIRECT"
@@ -20848,7 +19900,6 @@ msgstr "INDIRECT"
msgctxt ""
"04060109.xhp\n"
"par_id3147169\n"
-"63\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_INDIREKT\">Returns the <emph>reference</emph> specified by a text string.</ahelp> This function can also be used to return the area of a corresponding string."
msgstr "<ahelp hid=\"HID_FUNC_INDIREKT\"> ཚིག་ཡིག་ ཡིག་རྒྱུན་གྱིས་ <emph> གསལ་བཀོད་འབད་ཡོད་པའི་ </emph> གཞི་བསྟུན་སླར་ལོག་འབདཝ་ཨིན། </ahelp> འ་ནི་ལས་འགན་དེ་ མཚུངས་པའི་ཡིག་རྒྱུན་གྱི་མངའ་ཁོངས་སླར་ལོག་འབདཝ་ད་ཡང་ ལག་ལེན་འཐབ་ཚུགསཔ་ཨིན།"
@@ -20857,7 +19908,6 @@ msgstr "<ahelp hid=\"HID_FUNC_INDIREKT\"> ཚིག་ཡིག་ ཡིག་
msgctxt ""
"04060109.xhp\n"
"hd_id3153717\n"
-"64\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -20866,7 +19916,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3149824\n"
-"65\n"
"help.text"
msgid "INDIRECT(Ref; A1)"
msgstr ""
@@ -20875,7 +19924,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3154317\n"
-"66\n"
"help.text"
msgid "<emph>Ref</emph> represents a reference to a cell or an area (in text form) for which to return the contents."
msgstr "<emph> གཞི་བསྟུན་གྱིས་ </emph> ནང་དོན་ཚུ་སླར་ལོག་འབད་ནི་ཨིན་པའི་ ནང་ཐིག་གམ་མངའ་ཁོངས་ལུ་གཞི་བསྟུན་འབད་མི་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -20900,7 +19948,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཡིག་རྒྱུན་ལས་
msgctxt ""
"04060109.xhp\n"
"hd_id3150389\n"
-"67\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -20909,7 +19956,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060109.xhp\n"
"par_id3150608\n"
-"68\n"
"help.text"
msgid "<item type=\"input\">=INDIRECT(A1)</item> equals 100 if A1 contains C108 as a reference and cell C108 contains a value of <item type=\"input\">100</item>."
msgstr ""
@@ -20918,7 +19964,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3083286\n"
-"181\n"
"help.text"
msgid "<item type=\"input\">=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3)))</item> totals the cells in the area of A1 up to the cell with the address defined by row 1 and column 3. This means that area A1:C1 is totaled."
msgstr "=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3))) ཁ་བྱང་དེ་ གྲལ་ཐིག་ ༡ དང་ ཀེར་ཐིག་ ༣ གིས་ ངེས་འཛིན་འབད་ཡོད་པའི་ ནང་ཐིག་ཚུན་ A1 གི་མངའ་ཁོངས་ནང་ནང་ཐིག་ཚུ་བསྡོམས་ཨིན། ན་འབདཝ་ལས་ མངའ་ཁོངས་ A1:C1 དེ་ བསྡོམས་ཏེ་ཡོདཔ་ཨིན།"
@@ -20935,7 +19980,6 @@ msgstr "<bookmark_value>COLUMN ལས་འགན།</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3154818\n"
-"70\n"
"help.text"
msgid "COLUMN"
msgstr "COLUMN"
@@ -20944,7 +19988,6 @@ msgstr "COLUMN"
msgctxt ""
"04060109.xhp\n"
"par_id3149711\n"
-"193\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SPALTE\">Returns the column number of a cell reference.</ahelp> If the reference is a cell the column number of the cell is returned; if the parameter is a cell area, the corresponding column numbers are returned in a single-row <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"array\">array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the COLUMN function with an area reference parameter is not used for an array formula, only the column number of the first cell within the area is determined."
msgstr "<ahelp hid=\"HID_FUNC_SPALTE\"> ནང་ཐིག་གཞི་བསྟུན་གྱི་ ཀེར་ཐིག་གྱངས་ཁ་སླར་ལོག་འབདཝ་ཨིན། </ahelp> གཞི་བསྟུན་དེ་ནང་ཐིག་ཨིན་པ་ཅིན་ ནང་ཐིག་གི་ཀེར་ཐིག་གྱངས་ཁ་དེ་སླར་ལོག་འབད་ཡོདཔ་ཨིན། ཚད་བཟུང་དེ་ནང་ཐིག་མངའ་ཁོངས་ཨིན་པ་ཅིན་ མཚུངས་པའི་ཀེར་ཐིག་གྱངས་ཁ་ཚུ་གྲལ་ཐིག་རྐྱང་པ་ནང་ལུ་སླར་ལོག་འབད་ཡོདཔ་ཨིན། <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"array\"> མན་ངག་དེ་ </link> ཨེ་རེ་མན་ངག་སྦེ་བཙུགས་ཏེ་ཡོད་པ་ཅིན་ <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\"> ཨེ་རེ་ </link> སླར་ལོག་འབདཝ་ཨིན། COLUMN ལས་འགན་དེ་ ཨེ་རེ་མན་ངག་དོན་ལུ་ མངའ་ཁོངས་གཞི་བསྟུན་ཚད་བཟུང་དང་བཅསཔ་སྦེ་ ལག་ལེན་འཐབ་སྟེ་མེད་པ་ཅིན་ མངའ་ཁོངས་ནང་འཁོད་ཀྱི་ ནང་ཐིག་དང་པའི་ཀེར་ཐིག་གྱངས་ཁ་རྐྱངམ་ཅིག་གཏན་འབེབས་བཟོ་ཡོདཔ་ཨིན།"
@@ -20953,7 +19996,6 @@ msgstr "<ahelp hid=\"HID_FUNC_SPALTE\"> ནང་ཐིག་གཞི་བས
msgctxt ""
"04060109.xhp\n"
"hd_id3149283\n"
-"72\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -20962,7 +20004,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3149447\n"
-"73\n"
"help.text"
msgid "COLUMN(Reference)"
msgstr "COLUMN(གཞི་བསྟུན།)"
@@ -20971,7 +20012,6 @@ msgstr "COLUMN(གཞི་བསྟུན།)"
msgctxt ""
"04060109.xhp\n"
"par_id3156310\n"
-"74\n"
"help.text"
msgid "<emph>Reference</emph> is the reference to a cell or cell area whose first column number is to be found."
msgstr "<emph>གཞི་བསྟུན་</emph>འདི་ ཀེར་ཐིག་དང་པའི་ཨང་གྲངས་འཐོབ་པའི་ ནང་ཐིག་ས་ཁོངས་ ཡང་ན་ནང་ཐིག་ལུ་གཞི་བསྟུན་འབད་མི་འདི་ཨིན།"
@@ -20980,7 +20020,6 @@ msgstr "<emph>གཞི་བསྟུན་</emph>འདི་ ཀེར་ཐ
msgctxt ""
"04060109.xhp\n"
"par_id3155837\n"
-"194\n"
"help.text"
msgid "If no reference is entered, the column number of the cell in which the formula is entered is found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
msgstr "གཞི་བསྟུན་གཅིག་ཡང་བཙུགས་ཏེ་མེད་པ་ཅིན་ མན་ངག་བཙུགས་ཡོད་པའི་ནང་ཐིག་གི་ཀེར་ཐིག་གྱངས་ཁ་དེ་ཐོབ་ཡོདཔ་ཨིན། <item type=\"productname\">%PRODUCTNAME</item> ཀེལ་སི་ གིས་ ད་ལྟོའི་ནང་ཐིག་ལུ་གཞི་བསྟུན་རང་བཞིན་གྱིས་གཞི་སྒྲིག་འབདཝ་ཨིན།"
@@ -20989,7 +20028,6 @@ msgstr "གཞི་བསྟུན་གཅིག་ཡང་བཙུགས་
msgctxt ""
"04060109.xhp\n"
"hd_id3152932\n"
-"75\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -20998,7 +20036,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060109.xhp\n"
"par_id3147571\n"
-"76\n"
"help.text"
msgid "<item type=\"input\">=COLUMN(A1)</item> equals 1. Column A is the first column in the table."
msgstr ""
@@ -21007,7 +20044,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3147079\n"
-"77\n"
"help.text"
msgid "<item type=\"input\">=COLUMN(C3:E3)</item> equals 3. Column C is the third column in the table."
msgstr ""
@@ -21016,7 +20052,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3146861\n"
-"195\n"
"help.text"
msgid "<item type=\"input\">=COLUMN(D3:G10)</item> returns 4 because column D is the fourth column in the table and the COLUMN function is not used as an array formula. (In this case, the first value of the array is always used as the result.)"
msgstr "=COLUMN(D3:G10) གིས་ ༤ སླར་ལོག་འབདཝ་ཨིན་ ག་ཅི་སྦེ་ཟེར་བ་ཅིན་ ཀེར་ཐིག་ D དེ་ཐིག་ཁྲམ་ནང་ ཀེར་ཐིག་བཞི་པམ་དང་ COLUMN ལས་འགན་དེ་ ཨེ་རེ་མན་ངག་སྦེ་ ལག་ལེན་འཐབ་སྟེ་མེདཔ་ཨིན། (འ་ནི་གནས་སྟངས་ནང་ལུ་ ཨེ་རེ་གི་གནས་གོང་དང་པམ་དེ་ རྟག་བུ་རང་ གྲུབ་འབྲས་སྦེ་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན།)"
@@ -21025,7 +20060,6 @@ msgstr "=COLUMN(D3:G10) གིས་ ༤ སླར་ལོག་འབདཝ་
msgctxt ""
"04060109.xhp\n"
"par_id3156320\n"
-"196\n"
"help.text"
msgid "<item type=\"input\">{=COLUMN(B2:B7)}</item> and <item type=\"input\">=COLUMN(B2:B7)</item> both return 2 because the reference only contains column B as the second column in the table. Because single-column areas have only one column number, it does not make a difference whether or not the formula is used as an array formula."
msgstr "{=COLUMN(B2:B7)} དང་ =COLUMN(B2:B7) གཉིས་ཆ་རང་གིས་ ༢ སླར་ལོག་འབདཝ་ཨིན་ ག་ཅི་སྦེ་ཟེར་བ་ཅིན་ ཐིག་ཁྲམ་ནང་ལུ་ གཞི་བསྟུན་གྱིས་ ཀེར་ཐིག་ B རྐྱངམ་ཅིག་ ཀེར་ཐིག་གཉིས་པམ་སྦེ་ཤོམ་ཏེ་ཡོདཔ་ཨིན། ཀེར་ཐིག་མངའ་ཁོངས་རྐྱང་པ་ཚུ་ལུ་ ཀེར་ཐིག་ཨང་གྲངས་གཅིག་རྐྱངམ་ཅིན་ཡོདཔ་ལས་བརྟེན་ མན་ངག་དེ་ ཨེ་རེ་མན་ངག་སྦེ་ལག་ལེན་འཐབ་སྟེ་ཡོད་རུང་མེད་རུང་ ཁྱད་པར་ག་ནི་ཡང་བཟོ་ནི་མེདཔ་ཨིན།"
@@ -21034,7 +20068,6 @@ msgstr "{=COLUMN(B2:B7)} དང་ =COLUMN(B2:B7) གཉིས་ཆ་རང་
msgctxt ""
"04060109.xhp\n"
"par_id3150872\n"
-"197\n"
"help.text"
msgid "<item type=\"input\">=COLUMN()</item> returns 3 if the formula was entered in column C."
msgstr ""
@@ -21043,7 +20076,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3153277\n"
-"198\n"
"help.text"
msgid "<item type=\"input\">{=COLUMN(Rabbit)}</item> returns the single-row array (3, 4) if \"Rabbit\" is the named area (C1:D3)."
msgstr "{=COLUMN(Rabbit)} གིས་ \"Rabbit\" དེ་ མིང་བཏགས་ཡོད་པའི་མངའ་ཁོངས་ (C1:D3) ཨིན་པ་ཅིན་ གྲལ་ཐིག་ཨེ་རེ་རྐྱང་པ་ (༣ ༤) སླར་ལོག་འབདཝ་ཨིན།(-r)"
@@ -21060,7 +20092,6 @@ msgstr "<bookmark_value>COLUMNS ལས་འགན།</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3154643\n"
-"79\n"
"help.text"
msgid "COLUMNS"
msgstr "COLUMNS"
@@ -21069,7 +20100,6 @@ msgstr "COLUMNS"
msgctxt ""
"04060109.xhp\n"
"par_id3151182\n"
-"80\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SPALTEN\">Returns the number of columns in the given reference.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_SPALTEN\"> གྲ་སྒྲིག་འབད་ཡོད་པའི་གཞི་བསྟུན་ནང་ ཀེར་ཐིག་ཚུའི་གྱངས་ཁ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -21078,7 +20108,6 @@ msgstr "<ahelp hid=\"HID_FUNC_SPALTEN\"> གྲ་སྒྲིག་འབད་
msgctxt ""
"04060109.xhp\n"
"hd_id3149141\n"
-"81\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -21087,7 +20116,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3154047\n"
-"82\n"
"help.text"
msgid "COLUMNS(Array)"
msgstr "COLUMNS(ཨེ་རེ།)"
@@ -21096,7 +20124,6 @@ msgstr "COLUMNS(ཨེ་རེ།)"
msgctxt ""
"04060109.xhp\n"
"par_id3154745\n"
-"83\n"
"help.text"
msgid "<emph>Array</emph> is the reference to a cell range whose total number of columns is to be found. The argument can also be a single cell."
msgstr "<emph> ཨེ་རེ་ </emph> དེ་ ཀེར་ཐིག་ཚུའི་གྱངས་ག་བསྡོམས་འཐོབ་ནི་ཨིན་པའི་ ནང་ཐིག་ཁྱབ་ཚད་ལུ་གཞི་བསྟུན་ཨིན། སྒྲུབ་རྟགས་དེ་ ནང་ཐིག་རྐྱང་པ་ཡང་འོངམ་ཨིན།"
@@ -21105,7 +20132,6 @@ msgstr "<emph> ཨེ་རེ་ </emph> དེ་ ཀེར་ཐིག་ཚ
msgctxt ""
"04060109.xhp\n"
"hd_id3153622\n"
-"84\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -21114,7 +20140,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060109.xhp\n"
"par_id3149577\n"
-"200\n"
"help.text"
msgid "<item type=\"input\">=COLUMNS(B5)</item> returns 1 because a cell only contains one column."
msgstr ""
@@ -21123,7 +20148,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3145649\n"
-"85\n"
"help.text"
msgid "<item type=\"input\">=COLUMNS(A1:C5)</item> equals 3. The reference comprises three columns."
msgstr ""
@@ -21132,7 +20156,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3155846\n"
-"201\n"
"help.text"
msgid "<item type=\"input\">=COLUMNS(Rabbit)</item> returns 2 if <item type=\"literal\">Rabbit</item> is the named range (C1:D3)."
msgstr ""
@@ -21149,7 +20172,6 @@ msgstr "<bookmark_value> ཀེར་ཕྲང་འཚོལ་ཞིབ་ལ
msgctxt ""
"04060109.xhp\n"
"hd_id3153152\n"
-"87\n"
"help.text"
msgid "VLOOKUP"
msgstr "VLOOKUP"
@@ -21158,7 +20180,6 @@ msgstr "VLOOKUP"
msgctxt ""
"04060109.xhp\n"
"par_id3149984\n"
-"88\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type=\"literal\">Index</item>. If the <item type=\"literal\">Sorted</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type=\"literal\">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type=\"literal\">Sorted</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
msgstr ""
@@ -21167,7 +20188,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"hd_id3146898\n"
-"89\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -21176,7 +20196,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3150156\n"
-"90\n"
"help.text"
msgid "=VLOOKUP(SearchCriterion; Array; Index; Sorted)"
msgstr ""
@@ -21185,7 +20204,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3149289\n"
-"91\n"
"help.text"
msgid "<emph>SearchCriterion</emph> is the value searched for in the first column of the array."
msgstr "<emph>འཚོལ་ཞིབ་ཀྱི་ཁྱད་ཚད་</emph> འདི་ ཨེ་རེ་གི་ཀེར་ཐིག་དང་པའི་དོན་ལུ་འཚོལ་ཞིབ་འབད་ཡོད་པའི་གནས་གོང་འདི་ཨིན།"
@@ -21194,7 +20212,6 @@ msgstr "<emph>འཚོལ་ཞིབ་ཀྱི་ཁྱད་ཚད་</emph
msgctxt ""
"04060109.xhp\n"
"par_id3153884\n"
-"92\n"
"help.text"
msgid "<emph>Array</emph> is the reference, which is to comprise at least two columns."
msgstr "<emph>ཨེ་རེ་</emph>འདི་ ཀེར་ཐིག་ཉུང་མཐའ་རང་གཉིས་ལྡན་པའི་གཞི་བསྟུན་འདི་ཨིན།"
@@ -21203,7 +20220,6 @@ msgstr "<emph>ཨེ་རེ་</emph>འདི་ ཀེར་ཐིག་ཉ
msgctxt ""
"04060109.xhp\n"
"par_id3156005\n"
-"93\n"
"help.text"
msgid "<emph>Index</emph> is the number of the column in the array that contains the value to be returned. The first column has the number 1."
msgstr "<emph> ཟུར་ཐོ་ </emph> དེ་ སླར་ལོག་འབད་ནི་ཨིན་པའི་གནས་གོང་ཤོམ་ཏེ་ཡོད་མི་ ཨེ་རེ་ནང་གི་ཀེར་ཐིག་གི་གྱངས་ཁ་ཨིན། ཀེར་ཐིག་ དང་པམ་ལུ་ ཨང་གྲངས་ ༡ ཡོད།"
@@ -21212,7 +20228,6 @@ msgstr "<emph> ཟུར་ཐོ་ </emph> དེ་ སླར་ལོག་
msgctxt ""
"04060109.xhp\n"
"par_id3151208\n"
-"94\n"
"help.text"
msgid "<emph>Sorted</emph> is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: <emph>Error: Value Not Available</emph>."
msgstr ""
@@ -21221,7 +20236,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"hd_id3147487\n"
-"95\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -21230,7 +20244,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060109.xhp\n"
"par_id3154129\n"
-"96\n"
"help.text"
msgid "You want to enter the number of a dish on the menu in cell A1, and the name of the dish is to appear as text in the neighboring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains <item type=\"input\">100</item>, E1 contains the name <item type=\"input\">Vegetable Soup</item>, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional <item type=\"literal\">Sorted</item> parameter is not necessary."
msgstr ""
@@ -21239,7 +20252,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3145663\n"
-"97\n"
"help.text"
msgid "Enter the following formula in B1:"
msgstr "B1 ནང་ལུ་འོག་ལུ་ཡོད་པའི་མན་ངག་བཙུགས།:"
@@ -21248,7 +20260,6 @@ msgstr "B1 ནང་ལུ་འོག་ལུ་ཡོད་པའི་མན
msgctxt ""
"04060109.xhp\n"
"par_id3151172\n"
-"98\n"
"help.text"
msgid "<item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item>"
msgstr ""
@@ -21257,7 +20268,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3149200\n"
-"99\n"
"help.text"
msgid "As soon as you enter a number in A1 B1 will show the corresponding text contained in the second column of reference D1:E100. Entering a nonexistent number displays the text with the next number down. To prevent this, enter FALSE as the last parameter in the formula so that an error message is generated when a nonexistent number is entered."
msgstr "ཁྱོད་ཀྱིས་ A1 ནང་ ཨང་གྲངས་བཙུགསཔ་ཅིན་ B1 གིས་ གཞི་བསྟུན་ D1:E100 གི་ ཀེར་ཐིག་གཉིས་པམ་ནང་ཤོམ་ཏེ་ཡོད་པའི་ མཚུངས་པའི་ཚིག་ཡིག་སྟོནམ་ཨིན། མངོན་སུམ་དུ་མེད་པའི་ཨང་གྲངས་ཚུ་བཙུགས་ནི་དེ་གིས་ མར་ཨང་གྲངས་ཤུལ་མམ་དང་བཅས་པའི་ཚིག་ཡིག་བཀྲམ་སྟོན་འབདཝ་ཨིན། འ་ནི་སྔོན་བཀག་འབད་ནིའི་དོན་ལུ་ མན་ངག་ནང་ལུ་ མངོན་སུམ་དུ་མེད་པའི་ཨང་གྲངས་བཙུགས་པའི་སྐབས་སུ་འཕྲིན་དོན་འཛོལ་བ་བཟོ་བཏོན་འབད་ནིའི་དོན་ལུ་ FALSE དེ་མཇུག་གི་ཚད་བཟུང་སྦེ་བཙུགས།"
@@ -21274,7 +20284,6 @@ msgstr "<bookmark_value> ཤོག་ཁྲམ་གྱངས་ཁ་ཚུ་;
msgctxt ""
"04060109.xhp\n"
"hd_id3153905\n"
-"215\n"
"help.text"
msgid "SHEET"
msgstr "ཤོག་ཁྲམ།"
@@ -21283,7 +20292,6 @@ msgstr "ཤོག་ཁྲམ།"
msgctxt ""
"04060109.xhp\n"
"par_id3150309\n"
-"216\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TABELLE\">Returns the sheet number of a reference or a string representing a sheet name.</ahelp> If you do not enter any parameters, the result is the sheet number of the spreadsheet containing the formula."
msgstr "<ahelp hid=\"HID_FUNC_TABELLE\"> གཞི་བསྟུན་གྱི་ཤོག་ལེབ་གྱངས་ཁའམ་ཤོག་ལེབ་མིང་གཅིག་ཁྱད་ཚབ་འབད་བའི་ཡིག་རྒྱུན་སླར་ལོག་འབདཝ་ཨིན། </ahelp> ཁྱོད་ཀྱིས་ ཚད་བཟུང་གང་རུང་ཡང་མ་བཙུགས་པ་ཅིན་ གྲུབ་འབྲས་དེ་ མན་ངག་ཤོམ་ཏེ་ཡོད་པའི་ ཤོག་ཁྲམ་གྱི་ཤོག་ལེབ་གྱངས་ཁ་ཨིན།"
@@ -21292,7 +20300,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TABELLE\"> གཞི་བསྟུན་གྱི
msgctxt ""
"04060109.xhp\n"
"hd_id3148564\n"
-"217\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -21301,7 +20308,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3153095\n"
-"218\n"
"help.text"
msgid "SHEET(Reference)"
msgstr "SHEET(གཞི་བསྟུན།)"
@@ -21310,7 +20316,6 @@ msgstr "SHEET(གཞི་བསྟུན།)"
msgctxt ""
"04060109.xhp\n"
"par_id3154588\n"
-"219\n"
"help.text"
msgid "<emph>Reference</emph> is optional and is the reference to a cell, an area, or a sheet name string."
msgstr "<emph> གཞི་བསྟུན་ </emph> དེ་ གདམ་ཁ་ཅན་ཨིནམ་ལས་ དེ་ ནང་ཐིག་ མངའ་ཁོངས་ ཡང་ན་ ཤོག་ལེབ་མིང་ཡིག་རྒྱུན་ཚུ་ལུ་ གཞི་བསྟུན་ཨིན།"
@@ -21319,7 +20324,6 @@ msgstr "<emph> གཞི་བསྟུན་ </emph> དེ་ གདམ་ཁ
msgctxt ""
"04060109.xhp\n"
"hd_id3155399\n"
-"220\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -21328,7 +20332,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060109.xhp\n"
"par_id3146988\n"
-"221\n"
"help.text"
msgid "<item type=\"input\">=SHEET(Sheet2.A1)</item> returns 2 if Sheet2 is the second sheet in the spreadsheet document."
msgstr "=SHEET(Sheet2.A1) གིས་ ཤོག་ཁྱམ་ཡིག་ཆ་ནང་ ཤོག་ལེབ་གཉིས་པམ་དེ་ ཤོག་ལེབ་༢ ཨིན་པ་ཅིན་ ༢ སླར་ལོག་འབདཝ་ཨིན།"
@@ -21345,7 +20348,6 @@ msgstr "<bookmark_value> ཤོག་ཁྲམ་ཚུའི་གྱངས་
msgctxt ""
"04060109.xhp\n"
"hd_id3148829\n"
-"222\n"
"help.text"
msgid "SHEETS"
msgstr "SHEETS"
@@ -21354,7 +20356,6 @@ msgstr "SHEETS"
msgctxt ""
"04060109.xhp\n"
"par_id3148820\n"
-"223\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TABELLEN\">Determines the number of sheets in a reference.</ahelp> If you do not enter any parameters, it returns the number of sheets in the current document."
msgstr "<ahelp hid=\"HID_FUNC_TABELLEN\"> གཞི་བསྟུན་ནང་ལུ་ ཤོག་ལེབ་ཚུའི་གྱངས་ཁ་ གཏན་འབེབས་བཟོཝ་ཨིན། </ahelp> ཁྱོད་ཀྱིས་ ཚད་བཟུང་གང་རུང་ཚུ་བཙུགས་པ་ཅིན་ དེ་གིས་ ད་ལྟོའི་ཡིག་ཆ་ནང་ལུ་ ཤོག་ལེབ་ཚུའུ་གྱངས་ཁ་སླར་ལོག་འབདཝ་ཨིན།"
@@ -21363,7 +20364,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TABELLEN\"> གཞི་བསྟུན་ནང
msgctxt ""
"04060109.xhp\n"
"hd_id3154220\n"
-"224\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -21372,7 +20372,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3150777\n"
-"225\n"
"help.text"
msgid "SHEETS(Reference)"
msgstr "SHEETS(གཞི་བསྟུན།)"
@@ -21381,7 +20380,6 @@ msgstr "SHEETS(གཞི་བསྟུན།)"
msgctxt ""
"04060109.xhp\n"
"par_id3153060\n"
-"226\n"
"help.text"
msgid "<emph>Reference</emph> is the reference to a sheet or an area. This parameter is optional."
msgstr "<emph> གཞི་བསྟུན་ </emph> དེ་ ཤོག་ལེབ་ ཡང་ན་ མངའ་ཁོངས་ལུ་ གཞི་བསྟུན་ཨིན། འ་ནི་ ཚད་བཟུང་དེ་ གདམ་ཁ་ཅན་ཨིན།"
@@ -21390,7 +20388,6 @@ msgstr "<emph> གཞི་བསྟུན་ </emph> དེ་ ཤོག་ལ
msgctxt ""
"04060109.xhp\n"
"hd_id3149766\n"
-"227\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -21399,7 +20396,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060109.xhp\n"
"par_id3150507\n"
-"228\n"
"help.text"
msgid "<item type=\"input\">=SHEETS(Sheet1.A1:Sheet3.G12)</item> returns 3 if Sheet1, Sheet2, and Sheet3 exist in the sequence indicated."
msgstr "=SHEETS(Sheet1.A1:Sheet3.G12) གིས་ ཤོག་ལེབ་༡ ཤོག་ལེབ་༢ དང་ ཤོག་ལེབ་༣ ཚུ་ བརྡ་སྟོན་ཡོད་པའི་འབྱུང་རིམ་ནང་གནས་ཏེ་ཡོད་པ་ཅིན་ ༣ སླར་ལོག་འབདཝ་ཨིན།"
@@ -21416,7 +20412,6 @@ msgstr "<bookmark_value>MATCH ལས་འགན།</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3158407\n"
-"101\n"
"help.text"
msgid "MATCH"
msgstr "MATCH"
@@ -21425,7 +20420,6 @@ msgstr "MATCH"
msgctxt ""
"04060109.xhp\n"
"par_id3154896\n"
-"102\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VERGLEICH\">Returns the relative position of an item in an array that matches a specified value.</ahelp> The function returns the position of the value found in the lookup_array as a number."
msgstr "<ahelp hid=\"HID_FUNC_VERGLEICH\"> གསལ་བཀོད་འབད་ཡོད་པའི་གནས་གོང་མཐུན་སྒྲིག་འབད་བའི་ ཨེ་རེ་ནང་ རྣམ་གྲངས་ཀྱི་ཕན་ཚུན་འབྲེལ་གནས་ས་སླར་ལོག་འབདཝ་ཨིན། </ahelp> ལས་འགན་གྱིས་ lookup_array ནང་ ཨང་གྲངས་སྦེ་ཐོབ་ཡོད་པའི་ གནས་གོང་གི་གནས་ས་སླར་ལོག་འབདཝ་ཨིན།"
@@ -21434,7 +20428,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VERGLEICH\"> གསལ་བཀོད་འབད
msgctxt ""
"04060109.xhp\n"
"hd_id3153834\n"
-"103\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -21443,7 +20436,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3159152\n"
-"104\n"
"help.text"
msgid "MATCH(SearchCriterion; LookupArray; Type)"
msgstr "MATCH(search criterion;lookup_array;type)"
@@ -21452,7 +20444,6 @@ msgstr "MATCH(search criterion;lookup_array;type)"
msgctxt ""
"04060109.xhp\n"
"par_id3149336\n"
-"105\n"
"help.text"
msgid "<emph>SearchCriterion</emph> is the value which is to be searched for in the single-row or single-column array."
msgstr "<emph> འཚོལ་ཞིབ་ཚད་གཞི་ </emph> དེ་ གྲལ་ཐིག་རྐྱང་པའམ་ ཀེར་ཐིག་རྐྱང་པ་ཨེ་རེ་ནང་ འཚོལ་ཞིབ་འབད་ནི་ཨིན་པའི་གནས་གོང་ཨིན།(-r)(-c)"
@@ -21461,7 +20452,6 @@ msgstr "<emph> འཚོལ་ཞིབ་ཚད་གཞི་ </emph> དེ
msgctxt ""
"04060109.xhp\n"
"par_id3159167\n"
-"106\n"
"help.text"
msgid "<emph>LookupArray</emph> is the reference searched. A lookup array can be a single row or column, or part of a single row or column."
msgstr "<emph>lookup_array</emph> དེ་ འཚོལ་ཞིབ་འབད་ཡོད་པའི་གཞི་བསྟུན་ཨིན། ཨེ་རེ་བལྟ་བ་དེ་ གྲལ་ཐིག་རྐྱང་པའམ་ཀེར་ཐིག་ ཡང་ན་ གྲལ་ཐིག་གམ་ཀེར་ཐིག་རྐྱང་པ་གི་ ཡན་ལག་འོངམ་ཨིན།"
@@ -21470,7 +20460,6 @@ msgstr "<emph>lookup_array</emph> དེ་ འཚོལ་ཞིབ་འབད
msgctxt ""
"04060109.xhp\n"
"par_id3147239\n"
-"107\n"
"help.text"
msgid "<emph>Type</emph> may take the values 1, 0, or -1. If Type = 1 or if this optional parameter is missing, it is assumed that the first column of the search array is sorted in ascending order. If Type = -1 it is assumed that the column in sorted in descending order. This corresponds to the same function in Microsoft Excel."
msgstr "<emph> དབྱེ་བ་ </emph> གིས་ ཡང་ན་ གནས་གོང་ ༡ ༠ ཡང་ན་ -༡ ཚུ་འབག་ནི་ཨིན། དབྱེ་བ་ = ༡ ཨིན་པ་ཅིན་ ཡང་ན་ འ་ནི་གདམ་ཁ་ཅན་ཚད་བཟུང་དེ་བརླག་སྟོར་ཞུགས་ཡོད་པ་ཅིན་ འཚོལ་ཞིབ་ཨེ་རེ་གི་ཀེར་ཐིག་དང་པ་དེ་ ཡར་འཛེགས་རིམ་པ་ནང་དབྱེ་སེལ་འབད་ཡོདཔ་སྦེ་འཛིན་ཡོདཔ་ཨིན། དབྱེ་བ་ = -༡ ཨིན་པ་ཅིན་ ཀེར་ཐིག་དེ་ མར་འབབ་རིམ་པ་ནང་དབྱེ་སེལ་འབད་ཡོདཔ་སྦེ་འཛིན་ཡོདཔ་ཨིན། འ་ནི་གིས་ མའི་ཀོརོ་སོཔཊི་ཨེགསི་སེལ་ནང་བཟུམ་སྦེ་ལས་འགན་གཅིག་པ་ལུ་མཚུངསམ་ཨིན།"
@@ -21479,7 +20468,6 @@ msgstr "<emph> དབྱེ་བ་ </emph> གིས་ ཡང་ན་ གན
msgctxt ""
"04060109.xhp\n"
"par_id3154265\n"
-"231\n"
"help.text"
msgid "If Type = 0, only exact matches are found. If the search criterion is found more than once, the function returns the index of the first matching value. Only if Type = 0 can you search for regular expressions (if enabled in calculation options) or wildcards (if enabled in calculation options)."
msgstr ""
@@ -21488,7 +20476,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3147528\n"
-"232\n"
"help.text"
msgid "If Type = 1 or the third parameter is missing, the index of the last value that is smaller or equal to the search criterion is returned. This applies even when the search array is not sorted. For Type = -1, the first value that is larger or equal is returned."
msgstr "དབྱེ་བ་ = ༡ ཡང་ན་ ཚད་བཟུང་གསུམ་པ་དེ་བརླག་སྟོར་ཞུགས་ཡོད་པ་ཅིན་ འཚོལ་ཞིབ་ཚད་གཞི་དང་མཉམ་པའམ་ཆུང་བའི་མཇུག་གི་གནས་གོང་དེ་སླར་ལོག་འབད་ཡོད། འ་ནི་དེ་ འཚོལ་ཞིབ་ཨེ་རེ་དེ་ དབྱེ་སེལ་མ་འབད་བའི་སྐབས་སུའང་འཇུག་སྤྱོད་འབདཝ་ཨིན། དབྱེ་བ་ =- ༡ དོན་ལུ་ སྦོམ་མིའམ་ མཉམ་པའི་གནས་གོང་དང་དམ་དེ་སླར་ལོག་འབད་ཡོདཔ་ཨིན།"
@@ -21497,7 +20484,6 @@ msgstr "དབྱེ་བ་ = ༡ ཡང་ན་ ཚད་བཟུང་ག
msgctxt ""
"04060109.xhp\n"
"hd_id3155119\n"
-"108\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -21506,7 +20492,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060109.xhp\n"
"par_id3155343\n"
-"109\n"
"help.text"
msgid "<item type=\"input\">=MATCH(200;D1:D100)</item> searches the area D1:D100, which is sorted by column D, for the value 200. As soon as this value is reached, the number of the row in which it was found is returned. If a higher value is found during the search in the column, the number of the previous row is returned."
msgstr "=MATCH(200; D1:D100) གིས་ གནས་གོང་ ༢༠༠ དོན་ལུ་ ཀེར་ཐིག་ D གིས་ དབྱེ་སེལ་འབད་ཡོད་པའི་ མངའ་ཁོངས་ D1:D100 འཚོལ་ཞིབ་འབདཝ་ཨིན། འ་ནི་གནས་གོང་དེ་ལྷོད་ཚརཝ་ཅིག་ དེ་ཐོབ་ཡོད་པའི་གྲལ་ཐིག་གི་གྱངས་ཁ་དེ་སླར་ལོག་འབད་ཡོདཔ་ཨིན། ཀེར་ཐིག་ནང་ འཚོལ་ཞིབ་སྐབས་སུ་ གནས་གོང་ མཐོ་མི་ཅིག་ཐོབ་པ་ཅིན་ ཧེ་མའི་གྲལ་ཐིག་གི་གྱངས་ཁ་དེ་སླར་ལོག་འབད་ཡོདཔ་ཨིན།"
@@ -21523,7 +20508,6 @@ msgstr "<bookmark_value>OFFSET ལས་འགན།</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3158430\n"
-"111\n"
"help.text"
msgid "OFFSET"
msgstr "OFFSET"
@@ -21532,7 +20516,6 @@ msgstr "OFFSET"
msgctxt ""
"04060109.xhp\n"
"par_id3149167\n"
-"112\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">Returns the value of a cell offset by a certain number of rows and columns from a given reference point.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\"> གྲ་སྒྲིག་འབད་ཡོད་པའི་ གཞི་བསྟུན་ས་ཚིགས་ལས་ གྲལ་ཐིག་དང་ཀེར་ཐིག་ཚུའི་ཨང་གྲངས་ལ་ལོ་ཅིག་གིས་ པར་ལེན་འབད་ཡོད་པའི་ ནང་ཐིག་གི་གནས་གོང་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -21541,7 +20524,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\"> གྲ་སྒྲིག་འབ
msgctxt ""
"04060109.xhp\n"
"hd_id3146952\n"
-"113\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -21550,7 +20532,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3159194\n"
-"114\n"
"help.text"
msgid "OFFSET(Reference; Rows; Columns; Height; Width)"
msgstr "OFFSET(གཞི་བསྟུན། གྲལ་ཐིག ཀེར་ཐིག་ཚུ། མཐོ་ཚད། རྒྱ་ཚད།)"
@@ -21559,27 +20540,22 @@ msgstr "OFFSET(གཞི་བསྟུན། གྲལ་ཐིག ཀེར་
msgctxt ""
"04060109.xhp\n"
"par_id3152360\n"
-"115\n"
"help.text"
msgid "<emph>Reference</emph> is the reference from which the function searches for the new reference."
msgstr "<emph>གཞི་བསྟུན་</emph>འདི་ ནང་ཐིག་ཨིན་ དེ་ཡང་ གཞི་བསྟུན་གསརཔ་གི་དོན་ལུ་ ལས་འགན་གྱིས་འཚོས་ཞིབ་འབད་མི་འདི་ཨིན།"
#: 04060109.xhp
-#, fuzzy
msgctxt ""
"04060109.xhp\n"
"par_id3156032\n"
-"116\n"
"help.text"
msgid "<emph>Rows</emph> is the number of rows by which the reference was corrected up (negative value) or down. Use 0 to stay in the same row."
msgstr "<emph>གྲལ་ཐིག་ཚུ་</emph>ཟེར་མི་འདི་ གཞི་བསྟུན་འདི་ ཡར་ (མེད་ཆའི་གནས་གོང་) དང་མར་གྱི་ནོར་བཅོས་འབད་ཡོད་པའི་ ནང་ཐིག་ཚུ་གི་ཨང་གྲངས་འདི་ཨིན།"
#: 04060109.xhp
-#, fuzzy
msgctxt ""
"04060109.xhp\n"
"par_id3166458\n"
-"117\n"
"help.text"
msgid "<emph>Columns</emph> is the number of columns by which the reference was corrected to the left (negative value) or to the right. Use 0 to stay in the same column"
msgstr "<emph>གྲལ་ཐིག་ཚུ་</emph>ཟེར་མི་འདི་ གཞི་བསྟུན་འདི་ ཡར་ (མེད་ཆའི་གནས་གོང་) དང་མར་གྱི་ནོར་བཅོས་འབད་ཡོད་པའི་ ནང་ཐིག་ཚུ་གི་ཨང་གྲངས་འདི་ཨིན།"
@@ -21588,7 +20564,6 @@ msgstr "<emph>གྲལ་ཐིག་ཚུ་</emph>ཟེར་མི་འ
msgctxt ""
"04060109.xhp\n"
"par_id3150708\n"
-"118\n"
"help.text"
msgid "<emph>Height</emph> (optional) is the vertical height for an area that starts at the new reference position."
msgstr "<emph>མཐོ་ཚད་</emph> འདི་ གཞི་བསྟུན་གསརཔ་གི་གནས་ས་ལུ་འགོ་བཙུགས་མི་གི་དོན་ལུ་ གདམ་ཁ་ཅན་གྱི་ཀེར་ཕྲང་མཐོ་ཚད་འདི་ཨིན།"
@@ -21597,7 +20572,6 @@ msgstr "<emph>མཐོ་ཚད་</emph> འདི་ གཞི་བསྟ
msgctxt ""
"04060109.xhp\n"
"par_id3147278\n"
-"119\n"
"help.text"
msgid "<emph>Width</emph> (optional) is the horizontal width for an area that starts at the new reference position."
msgstr "<emph>རྒྱ་ཚད་</emph> འདི་ གཞི་བསྟུན་གསརཔ་གི་གནས་ས་ལུ་འགོ་བཙུགས་ནི་དོན་ལུ་ གདམ་ཁ་ཅན་གྱི་ཐད་སྙོམས་རྒྱ་ཚད་འདི་ཨིན།"
@@ -21622,7 +20596,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"hd_id3155586\n"
-"120\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -21631,7 +20604,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060109.xhp\n"
"par_id3149744\n"
-"121\n"
"help.text"
msgid "<item type=\"input\">=OFFSET(A1;2;2)</item> returns the value in cell C3 (A1 moved by two rows and two columns down). If C3 contains the value <item type=\"input\">100</item> this function returns the value 100."
msgstr ""
@@ -21672,7 +20644,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3153739\n"
-"122\n"
"help.text"
msgid "<item type=\"input\">=SUM(OFFSET(A1;2;2;5;6))</item> determines the total of the area that starts in cell C3 and has a height of 5 rows and a width of 6 columns (area=C3:H7)."
msgstr "=SUM(OFFSET(A1; 2; 2; 5; 6)) གིས་ མཐོ་ཚད་ གྲལ་ཐིག་ ༥ དང་ རྒྱ་ཚད་ ཀེར་ཐིག་ ༦ ཡོད་པའི་ ནང་ཐིག་ C3 ནང་འགོ་བཙུགས་པའི་ མངའ་ཁོངས་ཀྱི་བསྡོམས་གཏན་འབེབས་བཟོཝ་ཨིན། (མངའ་ཁོངས་ =C3:H7)"
@@ -21697,7 +20668,6 @@ msgstr "<bookmark_value>LOOKUP ལས་འགན།</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3159273\n"
-"123\n"
"help.text"
msgid "LOOKUP"
msgstr "LOOKUP"
@@ -21706,7 +20676,6 @@ msgstr "LOOKUP"
msgctxt ""
"04060109.xhp\n"
"par_id3153389\n"
-"124\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp#Section17\" name=\"HLOOKUP\">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results."
msgstr ""
@@ -21723,7 +20692,6 @@ msgstr "བལྟ་ནི་འདི་གིས་ འཚོལ་ཞིབ
msgctxt ""
"04060109.xhp\n"
"hd_id3152947\n"
-"125\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -21732,7 +20700,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3154104\n"
-"126\n"
"help.text"
msgid "LOOKUP(SearchCriterion; SearchVector; ResultVector)"
msgstr "LOOKUP(Search criterion;Search vector;result_vector)"
@@ -21741,7 +20708,6 @@ msgstr "LOOKUP(Search criterion;Search vector;result_vector)"
msgctxt ""
"04060109.xhp\n"
"par_id3150646\n"
-"127\n"
"help.text"
msgid "<emph>SearchCriterion</emph> is the value to be searched for; entered either directly or as a reference."
msgstr "<emph> འཚོལ་ཞིབ་ཚད་གཞི་ </emph> དེ་ ཐད་ཀར་དུའམ་ གཞི་བསྟུན་སྦེ་བཙུགས་ཡོད་པའི་ འཚོལ་ཞིབ་འབད་ནི་ཨིན་པའི་གནས་གོང་ཨིན།"
@@ -21750,7 +20716,6 @@ msgstr "<emph> འཚོལ་ཞིབ་ཚད་གཞི་ </emph> དེ
msgctxt ""
"04060109.xhp\n"
"par_id3154854\n"
-"128\n"
"help.text"
msgid "<emph>SearchVector</emph> is the single-row or single-column area to be searched."
msgstr "<emph>འཚོལ་ཞིབ་མཉམ་ཐིག་</emph>འདི་ འཚོལ་ཞིབ་འབད་དགོ་པའི་ གྲལ་ཐིག་རྐྱང་པ་ཡང་ན་ ཀེར་ཐིག་རྐྱང་པ་འདི་ཨིན།"
@@ -21759,7 +20724,6 @@ msgstr "<emph>འཚོལ་ཞིབ་མཉམ་ཐིག་</emph>འད
msgctxt ""
"04060109.xhp\n"
"par_id3149925\n"
-"129\n"
"help.text"
msgid "<emph>ResultVector</emph> is another single-row or single-column range from which the result of the function is taken. The result is the cell of the result vector with the same index as the instance found in the search vector."
msgstr "<emph>result_vector</emph> དེ་ ལས་འགན་གྱི་གྲུབ་འབྲས་འབག་ཡོད་པའི་ གྲལ་ཐིག་རྐྱང་པའམ་ ཀེར་ཐིག་རྐྱང་པ་ཁྱབ་ཚད་གཞན་མི་ཨིན། གྲུབ་འབྲས་དེ་ དཔེར་ན་འཚོལ་ཞིབ་མཉམ་ཐིག་ནང་ཐོབ་མི་བཟུམ་སྦེ་ ཟུར་ཐོ་གཅིག་པ་དང་བཅས་པའི་གྲུབ་འབྲས་མཉམ་ཐིག་གི་ནང་ཐིག་ཨིན།"
@@ -21768,7 +20732,6 @@ msgstr "<emph>result_vector</emph> དེ་ ལས་འགན་གྱི་
msgctxt ""
"04060109.xhp\n"
"hd_id3148624\n"
-"130\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -21777,7 +20740,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060109.xhp\n"
"par_id3149809\n"
-"131\n"
"help.text"
msgid "<item type=\"input\">=LOOKUP(A1;D1:D100;F1:F100)</item> searches the corresponding cell in range D1:D100 for the number you entered in A1. For the instance found, the index is determined, for example, the 12th cell in this range. Then, the contents of the 12th cell are returned as the value of the function (in the result vector)."
msgstr "=LOOKUP(A1; D1:D100;F1:F100) གིས་ ཁྱོད་ཀྱིས་ A1 ནང་ བཙུགས་ཡོད་པའི་ཨང་གྲངས་དོན་ལུ་ ཁྱབ་ཚད་ D1:D100 ནང་མཚུངས་པའི་ནང་ཐིག་འཚོལ་ཞིབ་འབདཝ་ཨིན། དཔེ་འབད་བ་ཅིན་ ཐོབ་ཡོད་པའི་དོན་ལུ་ ཟུར་ཐོ་དེ་གཏན་འབེབས་བཟོ་ཡོདཔ་ཨིན། དཔེ་འབད་བ་ཅིན་ འ་ནི་ཁྱབ་ཚད་ནང་ ནང་ཐིག་བཅུ་གཉིས་པ། དེ་ལས་ ནང་ཐིག་བཅུ་གཉིས་པའི་ནང་དོན་ཚུ་ ལས་འགན་གྱི་གནས་གོང་སྦེ་སླར་ལོག་འབད་ཡོདཔ་ཨིན་(གྲུབ་འབྲས་མཉམ་ཐིག་ནང་)།"
@@ -21794,7 +20756,6 @@ msgstr "<bookmark_value>STYLE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3149425\n"
-"133\n"
"help.text"
msgid "STYLE"
msgstr "STYLE"
@@ -21803,7 +20764,6 @@ msgstr "STYLE"
msgctxt ""
"04060109.xhp\n"
"par_id3150826\n"
-"134\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand."
msgstr "<ahelp hid=\"HID_FUNC_VORLAGE\"> ནང་ན་མན་ངག་ཤོམ་ཏེ་ཡོད་པའི་ ནང་ཐིག་་ལུ་ བཟོ་རྣམ་གཅིག་འཇུག་སྤྱོད་འབདཝ་ཨིན། </ahelp> དུས་ཚོད་ཀྱི་བསྡོམས་གཞི་སྒྲིག་འབད་ཚར་བའི་ཤུལ་ལས་ བཟོ་རྣབ་གཞན་མི་གཅིག་འཇུག་སྤྱོད་འབད་བཏུབ་ཨིན། འ་ནི་ལས་འགན་གྱིས་ གནས་གོང་བསྒྱུར་བཅོས་མ་འབད་བར་འདི་ ལས་འགན་སོ་སོར་གཅིག་ལུ་ཁ་སྐོང་འབད་བཅུགཔ་ཐོག་ལས་ ཨ་རྟག་རང་ གནས་གོང་ ༠ སླར་ལོག་འབདཝ་ཨིན། CURRENT ལས་འགན་དང་བཅསཔ་སྦེ་ ཁྱོད་ཀྱིས་ གནས་གོང་མ་བརྩི་བར་ ནང་ཐིག་ལུ་ཚོས་གཞི་དབུར་བཏུབ་ཨིན། དཔེ་འབད་བ་ཅིན་ : =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) གིས་ གནས་གོང་དེ་ ༣ ལས་སྦོམ་པ་ཅིན་ ནང་ཐིག་ལུ་ \"red\" བཟོ་རྣམ་དབུར་ནི་ཨིནམ་མ་ཚད་ ནི་མེན་པ་ཅིན་ བཟོ་རྣམ་ \"green\" དེ་ དབུར་ཏེ་ཡོདཔ་ཨིན། ནང་ཐིག་རྩ་སྒྲིག་གཉིས་ཆ་རང་ ཧེ་མ་ལས་རང་ངེས་འཛིན་འབད་དགོ།"
@@ -21812,7 +20772,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VORLAGE\"> ནང་ན་མན་ངག་ཤོ
msgctxt ""
"04060109.xhp\n"
"hd_id3145373\n"
-"135\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -21821,7 +20780,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3149302\n"
-"136\n"
"help.text"
msgid "STYLE(\"Style\"; Time; \"Style2\")"
msgstr ""
@@ -21830,7 +20788,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3150596\n"
-"137\n"
"help.text"
msgid "<emph>Style</emph> is the name of a cell style assigned to the cell. Style names must be entered in quotation marks."
msgstr "<emph>སི་ཊ་ཡེལ་</emph> འདི་ ནང་ཐིག་ཅིག་ལུ་བཀོད་སྒྲིག་འབད་ཡོད་པའི་ ནང་ཐིག་སི་ཊ་ཡེལ་ཅིག་གི་མིང་ཨིན། སི་ཊ་ཡེལ་མིང་དེ་ཚུ་ འདྲེན་ཚིག་རྟགས་ཚུ་ནང་བཙུགས་དགོཔ་ཨིན།"
@@ -21839,7 +20796,6 @@ msgstr "<emph>སི་ཊ་ཡེལ་</emph> འདི་ ནང་ཐིག
msgctxt ""
"04060109.xhp\n"
"par_id3156149\n"
-"138\n"
"help.text"
msgid "<emph>Time</emph> is an optional time range in seconds. If this parameter is missing the style will not be changed after a certain amount of time has passed."
msgstr "<emph> དུས་ཚོད་ </emph> དེ་ སྐར་ཆ་ཚུ་ནང་གི་ དུས་ཚོད་ཁྱབ་ཚད་གདམ་ག་ཅན་ཨིན། འ་ནི་ཚད་བཟུང་དེ་བརླག་སྟོར་ཞུགས་ཏེ་ཡོད་པ་ཅིན་ དུས་ཚོདཀྱི་ བསྡོམས་ལ་ལོ་ཅིག་ཐལ་བའི་ཤུལ་ལས་ བཟོ་རྣམ་དེ་བསྒྱུར་བཅོས་འབད་ནི་མེདཔ་ཨིན།"
@@ -21848,7 +20804,6 @@ msgstr "<emph> དུས་ཚོད་ </emph> དེ་ སྐར་ཆ་ཚ
msgctxt ""
"04060109.xhp\n"
"par_id3149520\n"
-"139\n"
"help.text"
msgid "<emph>Style2</emph> is the optional name of a cell style assigned to the cell after a certain amount of time has passed. If this parameter is missing \"Default\" is assumed."
msgstr "<emph> བཟོ་རྣམ་ ༢ </emph> དེ་ དུས་ཚོད་ཀྱི་ བསྡོམས་ལ་ལོ་ཅིག་ཐལ་བའི་ཤུལ་ལས་ ནང་ཐིག་ལུ་ འགན་སྤྲོད་ཡོད་པའི་ནང་ཐིག་བཟོ་རྣམ་གྱི་མིང་གདམ་ཁ་ཅན་ཨིན། ཚད་བཟུང་དེ་ བརླག་སྟོར་ཞུགས་ཡོད་པ་ཅིན་ \"Standard\" དེ་ འཛིན་ཡོདཔ་ཨིན།"
@@ -21857,7 +20812,6 @@ msgstr "<emph> བཟོ་རྣམ་ ༢ </emph> དེ་ དུས་ཚོ
msgctxt ""
"04060109.xhp\n"
"hd_id3159254\n"
-"140\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -21866,7 +20820,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060109.xhp\n"
"par_id3151374\n"
-"141\n"
"help.text"
msgid "<item type=\"input\">=STYLE(\"Invisible\";60;\"Default\")</item> formats the cell in transparent format for 60 seconds after the document was recalculated or loaded, then the Default format is assigned. Both cell formats have to be defined beforehand."
msgstr "=STYLE(\"Invisible\";60;\"Default\") གིས་ ཡིག་ཆ་དེ་ སླར་རྩིས་སྟོན་ནམ་མངོན་གསལ་འབད་ཚར་བའི་ཤུལ་ལས་ སྐར་ཆ་ ༦༠ དོན་ལུ་དྭངས་གསལ་རྩ་སྒྲིག་ནང་ལུ་ནང་ཐིག་རྩ་སྒྲིག་འབདབཞིནམ་ལས་ སྔོན་སྒྲིག་རྩ་སྒྲིག་དེ་འགན་སྤྲོད་ཡོདཔ་ཨིན། ནང་ཐིག་རྩ་སྒྲིག་གཉིས་ཆ་རང་ ཧེ་མ་ལས་རང་ངེས་འཛིན་འབད་དགོཔ་ཨིན།"
@@ -21907,7 +20860,6 @@ msgstr "<bookmark_value>CHOOSE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3150430\n"
-"142\n"
"help.text"
msgid "CHOOSE"
msgstr "CHOOSE"
@@ -21916,7 +20868,6 @@ msgstr "CHOOSE"
msgctxt ""
"04060109.xhp\n"
"par_id3143270\n"
-"143\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WAHL\">Uses an index to return a value from a list of up to 30 values.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_WAHL\"> གནས་གོང་ ༣༠ ཚུན་ གྱི་ ཐོ་ཡིག་ལས་ གནས་གོང་གཅིག་སླར་ལོག་འབད་ནིའི་དོན་ལུ་ ཟུར་ཐོ་གཅིག་ལག་ལེན་འཐབ་ཨིན། </ahelp>"
@@ -21925,7 +20876,6 @@ msgstr "<ahelp hid=\"HID_FUNC_WAHL\"> གནས་གོང་ ༣༠ ཚུན
msgctxt ""
"04060109.xhp\n"
"hd_id3153533\n"
-"144\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -21934,7 +20884,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3155425\n"
-"145\n"
"help.text"
msgid "CHOOSE(Index; Value1; ...; Value30)"
msgstr "CHOOSE(ཟུར་ཐོ། གནས་གོང་ ༡...། གནས་གོང་ ༣༠།)"
@@ -21943,7 +20892,6 @@ msgstr "CHOOSE(ཟུར་ཐོ། གནས་གོང་ ༡...། གན
msgctxt ""
"04060109.xhp\n"
"par_id3144755\n"
-"146\n"
"help.text"
msgid "<emph>Index</emph> is a reference or number between 1 and 30 indicating which value is to be taken from the list."
msgstr "<emph> ཟུར་ཐོ་ </emph> དེ་ ཐོ་ཡིག་ལས་གནས་གོང་ག་དེ་འབག་ནི་ཨིན་ན་ བརྡ་སྟོན་པའི་༡ དང་ ༣༠ བར་གྱི་ཨང་གྲངས་ ཡང་ན་ གཞི་བསྟུན་ཨིན།"
@@ -21952,7 +20900,6 @@ msgstr "<emph> ཟུར་ཐོ་ </emph> དེ་ ཐོ་ཡིག་ལ
msgctxt ""
"04060109.xhp\n"
"par_id3149939\n"
-"147\n"
"help.text"
msgid "<emph>Value1...Value30</emph> is the list of values entered as a reference to a cell or as individual values."
msgstr "<emph>གནས་གོང་ ༡...གནས་གོང་ ༣༠</emph> འདི་ ནང་ཐིག་ཅིག་ལུ་གཞི་བསྟུན་ཡང་ན་ གནས་གོང་རྐྱང་པ་ཚུ་ལུ་གཞི་བསྟུན་འབད་ཐོ་བཀོད་འབད་དེ་ཡོད་པའི་ གནས་གོང་ཚུ་གི་ཐོ་ཡིག་འདི་ཨིན།"
@@ -21961,7 +20908,6 @@ msgstr "<emph>གནས་གོང་ ༡...གནས་གོང་ ༣༠</em
msgctxt ""
"04060109.xhp\n"
"hd_id3151253\n"
-"148\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -21970,7 +20916,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060109.xhp\n"
"par_id3150625\n"
-"149\n"
"help.text"
msgid "<item type=\"input\">=CHOOSE(A1;B1;B2;B3;\"Today\";\"Yesterday\";\"Tomorrow\")</item>, for example, returns the contents of cell B2 for A1 = 2; for A1 = 4, the function returns the text \"Today\"."
msgstr "=CHOOSE(A1; B1; B2; B3; \"Today\"; \"Yesterday\"; \"Tomorrow\") གིས་ དཔེ་འབད་བ་ཅིན་ A1 = ༢ དོན་ལུ་ ནང་ཐིག་ B2 གི་ནང་དོན་ཚུ་སླར་ལོག་འབདཝ་ཨིན་ A1 = ༤ དོན་ལུ་ ལས་འགན་གྱིས་ \"Today\" ཚིག་ཡིག་སླར་ལོག་འབདཝ་ཨིན།"
@@ -21987,7 +20932,6 @@ msgstr "<bookmark_value>HLOOKUP ལས་འགན།</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3151001\n"
-"151\n"
"help.text"
msgid "HLOOKUP"
msgstr "HLOOKUP"
@@ -21996,7 +20940,6 @@ msgstr "HLOOKUP"
msgctxt ""
"04060109.xhp\n"
"par_id3148688\n"
-"152\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WVERWEIS\">Searches for a value and reference to the cells below the selected area.</ahelp> This function verifies if the first row of an array contains a certain value. The function returns then the value in a row of the array, named in the <emph>Index</emph>, in the same column."
msgstr "<ahelp hid=\"HID_FUNC_WVERWEIS\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་མངའ་ཁོངས་ཀྱི་འོག་གི་ནང་ཐིག་ཚུའི་དོན་ལུ་ གནས་གོང་དང་གཞི་བསྟུན་འཚོལ་ཞིབ་འབདཝ་ཨིན། </ahelp> འ་ནི་ལས་འགན་གྱིས་ ཨེ་རེ་གི་གྲལ་ཐིག་དང་པམ་ནང་ན་གན་གོང་ལ་ལོ་ཤོམ་ཏེ་ཡོད་མེད་བདེན་སྦྱོར་འབདཝ་ཨིན། ལས་འགན་གྱིས་ ཀེར་ཐིག་གཅིག་པ་ནང་ <emph> ཟུར་ཐོ་ </emph> ནང་ལུ་ མིང་བཏགས་ཡོད་པའི་ཨེ་རེ་གི་གྲལ་ཐིག་ནང་གནས་གོང་སླར་ལོག་འབདཝ་ཨིན།"
@@ -22005,7 +20948,6 @@ msgstr "<ahelp hid=\"HID_FUNC_WVERWEIS\"> སེལ་འཐུ་གྲུབ
msgctxt ""
"04060109.xhp\n"
"hd_id3154661\n"
-"153\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -22014,7 +20956,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3146070\n"
-"154\n"
"help.text"
msgid "HLOOKUP(SearchCriterion; Array; Index; Sorted)"
msgstr ""
@@ -22023,7 +20964,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3148672\n"
-"155\n"
"help.text"
msgid "See also: <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VLOOKUP</link> (columns and rows are exchanged)"
msgstr ""
@@ -22040,7 +20980,6 @@ msgstr "<bookmark_value>ROW ལས་འགན།</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3147321\n"
-"157\n"
"help.text"
msgid "ROW"
msgstr "གྲལ་ཐིག"
@@ -22049,7 +20988,6 @@ msgstr "གྲལ་ཐིག"
msgctxt ""
"04060109.xhp\n"
"par_id3154564\n"
-"203\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ZEILE\">Returns the row number of a cell reference.</ahelp> If the reference is a cell, it returns the row number of the cell. If the reference is a cell range, it returns the corresponding row numbers in a one-column <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\">Array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the ROW function with a range reference is not used in an array formula, only the row number of the first range cell will be returned."
msgstr "<ahelp hid=\"HID_FUNC_ZEILE\"> ནང་ཐིག་གཞི་བསྟུན་གྱི་ གྲལ་ཐིག་གྱངས་ཁ་སླར་ལོག་འབདཝ་ཨིན། </ahelp> གཞི་བསྟུན་དེ་ནང་ཐིག་ཨིན་པ་ཅིན་ དེ་གིས་ ནང་ཐིག་གི་གྲལ་ཐིག་གྱངས་ཁ་སླར་ལོག་འབདཝ་ཨིན། གཞི་བསྟུན་དེ་ ནང་ཐིག་ཁྱབ་ཚད་ཨིན་པ་ཅིན་ དེ་གིས་ མཚུངས་པའི་གྲལ་ཐིག་གྱངས་ཁ་ཚུ་ཀེར་ཐིག་གཅིག་པ་ནང་སླར་ལོག་འབདཝ་ཨིན། <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\"> མན་ངག་དེ་ </link> ཨེ་རེ་མན་ངག་སྦེ་ <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\"> བཙུགས་ཏེ་ཡོད་པ་ཅིན་ </link> ཨེ་རེ་སླར་ལོག་འབདཝ་ཨིན། ཨེ་རེ་མན་ངག་ནང་ལུ་ ཁྱབ་ཚད་གཞི་བསྟུན་བཅས་པའི་ ROW ལས་འགན་ལག་ལེན་འཐབ་སྟེ་མེད་པ་ཅིན་ ཁྱབ་ཚད་ནང་ཐིག་དང་པའི་གྲལ་ཐིག་གྱངས་ཁ་རྐྱངམ་ཅིག་སླར་ལོག་འབད་ཡོདཔ་ཨིན།"
@@ -22058,7 +20996,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ZEILE\"> ནང་ཐིག་གཞི་བས
msgctxt ""
"04060109.xhp\n"
"hd_id3158439\n"
-"159\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -22067,7 +21004,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3154916\n"
-"160\n"
"help.text"
msgid "ROW(Reference)"
msgstr "ROW(གཞི་བསྟུན།)"
@@ -22076,7 +21012,6 @@ msgstr "ROW(གཞི་བསྟུན།)"
msgctxt ""
"04060109.xhp\n"
"par_id3156336\n"
-"161\n"
"help.text"
msgid "<emph>Reference</emph> is a cell, an area, or the name of an area."
msgstr "<emph> གཞི་བསྟུན་དེ་ </emph> ནང་ཐིག་ མངའ་ཁོངས་ ཡང་ན་ མངའ་ཁོངས་ཀྱི་མིང་ཨིན།"
@@ -22085,7 +21020,6 @@ msgstr "<emph> གཞི་བསྟུན་དེ་ </emph> ནང་ཐི
msgctxt ""
"04060109.xhp\n"
"par_id3151109\n"
-"204\n"
"help.text"
msgid "If you do not indicate a reference, the row number of the cell in which the formula is entered will be found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
msgstr "ཁྱོད་ཀྱིས་ གཞི་བསྟུན་བརྡ་མ་སྟོན་པ་ཅིན་ མན་ངག་བཙུགས་ཡོད་པའི་ནང་ཐིག་གི་གྲལ་ཐིག་གྱངས་ཁ་དེ་འཐོབ་ནི་ཨིན། <item type=\"productname\">%PRODUCTNAME</item> ཀེལ་སི་གིས་ ད་ལྟོའི་ནང་ཐིག་ལུ་ རང་བཞིན་གྱིས་ གཞི་བསྟུན་གཅིག་གཞི་སྒྲིག་འབདཝ་ཨིན།"
@@ -22094,7 +21028,6 @@ msgstr "ཁྱོད་ཀྱིས་ གཞི་བསྟུན་བརྡ
msgctxt ""
"04060109.xhp\n"
"hd_id3155609\n"
-"162\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -22103,7 +21036,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060109.xhp\n"
"par_id3154830\n"
-"205\n"
"help.text"
msgid "<item type=\"input\">=ROW(B3)</item> returns 3 because the reference refers to the third row in the table."
msgstr "=ROW(B3) གིས་ ༣ སླར་ལོག་འབདཝ་ཨིན་ ག་ཅི་སྦེ་ཟེར་བ་ཅིན་ གཞི་བསྟུན་གྱིས་ ཐིག་ཁྲམ་ནང་གི་གྲལ་ཐིག་གསུམ་པམ་ལུ་ གཞི་བསྟུན་འབདཝ་ཨིན།"
@@ -22112,7 +21044,6 @@ msgstr "=ROW(B3) གིས་ ༣ སླར་ལོག་འབདཝ་ཨི
msgctxt ""
"04060109.xhp\n"
"par_id3147094\n"
-"206\n"
"help.text"
msgid "<item type=\"input\">{=ROW(D5:D8)}</item> returns the single-column array (5, 6, 7, 8) because the reference specified contains rows 5 through 8."
msgstr "{=ROW(D5:D8)} གིས་ ཀེར་ཐིག་ཨེ་རེ་རྐྱང་པ་ སླར་ལོག་འབདཝ་ཨིན་ ག་ཅི་སྦེ་ཟེར་བ་ཅིན་ (༥ ༦ ༧ ༨) གསལ་བཀོད་འབད་ཡོད་པའི་གཞི་བསྟུན་ནང་ན་ ༨ བརྒྱུད་དེ་ གྲལ་ཐིག་ ༥་ཚུ་ཤོམ་ཏེ་ཡོདཔ་ཨིན།(-c)"
@@ -22121,7 +21052,6 @@ msgstr "{=ROW(D5:D8)} གིས་ ཀེར་ཐིག་ཨེ་རེ་ར
msgctxt ""
"04060109.xhp\n"
"par_id3153701\n"
-"207\n"
"help.text"
msgid "<item type=\"input\">=ROW(D5:D8)</item> returns 5 because the ROW function is not used as array formula and only the number of the first row of the reference is returned."
msgstr "=ROW(D5:D8) གིས་ ༥ སླར་ལོག་འབདཝ་ཨིན་ ག་ཅི་སྦེ་ཟེར་་ཅིན་ ROW ལས་འགན་དེ་ཨེ་རེ་མན་ངག་སྦེ་ལག་ལེན་འཐབ་མེདཔ་ད་ གཞི་བསྟུན་གྱི་གྲལ་ཐིག་དང་པའི་ཨང་གྲངས་རྐྱངམ་ཅིག་སླར་ལོག་འབད་ཡོདཔ་ཨིན།"
@@ -22130,7 +21060,6 @@ msgstr "=ROW(D5:D8) གིས་ ༥ སླར་ལོག་འབདཝ་ཨ
msgctxt ""
"04060109.xhp\n"
"par_id3150996\n"
-"208\n"
"help.text"
msgid "<item type=\"input\">{=ROW(A1:E1)}</item> and <item type=\"input\">=ROW(A1:E1)</item> both return 1 because the reference only contains row 1 as the first row in the table. (Because single-row areas only have one row number it does not make any difference whether or not the formula is used as an array formula.)"
msgstr "{=ROW(A1:E1)} དང་ =ROW(A1:E1) གཉིས་ཆ་ར་གིས་ ༡ སླར་ལོག་འབདཝ་ཨིན་ ག་ཅི་སྦེ་ཟེར་བ་ཅིན་ གཞི་བསྟུན་ནང་ན་ ཐིག་ཁྲམ་ནང་གི་ཀེར་ཐིག་དང་པ་སྦེ་གྲལ་ཐིག་ ༡ རྐྱངམ་ཅིག་ཤོམ་ཏེ་ཡོདཔ་ཨིན། (ག་ཅི་སྦེ་ཟེར་བ་ཅིན་ གྲལ་ཐིག་མངའ་ཁོངས་རྐྱང་པ་ལུ་གྲལ་ཐིག་གྱངས་ཁ་གཅིག་རྐྱངམ་ཅིག་ཡོདཔ་ལས་ དེ་གིས་ མན་ངག་དེ་ ཨེ་རེ་མན་ངག་སྦེ་ལག་ལེན་འཐབ་སྟེ་ཡོད་རུང་མེད་རུང་ཁྱད་པར་ག་ནི་ཡང་མི་བཟོ་ནི་ཨིན།)(-r)"
@@ -22139,7 +21068,6 @@ msgstr "{=ROW(A1:E1)} དང་ =ROW(A1:E1) གཉིས་ཆ་ར་གིས
msgctxt ""
"04060109.xhp\n"
"par_id3153671\n"
-"209\n"
"help.text"
msgid "<item type=\"input\">=ROW()</item> returns 3 if the formula was entered in row 3."
msgstr ""
@@ -22148,7 +21076,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3153790\n"
-"210\n"
"help.text"
msgid "<item type=\"input\">{=ROW(Rabbit)}</item> returns the single-column array (1, 2, 3) if \"Rabbit\" is the named area (C1:D3)."
msgstr "{=ROW(Rabbit)} གིས་ (༡ ༢ ༣) \"Rabbit\" དེ་མིང་བཏགས་ཡོད་པའི་མངའ་ཁོངས་ཨིན་པ་ཅིན་ ཀེར་ཐིག་ཨེ་རེ་རྐྱང་པ་སླར་ལོག་འབདཝ་ཨིན། (C1:D3) (-c)"
@@ -22165,7 +21092,6 @@ msgstr "<bookmark_value>ROWS ལས་འགན།</bookmark_value>"
msgctxt ""
"04060109.xhp\n"
"hd_id3145772\n"
-"166\n"
"help.text"
msgid "ROWS"
msgstr "ROWS"
@@ -22174,7 +21100,6 @@ msgstr "ROWS"
msgctxt ""
"04060109.xhp\n"
"par_id3148971\n"
-"167\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ZEILEN\">Returns the number of rows in a reference or array.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_ZEILEN\"> གཞི་བསྟུན་ཡང་ན་ ཨེ་རེ་ནང་ གྲལ་ཐིག་ཚུའི་གྱངས་ཁ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -22183,7 +21108,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ZEILEN\"> གཞི་བསྟུན་ཡང་
msgctxt ""
"04060109.xhp\n"
"hd_id3156051\n"
-"168\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -22192,7 +21116,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060109.xhp\n"
"par_id3154357\n"
-"169\n"
"help.text"
msgid "ROWS(Array)"
msgstr "ROWS(ཨེ་རེ།)"
@@ -22201,7 +21124,6 @@ msgstr "ROWS(ཨེ་རེ།)"
msgctxt ""
"04060109.xhp\n"
"par_id3155942\n"
-"170\n"
"help.text"
msgid "<emph>Array</emph> is the reference or named area whose total number of rows is to be determined."
msgstr "<emph>ཨེ་རེ་</emph> འདི་ གྲལ་ཐིག་ཚུ་གི་ཨང་གྲངས་འདི་གཏན་འབེབས་བཟོ་ནི་ཨིན་པའི་ མིང་གི་ས་ཁོངས་ཡང་ན་ གཞི་བསྟུན་འདི་ཨིན།"
@@ -22210,7 +21132,6 @@ msgstr "<emph>ཨེ་རེ་</emph> འདི་ གྲལ་ཐིག་
msgctxt ""
"04060109.xhp\n"
"hd_id3155869\n"
-"171\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -22219,7 +21140,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060109.xhp\n"
"par_id3154725\n"
-"212\n"
"help.text"
msgid "<item type=\"input\">=Rows(B5)</item> returns 1 because a cell only contains one row."
msgstr ""
@@ -22228,7 +21148,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3150102\n"
-"172\n"
"help.text"
msgid "<item type=\"input\">=ROWS(A10:B12)</item> returns 3."
msgstr ""
@@ -22237,7 +21156,6 @@ msgstr ""
msgctxt ""
"04060109.xhp\n"
"par_id3155143\n"
-"213\n"
"help.text"
msgid "<item type=\"input\">=ROWS(Rabbit)</item> returns 3 if \"Rabbit\" is the named area (C1:D3)."
msgstr ""
@@ -22567,14 +21485,13 @@ msgctxt ""
"04060110.xhp\n"
"bm_id3145389\n"
"help.text"
-msgid "<bookmark_value>text in cells; functions</bookmark_value> <bookmark_value>functions; text functions</bookmark_value> <bookmark_value>Function Wizard;text</bookmark_value>"
-msgstr "<bookmark_value>ནང་ཐིག་ཚུ་ནང་ཚིག་ཡིག་; ལས་འགན་ཚུ་</bookmark_value><bookmark_value>ལས་འགན་ཚུ་; ཚིག་ཡིག་ལས་འགན་ཚུ་</bookmark_value><bookmark_value>ལས་འགན་ཝི་ཛརཌི་;ཚིག་ཡིག་</bookmark_value>"
+msgid "<bookmark_value>text in cells; functions</bookmark_value> <bookmark_value>functions; text functions</bookmark_value> <bookmark_value>Function Wizard;text</bookmark_value>"
+msgstr ""
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"hd_id3145389\n"
-"1\n"
"help.text"
msgid "<variable id=\"head_text\"><link href=\"text/scalc/01/04060110.xhp\" name=\"Text Functions\">Text Functions</link></variable>"
msgstr ""
@@ -22583,10 +21500,9 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id3152986\n"
-"2\n"
"help.text"
-msgid "<variable id=\"texttext\">This section contains descriptions of the <emph>Text</emph> functions.</variable>"
-msgstr "<variable id=\"texttext\"> འ་ནི་དབྱེ་ཚན་ནང་ན་ ཚིག་ཡིག་ལས་འགན་ཚུ་ <emph> གི་ </emph> འགྲེལ་བཤད་ཚུ་ཤོམ་ཏེ་ཡོདཔ་ཨིན། </variable>"
+msgid "<variable id=\"texttext\">This section contains descriptions of the <emph>Text</emph> functions. </variable>"
+msgstr ""
#: 04060110.xhp
msgctxt ""
@@ -22600,7 +21516,6 @@ msgstr "<bookmark_value>ARABIC ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3149384\n"
-"239\n"
"help.text"
msgid "ARABIC"
msgstr "ARABIC"
@@ -22609,7 +21524,6 @@ msgstr "ARABIC"
msgctxt ""
"04060110.xhp\n"
"par_id3153558\n"
-"240\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ARABISCH\">Calculates the value of a Roman number. The value range must be between 0 and 3999.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_ARABISCH\"> རོ་མཱན་ཨང་གྲངས་ཀྱི་ གནས་གོང་རྩིས་སྟོནམ་ཨིན། གནས་གོང་ཁྱབ་ཚད་དེ་ ༠ དང་ ༣༩༩༩ བར་འོང་དགོཔ་ཨིན། </ahelp>"
@@ -22618,7 +21532,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ARABISCH\"> རོ་མཱན་ཨང་གྲ
msgctxt ""
"04060110.xhp\n"
"hd_id3153011\n"
-"241\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -22627,7 +21540,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3155523\n"
-"242\n"
"help.text"
msgid "ARABIC(\"Text\")"
msgstr "ARABIC (ཚིག་ཡིག)"
@@ -22636,7 +21548,6 @@ msgstr "ARABIC (ཚིག་ཡིག)"
msgctxt ""
"04060110.xhp\n"
"par_id3151193\n"
-"243\n"
"help.text"
msgid "<emph>Text</emph> is the text that represents a Roman number."
msgstr "<emph> ཚིག་ཡིག་ </emph> དེ་ རོ་མཱན་ཨང་གྲངས་ཁྱད་ཚབ་འབད་བའི་ ཚིག་ཡིག་ཨིན།"
@@ -22645,7 +21556,6 @@ msgstr "<emph> ཚིག་ཡིག་ </emph> དེ་ རོ་མཱན་
msgctxt ""
"04060110.xhp\n"
"hd_id3155758\n"
-"244\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -22654,7 +21564,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3154621\n"
-"245\n"
"help.text"
msgid "<item type=\"input\">=ARABIC(\"MXIV\")</item> returns 1014"
msgstr ""
@@ -22663,7 +21572,6 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id3147553\n"
-"246\n"
"help.text"
msgid "<item type=\"input\">=ARABIC(\"MMII\")</item> returns 2002"
msgstr ""
@@ -22808,7 +21716,6 @@ msgstr "<bookmark_value>BASE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3153072\n"
-"213\n"
"help.text"
msgid "BASE"
msgstr "BASE"
@@ -22817,7 +21724,6 @@ msgstr "BASE"
msgctxt ""
"04060110.xhp\n"
"par_id3153289\n"
-"214\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BASIS\">Converts a positive integer to a specified base into a text from the <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"numbering system\">numbering system</link>.</ahelp> The digits 0-9 and the letters A-Z are used."
msgstr "<ahelp hid=\"HID_FUNC_BASIS\"> ཨང་བཏགས་ནི་རིམ་ལུགས་ལས་ <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"numbering system\">numbering system</link> ལས་ ཧྲིལ་ཨང་ཡོད་ཆ་དེ་ཚིག་ཡིག་ནང་གི་གསལ་བཀོད་འབད་ཡོད་པའི་གཞི་རྟེན་ནང་གཞི་བསྒྱུར་འབདཝ་ཨིན། </ahelp> ཨང་ཡིག་ ༠ - ༩ དང་ ཡི་གུ་ A-Z ཚུན་ཚུ་ ལག་ལེན་འཐབ་སྟེ་ཡོདཔ་ཨིན།"
@@ -22826,7 +21732,6 @@ msgstr "<ahelp hid=\"HID_FUNC_BASIS\"> ཨང་བཏགས་ནི་རི
msgctxt ""
"04060110.xhp\n"
"hd_id3146097\n"
-"215\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -22835,7 +21740,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3155743\n"
-"216\n"
"help.text"
msgid "BASE(Number; Radix; [MinimumLength])"
msgstr "BASE(ཨང་གྲངས། རཱ་ཌིགསི། [རིང་ཚད་ཉུང་མཐའ།])"
@@ -22844,7 +21748,6 @@ msgstr "BASE(ཨང་གྲངས། རཱ་ཌིགསི། [རིང་
msgctxt ""
"04060110.xhp\n"
"par_id3151339\n"
-"217\n"
"help.text"
msgid "<emph>Number</emph> is the positive integer to be converted."
msgstr "<emph> ཨང་གྲངས་ </emph> དེ་ གཞི་བསྒྱུར་འབད་ནི་ཨིན་པའི་ ཧྲིལ་ཨང་ཡོད་ཆ་ཨིན།"
@@ -22853,7 +21756,6 @@ msgstr "<emph> ཨང་གྲངས་ </emph> དེ་ གཞི་བསྒ
msgctxt ""
"04060110.xhp\n"
"par_id3159262\n"
-"218\n"
"help.text"
msgid "<emph>Radix</emph> indicates the base of the number system. It may be any positive integer between 2 and 36."
msgstr "<emph> རཱ་ཌིགསི་ </emph> གིས་ ཨང་གྲངས་རིམ་ལུགས་ཀྱི་གཞི་རྟེན་བརྡ་སྟོནམ་ཨིན། དེ་ཡང་ ༢ དང་ ༣༦ བར་གྱི་ ཧྲིལ་ཨང་ཡོད་ཆ་གང་རུང་ཡོད་རུང་བཏུབ།"
@@ -22862,7 +21764,6 @@ msgstr "<emph> རཱ་ཌིགསི་ </emph> གིས་ ཨང་གྲ
msgctxt ""
"04060110.xhp\n"
"par_id3148746\n"
-"219\n"
"help.text"
msgid "<emph>MinimumLength</emph> (optional) determines the minimum length of the character sequence that has been created. If the text is shorter than the indicated minimum length, zeros are added to the left of the string."
msgstr "<emph> རིང་ཚད་ཉུང་མཐའ་ </emph> (གདམ་ཁ་ཅན་) གིས་ གསར་བསྐྲུན་འབད་ཡོད་པའི་ ཡིག་འབྲུའི་འབྱུང་རིམ་གྱི་ རིང་ཚད་ཉུང་མཐའ་གཏན་འབེབས་བཟོཝ་ཨིན། ཚིག་ཡིག་དེ་ བརྡ་སྟོན་འབད་ཡོད་པའི་རིང་ཚད་ཉུང་མཐའ་ལས་ཐུང་པ་ཅིན་ ཡིག་རྒྱུན་གྱི་ གཡོན་ག་ཐུག་ལུ་ ཀླད་ཀོར་ཚུ་ཁ་སྐོང་བརྐྱབ་སྟེ་ཡོདཔ་ཨིན།"
@@ -22871,7 +21772,6 @@ msgstr "<emph> རིང་ཚད་ཉུང་མཐའ་ </emph> (གདམ
msgctxt ""
"04060110.xhp\n"
"hd_id3146323\n"
-"220\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -22888,7 +21788,6 @@ msgstr "<bookmark_value> བཅུ་ཚག་རིམ་་ལུགས། ལ
msgctxt ""
"04060110.xhp\n"
"par_id3156399\n"
-"221\n"
"help.text"
msgid "<item type=\"input\">=BASE(17;10;4)</item> returns 0017 in the decimal system."
msgstr ""
@@ -22905,7 +21804,6 @@ msgstr "<bookmark_value> ཟུང་ལྡན་རིམ་ལུགས། ལ
msgctxt ""
"04060110.xhp\n"
"par_id3157871\n"
-"222\n"
"help.text"
msgid "<item type=\"input\">=BASE(17;2)</item> returns 10001 in the binary system."
msgstr ""
@@ -22922,7 +21820,6 @@ msgstr "<bookmark_value> ཧེག་ཟ་ཌེ་སི་མཱལ་རི
msgctxt ""
"04060110.xhp\n"
"par_id3145226\n"
-"223\n"
"help.text"
msgid "<item type=\"input\">=BASE(255;16;4)</item> returns 00FF in the hexadecimal system."
msgstr ""
@@ -22939,7 +21836,6 @@ msgstr "<bookmark_value>CHAR ལས་འགན། </bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3149321\n"
-"201\n"
"help.text"
msgid "CHAR"
msgstr "CHAR"
@@ -22948,7 +21844,6 @@ msgstr "CHAR"
msgctxt ""
"04060110.xhp\n"
"par_id3149150\n"
-"202\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ZEICHEN\">Converts a number into a character according to the current code table.</ahelp> The number can be a two-digit or three-digit integer number."
msgstr "<ahelp hid=\"HID_FUNC_ZEICHEN\"> ད་ལྟོའི་ཨང་རྟགས་ཐིག་ཁྲམ་དང་འཁྲིལ་ཏེ་ ཨང་གྲངས་དེ་ ཡིག་འབྲུ་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན། </ahelp> ཨང་གྲངས་དེ་ ཧྲིལ་ཨང་ ཨང་ཡིག་གཉིས་ ཡང་ན་ ཨང་ཡིག་གསུམ་བཏུབ་ཨིན།"
@@ -22957,7 +21852,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ZEICHEN\"> ད་ལྟོའི་ཨང་རྟ
msgctxt ""
"04060110.xhp\n"
"hd_id3149945\n"
-"203\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -22966,7 +21860,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3145634\n"
-"204\n"
"help.text"
msgid "CHAR(Number)"
msgstr "CHAR(ཨང་།)"
@@ -22975,7 +21868,6 @@ msgstr "CHAR(ཨང་།)"
msgctxt ""
"04060110.xhp\n"
"par_id3155906\n"
-"205\n"
"help.text"
msgid "<emph>Number</emph> is a number between 1 and 255 representing the code value for the character."
msgstr "<emph> ཨང་ </emph> འདི་ ༡ དང་ ༢༥༥ བར་ཡིག་འབྲུ་དོན་ལུ་གནས་གོང་ཨང་རྟགས་ཁྱད་ཚབ་འབད་བའི་ཨང་གྲངས་ཨིན།"
@@ -22984,7 +21876,6 @@ msgstr "<emph> ཨང་ </emph> འདི་ ༡ དང་ ༢༥༥ བར་
msgctxt ""
"04060110.xhp\n"
"hd_id3152982\n"
-"207\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -22993,7 +21884,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3149890\n"
-"208\n"
"help.text"
msgid "<item type=\"input\">=CHAR(100)</item> returns the character d."
msgstr ""
@@ -23018,7 +21908,6 @@ msgstr "<bookmark_value>CLEAN ལས་འགན། </bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3149009\n"
-"132\n"
"help.text"
msgid "CLEAN"
msgstr "CLEAN"
@@ -23027,7 +21916,6 @@ msgstr "CLEAN"
msgctxt ""
"04060110.xhp\n"
"par_id3150482\n"
-"133\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SAEUBERN\">All non-printing characters are removed from the string.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_SAEUBERN\"> ཡིག་རྒྱུན་ནང་ལས་ དཔར་བསྐྲུན་མེན་པའི་ཡིག་འབྲུ་ཚུ་ཆ་མཉམ་རང་རྩ་བསྐྲད་གཏང་ཡོདཔ་ཨིན། </ahelp>"
@@ -23036,7 +21924,6 @@ msgstr "<ahelp hid=\"HID_FUNC_SAEUBERN\"> ཡིག་རྒྱུན་ནང
msgctxt ""
"04060110.xhp\n"
"hd_id3146880\n"
-"134\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -23045,7 +21932,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3147472\n"
-"135\n"
"help.text"
msgid "CLEAN(\"Text\")"
msgstr "CLEAN(ཚིག་ཡིག)"
@@ -23054,7 +21940,6 @@ msgstr "CLEAN(ཚིག་ཡིག)"
msgctxt ""
"04060110.xhp\n"
"par_id3150695\n"
-"136\n"
"help.text"
msgid "<emph>Text</emph> refers to the text from which to remove all non-printable characters."
msgstr "<emph> ཚིག་ཡིག་ </emph> དེ་ དཔར་བསྐྲུན་འབད་མ་བཏུབ་མི་ཡིག་འབྲུ་ཚུ་རྩ་བསྐྲད་གཏང་ནིའི་ ཚིག་ཡིག་ལུ་གཞི་བསྟུན་འབདཝ་ཨིན།"
@@ -23071,7 +21956,6 @@ msgstr "<bookmark_value>CODE ལས་འགན། </bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3155498\n"
-"3\n"
"help.text"
msgid "CODE"
msgstr "CODE"
@@ -23080,7 +21964,6 @@ msgstr "CODE"
msgctxt ""
"04060110.xhp\n"
"par_id3152770\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_CODE\">Returns a numeric code for the first character in a text string.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_CODE\"> ཚིག་ཡིག་ ཡིག་རྒྱུན་ནང་ལུ་ ཡིག་འབྲུ་དང་པམ་དོན་ལུ་ ཨང་གྲངས་ཀྱི་ཨང་རྟགས་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -23089,7 +21972,6 @@ msgstr "<ahelp hid=\"HID_FUNC_CODE\"> ཚིག་ཡིག་ ཡིག་ར
msgctxt ""
"04060110.xhp\n"
"hd_id3155830\n"
-"5\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -23098,7 +21980,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3149188\n"
-"6\n"
"help.text"
msgid "CODE(\"Text\")"
msgstr "CODE(ཚིག་ཡིག)"
@@ -23107,7 +21988,6 @@ msgstr "CODE(ཚིག་ཡིག)"
msgctxt ""
"04060110.xhp\n"
"par_id3154383\n"
-"7\n"
"help.text"
msgid "<emph>Text</emph> is the text for which the code of the first character is to be found."
msgstr "<emph> ཚིག་ཡིག་ </emph> དེ་ ཡིག་འབྲུ་དང་པའི་ཨང་རྟགས་དེ་འཐོབ་ནི་ཨིན་པའི་ཚིག་ཡིག་ཨིན།"
@@ -23116,7 +21996,6 @@ msgstr "<emph> ཚིག་ཡིག་ </emph> དེ་ ཡིག་འབྲ
msgctxt ""
"04060110.xhp\n"
"hd_id3154394\n"
-"8\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -23125,7 +22004,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3159209\n"
-"9\n"
"help.text"
msgid "<item type=\"input\">=CODE(\"Hieronymus\")</item> returns 72, <item type=\"input\">=CODE(\"hieroglyphic\")</item> returns 104."
msgstr ""
@@ -23134,7 +22012,6 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id3150280\n"
-"211\n"
"help.text"
msgid "The code used here does not refer to ASCII, but to the code table currently loaded."
msgstr "ནཱ་ལུ་ལག་ལེན་འཐབ་ཡོད་པའི་ ཨང་རྟགས་དེ་ ASCII ལུ་ གཞི་བསྟུན་འབདཝ་མེན་པར་ སྐབས་བབས་མངོན་གསལ་འབད་ཡོད་པའི་ཐིག་ཁྲམ་ཨང་རྟགས་ཨིན།"
@@ -23151,7 +22028,6 @@ msgstr "<bookmark_value>CONCATENATE ལས་འགན། </bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3149688\n"
-"167\n"
"help.text"
msgid "CONCATENATE"
msgstr "CONCATENATE"
@@ -23160,7 +22036,6 @@ msgstr "CONCATENATE"
msgctxt ""
"04060110.xhp\n"
"par_id3154524\n"
-"168\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VERKETTEN\">Combines several text strings into one string.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VERKETTEN\"> ཡིག་རྒྱུན་གཅིག་ནང་ན་ཚིག་ཡིག་ ཡིག་རྒྱུན་ལེ་ཤ་མཉམ་མཐུད་འབདཝ་ཨིན། </ahelp>"
@@ -23169,7 +22044,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VERKETTEN\"> ཡིག་རྒྱུན་གཅ
msgctxt ""
"04060110.xhp\n"
"hd_id3149542\n"
-"169\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -23178,7 +22052,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3155954\n"
-"170\n"
"help.text"
msgid "CONCATENATE(\"Text1\"; ...; \"Text30\")"
msgstr "CONCATENATE(ཚིག་ཡིག་ ༡ ;...; ཚིག་ཡིག་ ༣༠)"
@@ -23187,7 +22060,6 @@ msgstr "CONCATENATE(ཚིག་ཡིག་ ༡ ;...; ཚིག་ཡིག་
msgctxt ""
"04060110.xhp\n"
"par_id3146847\n"
-"171\n"
"help.text"
msgid "<emph>Text 1; Text 2; ...</emph> represent up to 30 text passages which are to be combined into one string."
msgstr "<emph> ཚིག་ཡིག་ ༡ ཚིག་ཡིག་ ༢ ...</emph> གིས་ ཡིག་རྒྱུན་ནང་ན་མཉམ་མཐུད་འབད་ནི་ཨིན་པའི་ ༣༠ ཚུན་གྱི་ ཚིག་ཡིག་ ཡིག་རྒྱུགས་ལེའུ་ཚན་ཁཡད་ཚབ་འབདཝ་ཨིན།"
@@ -23196,7 +22068,6 @@ msgstr "<emph> ཚིག་ཡིག་ ༡ ཚིག་ཡིག་ ༢ ...</em
msgctxt ""
"04060110.xhp\n"
"hd_id3153110\n"
-"172\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -23205,7 +22076,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3150008\n"
-"173\n"
"help.text"
msgid "<item type=\"input\">=CONCATENATE(\"Good \";\"Morning \";\"Mrs. \";\"Doe\")</item> returns: Good Morning Mrs. Doe."
msgstr ""
@@ -23222,7 +22092,6 @@ msgstr "<bookmark_value>DECIMAL ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3145166\n"
-"225\n"
"help.text"
msgid "DECIMAL"
msgstr "DECIMAL"
@@ -23231,7 +22100,6 @@ msgstr "DECIMAL"
msgctxt ""
"04060110.xhp\n"
"par_id3156361\n"
-"226\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DEZIMAL\">Converts text with characters from a <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"number system\">number system</link> to a positive integer in the base radix given.</ahelp> The radix must be in the range 2 to 36. Spaces and tabs are ignored. The <emph>Text</emph> field is not case-sensitive."
msgstr "<ahelp hid=\"HID_FUNC_DEZIMAL\"> གྲ་སྒྲིག་འབད་ཡོད་པའི་གཞི་རྟེན་རཱ་ཌིགསི་ནང་ལུ་ <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"number system\"> ཨང་གྲངས་རིམ་ལུགས་ལས་ཡི་གུ་ཚུ་དང་བཅས་པའི་ </link> ཚིག་ཡིག་དེ་ ཧྲིལ་ཨང་ཡོད་ཆ་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན། </ahelp> རཱ་ཌིགསི་དེ་ ཁྱབ་ཚད་ ༢ ལས་༣༦ ནང་འཁོད་འོང་དགོཔ་ཨིན། བར་སྟོང་ཚུ་དང་ མཆོང་ལྡེ་ཚུ་ སྣང་མེད་སྦེ་བཞག་ཡོདཔ་ཨིན། <emph> ཚིག་ཡིག་ས་སྒོ་དེ་ </emph> གནས་སྟངས་དེ་ཞིབ་རྟོགས་ཅན་མེན།(-c)"
@@ -23240,7 +22108,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DEZIMAL\"> གྲ་སྒྲིག་འབད་
msgctxt ""
"04060110.xhp\n"
"par_id3157994\n"
-"227\n"
"help.text"
msgid "If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, is disregarded. If the radix is 2, an appended b or B is disregarded. Other characters that do not belong to the number system generate an error."
msgstr "རཱ་ཌིགསི་དེ་ ༡༦ ཨིན་པ་ཅིན་ སྔོན་བསྐྱོད་ x ཡང་ན་ 0x ཡང་ན་ 0X དང་ མཇུག་བསྣོན་འབད་བའི་ h ཡང་ན་ H དེ་ བརྩི་མེདཔ་ཨིན། རཱ་ཌིགསི་ དེ་ ༢ ཨིན་པ་ཅིན་ མཇུག་བསྣོན་འབད་ཡོད་པའི་ b ཡང་ན་ B བརྩི་མེདཔ་ཨིན། ཡིག་འབྲུ་གཞན་མི་ཚུ་ འཛོལ་བ་བཟོ་བཏོན་འབད་བའི་ཨང་གྲངས་རིམ་ལུགས་ཁོངས་སུ་མི་བསྡུ་ནི་ཨིན།"
@@ -23249,7 +22116,6 @@ msgstr "རཱ་ཌིགསི་དེ་ ༡༦ ཨིན་པ་ཅིན
msgctxt ""
"04060110.xhp\n"
"hd_id3150014\n"
-"228\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -23258,7 +22124,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3154328\n"
-"229\n"
"help.text"
msgid "DECIMAL(\"Text\"; Radix)"
msgstr "DECIMAL(ཚིག་ཡིག རཱ་ཌིགསི།)"
@@ -23267,7 +22132,6 @@ msgstr "DECIMAL(ཚིག་ཡིག རཱ་ཌིགསི།)"
msgctxt ""
"04060110.xhp\n"
"par_id3150128\n"
-"230\n"
"help.text"
msgid "<emph>Text</emph> is the text to be converted. To differentiate between a hexadecimal number, such as A1 and the reference to cell A1, you must place the number in quotation marks, for example, \"A1\" or \"FACE\"."
msgstr "<emph> ཚིག་ཡིག་ </emph> དེ་ གཞི་བསྒྱུར་འབད་ནི་ཨིན་པའི་ཚིག་ཡིག་ཨིན། ཧེག་ཟ་ཌེ་སི་མཱལ་ཨང་གྲངས་ དེ་ཚུ་ཡང་ A1 དང་ནང་ཐིག་ A1 ལུ་གཞི་བསྟུན་བར་ཁྱད་པར་ཕྱེ་ནིའི་དོན་ལུ་ ཁྱོད་ཀྱིས་ ཨང་གྲངས་ཚུ་འདྲེན་ཚིག་རྟགས་ནང་བཙུགས་དགོ་ དཔེ་འབད་བ་ཅིན་ \"A1\" ཡང་ན་ \"FACE\" བཟུམ་ཨིན།"
@@ -23276,7 +22140,6 @@ msgstr "<emph> ཚིག་ཡིག་ </emph> དེ་ གཞི་བསྒ
msgctxt ""
"04060110.xhp\n"
"par_id3145241\n"
-"231\n"
"help.text"
msgid "<emph>Radix</emph> indicates the base of the number system. It may be any positive integer between 2 and 36."
msgstr "<emph> རཱ་ཌིགསི་ </emph> གིས་ ཨང་གྲངས་རིམ་ལུགས་ཀྱི་གཞི་རྟེན་བརྡ་སྟོནམ་ཨིན། དེ་ཡང་ ༢ དང་ ༣༦ བར་གྱི་ ཧྲིལ་ཨང་ཡོད་ཆ་གང་རུང་ཡོད་རུང་བཏུབ།"
@@ -23285,7 +22148,6 @@ msgstr "<emph> རཱ་ཌིགསི་ </emph> གིས་ ཨང་གྲ
msgctxt ""
"04060110.xhp\n"
"hd_id3156062\n"
-"232\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -23294,7 +22156,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3145355\n"
-"233\n"
"help.text"
msgid "<item type=\"input\">=DECIMAL(\"17\";10)</item> returns 17."
msgstr ""
@@ -23303,7 +22164,6 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id3155622\n"
-"234\n"
"help.text"
msgid "<item type=\"input\">=DECIMAL(\"FACE\";16)</item> returns 64206."
msgstr ""
@@ -23312,7 +22172,6 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id3151015\n"
-"235\n"
"help.text"
msgid "<item type=\"input\">=DECIMAL(\"0101\";2)</item> returns 5."
msgstr ""
@@ -23329,7 +22188,6 @@ msgstr "<bookmark_value>DOLLAR ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3148402\n"
-"11\n"
"help.text"
msgid "DOLLAR"
msgstr "DOLLAR"
@@ -23338,7 +22196,6 @@ msgstr "DOLLAR"
msgctxt ""
"04060110.xhp\n"
"par_id3153049\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DM\">Converts a number to an amount in the currency format, rounded to a specified decimal place.</ahelp> In the <item type=\"literal\">Value</item> field enter the number to be converted to currency. Optionally, you may enter the number of decimal places in the <item type=\"literal\">Decimals</item> field. If no value is specified, all numbers in currency format will be displayed with two decimal places."
msgstr "<ahelp hid=\"HID_FUNC_DM\"> གསལ་བཀོད་འབད་ཡོད་པའི་བཅུ་ཚག་ཚ་གནས་ལུ་སྡེ་ཚན་བཟོ་བའི་དངུལ་རྩ་སྒྲིག་ནང་ལུ་ ཨང་གྲངས་དེ་དངུལ་བསྡོམས་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན། </ahelp> གནས་གོང་ <emph> ས་སྒོ་ནང་ལུ་ </emph> དངུལ་གཞི་བསྒྱུར་འབད་ནི་ཨིན་པའི་ཨང་གྲངས་བཙུགས། གདམ་ཁ་དང་འཁྲིལ་ཏེ་ ཁྱོད་ཀྱིས་ <emph> བཅུ་ཚག་ས་སྒོ་ཚུ་ནང་ </emph> བཅུ་ཚག་ཚ་གནས་ཚུའི་གྱངས་ཁ་བཙུགས་ཚུགསཔ་ཨིན། གནས་གོང་གང་ཡང་གསལ་བཀོད་འབད་དེ་མེད་པ་ཅིན་ དངུལ་རྩ་སྒྲིག་ནང་ཡོད་པའི་ཨང་གྲངས་ཚུ་ཆ་མཉམ་རང་ བཅུ་ཚག་ས་གནས་གཉིས་དང་བཅསཔ་སྦེ་བཀྲམ་སྟོན་འབད་ཡོདཔ་ཨིན།"
@@ -23347,7 +22204,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DM\"> གསལ་བཀོད་འབད་ཡ
msgctxt ""
"04060110.xhp\n"
"par_id3151280\n"
-"263\n"
"help.text"
msgid "You set the currency format in your system settings."
msgstr "ཁྱོད་རའི་ རིམ་ལུགས་སྒྲིག་སྟངས་ཚུ་ནང་ དངུལ་རྩ་སྒྲིག་གཞི་སྒྲིག་འབད།"
@@ -23356,7 +22212,6 @@ msgstr "ཁྱོད་རའི་ རིམ་ལུགས་སྒྲིག
msgctxt ""
"04060110.xhp\n"
"hd_id3150569\n"
-"13\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -23365,7 +22220,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3154188\n"
-"14\n"
"help.text"
msgid "DOLLAR(Value; Decimals)"
msgstr "DOLLAR(གནས་གོང་; བཅུ་ཚག་ཚུ།)"
@@ -23374,7 +22228,6 @@ msgstr "DOLLAR(གནས་གོང་; བཅུ་ཚག་ཚུ།)"
msgctxt ""
"04060110.xhp\n"
"par_id3145299\n"
-"15\n"
"help.text"
msgid "<emph>Value</emph> is a number, a reference to a cell containing a number, or a formula which returns a number."
msgstr "<emph> གསན་གོང་དེ་ </emph> ཨང་གྲངས་ ཡང་ན་ ནང་ན་ཨང་གྲངས་ཤེམ་ཏེ་ཡོད་པའི་ནང་ཐིག་ལུ་གཞི་བསྟུན་ནམ་ ཨང་གྲངས་སླར་ལོག་འབད་བའི་མན་ངག་ཨིན།"
@@ -23383,7 +22236,6 @@ msgstr "<emph> གསན་གོང་དེ་ </emph> ཨང་གྲངས
msgctxt ""
"04060110.xhp\n"
"par_id3145629\n"
-"16\n"
"help.text"
msgid "<emph>Decimals</emph> is the optional number of decimal places."
msgstr "<emph> བཅུ་ཚག་ཚུ་ </emph> བཅུ་ཚག་ས་གནས་ཚུའི་ གདམ་ཁ་ཨང་གྲངས་ཨིན།"
@@ -23392,7 +22244,6 @@ msgstr "<emph> བཅུ་ཚག་ཚུ་ </emph> བཅུ་ཚག་ས
msgctxt ""
"04060110.xhp\n"
"hd_id3149030\n"
-"17\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -23401,7 +22252,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3153546\n"
-"18\n"
"help.text"
msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00."
msgstr ""
@@ -23410,7 +22260,6 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id3154635\n"
-"19\n"
"help.text"
msgid "<item type=\"input\">=DOLLAR(367.456;2)</item> returns $367.46. Use the decimal separator that corresponds to the <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link>."
msgstr "DOLLAR(367.456;2) གིས་ $367.46 སླར་ལོག་འབདཝ་ཨིན། <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\"> ད་ལྟོའི་ལོ་ཀེལ་སྒྲིག་སྟངས་ལུ་ </link> མཚུངས་པའི་ བཅུ་ཚག་དབྱེ་བྱེད་ལག་ལེན་འཐབ་ཨིན།"
@@ -23427,7 +22276,6 @@ msgstr "<bookmark_value>EXACT ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3150685\n"
-"78\n"
"help.text"
msgid "EXACT"
msgstr "EXACT"
@@ -23436,7 +22284,6 @@ msgstr "EXACT"
msgctxt ""
"04060110.xhp\n"
"par_id3158413\n"
-"79\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_IDENTISCH\">Compares two text strings and returns TRUE if they are identical.</ahelp> This function is case-sensitive."
msgstr "<ahelp hid=\"HID_FUNC_IDENTISCH\"> ཡིག་རྒྱུན་གཉིས་ག་བསྡུར་འབད་བཞིནམ་ལས་ དེ་ཚུ་དབྱེར་མེད་ཨིན་པ་ཅིན་ TRUE སླར་ལོག་འབདཝ་ཨིན། </ahelp> འ་ནི་ལས་འགན་དེ་ གནས་སྟངས་ཞིབ་རྟོགས་ཅན་ཨིན།(-s)"
@@ -23445,7 +22292,6 @@ msgstr "<ahelp hid=\"HID_FUNC_IDENTISCH\"> ཡིག་རྒྱུན་གཉ
msgctxt ""
"04060110.xhp\n"
"hd_id3152817\n"
-"80\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -23454,7 +22300,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3148594\n"
-"81\n"
"help.text"
msgid "EXACT(\"Text1\"; \"Text2\")"
msgstr ""
@@ -23463,7 +22308,6 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id3153224\n"
-"82\n"
"help.text"
msgid "<emph>Text1</emph> refers to the first text to compare."
msgstr "<emph>text_1</emph> དེ་ ག་བསྡུར་འབད་ནི་ཨིན་པའི་ ཚིག་ཡིག་དང་པམ་ལུ་གཞི་བསྟུན་འབདཝ་ཨིན།"
@@ -23472,7 +22316,6 @@ msgstr "<emph>text_1</emph> དེ་ ག་བསྡུར་འབད་ནི
msgctxt ""
"04060110.xhp\n"
"par_id3148637\n"
-"83\n"
"help.text"
msgid "<emph>Text2</emph> is the second text to compare."
msgstr "<emph>text_2</emph> དེ་ ག་བསྡུར་འབད་ནི་ཨིན་པའི་ ཚིག་ཡིག་གཉིས་པམ་ཨིན།"
@@ -23481,7 +22324,6 @@ msgstr "<emph>text_2</emph> དེ་ ག་བསྡུར་འབད་ནི
msgctxt ""
"04060110.xhp\n"
"hd_id3149777\n"
-"84\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -23490,7 +22332,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3156263\n"
-"85\n"
"help.text"
msgid "<item type=\"input\">=EXACT(\"microsystems\";\"Microsystems\")</item> returns FALSE."
msgstr ""
@@ -23507,7 +22348,6 @@ msgstr "<bookmark_value>FIND ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3152589\n"
-"44\n"
"help.text"
msgid "FIND"
msgstr "FIND"
@@ -23516,16 +22356,14 @@ msgstr "FIND"
msgctxt ""
"04060110.xhp\n"
"par_id3146149\n"
-"45\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FINDEN\">Looks for a string of text within another string.</ahelp> You can also define where to begin the search. The search term can be a number or any string of characters. The search is case-sensitive."
-msgstr "<ahelp hid=\"HID_FUNC_FINDEN\"> ཡིག་རྒྱུནགཞན་མི་གི་ནང་འཁོད་ཚིག་ཡིག་གི་ ཡིག་རྒྱུན་ལུ་ལྟཝ་ཨིན། </ahelp> ཁྱོད་ཀྱིས་ འཚོལ་ཞི་དེ་ ག་སྟེ་ལས་འགོ་བཙུགས་ནི་ཨིན་ན་ཡང་ ངེས་འཛིན་འབད་ཚུགསཔ་ཨིན། འཚོལ་ཞིབ་ཐ་སྙད་དེ་ཨང་གྲངས་སམ་ ཡིག་འབྲུའི་ཡིག་རྒྱུན་འོངམ་ཨིན། འཚོལ་ཞིབ་དེ་ གནས་སྟངས་ཞིབ་རྟོགས་ཅན་ཨིན།(-s)"
+msgid "<ahelp hid=\"HID_FUNC_FINDEN\">Returns the position of a string of text within another string.</ahelp>You can also define where to begin the search. The search term can be a number or any string of characters. The search is case-sensitive."
+msgstr ""
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"hd_id3083284\n"
-"46\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -23534,7 +22372,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3083452\n"
-"47\n"
"help.text"
msgid "FIND(\"FindText\"; \"Text\"; Position)"
msgstr "SEARCH(find_text; text; position)"
@@ -23543,7 +22380,6 @@ msgstr "SEARCH(find_text; text; position)"
msgctxt ""
"04060110.xhp\n"
"par_id3150608\n"
-"48\n"
"help.text"
msgid "<emph>FindText</emph> refers to the text to be found."
msgstr "<emph>འཚོལ་_ཚིག་ཡིག་</emph> དེ་ འཐོབ་ནི་ཨིན་པའི་ཚིག་ཡིག་ལུ་གཞི་བསྟུན་འབདཝ་ཨིན།"
@@ -23552,7 +22388,6 @@ msgstr "<emph>འཚོལ་_ཚིག་ཡིག་</emph> དེ་ འཐ
msgctxt ""
"04060110.xhp\n"
"par_id3152374\n"
-"49\n"
"help.text"
msgid "<emph>Text</emph> is the text where the search takes place."
msgstr "<emph> ཚིག་ཡིག་ </emph> དེ་ འཚོལ་ཞིབ་དེ་འབད་བའི་ཚིག་ཡིག་ཨིན།"
@@ -23561,7 +22396,6 @@ msgstr "<emph> ཚིག་ཡིག་ </emph> དེ་ འཚོལ་ཞི
msgctxt ""
"04060110.xhp\n"
"par_id3152475\n"
-"50\n"
"help.text"
msgid "<emph>Position</emph> (optional) is the position in the text from which the search starts."
msgstr "<emph> གནས་ས་ </emph> (གདམ་ཁ་ཅན་) དེ་ འཚོལ་ཞིབ་འགོ་བཙུགས་པའི་ ཚིག་ཡིག་ནང་གི་གནས་ས་ཨིན།"
@@ -23570,7 +22404,6 @@ msgstr "<emph> གནས་ས་ </emph> (གདམ་ཁ་ཅན་) དེ
msgctxt ""
"04060110.xhp\n"
"hd_id3154812\n"
-"51\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -23579,7 +22412,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3156375\n"
-"52\n"
"help.text"
msgid "<item type=\"input\">=FIND(76;998877665544)</item> returns 6."
msgstr ""
@@ -23596,7 +22428,6 @@ msgstr "<bookmark_value>FIXED ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3149268\n"
-"34\n"
"help.text"
msgid "FIXED"
msgstr "FIXED"
@@ -23605,7 +22436,6 @@ msgstr "FIXED"
msgctxt ""
"04060110.xhp\n"
"par_id3155833\n"
-"35\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_FEST\">དེ་གིས་ ཨང་གྲངས་འདི་ཚུ་བཅུ་ཚག་གནས་ས་ཚུ་དང་ གདམ་ཁ་ཅན་གྱི་དབྱེ་བྱེད་སྟོང་ཕྲག་ཚུ་གི་ཨང་གྲངས་གསལ་བཀོད་འབད་ཡོད་མི་ཅིག་དང་ཅིག་ཁར་ ཨང་གྲངས་ཅིག་སླར་ལོག་འབདཝ་ཨིན།</ahelp>"
@@ -23614,7 +22444,6 @@ msgstr "<ahelp hid=\"HID_FUNC_FEST\">དེ་གིས་ ཨང་གྲང
msgctxt ""
"04060110.xhp\n"
"hd_id3152470\n"
-"36\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -23623,7 +22452,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
-"37\n"
"help.text"
msgid "FIXED(Number; Decimals; NoThousandsSeparators)"
msgstr "FIXED(ཨང་། བཅུ་ཚག་ཚུ། སྟོང་དབྱེ་བྱེད་ཚུ་མེདཔ།)"
@@ -23632,7 +22460,6 @@ msgstr "FIXED(ཨང་། བཅུ་ཚག་ཚུ། སྟོང་དབ
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
-"38\n"
"help.text"
msgid "<emph>Number</emph> refers to the number to be formatted."
msgstr "<emph> ཨང་ </emph> འདི་ རྩ་སྒྲིག་འབད་ནི་ཨིན་པའི་ཨང་ལུ་གཞི་བསྟུན་འབདཝ་ཨིན།"
@@ -23641,7 +22468,6 @@ msgstr "<emph> ཨང་ </emph> འདི་ རྩ་སྒྲིག་འབ
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
-"39\n"
"help.text"
msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
msgstr "<emph> བཅུ་ཚག་ཚུ་ </emph> བཀྲམ་སྟོན་འབད་ནི་ཨིན་པའི་ བཅུ་ཚག་ས་གནས་ཚུའི་གྱངས་ཁ་ལུ་ གཞི་བསྟུན་འབདཝ་ཨིན།"
@@ -23650,7 +22476,6 @@ msgstr "<emph> བཅུ་ཚག་ཚུ་ </emph> བཀྲམ་སྟོ
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
-"40\n"
"help.text"
msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
msgstr "<emph> སྟོང་ཕྲག་དབྱེ་བྱེད་ (གདམ་ཁ་ཅན་) ཚུ་ག་གིས་ཡང་ དབྱེ་བྱེད་སྟོང་ཕྲག་ཚུ་ལག་ལེན་འཐབ་ཡོད་མེད་ </emph> གཏན་འབེབས་བཟོ་ནི་མེདཔ་ཨིན། ཚད་བཟུང་དེ་ ༠ དང་མ་མཉམ་མི་ཨང་གྲངས་ཨིན་པ་ཅིན་ དབྱེ་བྱེད་སྟོང་ཕྲག་ཚུ་ མར་མནོན་འབད་ཡོདཔ་ཨིན། ཚད་བཟུང་དེ་ ༠ དང་མཉམ་པའམ་དེ་བརླག་སྟོར་ཞུགས་ཡོད་པ་ཅིན་ ཁྱོད་རའི་ <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\"> ད་ལྟོའི་ལོ་ཀེལ་སྒྲིག་སྟངས་ཀྱི་ </link> དབྱེ་བྱེད་སྟོང་ཕྲག་ཚུ་བཀྲམ་སྟོན་འབད་ཡོདཔ་ཨིན།"
@@ -23659,7 +22484,6 @@ msgstr "<emph> སྟོང་ཕྲག་དབྱེ་བྱེད་ (གད
msgctxt ""
"04060110.xhp\n"
"hd_id3149040\n"
-"41\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -23668,7 +22492,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3145208\n"
-"42\n"
"help.text"
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr ""
@@ -23757,7 +22580,6 @@ msgstr "<bookmark_value>LEFT ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3147083\n"
-"95\n"
"help.text"
msgid "LEFT"
msgstr "LEFT"
@@ -23766,7 +22588,6 @@ msgstr "LEFT"
msgctxt ""
"04060110.xhp\n"
"par_id3153622\n"
-"96\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LINKS\">Returns the first character or characters of a text.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LINKS\">ཡིག་འབྲུ་དང་པ་ཡང་ན་ ཚིག་ཡིག་གི་ཡིག་འབྲུ་ཚུ་སླར་ལོག་འབདཝ་ཨིན།</ahelp>"
@@ -23775,7 +22596,6 @@ msgstr "<ahelp hid=\"HID_FUNC_LINKS\">ཡིག་འབྲུ་དང་པ་
msgctxt ""
"04060110.xhp\n"
"hd_id3156116\n"
-"97\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -23784,7 +22604,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3146786\n"
-"98\n"
"help.text"
msgid "LEFT(\"Text\"; Number)"
msgstr "LEFT(ཚིག་ཡིག་; ཨང་།)"
@@ -23793,7 +22612,6 @@ msgstr "LEFT(ཚིག་ཡིག་; ཨང་།)"
msgctxt ""
"04060110.xhp\n"
"par_id3147274\n"
-"99\n"
"help.text"
msgid "<emph>Text</emph> is the text where the initial partial words are to be determined."
msgstr "<emph> ཚིག་ཡིག་འདི་ </emph> འགོ་ཐོག་ཆ་ཤས་མིང་ཚིག་ཚུ་ གཏན་འབེབ་བཟོ་ནི་ཡོད་པའི་ ཚིག་ཡིག་ཨིན།"
@@ -23802,7 +22620,6 @@ msgstr "<emph> ཚིག་ཡིག་འདི་ </emph> འགོ་ཐོ
msgctxt ""
"04060110.xhp\n"
"par_id3153152\n"
-"100\n"
"help.text"
msgid "<emph>Number</emph> (optional) specifies the number of characters for the start text. If this parameter is not defined, one character is returned."
msgstr "<emph> ཨང་ </emph> (གདམ་ཁ་ཅན་) གྱིས་ ཚིག་ཡིག་འགོ་བཙུགས་དོན་ལུ་ ཡིག་འབྲུའི་གྱངས་ཁ་ གསལ་བཀོད་འབདཝ་ཨིན། འ་ནི་ཚད་བཟུང་འདི་ ངེས་འཛིན་འབད་དེ་མེད་པ་ཅིན་ ཡིག་འབྲུ་གཅིག་སླར་ལོག་འབད་ཡོདཔ་ཨིན།"
@@ -23811,7 +22628,6 @@ msgstr "<emph> ཨང་ </emph> (གདམ་ཁ་ཅན་) གྱིས་
msgctxt ""
"04060110.xhp\n"
"hd_id3150260\n"
-"101\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -23820,13 +22636,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3149141\n"
-"102\n"
"help.text"
msgid "<item type=\"input\">=LEFT(\"output\";3)</item> returns “out”."
msgstr ""
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"bm_id2947083\n"
@@ -23835,63 +22649,52 @@ msgid "<bookmark_value>LEFTB function</bookmark_value>"
msgstr "<bookmark_value>LEFT ལས་འགན།</bookmark_value>"
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"hd_id2947083\n"
-"95\n"
"help.text"
msgid "LEFTB"
-msgstr "LEFT"
+msgstr ""
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id2953622\n"
-"96\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LEFTB\">Returns the first characters of a DBCS text.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_LINKS\">ཡིག་འབྲུ་དང་པ་ཡང་ན་ ཚིག་ཡིག་གི་ཡིག་འབྲུ་ཚུ་སླར་ལོག་འབདཝ་ཨིན།</ahelp>"
+msgstr ""
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"hd_id2956116\n"
-"97\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id2946786\n"
-"98\n"
"help.text"
msgid "LEFTB(\"Text\"; Number_bytes)"
-msgstr "RIGHT(ཚིག་ཡིག་; ཨང་།)"
+msgstr ""
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id2947274\n"
-"99\n"
"help.text"
msgid "<emph>Text</emph> is the text where the initial partial words are to be determined."
-msgstr "<emph> ཚིག་ཡིག་འདི་ </emph> འགོ་ཐོག་ཆ་ཤས་མིང་ཚིག་ཚུ་ གཏན་འབེབ་བཟོ་ནི་ཡོད་པའི་ ཚིག་ཡིག་ཨིན།"
+msgstr ""
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id2953152\n"
-"100\n"
"help.text"
msgid "<emph>Number_bytes</emph> (optional) specifies the number of characters you want LEFTB to extract, based on bytes. If this parameter is not defined, one character is returned."
-msgstr "<emph> ཨང་ </emph> (གདམ་ཁ་ཅན་) གྱིས་ ཚིག་ཡིག་འགོ་བཙུགས་དོན་ལུ་ ཡིག་འབྲུའི་གྱངས་ཁ་ གསལ་བཀོད་འབདཝ་ཨིན། འ་ནི་ཚད་བཟུང་འདི་ ངེས་འཛིན་འབད་དེ་མེད་པ་ཅིན་ ཡིག་འབྲུ་གཅིག་སླར་ལོག་འབད་ཡོདཔ་ཨིན།"
+msgstr ""
#: 04060110.xhp
msgctxt ""
@@ -23953,7 +22756,6 @@ msgstr "<bookmark_value>LEN ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3156110\n"
-"104\n"
"help.text"
msgid "LEN"
msgstr "LEN"
@@ -23962,7 +22764,6 @@ msgstr "LEN"
msgctxt ""
"04060110.xhp\n"
"par_id3150147\n"
-"105\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LAENGE\">Returns the length of a string including spaces.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LAENGE\"> བར་སྟོང་ཚུ་གྲངས་སུ་བཙུགས་ཏེ་ ཡིག་རྒྱུན་གྱི་ རིང་ཚད་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -23971,7 +22772,6 @@ msgstr "<ahelp hid=\"HID_FUNC_LAENGE\"> བར་སྟོང་ཚུ་གྲ
msgctxt ""
"04060110.xhp\n"
"hd_id3155108\n"
-"106\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -23980,7 +22780,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3154063\n"
-"107\n"
"help.text"
msgid "LEN(\"Text\")"
msgstr "CLEAN(ཚིག་ཡིག)"
@@ -23989,7 +22788,6 @@ msgstr "CLEAN(ཚིག་ཡིག)"
msgctxt ""
"04060110.xhp\n"
"par_id3146894\n"
-"108\n"
"help.text"
msgid "<emph>Text</emph> is the text whose length is to be determined."
msgstr "<emph> ཚིག་ཡིག་འདི་ </emph> རིང་ཚད་གཏན་འབེབ་བཟོ་ནི་ཨིན་པའི་ ཚིག་ཡིག་ཨིན།"
@@ -23998,7 +22796,6 @@ msgstr "<emph> ཚིག་ཡིག་འདི་ </emph> རིང་ཚད
msgctxt ""
"04060110.xhp\n"
"hd_id3153884\n"
-"109\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -24007,7 +22804,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3156008\n"
-"110\n"
"help.text"
msgid "<item type=\"input\">=LEN(\"Good Afternoon\")</item> returns 14."
msgstr ""
@@ -24016,13 +22812,11 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id3154300\n"
-"111\n"
"help.text"
msgid "<item type=\"input\">=LEN(12345.67)</item> returns 8."
msgstr ""
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"bm_id2956110\n"
@@ -24031,20 +22825,17 @@ msgid "<bookmark_value>LENB function</bookmark_value>"
msgstr "<bookmark_value>LEN ལས་འགན།</bookmark_value>"
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"hd_id2956110\n"
-"104\n"
"help.text"
msgid "LENB"
-msgstr "LEN"
+msgstr ""
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id2950147\n"
-"105\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LENB\">For double-byte character set (DBCS) languages, returns the number of bytes used to represent the characters in a text string.</ahelp>"
msgstr ""
@@ -24053,26 +22844,22 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"hd_id2955108\n"
-"106\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id2954063\n"
-"107\n"
"help.text"
msgid "LENB(\"Text\")"
-msgstr "CLEAN(ཚིག་ཡིག)"
+msgstr ""
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id2946894\n"
-"108\n"
"help.text"
msgid "<emph>Text</emph> is the text whose length is to be determined."
msgstr "<emph> ཚིག་ཡིག་འདི་ </emph> རིང་ཚད་གཏན་འབེབ་བཟོ་ནི་ཨིན་པའི་ ཚིག་ཡིག་ཨིན།"
@@ -24113,7 +22900,6 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id2956008\n"
-"110\n"
"help.text"
msgid "<item type=\"input\">=LENB(\"Good Afternoon\")</item> returns 14."
msgstr ""
@@ -24122,7 +22908,6 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id2954300\n"
-"111\n"
"help.text"
msgid "<item type=\"input\">=LENB(12345.67)</item> returns 8."
msgstr ""
@@ -24139,7 +22924,6 @@ msgstr "<bookmark_value>LOWER ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3153983\n"
-"87\n"
"help.text"
msgid "LOWER"
msgstr "LOWER"
@@ -24148,7 +22932,6 @@ msgstr "LOWER"
msgctxt ""
"04060110.xhp\n"
"par_id3152791\n"
-"88\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KLEIN\">Converts all uppercase letters in a text string to lowercase.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KLEIN\"> ཚིག་ཡིག་ཡིག་རྒྱུན་ནང་གི་ ཚུགས་ཡིག་ཚུ་མགྱོགས་ཡིག་ནང་གཞི་བསྒྱུར་འབདཝ་ཨིན། </ahelp>"
@@ -24157,7 +22940,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KLEIN\"> ཚིག་ཡིག་ཡིག་ར
msgctxt ""
"04060110.xhp\n"
"hd_id3155902\n"
-"89\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -24166,7 +22948,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3150121\n"
-"90\n"
"help.text"
msgid "LOWER(\"Text\")"
msgstr "LOWER(ཚིག་ཡིག)"
@@ -24175,7 +22956,6 @@ msgstr "LOWER(ཚིག་ཡིག)"
msgctxt ""
"04060110.xhp\n"
"par_id3153910\n"
-"91\n"
"help.text"
msgid "<emph>Text</emph> refers to the text to be converted."
msgstr "<emph> ཚིག་ཡིག་ </emph> འདི་ གཞི་བསྒྱུར་འབད་ནི་ཨིན་པའི་ ཚིག་ཡིག་ལུ་གཞི་བསྟུན་འབདཝ་ཨིན།"
@@ -24184,7 +22964,6 @@ msgstr "<emph> ཚིག་ཡིག་ </emph> འདི་ གཞི་བས
msgctxt ""
"04060110.xhp\n"
"hd_id3159343\n"
-"92\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -24193,7 +22972,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3155329\n"
-"93\n"
"help.text"
msgid "<item type=\"input\">=LOWER(\"Sun\")</item> returns sun."
msgstr ""
@@ -24210,7 +22988,6 @@ msgstr "<bookmark_value>MID ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3154589\n"
-"148\n"
"help.text"
msgid "MID"
msgstr "MID"
@@ -24219,7 +22996,6 @@ msgstr "MID"
msgctxt ""
"04060110.xhp\n"
"par_id3154938\n"
-"149\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TEIL\">Returns a text string of a text. The parameters specify the starting position and the number of characters.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TEIL\">དེ་གིས་ ཚིག་ཡིག་གི་ཚིག་ཡིག་ཡིག་རྒྱུན་ཅིག་སླར་ལོག་འབདཝ་ཨིན། ཚད་བཟུང་དེ་གིས་འགོ་བཙུག་པའི་གནས་ས་དང་ཡིག་འབྲུ་ཚུ་གི་ཨང་གྲངས་འདི་གསལ་བཀོད་འབདཝ་ཨིན།</ahelp>"
@@ -24228,7 +23004,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TEIL\">དེ་གིས་ ཚིག་ཡི
msgctxt ""
"04060110.xhp\n"
"hd_id3148829\n"
-"150\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -24237,7 +23012,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3150526\n"
-"151\n"
"help.text"
msgid "MID(\"Text\"; Start; Number)"
msgstr "MID(ཚིག་ཡིག་; འགོ་བཙུགས་; ཨང་།)"
@@ -24246,7 +23020,6 @@ msgstr "MID(ཚིག་ཡིག་; འགོ་བཙུགས་; ཨང་
msgctxt ""
"04060110.xhp\n"
"par_id3148820\n"
-"152\n"
"help.text"
msgid "<emph>Text</emph> is the text containing the characters to extract."
msgstr "<emph> ཚིག་ཡིག་ </emph> འདི་ ནང་ན་ ཕྱིར་འདོན་འབད་ནིའི་ཡིག་འབྲུ་ཚུ་ཤོམ་ཏེ་ཡོད་པའི་ ཚིག་ཡིག་ཨིན།"
@@ -24255,7 +23028,6 @@ msgstr "<emph> ཚིག་ཡིག་ </emph> འདི་ ནང་ན་ ཕ
msgctxt ""
"04060110.xhp\n"
"par_id3150774\n"
-"153\n"
"help.text"
msgid "<emph>Start</emph> is the position of the first character in the text to extract."
msgstr "<emph> འགོ་བཙུགས་ </emph> འདི་ ཚིག་ཡིག་ནང་ ཕྱིར་འདོན་འབད་ནིའི་ གནས་ས་གི་ཡིག་འབྲུ་དང་པམ་ཨིན།"
@@ -24264,7 +23036,6 @@ msgstr "<emph> འགོ་བཙུགས་ </emph> འདི་ ཚིག་
msgctxt ""
"04060110.xhp\n"
"par_id3153063\n"
-"154\n"
"help.text"
msgid "<emph>Number</emph> specifies the number of characters in the part of the text."
msgstr "<emph> ཨང་ </emph> གིས་ ཚིག་ཡིག་ཡན་ལག་ནང་ཡོད་པའི་ཡིག་འབྲུ་ཚུའི་གྱངས་ཁ་གསལ་བཀོད་འབདཝ་ཨིན།"
@@ -24273,7 +23044,6 @@ msgstr "<emph> ཨང་ </emph> གིས་ ཚིག་ཡིག་ཡན་
msgctxt ""
"04060110.xhp\n"
"hd_id3150509\n"
-"155\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -24282,13 +23052,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3158407\n"
-"156\n"
"help.text"
msgid "<item type=\"input\">=MID(\"office\";2;2)</item> returns ff."
msgstr ""
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"bm_id2954589\n"
@@ -24297,68 +23065,57 @@ msgid "<bookmark_value>MIDB function</bookmark_value>"
msgstr "<bookmark_value>MID ལས་འགན།</bookmark_value>"
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"hd_id2954589\n"
-"148\n"
"help.text"
msgid "MIDB"
-msgstr "MID"
+msgstr ""
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id2954938\n"
-"149\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MIDB\">Returns a text string of a DBCS text. The parameters specify the starting position and the number of characters.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TEIL\">དེ་གིས་ ཚིག་ཡིག་གི་ཚིག་ཡིག་ཡིག་རྒྱུན་ཅིག་སླར་ལོག་འབདཝ་ཨིན། ཚད་བཟུང་དེ་གིས་འགོ་བཙུག་པའི་གནས་ས་དང་ཡིག་འབྲུ་ཚུ་གི་ཨང་གྲངས་འདི་གསལ་བཀོད་འབདཝ་ཨིན།</ahelp>"
+msgstr ""
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"hd_id2948829\n"
-"150\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id2950526\n"
-"151\n"
"help.text"
msgid "MIDB(\"Text\"; Start; Number_bytes)"
-msgstr "MID(ཚིག་ཡིག་; འགོ་བཙུགས་; ཨང་།)"
+msgstr ""
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id2948820\n"
-"152\n"
"help.text"
msgid "<emph>Text</emph> is the text containing the characters to extract."
msgstr "<emph> ཚིག་ཡིག་ </emph> འདི་ ནང་ན་ ཕྱིར་འདོན་འབད་ནིའི་ཡིག་འབྲུ་ཚུ་ཤོམ་ཏེ་ཡོད་པའི་ ཚིག་ཡིག་ཨིན།"
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id2950774\n"
-"153\n"
"help.text"
msgid "<emph>Start</emph> is the position of the first character in the text to extract."
-msgstr "<emph> འགོ་བཙུགས་ </emph> འདི་ ཚིག་ཡིག་ནང་ ཕྱིར་འདོན་འབད་ནིའི་ གནས་ས་གི་ཡིག་འབྲུ་དང་པམ་ཨིན།"
+msgstr ""
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id2953063\n"
-"154\n"
"help.text"
msgid "<emph>Number_bytes</emph> specifies the number of characters MIDB will return from text, in bytes."
msgstr ""
@@ -24471,7 +23228,6 @@ msgstr "<bookmark_value>PROPER ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3159143\n"
-"70\n"
"help.text"
msgid "PROPER"
msgstr "PROPER"
@@ -24480,7 +23236,6 @@ msgstr "PROPER"
msgctxt ""
"04060110.xhp\n"
"par_id3149768\n"
-"71\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GROSS2\">Capitalizes the first letter in all words of a text string.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GROSS2\"> ཚིག་ཡིག་ཡིག་རྒྱུན་གྱི་ མིང་ཚིག་ཚུ་ཆ་མཉམ་ནང་ཡིག་གུ་དང་པམ་དེ་ཚུགས་ཡིག་བཟོཝ་ཨིན།</ahelp>"
@@ -24489,7 +23244,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GROSS2\"> ཚིག་ཡིག་ཡིག་ར
msgctxt ""
"04060110.xhp\n"
"hd_id3153573\n"
-"72\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -24498,7 +23252,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3154260\n"
-"73\n"
"help.text"
msgid "PROPER(\"Text\")"
msgstr "PROPER(ཚིག་ཡིག)"
@@ -24507,7 +23260,6 @@ msgstr "PROPER(ཚིག་ཡིག)"
msgctxt ""
"04060110.xhp\n"
"par_id3147509\n"
-"74\n"
"help.text"
msgid "<emph>Text</emph> refers to the text to be converted."
msgstr "<emph> ཚིག་ཡིག་ </emph> འདི་ གཞི་བསྒྱུར་འབད་ནི་ཨིན་པའི་ ཚིག་ཡིག་ལུ་གཞི་བསྟུན་འབདཝ་ཨིན།"
@@ -24516,7 +23268,6 @@ msgstr "<emph> ཚིག་ཡིག་ </emph> འདི་ གཞི་བས
msgctxt ""
"04060110.xhp\n"
"hd_id3147529\n"
-"75\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -24525,7 +23276,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3155364\n"
-"76\n"
"help.text"
msgid "<item type=\"input\">=PROPER(\"open office\")</item> returns Open Office."
msgstr ""
@@ -24542,7 +23292,6 @@ msgstr "<bookmark_value>REPLACE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3149171\n"
-"22\n"
"help.text"
msgid "REPLACE"
msgstr "REPLACE"
@@ -24551,7 +23300,6 @@ msgstr "REPLACE"
msgctxt ""
"04060110.xhp\n"
"par_id3148925\n"
-"23\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ERSETZEN\">Replaces part of a text string with a different text string.</ahelp> This function can be used to replace both characters and numbers (which are automatically converted to text). The result of the function is always displayed as text. If you intend to perform further calculations with a number which has been replaced by text, you will need to convert it back to a number using the <link href=\"text/scalc/01/04060110.xhp\" name=\"VALUE\">VALUE</link> function."
msgstr "<ahelp hid=\"HID_FUNC_ERSETZEN\"> ཚིག་ཡིག་ ཡིག་རྒྱུན་གྱི་ ཆ་ཤས་གཅིག་ ཚིག་ཡིག་ ཡིག་རྒྱུན་སོ་སོར་གཅིག་དང་གཅིག་ཁར་ཚབ་བཙུགས་འབདཝ་ཨིན། </ahelp> འ་ནི་ལས་འགན་དེ་ ཡིག་འབྲུ་དང་ཨང་གྲངས་ཚུ་གཉིས་ཆ་རང་ཚབ་བཙུགས་འད་ནིའི་དོན་ལུ་ ལག་ལེན་འཐབ་བཏུབ་ཨིན། (རང་བཞིན་གྱིས་ཚིག་ཡིག་ལུ་གཞི་བསྒྱུར་འབད་ཡོད་མི་ཚུ།) ལས་འགན་གྱི་གྲུབ་འབྲས་དེ་ ཨ་རྟག་རང་ ཚིག་ཡིག་སྦེ་བཀྲམ་སྟོན་འབད་ཡོདཔ་ཨིན། ཁྱོད་ཀྱིས་ ཚིག་ཡིག་གིས་ཚབ་བཙུགས་འབདཡོདཔའི་ཨང་གྲངས་དང་གཅིག་ཁར་ཧེང་སྐལ་རང་ ལཱ་འགན་འགྲུབ་ནི་མནོ་བ་ཅིན་ ཁྱོད་ཀྱིས་ <link href=\"text/scalc/01/04060110.xhp\" name=\"VALUE\">VALUE</link> ལས་འགན་ ལག་ལེན་ཐོག་ལས་ དེ་ཚུ་ ལོག་སྟེ་རང་ཨང་གྲང་ལུ་གཞི་བསྒྱུར་འབད་དགོཔ་ཨིན།"
@@ -24560,7 +23308,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ERSETZEN\"> ཚིག་ཡིག་ ཡིག་
msgctxt ""
"04060110.xhp\n"
"par_id3158426\n"
-"24\n"
"help.text"
msgid "Any text containing numbers must be enclosed in quotation marks if you do not want it to be interpreted as a number and automatically converted to text."
msgstr "ཁྱོད་ཀྱིས་ ཚིག་ཡིག་དེ་ ཨང་གྲངས་སྦེ་ཁ་སྒྱུར་དང་ རང་བཞིན་གྱིས་ ཚིག་ཡིག་ལུ་གཞི་བསྒྱུར་འབད་དེ་མིན་དགོ་ནི་ཨིན་པ་ཅིན་ ནང་ན་ཨང་གྲངས་ཚུ་ཤོམ་ཏེ་ཡོད་པའི་ཚིག་ཡིག་གང་རུང་དེ་ འདྲེན་ཚིག་རྟགས་ཚུ་ནང་ན་བཙུགས་དགོཔ་ཨིན།"
@@ -24569,7 +23316,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཚིག་ཡིག་དེ་ ཨང
msgctxt ""
"04060110.xhp\n"
"hd_id3149159\n"
-"25\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -24578,7 +23324,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3147286\n"
-"26\n"
"help.text"
msgid "REPLACE(\"Text\"; Position; Length; \"NewText\")"
msgstr "REPLACE(ཚིག་ཡིག གནས་ས། རིང་ཚད། ཚིག་ཡིག་གསརཔ།)"
@@ -24587,7 +23332,6 @@ msgstr "REPLACE(ཚིག་ཡིག གནས་ས། རིང་ཚད།
msgctxt ""
"04060110.xhp\n"
"par_id3149797\n"
-"27\n"
"help.text"
msgid "<emph>Text</emph> refers to text of which a part will be replaced."
msgstr "<emph> ཚིག་ཡིག་འདི་ </emph> ཡན་ལག་ཚབ་བཙུགས་འབད་ནི་ཨིན་པའི་ ཚིག་ཡིག་ལུ་གཞི་བསྟུན་འབདཝ་ཨིན།"
@@ -24596,7 +23340,6 @@ msgstr "<emph> ཚིག་ཡིག་འདི་ </emph> ཡན་ལག་
msgctxt ""
"04060110.xhp\n"
"par_id3166451\n"
-"28\n"
"help.text"
msgid "<emph>Position</emph> refers to the position within the text where the replacement will begin."
msgstr "<emph> གནས་ས་ </emph> འདི་ ཚབ་བཙུགས་ལཱ་འགོ་བཙུགས་ནི་ཨིན་པའི་ ཚིག་ཡིག་ནང་འཁོད་ཀྱི་ གནས་ས་ལུ་གཞི་བསྟུན་འབདཝ་ཨིན།"
@@ -24605,7 +23348,6 @@ msgstr "<emph> གནས་ས་ </emph> འདི་ ཚབ་བཙུགས
msgctxt ""
"04060110.xhp\n"
"par_id3156040\n"
-"29\n"
"help.text"
msgid "<emph>Length</emph> is the number of characters in <emph>Text</emph> to be replaced."
msgstr "<emph> རིང་ཚད་ </emph> འདི་ ཚབ་བཙུགས་འབད་ནི་ཨིན་པའི་ is the number of characters in <emph> ཚིག་ཡིག་ནང་གི་ ཡིག་འབྲུ་ཚུའི་ </emph> གྱངས་ཁ་ཨིན།"
@@ -24614,7 +23356,6 @@ msgstr "<emph> རིང་ཚད་ </emph> འདི་ ཚབ་བཙུག
msgctxt ""
"04060110.xhp\n"
"par_id3159188\n"
-"30\n"
"help.text"
msgid "<emph>NewText</emph> refers to the text which replaces <emph>Text</emph>."
msgstr "<emph> ཚིག་ཡིག་གསརཔ་དེ་ </emph> ཚིག་ཡིག་ཚབ་བཙུགས་ <emph> འབད་བའི་ཚིག་ཡིག་ལུ་གཞི་བསྟུན་ </emph> འབདཝ་ཨིན།"
@@ -24623,7 +23364,6 @@ msgstr "<emph> ཚིག་ཡིག་གསརཔ་དེ་ </emph> ཚི
msgctxt ""
"04060110.xhp\n"
"hd_id3146958\n"
-"31\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -24632,7 +23372,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3154096\n"
-"32\n"
"help.text"
msgid "<item type=\"input\">=REPLACE(\"1234567\";1;1;\"444\")</item> returns \"444234567\". One character at position 1 is replaced by the complete <item type=\"literal\">NewText</item>."
msgstr ""
@@ -24649,7 +23388,6 @@ msgstr "<bookmark_value>REPT ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3149741\n"
-"193\n"
"help.text"
msgid "REPT"
msgstr "REPT"
@@ -24658,7 +23396,6 @@ msgstr "REPT"
msgctxt ""
"04060110.xhp\n"
"par_id3153748\n"
-"194\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WIEDERHOLEN\">Repeats a character string by the given <emph>number</emph> of copies.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_WIEDERHOLEN\"> གྲ་སྒྲིག་འབད་ཡོད་པའི་ འདྲ་བཤུས་ཚུའི་གྱངས་ཁ་གིས་ <emph> ཡིག་འབྲུ་ཡིག་རྒྱུན་ </emph> ཡང་བསྐྱར་འབདཝ་ཨིན། </ahelp>"
@@ -24667,7 +23404,6 @@ msgstr "<ahelp hid=\"HID_FUNC_WIEDERHOLEN\"> གྲ་སྒྲིག་འབ
msgctxt ""
"04060110.xhp\n"
"hd_id3152884\n"
-"195\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -24676,7 +23412,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3150494\n"
-"196\n"
"help.text"
msgid "REPT(\"Text\"; Number)"
msgstr "REPT(ཚིག་ཡིག་; ཨང་།)"
@@ -24685,7 +23420,6 @@ msgstr "REPT(ཚིག་ཡིག་; ཨང་།)"
msgctxt ""
"04060110.xhp\n"
"par_id3154859\n"
-"197\n"
"help.text"
msgid "<emph>Text</emph> is the text to be repeated."
msgstr "<emph> ཚིག་ཡིག་ </emph> འདི་ ཡང་བསྐྱར་འབད་ནི་ཨིན་པའི་ཚིག་ཡིག་ཨིན།"
@@ -24694,7 +23428,6 @@ msgstr "<emph> ཚིག་ཡིག་ </emph> འདི་ ཡང་བསྐ
msgctxt ""
"04060110.xhp\n"
"par_id3150638\n"
-"198\n"
"help.text"
msgid "<emph>Number</emph> is the number of repetitions."
msgstr "<emph> གྱངས་ཁ་དེ་ </emph> བསྐྱར་ཟློས་ཚུའི་གྱངས་ཁ་ཨིན།"
@@ -24703,7 +23436,6 @@ msgstr "<emph> གྱངས་ཁ་དེ་ </emph> བསྐྱར་ཟླ
msgctxt ""
"04060110.xhp\n"
"par_id3149922\n"
-"212\n"
"help.text"
msgid "The result can be a maximum of 255 characters."
msgstr "གྲུབ་འབྲས་དེ་ མང་མཐའ་རང་ཡིག་འབྲུ་ ༢༥༥ འོང་ཚུགསཔ་ཨིན།"
@@ -24712,7 +23444,6 @@ msgstr "གྲུབ་འབྲས་དེ་ མང་མཐའ་རང་
msgctxt ""
"04060110.xhp\n"
"hd_id3156213\n"
-"199\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -24721,7 +23452,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3148626\n"
-"200\n"
"help.text"
msgid "<item type=\"input\">=REPT(\"Good morning\";2)</item> returns Good morningGood morning."
msgstr ""
@@ -24738,7 +23468,6 @@ msgstr "<bookmark_value>RIGHT ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3149805\n"
-"113\n"
"help.text"
msgid "RIGHT"
msgstr "RIGHT"
@@ -24747,7 +23476,6 @@ msgstr "RIGHT"
msgctxt ""
"04060110.xhp\n"
"par_id3145375\n"
-"114\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_RECHTS\">Returns the last character or characters of a text.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_RECHTS\">དེ་གིས་ མཇུག་གི་ཡིག་འབྲུ་དང་ ཡང་ན་ ཚིག་ཡིག་ཅིག་གི་ཡིག་འབྲུ་འདི་སླར་ལོག་འབདཝ་ཨིན།</ahelp>"
@@ -24756,7 +23484,6 @@ msgstr "<ahelp hid=\"HID_FUNC_RECHTS\">དེ་གིས་ མཇུག་ག
msgctxt ""
"04060110.xhp\n"
"hd_id3150837\n"
-"115\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -24765,7 +23492,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3154344\n"
-"116\n"
"help.text"
msgid "RIGHT(\"Text\"; Number)"
msgstr "RIGHT(ཚིག་ཡིག་; ཨང་།)"
@@ -24774,7 +23500,6 @@ msgstr "RIGHT(ཚིག་ཡིག་; ཨང་།)"
msgctxt ""
"04060110.xhp\n"
"par_id3149426\n"
-"117\n"
"help.text"
msgid "<emph>Text</emph> is the text of which the right part is to be determined."
msgstr "<emph> ཚིག་ཡིག་ </emph> དེ་ ཡན་ལག་གཡསཔ་དེ་གཏན་འབེབས་བཟོ་ནི་ཨིན་པའི་ཚིག་ཡིག་ཨིན།"
@@ -24783,7 +23508,6 @@ msgstr "<emph> ཚིག་ཡིག་ </emph> དེ་ ཡན་ལག་ག
msgctxt ""
"04060110.xhp\n"
"par_id3153350\n"
-"118\n"
"help.text"
msgid "<emph>Number</emph> (optional) is the number of characters from the right part of the text."
msgstr "<emph>ཨང་གྲངས་ </emph> (གདམ་ཁ་ཅན་དེ་) ཚིག་ཡིག་གི་ གཡས་ཕྱོགས་ལས་ཀྱི་ ཡིག་འབྲུ་ཚུའི་གྱངས་ཁ་ཨིན།"
@@ -24792,7 +23516,6 @@ msgstr "<emph>ཨང་གྲངས་ </emph> (གདམ་ཁ་ཅན་ད
msgctxt ""
"04060110.xhp\n"
"hd_id3148661\n"
-"119\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -24801,13 +23524,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3151132\n"
-"120\n"
"help.text"
msgid "<item type=\"input\">=RIGHT(\"Sun\";2)</item> returns un."
msgstr ""
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"bm_id2949805\n"
@@ -24816,20 +23537,17 @@ msgid "<bookmark_value>RIGHTB function</bookmark_value>"
msgstr "<bookmark_value>RIGHT ལས་འགན།</bookmark_value>"
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"hd_id2949805\n"
-"113\n"
"help.text"
msgid "RIGHTB"
-msgstr "RIGHT"
+msgstr ""
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id2945375\n"
-"114\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_RIGHTB\">Returns the last character or characters of a text with double bytes characters sets (DBCS).</ahelp>"
msgstr ""
@@ -24838,36 +23556,30 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"hd_id2950837\n"
-"115\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id2954344\n"
-"116\n"
"help.text"
msgid "RIGHTB(\"Text\"; Number_bytes)"
-msgstr "RIGHT(ཚིག་ཡིག་; ཨང་།)"
+msgstr ""
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id2949426\n"
-"117\n"
"help.text"
msgid "<emph>Text</emph> is the text of which the right part is to be determined."
-msgstr "<emph> ཚིག་ཡིག་ </emph> དེ་ ཡན་ལག་གཡསཔ་དེ་གཏན་འབེབས་བཟོ་ནི་ཨིན་པའི་ཚིག་ཡིག་ཨིན།"
+msgstr ""
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id2953350\n"
-"118\n"
"help.text"
msgid "<emph>Number_bytes</emph> (optional) specifies the number of characters you want RIGHTB to extract, based on bytes."
msgstr ""
@@ -24932,7 +23644,6 @@ msgstr "<bookmark_value>ROMAN ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3153534\n"
-"248\n"
"help.text"
msgid "ROMAN"
msgstr "ROMAN"
@@ -24941,7 +23652,6 @@ msgstr "ROMAN"
msgctxt ""
"04060110.xhp\n"
"par_id3151256\n"
-"249\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ROEMISCH\">Converts a number into a Roman numeral. The value range must be between 0 and 3999, the modes can be integers from 0 to 4.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_ROEMISCH\"> ཨང་གྲངས་དེ་ རོ་མཱན་ཨང་རྟགས་ནང་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན། གནས་གོང་ཁྱབ་ཚད་དེ་ ༠ དང་ ༣༩༩༩ བར་འོང་དགོཔ་ད་ ཐབས་ལམ་ཚུ་ ༠ ལས་ ༤ ཚུན་གྱི་ཧྲིལ་ཨང་ཚུ་བཏུབ་ཨིན། </ahelp>"
@@ -24950,7 +23660,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ROEMISCH\"> ཨང་གྲངས་དེ་ ར
msgctxt ""
"04060110.xhp\n"
"hd_id3149299\n"
-"250\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -24959,7 +23668,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3150593\n"
-"251\n"
"help.text"
msgid "ROMAN(Number; Mode)"
msgstr "ROMAN(ཨང་; ཐབས་ལམ།)"
@@ -24968,7 +23676,6 @@ msgstr "ROMAN(ཨང་; ཐབས་ལམ།)"
msgctxt ""
"04060110.xhp\n"
"par_id3156139\n"
-"252\n"
"help.text"
msgid "<emph>Number</emph> is the number that is to be converted into a Roman numeral."
msgstr "<emph> ཨང་གྲངས་ </emph> དེ་ རོ་མཱན་ཨང་ཡིག་ནང་གཞི་བསྒྱུར་འབད་ནི་ཨིན་པའི་ ཨང་གྲངས་ཨིན།"
@@ -24977,7 +23684,6 @@ msgstr "<emph> ཨང་གྲངས་ </emph> དེ་ རོ་མཱན་
msgctxt ""
"04060110.xhp\n"
"par_id3153318\n"
-"253\n"
"help.text"
msgid "<emph>Mode</emph> (optional) indicates the degree of simplification. The higher the value, the greater is the simplification of the Roman number."
msgstr "<emph> ཐབས་ལམ་ </emph> (གདམ་ཁ་ཅན་) འཇམ་ཏོག་ཏོ་བཟོ་བའི་དབྱེ་རིམ་བརྡ་སྟོནམ་ཨིན། རོ་མཱན་ཨང་གྲངས་ འཇམ་ཏོག་ཏོ་བཟོ་ནི་དེ་ གནས་གོང་མཐོཝ་ད་ དེ་ཡང་ སྦོམ་འགྱོཝ་ཨིན།"
@@ -24986,7 +23692,6 @@ msgstr "<emph> ཐབས་ལམ་ </emph> (གདམ་ཁ་ཅན་) འ
msgctxt ""
"04060110.xhp\n"
"hd_id3145306\n"
-"254\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -24995,7 +23700,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3151371\n"
-"255\n"
"help.text"
msgid "<item type=\"input\">=ROMAN(999)</item> returns CMXCIX"
msgstr ""
@@ -25004,7 +23708,6 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id3153938\n"
-"256\n"
"help.text"
msgid "<item type=\"input\">=ROMAN(999;0)</item> returns CMXCIX"
msgstr ""
@@ -25013,7 +23716,6 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id3148412\n"
-"257\n"
"help.text"
msgid "<item type=\"input\">=ROMAN (999;1)</item> returns LMVLIV"
msgstr ""
@@ -25022,7 +23724,6 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id3155421\n"
-"258\n"
"help.text"
msgid "<item type=\"input\">=ROMAN(999;2)</item> returns XMIX"
msgstr ""
@@ -25031,7 +23732,6 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id3149235\n"
-"259\n"
"help.text"
msgid "<item type=\"input\">=ROMAN(999;3)</item> returns VMIV"
msgstr ""
@@ -25040,7 +23740,6 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id3150624\n"
-"260\n"
"help.text"
msgid "<item type=\"input\">=ROMAN(999;4)</item> returns IM"
msgstr ""
@@ -25057,7 +23756,6 @@ msgstr "<bookmark_value>SEARCH ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3151005\n"
-"122\n"
"help.text"
msgid "SEARCH"
msgstr "SEARCH"
@@ -25066,7 +23764,6 @@ msgstr "SEARCH"
msgctxt ""
"04060110.xhp\n"
"par_id3148692\n"
-"123\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SUCHEN\">Returns the position of a text segment within a character string.</ahelp> You can set the start of the search as an option. The search text can be a number or any sequence of characters. The search is not case-sensitive."
msgstr "<ahelp hid=\"HID_FUNC_SUCHEN\"> ཡིག་འབྲུའི་ཡིག་རྒྱུན་ནང་འཁོད་ནང་ ཚིག་ཡིག་ཆ་ཤས་ཀྱི་གནས་ས་སླར་ལོག་འབདཝ་ཨིན། </ahelp> ཁྱོད་ཀྱིས་ འཚོལ་ཞིབ་ཀྱི་འགོ་བཙུགས་དེ་ གདམ་ཁ་སྦེ་གཞི་སྒྲིག་འབད་བཏུབ་ཨིན། འཚོལ་ཞིབ་ཚིག་ཡིག་དེ་ ཨང་གྲངས་སམ་ ཡིག་འབྲུ་ཚུའི་འབྱུང་རིམ་གང་རུང་བཏུབ་ཨིན། འཚོལ་ཞིབ་དེ་ གནས་སྟངས་ ཞིབ་རྟོགས་ཅན་མེན།(-s)"
@@ -25075,7 +23772,6 @@ msgstr "<ahelp hid=\"HID_FUNC_SUCHEN\"> ཡིག་འབྲུའི་ཡི
msgctxt ""
"04060110.xhp\n"
"hd_id3152964\n"
-"124\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -25084,7 +23780,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3154671\n"
-"125\n"
"help.text"
msgid "SEARCH(\"FindText\"; \"Text\"; Position)"
msgstr "SEARCH(find_text; text; position)"
@@ -25093,7 +23788,6 @@ msgstr "SEARCH(find_text; text; position)"
msgctxt ""
"04060110.xhp\n"
"par_id3146080\n"
-"126\n"
"help.text"
msgid "<emph>FindText</emph> is the text to be searched for."
msgstr "<emph>find_text</emph> དེ་ འཚོལ་ཞིབ་འབད་ནི་ཨིན་པའི་ ཚིག་ཡིག་ཨིན།"
@@ -25102,7 +23796,6 @@ msgstr "<emph>find_text</emph> དེ་ འཚོལ་ཞིབ་འབད་
msgctxt ""
"04060110.xhp\n"
"par_id3154111\n"
-"127\n"
"help.text"
msgid "<emph>Text</emph> is the text where the search will take place."
msgstr "<emph> ཚིག་ཡིག་ </emph> དེ་ འཚོལ་ཞིབ་འབད་ནི་ཨིན་སའི་ཚིག་ཡིག་ཨིན།"
@@ -25111,7 +23804,6 @@ msgstr "<emph> ཚིག་ཡིག་ </emph> དེ་ འཚོལ་ཞི
msgctxt ""
"04060110.xhp\n"
"par_id3149559\n"
-"128\n"
"help.text"
msgid "<emph>Position</emph> (optional) is the position in the text where the search is to start."
msgstr "<emph> གནས་ས་ </emph> (གདམ་ཁ་ཅན་) དེ་ འཚོལ་ཞིབ་འགོ་བཙུགས་ནི་ཨིན་སའི་ཚིག་ཡིག་ནང་གནས་ས་ཨིན།"
@@ -25120,7 +23812,6 @@ msgstr "<emph> གནས་ས་ </emph> (གདམ་ཁ་ཅན་) དེ
msgctxt ""
"04060110.xhp\n"
"hd_id3147322\n"
-"129\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -25129,7 +23820,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3154564\n"
-"130\n"
"help.text"
msgid "<item type=\"input\">=SEARCH(54;998877665544)</item> returns 10."
msgstr ""
@@ -25146,7 +23836,6 @@ msgstr "<bookmark_value>SUBSTITUTE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3154830\n"
-"174\n"
"help.text"
msgid "SUBSTITUTE"
msgstr "SUBSTITUTE"
@@ -25155,7 +23844,6 @@ msgstr "SUBSTITUTE"
msgctxt ""
"04060110.xhp\n"
"par_id3153698\n"
-"175\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WECHSELN\">Substitutes new text for old text in a string.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_WECHSELN\"> ཡིག་རྒྱུན་ནང་ ཚིག་ཡིག་རྙིངམ་དོན་ལུ་ཚིག་ཡིག་གསརཔ་གིས་ ཚབ་བཙུགསཔ་ཨིན། </ahelp>"
@@ -25164,7 +23852,6 @@ msgstr "<ahelp hid=\"HID_FUNC_WECHSELN\"> ཡིག་རྒྱུན་ནང
msgctxt ""
"04060110.xhp\n"
"hd_id3150994\n"
-"176\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -25173,7 +23860,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3147582\n"
-"177\n"
"help.text"
msgid "SUBSTITUTE(\"Text\"; \"SearchText\"; \"NewText\"; Occurrence)"
msgstr ""
@@ -25182,7 +23868,6 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id3153675\n"
-"178\n"
"help.text"
msgid "<emph>Text</emph> is the text in which text segments are to be exchanged."
msgstr "<emph> ཚིག་ཡིག་ </emph> དེ་ ཚིག་ཡིག་ཆ་ཤས་ཚུ་བརྗེ་སོར་འབད་ནི་ཨིན་པའི་ཚིག་ཡིག་ཨིན།"
@@ -25191,7 +23876,6 @@ msgstr "<emph> ཚིག་ཡིག་ </emph> དེ་ ཚིག་ཡིག
msgctxt ""
"04060110.xhp\n"
"par_id3156155\n"
-"179\n"
"help.text"
msgid "<emph>SearchText </emph>is the text segment that is to be replaced (a number of times)."
msgstr "<emph>search_text </emph> དེ་ ཚབ་བཙུགས་འབད་ནི་ཨིན་པའི་ཚིག་ཡིག་ཆ་ཤས་ཨིན་(དུས་ཚོད་ཚུའི་གྱངས་ཁ།)"
@@ -25200,7 +23884,6 @@ msgstr "<emph>search_text </emph> དེ་ ཚབ་བཙུགས་འབད
msgctxt ""
"04060110.xhp\n"
"par_id3145779\n"
-"180\n"
"help.text"
msgid "<emph>NewText</emph> is the text that is to replace the text segment."
msgstr "<emph> ཚིག་ཡིག་གསརཔ་ </emph> དེ་ ཚིག་ཡིག་ཆ་ཤས་ཚབ་བཙུགས་འབད་ནི་ཨིན་པའི་ཚིག་ཡིག་ཨིན།"
@@ -25209,7 +23892,6 @@ msgstr "<emph> ཚིག་ཡིག་གསརཔ་ </emph> དེ་ ཚི
msgctxt ""
"04060110.xhp\n"
"par_id3150348\n"
-"181\n"
"help.text"
msgid "<emph>Occurrence</emph> (optional) indicates which occurrence of the search text is to be replaced. If this parameter is missing the search text is replaced throughout."
msgstr "<emph>འབྱུང་བ་</emph> (གདམ་ཁ་ཅན་) གིས་ འཚོལ་ཞིབ་ཚིག་ཡིག་འདི་གི་འབྱུང་བ་ག་འདི་ ཚབ་བཙུགས་ནི་ཨིན་ན་ བརྡ་སྟོན་འབདཝ་ཨིན། འནི་ཚད་བཟུང་འདི་བརླག་སྟོར་ཞུགས་ཡོདཔ་ཨིན་པ་ཅིན་ འཚོལ་ཞིབ་ཚིག་ཡིག་འདི་ ག་ར་ལུ་ཚབ་བཙུགསཔ་ཨིན།"
@@ -25218,7 +23900,6 @@ msgstr "<emph>འབྱུང་བ་</emph> (གདམ་ཁ་ཅན་) ག
msgctxt ""
"04060110.xhp\n"
"hd_id3150946\n"
-"182\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -25227,7 +23908,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3150412\n"
-"183\n"
"help.text"
msgid "<item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\")</item> returns 12abc12abc12abc."
msgstr ""
@@ -25236,7 +23916,6 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id3154915\n"
-"238\n"
"help.text"
msgid "<item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\";2)</item> returns 12312abc123."
msgstr ""
@@ -25253,7 +23932,6 @@ msgstr "<bookmark_value>T ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3148977\n"
-"140\n"
"help.text"
msgid "T"
msgstr ""
@@ -25262,7 +23940,6 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"par_id3154359\n"
-"141\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_T\">This function returns the target text, or a blank text string if the target is not text.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_T\">ལས་འགན་དེ་གིས་ དམིགས་གཏད་ཚིག་ཡིག་སླར་ལོག་འབད་ནི་དང་ ཡང་ན་ དམིགས་གཏད་འདི་ཚིག་ཡིག་མེན་པ་ཅིན་ཚིག་ཡིག་སྟོངམ་ཆའི་ཡིག་རྒྱུན་འབད་སླར་ལོག་འབདཝ་ཨིན།</ahelp>"
@@ -25271,7 +23948,6 @@ msgstr "<ahelp hid=\"HID_FUNC_T\">ལས་འགན་དེ་གིས་
msgctxt ""
"04060110.xhp\n"
"hd_id3155858\n"
-"142\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -25280,7 +23956,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3155871\n"
-"143\n"
"help.text"
msgid "T(Value)"
msgstr "T(གནས་གོང་།)"
@@ -25289,7 +23964,6 @@ msgstr "T(གནས་གོང་།)"
msgctxt ""
"04060110.xhp\n"
"par_id3154726\n"
-"144\n"
"help.text"
msgid "If <emph>Value</emph> is a text string or refers to a text string, T returns that text string; otherwise it returns a blank text string."
msgstr "<emph>value</emph> འདི་ ཚིག་ཡིག་ཡིག་རྒྱུན་དང་ཡང་ན་ ཚིག་ཡིག་ཡིག་རྒྱུན་ལུ་གཞི་བསྟུན་འབད་བ་ཅིན་ T དེ་གིས་ ཚིག་ཡིག་ཡིག་རྒྱུན་འདི་སླར་ལོག་འབདཝ་ཨིན་; འདི་མེན་པ་ཅིན་དེ་གིས་ ཚིག་ཡིག་སྟོང་ཆའི་ཡིག་རྒྱུན་ཅིག་སླར་ལོག་འབདཝ་ཨིན།"
@@ -25298,7 +23972,6 @@ msgstr "<emph>value</emph> འདི་ ཚིག་ཡིག་ཡིག་ར
msgctxt ""
"04060110.xhp\n"
"hd_id3155544\n"
-"145\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -25307,7 +23980,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3151062\n"
-"146\n"
"help.text"
msgid "<item type=\"input\">=T(12345)</item> returns an empty string."
msgstr ""
@@ -25332,7 +24004,6 @@ msgstr "<bookmark_value>TEXT ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3147132\n"
-"158\n"
"help.text"
msgid "TEXT"
msgstr "TEXT"
@@ -25341,7 +24012,6 @@ msgstr "TEXT"
msgctxt ""
"04060110.xhp\n"
"par_id3147213\n"
-"159\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TEXT\">Converts a number into text according to a given format.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TEXT\"> གྲ་སྒྲིག་འབད་ཡོད་པའི་ རྩ་སྒྲིག་དང་འཁྲིལ་ཏེ་ ཨང་གྲངས་དེ་ཚིག་ཡིག་ནང་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན། </ahelp>"
@@ -25350,7 +24020,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TEXT\"> གྲ་སྒྲིག་འབད་ཡ
msgctxt ""
"04060110.xhp\n"
"hd_id3153129\n"
-"160\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -25359,7 +24028,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3147377\n"
-"161\n"
"help.text"
msgid "TEXT(Number; Format)"
msgstr "TEXT(ཨང་ ; རྩ་སྒྲིག)"
@@ -25368,7 +24036,6 @@ msgstr "TEXT(ཨང་ ; རྩ་སྒྲིག)"
msgctxt ""
"04060110.xhp\n"
"par_id3147389\n"
-"162\n"
"help.text"
msgid "<emph>Number</emph> is the numerical value to be converted."
msgstr "<emph> ཨང་གྲངས་ </emph> དེ་ གཞི་བསྒྱུར་འབད་ནི་ཨིན་པའི་ ཨང་གྲངས་ཀྱི་ གནས་གོང་ཨིན།"
@@ -25377,7 +24044,6 @@ msgstr "<emph> ཨང་གྲངས་ </emph> དེ་ གཞི་བསྒ
msgctxt ""
"04060110.xhp\n"
"par_id3156167\n"
-"163\n"
"help.text"
msgid "<emph>Format</emph> is the text which defines the format. Use decimal and thousands separators according to the language set in the cell format."
msgstr "<emph> རྩ་སྒྲིག་ </emph> དེ་ རྩ་སྒྲིག་ངེས་འཛིན་འབད་བའི་ཚིག་ཡིག་ཨིན། ནང་ཐིག་རྩ་སྒྲིག་ནང་ལུ་གཞི་སྒྲིག་འབད་ཡོད་པའི་སྐད་ཡིག་དང་འཁྲིལ་ཏེ་ བཅུ་ཚག་དང་དབྱེ་བྱེད་སྟོང་ཕྲག་ཚུ་ལག་ལེན་འཐབ།"
@@ -25418,7 +24084,6 @@ msgstr "<bookmark_value>TRIM ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3151039\n"
-"54\n"
"help.text"
msgid "TRIM"
msgstr "TRIM"
@@ -25427,7 +24092,6 @@ msgstr "TRIM"
msgctxt ""
"04060110.xhp\n"
"par_id3157888\n"
-"55\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GLAETTEN\">Removes spaces from a string, leaving only a single space character between words.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GLAETTEN\"> བར་སྟོང་ཚུ་ ཡིག་རྒྱུན་ཅིག་ལས་ མིང་ཚིག་ཚུ་གི་བར་ན་ བར་སྟོང་ཡིག་འབྲུ་རྐྱང་པ་ཅིག་བཞག་ཐོག་ རྩ་བསྐྲད་གཏངམ་ཨིན།</ahelp>"
@@ -25436,7 +24100,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GLAETTEN\"> བར་སྟོང་ཚུ་ ཡ
msgctxt ""
"04060110.xhp\n"
"hd_id3152913\n"
-"56\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -25445,7 +24108,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3151349\n"
-"57\n"
"help.text"
msgid "TRIM(\"Text\")"
msgstr "TRIM(ཚིག་ཡིག)"
@@ -25454,7 +24116,6 @@ msgstr "TRIM(ཚིག་ཡིག)"
msgctxt ""
"04060110.xhp\n"
"par_id3151362\n"
-"58\n"
"help.text"
msgid "<emph>Text</emph> refers to text in which spaces are to be removed."
msgstr ""
@@ -25463,7 +24124,6 @@ msgstr ""
msgctxt ""
"04060110.xhp\n"
"hd_id3146838\n"
-"59\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -25472,9 +24132,8 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3156074\n"
-"60\n"
"help.text"
-msgid "<item type=\"input\">=TRIM(\" hello world \")</item> returns hello world without leading and trailing spaces and with single space between words."
+msgid "<item type=\"input\">=TRIM(\" hello world \")</item> returns hello world without leading and trailing spaces and with single space between words."
msgstr ""
#: 04060110.xhp
@@ -25514,7 +24173,7 @@ msgctxt ""
"04060110.xhp\n"
"par_id0907200904123753\n"
"help.text"
-msgid "UNICHAR(number)"
+msgid "<item type=\"literal\">UNICHAR(number)</item>"
msgstr ""
#: 04060110.xhp
@@ -25536,6 +24195,14 @@ msgstr ""
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
+"par_id050220170755399756\n"
+"help.text"
+msgid "See also the UNICODE() function."
+msgstr ""
+
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
"bm_id0907200904033543\n"
"help.text"
msgid "<bookmark_value>UNICODE function</bookmark_value>"
@@ -25570,8 +24237,8 @@ msgctxt ""
"04060110.xhp\n"
"par_id0907200904123846\n"
"help.text"
-msgid "UNICODE(\"Text\")"
-msgstr "CODE(ཚིག་ཡིག)"
+msgid "<item type=\"literal\">UNICODE(\"Text\")</item>"
+msgstr ""
#: 04060110.xhp
msgctxt ""
@@ -25592,6 +24259,14 @@ msgstr ""
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
+"par_id050220170755393174\n"
+"help.text"
+msgid "See also the UNICHAR() function."
+msgstr ""
+
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
"bm_id3145178\n"
"help.text"
msgid "<bookmark_value>UPPER function</bookmark_value>"
@@ -25601,7 +24276,6 @@ msgstr "<bookmark_value>UPPER ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3145178\n"
-"62\n"
"help.text"
msgid "UPPER"
msgstr "UPPER"
@@ -25610,7 +24284,6 @@ msgstr "UPPER"
msgctxt ""
"04060110.xhp\n"
"par_id3162905\n"
-"63\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GROSS\">Converts the string specified in the <emph>text</emph> field to uppercase.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GROSS\"> ཚིག་ཡིག་ས་སྒོ་ནང་ལུ་གསལ་བཀོད་འབད་ཡོད་པའི་ ཡིག་རྒྱུན་དེ་ <emph> ཚུགས་ཡིག་ནང་ལུ་ </emph> གཞི་བསྒྱུར་འབདཝ་ཨིན། </ahelp>"
@@ -25619,7 +24292,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GROSS\"> ཚིག་ཡིག་ས་སྒོ
msgctxt ""
"04060110.xhp\n"
"hd_id3148526\n"
-"64\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -25628,7 +24300,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3148539\n"
-"65\n"
"help.text"
msgid "UPPER(\"Text\")"
msgstr "UPPER(ཚིག་ཡིག)"
@@ -25637,7 +24308,6 @@ msgstr "UPPER(ཚིག་ཡིག)"
msgctxt ""
"04060110.xhp\n"
"par_id3148496\n"
-"66\n"
"help.text"
msgid "<emph>Text</emph> refers to the lower case letters you want to convert to upper case."
msgstr "<emph> ཚིག་ཡིག་ </emph> དེ་ ཁྱོད་ཀྱིས་ ཚུགས་ཡིག་ལུ་གཞི་བསྒྱུར་འབད་ནི་ཨིན་པའི་མགྱོགས་ཡིག་ལུ་གཞི་བསྟུན་འབདཝ་ཨིན།"
@@ -25646,7 +24316,6 @@ msgstr "<emph> ཚིག་ཡིག་ </emph> དེ་ ཁྱོད་ཀྱ
msgctxt ""
"04060110.xhp\n"
"hd_id3148516\n"
-"67\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -25655,7 +24324,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3146757\n"
-"68\n"
"help.text"
msgid "<item type=\"input\">=UPPER(\"Good Morning\")</item> returns GOOD MORNING."
msgstr ""
@@ -25672,7 +24340,6 @@ msgstr "<bookmark_value>VALUE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060110.xhp\n"
"hd_id3150802\n"
-"185\n"
"help.text"
msgid "VALUE"
msgstr "VALUE"
@@ -25681,7 +24348,6 @@ msgstr "VALUE"
msgctxt ""
"04060110.xhp\n"
"par_id3152551\n"
-"186\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WERT\">Converts a text string into a number.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_WERT\"> ཚིག་ཡིག་ ཡིག་རྒྱུན་ཚུ་ ཨང་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན། </ahelp>"
@@ -25690,7 +24356,6 @@ msgstr "<ahelp hid=\"HID_FUNC_WERT\"> ཚིག་ཡིག་ ཡིག་ར
msgctxt ""
"04060110.xhp\n"
"hd_id3152568\n"
-"187\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -25699,7 +24364,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060110.xhp\n"
"par_id3153638\n"
-"188\n"
"help.text"
msgid "VALUE(\"Text\")"
msgstr "VALUE(ཚིག་ཡིག)"
@@ -25708,7 +24372,6 @@ msgstr "VALUE(ཚིག་ཡིག)"
msgctxt ""
"04060110.xhp\n"
"par_id3153651\n"
-"189\n"
"help.text"
msgid "<emph>Text</emph> is the text to be converted to a number."
msgstr "<emph> ཚིག་ཡིག་འདི་ </emph> ཨང་ལུ་གཞི་བསྒྱུར་འབད་ནི་ཨིན་པའི་ ཚིག་ཡིག་ཨིན།"
@@ -25717,7 +24380,6 @@ msgstr "<emph> ཚིག་ཡིག་འདི་ </emph> ཨང་ལུ་
msgctxt ""
"04060110.xhp\n"
"hd_id3144719\n"
-"190\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -25726,7 +24388,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060110.xhp\n"
"par_id3144733\n"
-"191\n"
"help.text"
msgid "<item type=\"input\">=VALUE(\"4321\")</item> returns 4321."
msgstr ""
@@ -25751,7 +24412,6 @@ msgstr "<bookmark_value>ཨིནསི་-ཁ་སྐོང་བརྐྱབ
msgctxt ""
"04060111.xhp\n"
"hd_id3150870\n"
-"1\n"
"help.text"
msgid "<variable id=\"head_addin\"><link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in Functions\">Add-in Functions</link></variable>"
msgstr ""
@@ -25760,7 +24420,6 @@ msgstr ""
msgctxt ""
"04060111.xhp\n"
"par_id3147427\n"
-"2\n"
"help.text"
msgid "<variable id=\"addintext\">The following describes and lists some of the available add-in functions. </variable>"
msgstr "<variable id=\"addintext\"> འོག་གི་འདི་གིས་ ཁ་སྐོང་རྐྱབས་ནིའི་ལས་འགན་འཐོབ་ཚུགས་ཡོད་མི་ལ་ལུ་ཅིག་ འགྲེལ་བཤད་དང་ཐོ་བཀོད་འབདཝ་ཨིན། </variable>"
@@ -25769,7 +24428,6 @@ msgstr "<variable id=\"addintext\"> འོག་གི་འདི་གིས
msgctxt ""
"04060111.xhp\n"
"par_id3163713\n"
-"75\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Add-in concept</link>"
msgstr "<link href=\"text/scalc/01/04060112.xhp#addinconcept\"> ནང་ན་ཁ་སྐོང་རྐྱབ་ནི་བསམ་གཞི། </link>"
@@ -25778,7 +24436,6 @@ msgstr "<link href=\"text/scalc/01/04060112.xhp#addinconcept\"> ནང་ན་
msgctxt ""
"04060111.xhp\n"
"par_id3146120\n"
-"5\n"
"help.text"
msgid "You will also find a <link href=\"text/scalc/01/04060112.xhp\">description of the $[officename] Calc add-in interface</link> in the Help. In addition, important functions and their parameters are described in the Help for the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>$[officename] Calc add-in DLL</defaultinline></switchinline>."
msgstr "གྲོགས་རམ་ནང་ལུ་ <link href=\"text/scalc/01/04060112.xhp\"> ཁྱོད་ཀྱིས་ $[officename] ཀེལ་སི་ ཨེདི་ཨིན་ ངོས་འདྲ་བ་གི་ </link> འགྲེལ་བཤད་འཐོབ་ཨིན། ཁ་སྐོང་ལུ་ ལས་འགན་གལ་ཅན་ཚུ་དང་ དེའི་ད་བཟུང་ཚུ་ གྲོགས་རམ་ནང་ལུ་ <switchinline select=\"sys\"><caseinline select=\"UNIX\"> རུབ་སྤྱོད་འབད་ཡོད་པའི་དཔེ་མཛོད་ </caseinline><defaultinline>$[officename] ཀེལ་སི་ ཨེཌི་ཨིན་ ཌི་ཨེལ་ཨེལ་ དོན་ལུ་ </defaultinline></switchinline> འགྲེལ་བཤད་བརྐྱབ་སྟེ་ཡོདཔ་ཨིན། (-i)"
@@ -25787,7 +24444,6 @@ msgstr "གྲོགས་རམ་ནང་ལུ་ <link href=\"text/scalc/01
msgctxt ""
"04060111.xhp\n"
"hd_id3151075\n"
-"7\n"
"help.text"
msgid "Add-ins supplied"
msgstr "ནང་ཐ་ཁ་སྐོང་རྐྱབ་ནི་ཚུ་བཀྲམ་སྤེལ་འབད་ཡོདཔ།"
@@ -25796,7 +24452,6 @@ msgstr "ནང་ཐ་ཁ་སྐོང་རྐྱབ་ནི་ཚུ་བ
msgctxt ""
"04060111.xhp\n"
"par_id3156285\n"
-"8\n"
"help.text"
msgid "$[officename] contains examples for the add-in interface of $[officename] Calc."
msgstr "$[officename] གི་ནང་ན་ $[officename] ཀེལཀི་གི་ཁ་སྐོང་རྐྱབས་ནིའི་ངོས་འདྲ་བ་འདི་གི་དོན་ལུ་ དཔེར་བརྗོད་ཚུ་ཡོདཔ་ཨིན།"
@@ -25805,7 +24460,6 @@ msgstr "$[officename] གི་ནང་ན་ $[officename] ཀེལཀི་
msgctxt ""
"04060111.xhp\n"
"par_id3159267\n"
-"76\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060115.xhp\">Analysis Functions Part One</link>"
msgstr "<link href=\"text/scalc/01/04060115.xhp\"> དཔྱད་ཞིབ་ལས་འགན་ཚུ་ ཡན་ལག་གཅིག </link>"
@@ -25814,7 +24468,6 @@ msgstr "<link href=\"text/scalc/01/04060115.xhp\"> དཔྱད་ཞིབ་
msgctxt ""
"04060111.xhp\n"
"par_id3154703\n"
-"77\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060116.xhp\">Analysis Functions Part Two</link>"
msgstr "<link href=\"text/scalc/01/04060116.xhp\"> དཔྱད་ཞིབ་ལས་འགན་ཚུའི་ ཡན་ལག་གཉིས། </link>"
@@ -25831,7 +24484,6 @@ msgstr "<bookmark_value>ཨའི་ཨེསི་ཤོལ་ལོ་ལས
msgctxt ""
"04060111.xhp\n"
"hd_id3149566\n"
-"14\n"
"help.text"
msgid "ISLEAPYEAR"
msgstr "ISLEAPYEAR"
@@ -25840,7 +24492,6 @@ msgstr "ISLEAPYEAR"
msgctxt ""
"04060111.xhp\n"
"par_id3150297\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\".\">Determines whether a year is a leap year.</ahelp> If yes, the function will return the value 1 (TRUE); if not, it will return 0 (FALSE)."
msgstr "<ahelp hid=\".\">ལོ་འདི་ཡང་ཅིན་ ཤོལ་ལོ་ཨིན་ན་མེན་ན་གཏན་འབེབས་བཟོཝ་ཨིན།</ahelp> ཨིན་པ་ཅིན་ ལས་འགན་འདི་གིས་ གནས་གོང་ ༡ (བདེན་པ་)སླར་ལོག་འབད་འོང་ མེན་པ་ཅིན་ འདི་གིས་ ༠ (རྫུན་མུ་) སླར་ལོག་འབད་འོང་།"
@@ -25849,17 +24500,14 @@ msgstr "<ahelp hid=\".\">ལོ་འདི་ཡང་ཅིན་ ཤོལ་
msgctxt ""
"04060111.xhp\n"
"hd_id3148487\n"
-"16\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060111.xhp
-#, fuzzy
msgctxt ""
"04060111.xhp\n"
"par_id3150205\n"
-"17\n"
"help.text"
msgid "ISLEAPYEAR(Date)"
msgstr "ISLEAPYEAR(ཚེས།)"
@@ -25868,7 +24516,6 @@ msgstr "ISLEAPYEAR(ཚེས།)"
msgctxt ""
"04060111.xhp\n"
"par_id3159239\n"
-"18\n"
"help.text"
msgid "<emph>Date</emph> specifies whether a given date falls within a leap year. The Date parameter must be a valid date."
msgstr ""
@@ -25877,7 +24524,6 @@ msgstr ""
msgctxt ""
"04060111.xhp\n"
"hd_id3149817\n"
-"19\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -25886,7 +24532,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060111.xhp\n"
"par_id3150786\n"
-"20\n"
"help.text"
msgid "=ISLEAPYEAR(A1) returns 1, if A1 contains 1968-02-29, the valid date 29th of February 1968 in your locale setting."
msgstr "ཁྱོད་རའི་ལོ་ཀེལ་སྒྲིག་སྟངས་ནང་ལུ་ དབྱིན་ལོ་ ༡༩༦༨ དབྱིན་ཟླ་ གཉིས་པའི་དབྱིན་ཚེས་ ༢༩ དོན་ལུ་ A1 ནང་ན་ ནུས་ཅན་ཚེས་གྲངས་ ༢/༢༩/༦༨ ཤོམ་ཏེ་ཡོད་པ་ཅིན་ ISLEAPYEAR(A1) གིས་ ༡ སླར་ལོག་འབདཝ་ཨིན།"
@@ -25919,7 +24564,6 @@ msgstr "<bookmark_value>ལོའི་ལས་འགན་</bookmark_value><bo
msgctxt ""
"04060111.xhp\n"
"hd_id3154656\n"
-"21\n"
"help.text"
msgid "YEARS"
msgstr "YEARS"
@@ -25928,7 +24572,6 @@ msgstr "YEARS"
msgctxt ""
"04060111.xhp\n"
"par_id3150886\n"
-"22\n"
"help.text"
msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Calculates the difference in years between two dates.</ahelp>"
msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\"> ཚེས་གྲངས་གཉིས་བར་གྱི་ ལོ་ཚུའི་ཁྱད་པར་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -25937,7 +24580,6 @@ msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\"> ཚེས་གྲངས་གཉ
msgctxt ""
"04060111.xhp\n"
"hd_id3154370\n"
-"23\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -25946,7 +24588,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060111.xhp\n"
"par_id3146114\n"
-"24\n"
"help.text"
msgid "YEARS(StartDate; EndDate; Type)"
msgstr "YEARS(ཚེས་གྲངས་འགོ་བཙུགས། ཚེས་གྲངས་མཇུག་བསྡུ། དབྱེ་བ། )"
@@ -25955,7 +24596,6 @@ msgstr "YEARS(ཚེས་གྲངས་འགོ་བཙུགས། ཚེ
msgctxt ""
"04060111.xhp\n"
"par_id3145387\n"
-"25\n"
"help.text"
msgid "<emph>StartDate</emph> is the first date"
msgstr "<emph> ཚེས་འགོ་བཙུགས་ </emph>: ཚེས།"
@@ -25964,7 +24604,6 @@ msgstr "<emph> ཚེས་འགོ་བཙུགས་ </emph>: ཚེས།"
msgctxt ""
"04060111.xhp\n"
"par_id3156290\n"
-"26\n"
"help.text"
msgid "<emph>EndDate</emph> is the second date"
msgstr "<emph>Data_2</emph> འདི་གནད་སྡུད་ཆ་ཚང་གཉིས་པམ་ཨིན།"
@@ -25973,7 +24612,6 @@ msgstr "<emph>Data_2</emph> འདི་གནད་སྡུད་ཆ་ཚང
msgctxt ""
"04060111.xhp\n"
"par_id3152893\n"
-"27\n"
"help.text"
msgid "<emph>Type</emph> calculates the type of difference. Possible values are 0 (interval) and 1 (in calendar years)."
msgstr "དབྱེ་བ་: ཁྱད་པར་གྱི་དབྱེ་བ་རྩིས་སྟོནམ་ཨིན། འབྱུང་སྲིད་པའི་གནས་གོང་ཚུ་ནི་ ༠ (བར་མཚམས་) དང་ ༡ (ཟླ་ཐོ་ལོ་ཚུ་ནང་) ཚུ་ཨིན།"
@@ -25990,7 +24628,6 @@ msgstr "<bookmark_value>ཟླཝ་གི་ལས་འགན་</bookmark_val
msgctxt ""
"04060111.xhp\n"
"hd_id3152898\n"
-"28\n"
"help.text"
msgid "MONTHS"
msgstr "MONTHS"
@@ -25999,7 +24636,6 @@ msgstr "MONTHS"
msgctxt ""
"04060111.xhp\n"
"par_id3153066\n"
-"29\n"
"help.text"
msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Calculates the difference in months between two dates.</ahelp>"
msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\"> ཚེས་གྲངས་གཉིས་ཀྱི་བར་ན་ ཟླཝ་ཚུའི་ཁྱད་པར་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -26008,7 +24644,6 @@ msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\"> ཚེས་གྲངས་ག
msgctxt ""
"04060111.xhp\n"
"hd_id3151240\n"
-"30\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -26017,7 +24652,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060111.xhp\n"
"par_id3146869\n"
-"31\n"
"help.text"
msgid "MONTHS(StartDate; EndDate; Type)"
msgstr "MONTHS(ཚེས་གྲངས་འགོ་བཙུགས། ཚེས་གྲངས་མཇུག་བསྡུ། དབྱེ་བ།)"
@@ -26026,7 +24660,6 @@ msgstr "MONTHS(ཚེས་གྲངས་འགོ་བཙུགས། ཚེ
msgctxt ""
"04060111.xhp\n"
"par_id3145075\n"
-"32\n"
"help.text"
msgid "<emph>StartDate</emph> is the first date"
msgstr "<emph> ཚེས་འགོ་བཙུགས་ </emph>: ཚེས།"
@@ -26035,7 +24668,6 @@ msgstr "<emph> ཚེས་འགོ་བཙུགས་ </emph>: ཚེས།"
msgctxt ""
"04060111.xhp\n"
"par_id3157981\n"
-"33\n"
"help.text"
msgid "<emph>EndDate</emph> is the second date"
msgstr "<emph>Data_2</emph> འདི་གནད་སྡུད་ཆ་ཚང་གཉིས་པམ་ཨིན།"
@@ -26044,7 +24676,6 @@ msgstr "<emph>Data_2</emph> འདི་གནད་སྡུད་ཆ་ཚང
msgctxt ""
"04060111.xhp\n"
"par_id3150111\n"
-"34\n"
"help.text"
msgid "<emph>Type</emph> calculates the type of difference. Possible values include 0 (interval) and 1 (in calendar months)."
msgstr "དབྱེ་བ་: ཁྱད་པར་གྱི་དབྱེ་བ་རྩིས་སྟོནམ་ཨིན། འབྱུང་སྲིད་པའི་གནས་གོང་གྲངས་སུ་ ༠ (བར་མཚམས་) དང་ ༡ (ཟླ་ཐོ་ནང་ ཟླ་ངོ་ཚུ་) ཚུ་བཙུགས་ཏེ་ཡོད།"
@@ -26061,7 +24692,6 @@ msgstr "<bookmark_value>ROT13 ལས་འགན་</bookmark_value><bookmark_va
msgctxt ""
"04060111.xhp\n"
"hd_id3159094\n"
-"35\n"
"help.text"
msgid "ROT13"
msgstr "ROT13"
@@ -26070,7 +24700,6 @@ msgstr "ROT13"
msgctxt ""
"04060111.xhp\n"
"par_id3146781\n"
-"36\n"
"help.text"
msgid "<ahelp hid=\"HID_DAI_FUNC_ROT13\">Encrypts a character string by moving the characters 13 positions in the alphabet.</ahelp> After the letter Z, the alphabet begins again (Rotation). By applying the encryption function again to the resulting code, you can decrypt the text."
msgstr "<ahelp hid=\"HID_DAI_FUNC_ROT13\"> དབྱངས་གསལ་ནང་ཡིག་འབྲུ་ཚུའི་གནས་ས་ ༡༣ ཚུ་སྤོ་བའི་ཐོག་ལས་ ཡིག་འབྲུ་ཡིག་རྒྱུན་གསང་བ་བཟོཝ་ཨིན། </ahelp> ཡི་གུ་ Z གི་ཤུལ་ལས་ དབྱངས་གསལ་དེ་ལོག་སྟེ་རང་འགོ་བཙུགསཔ་ཨིན་(སྐོར་འཁོར)། གསང་བ་བཟོ་བའི་ལས་འགན་དེ་ གྲུབ་འབྲས་འབྱུང་བའི་ཨང་རྟགས་ འཇུག་སྤྱོད་ཐོག་ལས་ ཁྱོད་ཀྱིས་ ཚིག་ཡིག་དེ་ གསང་བཤོལ་འབད་ཚུགསཔ་ཨིན།"
@@ -26079,7 +24708,6 @@ msgstr "<ahelp hid=\"HID_DAI_FUNC_ROT13\"> དབྱངས་གསལ་ནང
msgctxt ""
"04060111.xhp\n"
"hd_id3150893\n"
-"37\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -26088,7 +24716,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060111.xhp\n"
"par_id3159205\n"
-"38\n"
"help.text"
msgid "ROT13(Text)"
msgstr "ROT13(ཚིག་ཡིག"
@@ -26097,7 +24724,6 @@ msgstr "ROT13(ཚིག་ཡིག"
msgctxt ""
"04060111.xhp\n"
"par_id3153249\n"
-"39\n"
"help.text"
msgid "<emph>Text</emph> is the character string to be encrypted. ROT13(ROT13(Text)) decrypts the code."
msgstr "ཚིག་ཡིག་ : གསང་བ་བཟོ་ནི་ཨིན་པའི་ ཡིག་འབྲུའི་ཡིག་རྒྱུན་བཙུགས། ROT13(ROT13(Text)) ཨང་རྟགས་གསང་བ་བཟོཝ་ཤོལཝ་ཨིན།"
@@ -26114,7 +24740,6 @@ msgstr "<bookmark_value>DAYSINYEAR ལས་འགན་</bookmark_value><bookma
msgctxt ""
"04060111.xhp\n"
"hd_id3151300\n"
-"43\n"
"help.text"
msgid "DAYSINYEAR"
msgstr "DAYSINYEAR"
@@ -26123,7 +24748,6 @@ msgstr "DAYSINYEAR"
msgctxt ""
"04060111.xhp\n"
"par_id3143220\n"
-"44\n"
"help.text"
msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">Calculates the number of days of the year in which the date entered occurs.</ahelp>"
msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">ཚེས་གྲངས་ཐོ་བཀོད་འབད་མི་འབྱུང་མི་ ལོའི་ཉིན་གྲངས་འདི་རྩིས་སྟོན་འབདཝ་ཨིན།</ahelp>"
@@ -26132,7 +24756,6 @@ msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">ཚེས་གྲངས་ཐོ
msgctxt ""
"04060111.xhp\n"
"hd_id3145358\n"
-"45\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -26141,7 +24764,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060111.xhp\n"
"par_id3154651\n"
-"46\n"
"help.text"
msgid "DAYSINYEAR(Date)"
msgstr "DAYSINYEAR(ཚེས་གྲངས།)"
@@ -26150,7 +24772,6 @@ msgstr "DAYSINYEAR(ཚེས་གྲངས།)"
msgctxt ""
"04060111.xhp\n"
"par_id3153803\n"
-"47\n"
"help.text"
msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
msgstr "ཚེས་གྲངས་: རིམ་བཞིན་ལོ་ནང་གི་ཚེས་གྲངས་ག་ཅི་འབད་རུང་། ཚེས་གྲངས་ཚད་བཟུང་འདི་ %PRODUCTNAME གི་ལོ་ཀེལ་སྒྲིག་སྟངས་འདི་དང་འཁྲིལ་ཏེ་ ནུས་ལྡན་ཚེས་གྲངས་ཅིག་ཨིན་དགོ།"
@@ -26159,7 +24780,6 @@ msgstr "ཚེས་གྲངས་: རིམ་བཞིན་ལོ་ནང
msgctxt ""
"04060111.xhp\n"
"hd_id3153487\n"
-"48\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -26168,7 +24788,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060111.xhp\n"
"par_id3153811\n"
-"49\n"
"help.text"
msgid "=DAYSINYEAR(A1) returns 366 days if A1 contains 1968-02-29, a valid date for the year 1968."
msgstr "དབྱིན་ལོ་ ༡༩༦༨ དོན་ལུ་ A1 ནང་ན་ ནུས་ཅན་ཚེས་གྲངས་ ༢/༢༩/༦༨ ཤོམ་ཏེ་ཡོད་པ་ཅིན་ DAYSINYEAR(A1) གིས་ ཉིན་གྲངས་ ༣༦༦ སླར་ལོག་འབདཝ་ཨིན།"
@@ -26185,7 +24804,6 @@ msgstr "<bookmark_value>DAYSINMONTH ལས་འགན་</bookmark_value><bookm
msgctxt ""
"04060111.xhp\n"
"hd_id3154737\n"
-"50\n"
"help.text"
msgid "DAYSINMONTH"
msgstr "DAYSINMONTH"
@@ -26194,7 +24812,6 @@ msgstr "DAYSINMONTH"
msgctxt ""
"04060111.xhp\n"
"par_id3149316\n"
-"51\n"
"help.text"
msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">Calculates the number of days of the month in which the date entered occurs.</ahelp>"
msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">ཚེས་གྲངས་ཐོ་བཀོད་འབད་མི་འབྱུང་མི་ ཟླཝ་གི་ཉིན་གྲངས་འདི་རྩིས་སྟོན་འབདཝ་ཨིན།</ahelp>"
@@ -26203,7 +24820,6 @@ msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">ཚེས་གྲངས་ཐ
msgctxt ""
"04060111.xhp\n"
"hd_id3145114\n"
-"52\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -26212,7 +24828,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060111.xhp\n"
"par_id3150955\n"
-"53\n"
"help.text"
msgid "DAYSINMONTH(Date)"
msgstr "DAYSINMONTH(ཚེས་གྲངས།)"
@@ -26221,7 +24836,6 @@ msgstr "DAYSINMONTH(ཚེས་གྲངས།)"
msgctxt ""
"04060111.xhp\n"
"par_id3147501\n"
-"54\n"
"help.text"
msgid "<emph>Date</emph> is any date in the respective month of the desired year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
msgstr "ཚེས་གྲངས་: རེ་འདུན་ཡོད་པའི་ལོ་འདི་གི་ རིམ་བཞིན་ཟླཝ་འདི་ནང་ ཚེས་གྲངས་ག་ཅི་འབད་རུང་། ཚེས་གྲངས་ཚད་བཟུང་འདི་ %PRODUCTNAME གི་ལོ་ཀེལ་སྒྲིག་སྟངས་འདི་དང་འཁྲིལ་ཏེ་ ནུས་ལྡན་ཚེས་གྲངས་ཅིག་ཨིན་དགོ།"
@@ -26230,7 +24844,6 @@ msgstr "ཚེས་གྲངས་: རེ་འདུན་ཡོད་པའ
msgctxt ""
"04060111.xhp\n"
"hd_id3149871\n"
-"55\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -26239,7 +24852,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060111.xhp\n"
"par_id3155742\n"
-"56\n"
"help.text"
msgid "=DAYSINMONTH(A1) returns 29 days if A1 contains 1968-02-17, a valid date for February 1968."
msgstr "དབྱིན་ལོ་ ༡༩༦༨ དབྱིན་ཟླ་ གཉིས་པའི་དོན་ལུ་ A1 ནང་ན་ ཚེས་གྲངས་ནུས་ཅན་ ༢/༡༧/༦༨ ཤོམ་ཏེ་ཡོད་པ་ཅིན་ DAYSINMONTH(A1) གིས་ ཉིན་གྲངས་ ༢༩ སླར་ལོག་འབདཝ་ཨིན།"
@@ -26256,7 +24868,6 @@ msgstr "<bookmark_value>WEEKS ལས་འགན་</bookmark_value><bookmark_va
msgctxt ""
"04060111.xhp\n"
"hd_id3149048\n"
-"57\n"
"help.text"
msgid "WEEKS"
msgstr "WEEKS"
@@ -26265,7 +24876,6 @@ msgstr "WEEKS"
msgctxt ""
"04060111.xhp\n"
"par_id3153340\n"
-"58\n"
"help.text"
msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">Calculates the difference in weeks between two dates.</ahelp>"
msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\"> ཚེས་གྲངས་གཉིས་ཀྱི་བར་་བདུན་ཕྲག་ནང་ཁྱད་པར་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -26274,7 +24884,6 @@ msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\"> ཚེས་གྲངས་གཉ
msgctxt ""
"04060111.xhp\n"
"hd_id3150393\n"
-"59\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -26283,7 +24892,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060111.xhp\n"
"par_id3147402\n"
-"60\n"
"help.text"
msgid "WEEKS(StartDate; EndDate; Type)"
msgstr "WEEKS(ཚེས་གྲངས་ འགོ་བཙུགས། ཚེས་གྲངས་མཇུག་བསྡུ། དབྱེ་བ།)"
@@ -26292,7 +24900,6 @@ msgstr "WEEKS(ཚེས་གྲངས་ འགོ་བཙུགས། ཚེ
msgctxt ""
"04060111.xhp\n"
"par_id3151387\n"
-"61\n"
"help.text"
msgid "<emph>StartDate</emph> is the first date"
msgstr "<emph> ཚེས་འགོ་བཙུགས་ </emph>: ཚེས།"
@@ -26301,7 +24908,6 @@ msgstr "<emph> ཚེས་འགོ་བཙུགས་ </emph>: ཚེས།"
msgctxt ""
"04060111.xhp\n"
"par_id3146324\n"
-"62\n"
"help.text"
msgid "<emph>EndDate</emph> is the second date"
msgstr "<emph>Data_2</emph> འདི་གནད་སྡུད་ཆ་ཚང་གཉིས་པམ་ཨིན།"
@@ -26310,7 +24916,6 @@ msgstr "<emph>Data_2</emph> འདི་གནད་སྡུད་ཆ་ཚང
msgctxt ""
"04060111.xhp\n"
"par_id3166467\n"
-"63\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 "དབྱེ་བ་: དབྱེ་བ་གི་ཁྱད་པར་རྩིས་སྟོནམ་ཨིན། འབྱུང་སྲིད་པའི་གནས་གོང་ཚུ་ནི་ ༠ (བར་མཚམས་) དང་ ༡ (བདུན་ཕྲག་གི་གྱངས་ཁ་ནང་) ཚུ་ཨིན།"
@@ -26327,7 +24932,6 @@ msgstr "<bookmark_value>WEEKSINYEAR ལས་འགན་</bookmark_value><bookm
msgctxt ""
"04060111.xhp\n"
"hd_id3145237\n"
-"64\n"
"help.text"
msgid "WEEKSINYEAR"
msgstr "WEEKSINYEAR"
@@ -26336,7 +24940,6 @@ msgstr "WEEKSINYEAR"
msgctxt ""
"04060111.xhp\n"
"par_id3147410\n"
-"65\n"
"help.text"
msgid "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">Calculates the number of weeks of the year in which the date entered occurs.</ahelp> The number of weeks is defined as follows: a week that spans two years is added to the year in which most days of that week occur."
msgstr "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\"> ཚེས་གྲངས་ཐོ་བཀོད་འབད་ཡོད་མི་འབྱུང་མི་ ལོའི་བདུན་ཕྲག་གི་གྲངས་འདི་རྩིས་སྟོན་འབདཝ་ཨིན།</ahelp> བདུན་ཕྲག་གི་གྲངས་འདི་ འོག་ལུ་ཡོད་དོ་བཟུམ་སྦེ་ངེས་འཛིན་འབད་ཡོདཔ་ཨིན་: ལོ་གཉིས་འཕར་མི་བདུན་ཕྲག་འདི་ འ་ནི་བདུན་ཕྲག་གི་ཉིནམ་མང་ཤོས་ཅིག་འབྱུང་མི་ ལོ་འདི་ལུ་ཁ་སྐོང་རྐྱབས་ཨིན།"
@@ -26345,7 +24948,6 @@ msgstr "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\"> ཚེས་གྲངས་ཐ
msgctxt ""
"04060111.xhp\n"
"hd_id3149719\n"
-"66\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -26354,7 +24956,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060111.xhp\n"
"par_id3145638\n"
-"67\n"
"help.text"
msgid "WEEKSINYEAR(Date)"
msgstr "WEEKSINYEAR(ཚེས་གྲངས།)"
@@ -26363,7 +24964,6 @@ msgstr "WEEKSINYEAR(ཚེས་གྲངས།)"
msgctxt ""
"04060111.xhp\n"
"par_id3149946\n"
-"68\n"
"help.text"
msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
msgstr "ཚེས་གྲངས་: རིམ་བཞིན་ལོ་ནང་གི་ཚེས་གྲངས་ག་ཅི་འབད་རུང་། ཚེས་གྲངས་ཚད་བཟུང་འདི་ %PRODUCTNAME གི་ལོ་ཀེལ་སྒྲིག་སྟངས་འདི་དང་འཁྲིལ་ཏེ་ ནུས་ལྡན་ཚེས་གྲངས་ཅིག་ཨིན་དགོ།"
@@ -26372,7 +24972,6 @@ msgstr "ཚེས་གྲངས་: རིམ་བཞིན་ལོ་ནང
msgctxt ""
"04060111.xhp\n"
"hd_id3150037\n"
-"69\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -26381,7 +24980,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060111.xhp\n"
"par_id3147614\n"
-"70\n"
"help.text"
msgid "WEEKSINYEAR(A1) returns 53 if A1 contains 1970-02-17, a valid date for the year 1970."
msgstr "དབྱིན་ལོ་ ༡༩༧༠ དོན་ལུ་ A1 ནང་ན་ ནུས་ཅན་ཚེས་གྲངས་ ༢/༡༧/༧༠ ཤོམ་ཏེ་ཡོད་པ་ཅིན་ WEEKSINYEAR(A1) གིས་ ༥༣ སླར་ལོག་འབདཝ་ཨིན།"
@@ -26390,7 +24988,6 @@ msgstr "དབྱིན་ལོ་ ༡༩༧༠ དོན་ལུ་ A1 ནང
msgctxt ""
"04060111.xhp\n"
"hd_id3157901\n"
-"72\n"
"help.text"
msgid "Add-ins through %PRODUCTNAME API"
msgstr "%PRODUCTNAME ཨེ་པི་ཨའི་ བརྒྱུད་དེ་ ཨེཌི་ཨིནསི།"
@@ -26399,7 +24996,6 @@ msgstr "%PRODUCTNAME ཨེ་པི་ཨའི་ བརྒྱུད་དེ
msgctxt ""
"04060111.xhp\n"
"par_id3149351\n"
-"73\n"
"help.text"
msgid "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"http://api.libreoffice.org/\">API</link>."
msgstr "ཨེཌི་ཨིནསི་དེ་ %PRODUCTNAME <link href=\"http://api.openoffice.org/\"> ཨེ་པི་ཨའི་ </link> བརྒྱུད་དེ་ བསྟར་སྤྱོད་འབད་ཚུགསཔ་ཨིན།"
@@ -26424,7 +25020,6 @@ msgstr "<bookmark_value>ལས་རིམ་བཟོ་དོ་ ཁ་སྐ
msgctxt ""
"04060112.xhp\n"
"hd_id3151076\n"
-"1\n"
"help.text"
msgid "Add-in for Programming in $[officename] Calc"
msgstr "$[officename] ཀེལ་སི་ ནང་ ལས་རིམ་བཟོ་ལས་དོན་ལུ་ ཨེཌི་ཨིནསི།"
@@ -26433,7 +25028,6 @@ msgstr "$[officename] ཀེལ་སི་ ནང་ ལས་རིམ་བ
msgctxt ""
"04060112.xhp\n"
"par_id3147001\n"
-"220\n"
"help.text"
msgid "The method of extending Calc by Add-Ins that is described in the following is outdated. The interfaces are still valid and supported, to ensure compatibility with existing Add-Ins, but for programming new Add-Ins you should use the new <link href=\"text/shared/guide/integratinguno.xhp\" name=\"API functions\">API functions</link>."
msgstr "འོག་ལུ་འགྲེལ་བཤད་རྐྱབ་ཡོད་པའི་ཨེཌི་ཨིནསི་ཐོག་ལས་ ཀེལ་སི་རྒྱ་བསྐྱེད་བཏང་ནི་ཐབས་ལམ་དེ་དུས་ལས་ཡོལ་ནུག གནས་བཞིན་ཡོད་པའི་ཨེཌི་ཨིནསི་ དང་བཅས་པའི་མཐུན་འགྱུར་ངེས་བརྟན་བཟོ་ནི་དོན་ལུ་ ངོས་འདྲ་བ་ཚུ་ ད་ལྟོ་བར་ཡང་ ནུས་ཅན་ཡོདཔ་མ་ཚད་རྒྱབ་སྐྱོར་འབད་ཡོདཔ་ཨིན་པས་ ནི་འབདཝ་ད་ ཨེཌི་ཨིནསི་གསརཔ་ལས་རིམ་བཟོ་ལས་དོན་ལུ་ ཁྱོད་ཀྱིས་ <link href=\"text/shared/guide/integratinguno.xhp\" name=\"API functions\">API ལས་འགན་ཚུ་ལག་ལེན་འཐབ་དགོཔ་ཨིན། </link>"
@@ -26442,7 +25036,6 @@ msgstr "འོག་ལུ་འགྲེལ་བཤད་རྐྱབ་ཡོ
msgctxt ""
"04060112.xhp\n"
"par_id3150361\n"
-"2\n"
"help.text"
msgid "$[officename] Calc can be expanded by Add-Ins, which are external programming modules providing additional functions for working with spreadsheets. These are listed in the <emph>Function Wizard</emph> in the <emph>Add-In</emph> category. If you would like to program an Add-In yourself, you can learn here which functions must be exported by the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>external DLL</defaultinline></switchinline> so that the Add-In can be successfully attached."
msgstr "$[officename] ཀེལ་སི་དེ་ ཤོག་ཁྲམ་ཚུ་དང་ལཱ་འབད་ནིའི་དོན་ལུ་ ལས་འགན་ཁ་སྐོང་ཚུ་བྱིན་པའི་ཕྱིའི་ལས་རིམ་བཟོ་ལས་ཚད་གཞི་ཚུ་ཨིན་པའི་ ཨེཌི་ཨིནསི་ཐོག་ལས་ རྒྱ་བསྐྱེད་བཏང་བཏུབ་ཨིན། འ་ནི་ཚུ་ <emph> ཨེཌི་དབྱ་རིམ་ནང་གི་ </emph> ལས་འགན་ཝི་ཛརཌི་ <emph> ནང་ཐོ་བཀོད་ </emph> འབད་ཡོདཔ་ཨིན། ཁྱོད་རང་གིས་ ཨེཌི་ཨིན་གཅིག་ལས་རིམ་བཟོ་དགོ་འདོད་པ་ཅིན་ ཁྱོད་ཀྱིས་ ནཱ་ལུ་ ཨེཌི་ཨིན་དེ་མཐར་འཁྱོལཝ་སྦེ་མཉམ་སྦྲགས་འབད་ཚུགས་ནིའི་དོན་ལུ་ ལས་འགན་ག་དེ་ <switchinline select=\"sys\"><caseinline select=\"UNIX\"> རུབ་སྤྱོད་དཔེ་མཇོད་ </caseinline><defaultinline> ཕྱིའི་ ཌི་ཨེལ་ཨེལ་ </defaultinline></switchinline> ཐོག་ལས་ ཕྱིར་འདྲེན་འབད་དགོཔ་ཨིན་ན་ ཤེས་ཚུངསཔ་ཨིན།"
@@ -26451,7 +25044,6 @@ msgstr "$[officename] ཀེལ་སི་དེ་ ཤོག་ཁྲམ་ཚ
msgctxt ""
"04060112.xhp\n"
"par_id3149211\n"
-"3\n"
"help.text"
msgid "$[officename] searches the Add-in folder defined in the configuration for a suitable <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline>. To be recognized by $[officename], the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline> must have certain properties, as explained in the following. This information allows you to program your own Add-In for <emph>Function Wizard</emph> of $[officename] Calc."
msgstr "$[officename] གིས་ ཁ་སྐོང་རྐྱབས་ནིའི་སྣོད་འཛིན་ རིམ་སྒྲིག་ནང་ལུ་ངེས་འཛིན་འབད་ཡོད་མི་འདི་ འོས་འབབ་ <switchinline select=\"sys\"><caseinline select=\"UNIX\">རུབ་སྤྱོད་འབད་ཡོད་པའི་དཔེ་མཛོད་ </caseinline><defaultinline>ཌི་ཨེལ་ཨེལ་</defaultinline></switchinline>དོན་ལུ་སེལ་འཐུ་འབདཝ་ཨིན། $[officename] ངོས་འཛིན་འབད་ནིའི་དོན་ལས་ <switchinline select=\"sys\"><caseinline select=\"UNIX\">རུབ་སྤྱོད་འབད་ཡོད་པའི་དཔེ་མཛོད་ </caseinline><defaultinline>ཌི་ཨེལ་ཨེལ་</defaultinline></switchinline> འདི་ལུ་ འོག་ལུ་གསལ་བཤད་འབད་ཡོད་དོ་བཟུམ་སྦེ་ རྒྱུ་དངོས་ལ་ལོ་ཅིག་དགོ། འ་ནི་བརྡ་དོན་འདི་གིས་ ཁྱོད་ལུ་ ཁྱོད་རའི་རང་དབང་གི་ཁ་སྐོང་འདི་ <emph>ལས་འགན་ཝི་ཛརཌི་</emph> $[officename] ཀེལཀི་གི་འདི་ ལས་རིམ་བཟོ་བཅུགཔ་ཨིན།"
@@ -26460,7 +25052,6 @@ msgstr "$[officename] གིས་ ཁ་སྐོང་རྐྱབས་ནི
msgctxt ""
"04060112.xhp\n"
"hd_id3146981\n"
-"4\n"
"help.text"
msgid "The Add-In Concept"
msgstr "ཨེཌི་ཨིན་ བསམ་གཞི།"
@@ -26469,7 +25060,6 @@ msgstr "ཨེཌི་ཨིན་ བསམ་གཞི།"
msgctxt ""
"04060112.xhp\n"
"par_id3156292\n"
-"5\n"
"help.text"
msgid "Each Add-In library provides several functions. Some functions are used for administrative purposes. You can choose almost any name for your own functions. However, they must also follow certain rules regarding parameter passing. The exact naming and calling conventions vary for different platforms."
msgstr "དཔེ་མཛོད་ནང་ ཨེཌི་ཨིན་རེ་རེ་གིས་ ལས་འགན་ཚུ་ལེ་ཤ་བྱིནམ་ཨིན། ལས་འགན་ལ་ལོ་ཅིག་ བདག་སྐྱོང་གི་དགོས་དོན་ཚུ་ལུ་ལག་ལེན་འཐབ་སྟེ་ཡོདཔ་ཨིན། ཁྱོད་ཀྱིས་ ཁྱོད་རང་གི་ལས་འགན་ཚུའི་དོན་ལུ་ ཕལ་ཆེར་མིང་གང་རུང་གདམ་བཏུབ་ཨིན། དེ་འབདཝ་ད་ ཁོང་ཚུ་གིས་ ཚད་བཟུང་གནང་བའི་སྐོར་ལས་ ལམ་ལུགས་ཚུ་ལ་ལོ་ཅིག་རྗེས་སུ་འབྲང་དགོཔ་ཨིན། མིང་བཏགས་ནི་དང་ གྲོས་འཛོམས་འབོ་ནི་ཏག་ཏག་དེ་ མཉེན་རིམ་སོ་སོར་ཚུ་ལུ་ ཁྱད་པར་ཞུགསཔ་ཨིན།"
@@ -26478,7 +25068,6 @@ msgstr "དཔེ་མཛོད་ནང་ ཨེཌི་ཨིན་རེ
msgctxt ""
"04060112.xhp\n"
"hd_id3152890\n"
-"6\n"
"help.text"
msgid "Functions of <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>AddIn DLL</defaultinline></switchinline>"
msgstr "རུབ་སྤྱོད་འབད་ཡོད་པའི་ <switchinline select=\"sys\"><caseinline select=\"UNIX\"> དཔེ་མཛོད་ </caseinline><defaultinline> ཨེཌི་ ཌི་ཨེལ་ཨེལ་ གྱི་ </defaultinline></switchinline> ལས་འགན་ཚུ།"
@@ -26487,7 +25076,6 @@ msgstr "རུབ་སྤྱོད་འབད་ཡོད་པའི་ <swit
msgctxt ""
"04060112.xhp\n"
"par_id3148837\n"
-"7\n"
"help.text"
msgid "At a minimum, the administrative functions <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> must exist. Using these, the functions as well as parameter types and return values can be determined. As return values, the Double and String types are supported. As parameters, additionally the cell areas <link href=\"text/scalc/01/04060112.xhp\" name=\"Double Array\">Double Array</link>, <link href=\"text/scalc/01/04060112.xhp\" name=\"String Array\">String Array</link>, and <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\">Cell Array</link> are supported."
msgstr "ཉུང་མཐའ་ལུ་ བདག་སྐྱོང་གི་ལས་འགན་ཚུ་ནང་ <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link> དང་ <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> ཚུ་གནས་དགོཔ་ཨིན། འ་ནི་ཚུ་ལག་ལེན་ཐོག་ལས་ ལས་འགན་མ་ཚད་ཚད་བཟུང་དབྱེ་བ་ཚུ་དང་ སླར་ལོག་གནས་གོང་ཚུ་ གཏན་འབེབས་བཟོ་ཚུགསཔ་ཨིན། སླར་ལོག་གནས་གོང་བཟུམ་སྦེ་ གཉིས་ལྡན་དང་ ཡིག་རྒྱུན་དབྱེ་བ་ཚུ་ རྒྱབ་སྐྱོར་འབད་ཡོདཔ་ཨིན། ཚད་བཟུང་ཚུ་བཟུམ་སྦེ་ ཁ་སྐོང་དང་འཁྲིལ་ཏེ་ ནང་ཐིག་མངའ་ཁོངས་ཚུ་ <link href=\"text/scalc/01/04060112.xhp\" name=\"Double Array\"> ཨེ་རེ་གཉིས་ལྡན་ </link> ཡིག་རྒྱུན་ཨེ་རེ་ <link href=\"text/scalc/01/04060112.xhp\" name=\"String Array\"> ནང་ཐིག་ཨེ་རེ་ཚུ་ </link>, and <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\"> རྒྱབ་སྐྱོར་ </link> འབད་དེ་ཡོདཔ་ཨིན།"
@@ -26496,7 +25084,6 @@ msgstr "ཉུང་མཐའ་ལུ་ བདག་སྐྱོང་གི
msgctxt ""
"04060112.xhp\n"
"par_id3148604\n"
-"8\n"
"help.text"
msgid "Parameters are passed using references. Therefore, a change of these values is basically possible. However, this is not supported in $[officename] Calc because it does not make sense within spreadsheets."
msgstr "ཚད་བཟུང་ཚུ་ གཞི་བསྟུན་ཚུ་ལག་ལེན་ཐོག་ལས་ རྩིས་སྤྲོད་འབད་ཡོདཔ་ཨིན། ནི་འབདཝ་ལས་ འ་ནི་གནས་གོང་ཚུའི་བསྒྱུར་བཅོས་དེ་ འབྱུང་ཚུགསཔ་ཨིན། དེ་འབདཝ་ད་ འ་ནི་དེ་ $[officename] ཀེལ་སི་ནང་ལུ་ རྒྱབ་སྐྱོར་འབད་དེ་མེདཔ་ཨིན་ ག་ཅི་སྦེ་ཟེར་བ་ཅིན་ ཤོག་ཁྲམ་ཚུ་དང་གཅིག་ཁར་དེ་གིས་ གོ་དོན་མི་བྱིན་པས།"
@@ -26505,7 +25092,6 @@ msgstr "ཚད་བཟུང་ཚུ་ གཞི་བསྟུན་ཚུ
msgctxt ""
"04060112.xhp\n"
"par_id3150112\n"
-"9\n"
"help.text"
msgid "Libraries can be reloaded during runtime and their contents can be analyzed by the administrative functions. For each function, information is available about count and type of parameters, internal and external function names and an administrative number."
msgstr "དཔེ་མཛོད་ཚུ་ རཱན་ཊའིམ་སྐབས་སུ་ཡང་བསྐྱར་མངོན་གསལ་འབད་བཏུབ་མ་ཚད་ དེའི་ནང་དོན་ཚུ་ བདག་སྐྱོང་གི་ལས་འགན་ཚུའི་ཐོག་ལས་ དཔྱད་ཞིབ་འབད་བཏུབ་ཨིན། ལས་འགན་རེ་རེ་དོན་ལུ་ ཚད་བཟུང་ཚུའི་གྱངས་ཁ་བརྐྱབ་ནི་དང་ དབྱེ་བའི་སྐོར་ ཕྱི་ནང་ལས་འགན་མིང་ཚུ་དང་ བདག་སྐྱོང་གི་ཨང་གྲངས་ཚུའི་སྐོར་ལས་བརྡ་དོན་འཐོབ་ཆོག་ཆོག་སྦེ་ཡོདཔ་ཨིན།"
@@ -26514,7 +25100,6 @@ msgstr "དཔེ་མཛོད་ཚུ་ རཱན་ཊའིམ་སྐ
msgctxt ""
"04060112.xhp\n"
"par_id3155269\n"
-"10\n"
"help.text"
msgid "The functions are called synchronously and return their results immediately. Real time functions (asynchronous functions) are also possible; however, they are not explained in detail because of their complexity."
msgstr "ལས་འགན་ཚུ་ དུས་མཉམ་དུ་འབོ་ཡོདཔ་ལས་ཁོང་གི་གྲུབ་འབྲས་ཚུ་དེ་འཕྲལ་ལས་རང་སླར་ལོག་འབདཝ་ཨིན། དུས་ཚོད་ངོ་མ་ལས་འགན་ཚུ་ཡང་འབྱུང་སྲིདཔ་ཨིན་(དུས་མཉམ་དུ་མི་འབྱུང་བ་) ཨིན་ཏེ་འབད་རུང་ དེ་ཚུ་ ཁོང་རའི་མགོ་རྙོགས་དྲགས་ལུ་བརྟེན་ཏེ་ དེ་ཚུ་ རྒྱས་བཤད་སྦེ་གསལ་བཤད་འབད་དེ་མེདཔ་ཨིན།"
@@ -26523,7 +25108,6 @@ msgstr "ལས་འགན་ཚུ་ དུས་མཉམ་དུ་འབ
msgctxt ""
"04060112.xhp\n"
"hd_id3145077\n"
-"11\n"
"help.text"
msgid "General information about the interface"
msgstr "ངོས་འདྲ་བ་སྐོར་ལས་ ཡོངས་ཁྱབ་བརྡ་དོན།"
@@ -26532,7 +25116,6 @@ msgstr "ངོས་འདྲ་བ་སྐོར་ལས་ ཡོངས་
msgctxt ""
"04060112.xhp\n"
"par_id3146776\n"
-"12\n"
"help.text"
msgid "The maximum number of parameters in an Add-In function attached to $[officename] Calc is 16: one return value and a maximum of 15 function input parameters."
msgstr "$[officename] ཀེལ་སི་ལུ་ ཨེཌི་ཨིན་ལས་འགན་ནང་མཉམ་སྦྲགས་འབད་ཡོད་པའི་ ཚད་བཟུང་ཚུའི་ ཨང་གྲངས་མང་མཐའ་དེ་ ༡༦ ཨིན། གཅིག་གིས་ གནས་གོང་དང་ ལས་འགན་ ༡༥ མང་མཐའ་གིས་ ཨིན་པུཊི་ཚད་བཟུང་ཚུ་སླར་ལོག་འབདཝ་ཨིན།"
@@ -26541,7 +25124,6 @@ msgstr "$[officename] ཀེལ་སི་ལུ་ ཨེཌི་ཨིན་
msgctxt ""
"04060112.xhp\n"
"par_id3149899\n"
-"13\n"
"help.text"
msgid "The data types are defined as follows:"
msgstr "གནད་སྡུད་དབྱེ་བ་ཚུ་ འོག་ལུ་ཡོད་མི་བཟུམ་སྦེ་ ངེས་འཛིན་འབད་ཡོད།:"
@@ -26550,7 +25132,6 @@ msgstr "གནད་སྡུད་དབྱེ་བ་ཚུ་ འོག་
msgctxt ""
"04060112.xhp\n"
"par_id3151302\n"
-"14\n"
"help.text"
msgid "<emph>Data types</emph>"
msgstr "<emph> གནད་སྡུད་དབྱེ་བ་ཚུ། </emph>"
@@ -26559,7 +25140,6 @@ msgstr "<emph> གནད་སྡུད་དབྱེ་བ་ཚུ། </emph>
msgctxt ""
"04060112.xhp\n"
"par_id3143222\n"
-"15\n"
"help.text"
msgid "<emph>Definition</emph>"
msgstr "<emph> ངེས་ཚིག </emph>"
@@ -26568,7 +25148,6 @@ msgstr "<emph> ངེས་ཚིག </emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3149384\n"
-"16\n"
"help.text"
msgid "CALLTYPE"
msgstr "CALLTYPE"
@@ -26577,7 +25156,6 @@ msgstr "CALLTYPE"
msgctxt ""
"04060112.xhp\n"
"par_id3146963\n"
-"17\n"
"help.text"
msgid "Under Windows: FAR PASCAL (_far _pascal)"
msgstr "ཝིན་ཌོསི་ : FAR PASCAL (_far _pascal) འོག་ལུ།"
@@ -26586,7 +25164,6 @@ msgstr "ཝིན་ཌོསི་ : FAR PASCAL (_far _pascal) འོག་ལ
msgctxt ""
"04060112.xhp\n"
"par_id3153809\n"
-"18\n"
"help.text"
msgid "Other: default (operating system specific default)"
msgstr "གཞན་ : སྔོན་སྒྲིག་ (རིམ་ལུགས་དམིགས་བསལ་སྔོན་སྒྲིག་བཀོལ་སྤྱོད་འབད་དོ།)"
@@ -26595,7 +25172,6 @@ msgstr "གཞན་ : སྔོན་སྒྲིག་ (རིམ་ལུག
msgctxt ""
"04060112.xhp\n"
"par_id3154734\n"
-"19\n"
"help.text"
msgid "USHORT"
msgstr "USHORT"
@@ -26604,7 +25180,6 @@ msgstr "USHORT"
msgctxt ""
"04060112.xhp\n"
"par_id3155760\n"
-"20\n"
"help.text"
msgid "2 Byte unsigned Integer"
msgstr "མིང་རྟགས་མ་བཀོད་མི་ཧྲིལ་ཨང་བཱའིཊི་ ༢།"
@@ -26613,7 +25188,6 @@ msgstr "མིང་རྟགས་མ་བཀོད་མི་ཧྲིལ་
msgctxt ""
"04060112.xhp\n"
"par_id3145320\n"
-"21\n"
"help.text"
msgid "DOUBLE"
msgstr "DOUBLE"
@@ -26622,7 +25196,6 @@ msgstr "DOUBLE"
msgctxt ""
"04060112.xhp\n"
"par_id3150956\n"
-"22\n"
"help.text"
msgid "8 byte platform-dependent format"
msgstr "རེ་མི་རྩ་སྒྲིག་མཉེན་རིམ་ བཱའིཊི་ ༨།(-d)"
@@ -26631,7 +25204,6 @@ msgstr "རེ་མི་རྩ་སྒྲིག་མཉེན་རིམ་
msgctxt ""
"04060112.xhp\n"
"par_id3146097\n"
-"23\n"
"help.text"
msgid "Paramtype"
msgstr "པེ་རེམ་ཊ་ཡིཔ།"
@@ -26640,7 +25212,6 @@ msgstr "པེ་རེམ་ཊ་ཡིཔ།"
msgctxt ""
"04060112.xhp\n"
"par_id3150432\n"
-"24\n"
"help.text"
msgid "Platform-dependent like int"
msgstr "ཨའི་ཨེན་ཊི་དང་ འདྲ་བའི་ རེ་མི་ མཉེན་རིམ།(-d)"
@@ -26649,7 +25220,6 @@ msgstr "ཨའི་ཨེན་ཊི་དང་ འདྲ་བའི་ ར
msgctxt ""
"04060112.xhp\n"
"par_id3153955\n"
-"25\n"
"help.text"
msgid "PTR_DOUBLE =0 pointer to a double"
msgstr "PTR_DOUBLE = གཉིས་ལྡན་ལུ་ དཔག་བྱེད་ ༠།"
@@ -26658,7 +25228,6 @@ msgstr "PTR_DOUBLE = གཉིས་ལྡན་ལུ་ དཔག་བྱེ
msgctxt ""
"04060112.xhp\n"
"par_id3159262\n"
-"26\n"
"help.text"
msgid "PTR_STRING =1 pointer to a zero-terminated string"
msgstr "PTR_STRING = ༡ ཀླད་ཀོར་རྩ་གྲོལ་གཏང་ཡོད་པའི་ཡིག་རྒྱུན་ལུ་ དཔག་བྱེད།(-t)"
@@ -26667,7 +25236,6 @@ msgstr "PTR_STRING = ༡ ཀླད་ཀོར་རྩ་གྲོལ་གཏ
msgctxt ""
"04060112.xhp\n"
"par_id3148747\n"
-"27\n"
"help.text"
msgid "PTR_DOUBLE_ARR =2 pointer to a double array"
msgstr "PTR_DOUBLE_ARR =༢ ཨེ་རེ་གཉིས་ལྡན་ལུ་དཔག་བྱེད།"
@@ -26676,7 +25244,6 @@ msgstr "PTR_DOUBLE_ARR =༢ ཨེ་རེ་གཉིས་ལྡན་ལུ
msgctxt ""
"04060112.xhp\n"
"par_id3147406\n"
-"28\n"
"help.text"
msgid "PTR_STRING_ARR =3 pointer to a string array"
msgstr "PTR_STRING_ARR =༣ ཡིག་རྒྱུན་ཨེ་རེ་ལུ་ དཔག་བྱེད།"
@@ -26685,7 +25252,6 @@ msgstr "PTR_STRING_ARR =༣ ཡིག་རྒྱུན་ཨེ་རེ་ལ
msgctxt ""
"04060112.xhp\n"
"par_id3151392\n"
-"29\n"
"help.text"
msgid "PTR_CELL_ARR =4 pointer to a cell array"
msgstr "PTR_CELL_ARR = ༤ ནང་ཐིག་ཨེ་རེ་ལུ་ དཔག་བྱེད།"
@@ -26694,7 +25260,6 @@ msgstr "PTR_CELL_ARR = ༤ ནང་ཐིག་ཨེ་རེ་ལུ་ ད
msgctxt ""
"04060112.xhp\n"
"par_id3153028\n"
-"30\n"
"help.text"
msgid "NONE =5"
msgstr "NONE =༥"
@@ -26703,7 +25268,6 @@ msgstr "NONE =༥"
msgctxt ""
"04060112.xhp\n"
"hd_id3156396\n"
-"31\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions"
msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\"> རུབ་སྤྱོད་འབད་ཡོད་པའི་དཔེ་མཛོད་ </caseinline><defaultinline> ཌི་ཨེལ་ཨེལ་ </defaultinline></switchinline> ལས་འགན་ཚུ།"
@@ -26712,7 +25276,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\"> རུབ་
msgctxt ""
"04060112.xhp\n"
"par_id3153019\n"
-"32\n"
"help.text"
msgid "Following you will find a description of those functions, which are called at the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>external DLL</defaultinline></switchinline>."
msgstr "འོག་ལུ་ཁྱོད་ཀྱིས་ <switchinline select=\"sys\"><caseinline select=\"UNIX\"> རུབ་སྤྱོད་འབད་ཡོད་པའི་དཔེ་མཛོད་ </caseinline><defaultinline> ཕྱིའི་ཌི་ཨེལ་ཨེལ་ </defaultinline></switchinline> ལུ་ འབོ་ཡོད་པའི་ལས་འགན་ཚུའི་འགྲེལ་བཤད་འཐོབ་ཚུགསཔ་ཨིན།"
@@ -26721,7 +25284,6 @@ msgstr "འོག་ལུ་ཁྱོད་ཀྱིས་ <switchinline select
msgctxt ""
"04060112.xhp\n"
"par_id3150038\n"
-"33\n"
"help.text"
msgid "For all <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions, the following applies:"
msgstr "རུབ་སྤྱོོད་འབད་ཡོད་པའི་དཔེ་མཇོད་ <switchinline select=\"sys\"><caseinline select=\"UNIX\"> ཌི་ཨེལ་ཨེལ་ </caseinline><defaultinline> ལས་འགན་ཚུ་ཆ་མཉམ་གྱི་དོན་ལུ་ </defaultinline></switchinline> འོག་ལུ་ཡོད་མི་ཚུ་འཇུག་སྤྱོད་འབདཝ་ཨིན།:"
@@ -26730,7 +25292,6 @@ msgstr "རུབ་སྤྱོོད་འབད་ཡོད་པའི་ད
msgctxt ""
"04060112.xhp\n"
"par_id3157876\n"
-"34\n"
"help.text"
msgid "void CALLTYPE fn(out, in1, in2, ...)"
msgstr "void CALLTYPE fn(ཕྱི་ཁར། ནང་ན་༡། ནང་ན་ ༢ ...)།"
@@ -26739,7 +25300,6 @@ msgstr "void CALLTYPE fn(ཕྱི་ཁར། ནང་ན་༡། ནང་
msgctxt ""
"04060112.xhp\n"
"par_id3147616\n"
-"35\n"
"help.text"
msgid "Output: Resulting value"
msgstr "ཨའུཊི་པུཊི་:གནས་གོང་གྲུབ་འབྲས་ཅན།"
@@ -26748,7 +25308,6 @@ msgstr "ཨའུཊི་པུཊི་:གནས་གོང་གྲུབ
msgctxt ""
"04060112.xhp\n"
"par_id3159119\n"
-"36\n"
"help.text"
msgid "Input: Any number of types (double&, char*, double*, char**, Cell area), where the <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell area\">Cell area</link> is an array of types double array, string array, or cell array."
msgstr "ཨིན་པུཊི་: དབྱེ་བ་ཚུའི་ཨང་གྲངས་གང་རུང་ (double&, char*, double*, char**, Cell area) ནང་ཐིག་མངའ་ཁོངས་དེ་ <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell area\"> ཨེ་རེ་གཉིས་ལྡན་དབྱེ་བ་ཚུའམ་ </link> ཡིག་རྒྱུན་ཨེ་རེ་ ཡང་ན་ ནང་ཐིག་ཨེ་རེ་གི་ ཨེ་རེ་ཨིན་ས།"
@@ -26757,7 +25316,6 @@ msgstr "ཨིན་པུཊི་: དབྱེ་བ་ཚུའི་ཨང
msgctxt ""
"04060112.xhp\n"
"hd_id3150653\n"
-"37\n"
"help.text"
msgid "GetFunctionCount()"
msgstr "ལས་འགན་གྱངས་ཁ་རྐྱབས་ནི་ལེན།()"
@@ -26766,7 +25324,6 @@ msgstr "ལས་འགན་གྱངས་ཁ་རྐྱབས་ནི་ལ
msgctxt ""
"04060112.xhp\n"
"par_id3152981\n"
-"38\n"
"help.text"
msgid "Returns the number of functions without the management functions of the reference parameter. Each function has a unique number between 0 and nCount-1. This number will be needed for the <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link> functions later."
msgstr "གཞི་བསྟུན་ཚད་བཟུང་གི་ འཛིན་སྐྱོང་ལས་འགན་ཚུ་མེདཔ་སྦེ་ལས་འགན་ཚུའི་གྱངས་ཁ་སླར་ལོག་འབདཝ་ཨིན། ལས་འགན་རེ་རེ་ལུ་ ༠ དང་ nCount-1 བར་ མཐུན་མོང་མ་ཡིན་པའི་ཨང་གྲངས་ཡོད། འ་ནི་ཨང་གྲངས་དེ་ ཤུལ་ལས་ <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> དང་ <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link> ལས་འགན་ཚུ་ལུ་ དགོཔ་ཨིན།"
@@ -26775,7 +25332,6 @@ msgstr "གཞི་བསྟུན་ཚད་བཟུང་གི་ འཛ
msgctxt ""
"04060112.xhp\n"
"par_id3150742\n"
-"39\n"
"help.text"
msgid "<emph>Syntax</emph>"
msgstr "<emph> ཚིག་སྦྱོར། </emph>"
@@ -26784,7 +25340,6 @@ msgstr "<emph> ཚིག་སྦྱོར། </emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3148728\n"
-"40\n"
"help.text"
msgid "void CALLTYPE GetFunctionCount(USHORT& nCount)"
msgstr "void CALLTYPE GetFunctionCount(USHORT& nCount)"
@@ -26793,7 +25348,6 @@ msgstr "void CALLTYPE GetFunctionCount(USHORT& nCount)"
msgctxt ""
"04060112.xhp\n"
"par_id3154677\n"
-"41\n"
"help.text"
msgid "<emph>Parameter</emph>"
msgstr "<emph> ཚད་བཟུང་། </emph>"
@@ -26802,7 +25356,6 @@ msgstr "<emph> ཚད་བཟུང་། </emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3146940\n"
-"42\n"
"help.text"
msgid "USHORT &nCount:"
msgstr "USHORT &nCount:"
@@ -26811,7 +25364,6 @@ msgstr "USHORT &nCount:"
msgctxt ""
"04060112.xhp\n"
"par_id3149893\n"
-"43\n"
"help.text"
msgid "Output: Reference to a variable, which is supposed to contain the number of Add-In functions. For example: If the Add-In provides 5 functions for $[officename] Calc, then nCount=5."
msgstr "ཨའུཊི་པུཊི་: ཨེཌི་ཨིན་ལས་འགན་ཚུ་གི་གྱངས་ཁ་ཤོམ་ནི་ཨིན་པའི་འགྱུར་ཅན་ལུ་གཞི་བསྟུན། དཔེ་འབད་བ་ཅིན་: ཨེཌི་ཨིན་གྱིས་ $[officename] ཀེལ་སི་དོན་ལུ་ ལས་འགན་ ༥ བྱིན་པ་ཅིན་ nCount= ༥ ཨིན།"
@@ -26820,7 +25372,6 @@ msgstr "ཨའུཊི་པུཊི་: ཨེཌི་ཨིན་ལས་
msgctxt ""
"04060112.xhp\n"
"hd_id3147476\n"
-"44\n"
"help.text"
msgid "GetFunctionData()"
msgstr "ལས་འགན་གནད་སྡུད་ལེན།()"
@@ -26829,7 +25380,6 @@ msgstr "ལས་འགན་གནད་སྡུད་ལེན།()"
msgctxt ""
"04060112.xhp\n"
"par_id3154841\n"
-"45\n"
"help.text"
msgid "Determines all the important information about an Add-In function."
msgstr "ཨེཌི་ཨིན་ལས་འགན་སྐོར་ལས་ བརྡ་དོན་གལ་ཅན་ཚུ་ཆ་མཉམ་རང་གཏན་འབེབས་བཟོཝ་ཨིན།(-I)"
@@ -26838,7 +25388,6 @@ msgstr "ཨེཌི་ཨིན་ལས་འགན་སྐོར་ལས་
msgctxt ""
"04060112.xhp\n"
"par_id3148888\n"
-"46\n"
"help.text"
msgid "<emph>Syntax</emph>"
msgstr "<emph> ཚིག་སྦྱོར། </emph>"
@@ -26847,7 +25396,6 @@ msgstr "<emph> ཚིག་སྦྱོར། </emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3148434\n"
-"47\n"
"help.text"
msgid "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
msgstr "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
@@ -26856,7 +25404,6 @@ msgstr "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nPar
msgctxt ""
"04060112.xhp\n"
"par_id3149253\n"
-"48\n"
"help.text"
msgid "<emph>Parameter</emph>"
msgstr "<emph> ཚད་བཟུང་། </emph>"
@@ -26865,7 +25412,6 @@ msgstr "<emph> ཚད་བཟུང་། </emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3149686\n"
-"49\n"
"help.text"
msgid "USHORT& nNo:"
msgstr "USHORT& nNo:"
@@ -26874,7 +25420,6 @@ msgstr "USHORT& nNo:"
msgctxt ""
"04060112.xhp\n"
"par_id3149949\n"
-"50\n"
"help.text"
msgid "Input: Function number between 0 and nCount-1, inclusively."
msgstr "ཨིན་པུཊི་ : ༠ དང་ nCount-1 བར་གྱི་ ལས་འགན་ཨང་གྲངས་བརྩིས་ཏེ།"
@@ -26883,7 +25428,6 @@ msgstr "ཨིན་པུཊི་ : ༠ དང་ nCount-1 བར་གྱི
msgctxt ""
"04060112.xhp\n"
"par_id3149546\n"
-"51\n"
"help.text"
msgid "char* pFuncName:"
msgstr "char* pFuncName:"
@@ -26892,7 +25436,6 @@ msgstr "char* pFuncName:"
msgctxt ""
"04060112.xhp\n"
"par_id3148579\n"
-"52\n"
"help.text"
msgid "Output: Function name as seen by the programmer, as it is named in the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline>. This name does not determine the name used in the <emph>Function Wizard</emph>."
msgstr "ཨའུཊི་པུཊི་: <switchinline select=\"sys\"><caseinline select=\"UNIX\"> རུབ་སྤྱོད་འབད་ཡོད་པའི་དཔེ་མཛོད་ </caseinline><defaultinline> ཌི་ཨེལ་ཨེལ་ </defaultinline></switchinline> གིས་ མིང་བཏགས་ཡོད་དོ་བཟུམ་སྦེ་ ལས་རིམ་བཟོ་མི་གིས་ མཐོང་ཡོད་པའི་ལས་འགན་མིང་། འ་ནི་མིང་གིས་ <emph> ལས་འགན་ཝི་ཛརཌི་ནང་ </emph> ལག་ལེན་འཐབ་ཡོད་པའི་ མིང་ གཏན་འབེབས་བཟོ་ནི་མེདཔ་ཨིན།"
@@ -26901,7 +25444,6 @@ msgstr "ཨའུཊི་པུཊི་: <switchinline select=\"sys\"><casein
msgctxt ""
"04060112.xhp\n"
"par_id3153935\n"
-"53\n"
"help.text"
msgid "USHORT& nParamCount:"
msgstr "USHORT& nParamCount:"
@@ -26910,7 +25452,6 @@ msgstr "USHORT& nParamCount:"
msgctxt ""
"04060112.xhp\n"
"par_id3150142\n"
-"54\n"
"help.text"
msgid "Output: Number of parameters in AddIn function. This number must be greater than 0, because there is always a result value; the maximum value is 16."
msgstr "ཨའུཊི་པུཊི་: ཨེཌི་ལས་འགན་ནང་ ཚད་བཟུང་ཚུའི་ཨང་གྲ། འ་ནི་ཨང་གྲངས་དེ་"
@@ -26919,7 +25460,6 @@ msgstr "ཨའུཊི་པུཊི་: ཨེཌི་ལས་འགན་
msgctxt ""
"04060112.xhp\n"
"par_id3145143\n"
-"55\n"
"help.text"
msgid "Paramtype* peType:"
msgstr "Paramtype* peType:"
@@ -26928,7 +25468,6 @@ msgstr "Paramtype* peType:"
msgctxt ""
"04060112.xhp\n"
"par_id3148750\n"
-"56\n"
"help.text"
msgid "Output: Pointer to an array of exactly 16 variables of type Paramtype. The first nParamCount entries are filled with the suitable type of parameter."
msgstr "ཨའུཊི་པུཊི་: དབྱེ་བ་ཚད་བཟུང་དབྱེ་བའི་ འགྱུར་ཅན་ ༡༦ ཏག་ཏག་ཚུའི་ཨེ་རེ་ལུ་ དཔག་བྱེད། དང་པའི་ nParamCount ཐོ་བཀོད་ཚུ་ ཚད་བཟུང་གི་འོས་འབབ་དབྱེ་བ་གིས་བཀང་སྟེ་ཡོད།"
@@ -26937,7 +25476,6 @@ msgstr "ཨའུཊི་པུཊི་: དབྱེ་བ་ཚད་བཟ
msgctxt ""
"04060112.xhp\n"
"par_id3153078\n"
-"57\n"
"help.text"
msgid "char* pInternalName:"
msgstr "char* pInternalName:"
@@ -26946,7 +25484,6 @@ msgstr "char* pInternalName:"
msgctxt ""
"04060112.xhp\n"
"par_id3155261\n"
-"58\n"
"help.text"
msgid "Output: Function name as seen by the user, as it appears in the <emph>Function Wizard</emph>. May contain umlauts."
msgstr "ཨའུཊི་པུཊི་: <emph> ལས་འགན་ཝི་ཛརཌི་ </emph> ནང་འབྱུང་མི་ལག་ལེན་པས་མཐོང་མི་བཟུམ་མི་ལས་འགན་མིང་། ཡང་་ཅིན་འབདན་ ཨམ་ལོཊིསི་ ཤོམ་ཏེ་ཡོདཔ་འོང་།"
@@ -26955,7 +25492,6 @@ msgstr "ཨའུཊི་པུཊི་: <emph> ལས་འགན་ཝི
msgctxt ""
"04060112.xhp\n"
"par_id3153327\n"
-"59\n"
"help.text"
msgid "The pFuncName and pInternalName parameters are char arrays, which are implemented with size 256 in $[officename] Calc."
msgstr "pFuncName and pInternalName ཚད་བཟུང་ཚུ་ $[officename] ཀེལ་སི་ ནང་ ཚད་ ༢༥༦ གཅིག་ཁར་ བསྟར་སྤྱོད་འབད་ཡོད་པའི་ལཱ་འགན་འགྲུབ་པའི་ཨེ་རེ་ཚུ་ཨིན།"
@@ -26964,7 +25500,6 @@ msgstr "pFuncName and pInternalName ཚད་བཟུང་ཚུ་ $[officena
msgctxt ""
"04060112.xhp\n"
"hd_id3148567\n"
-"60\n"
"help.text"
msgid "GetParameterDescription()"
msgstr "ཚད་བཟུང་འགྲེལ་བཤད་ལེན།()"
@@ -26973,7 +25508,6 @@ msgstr "ཚད་བཟུང་འགྲེལ་བཤད་ལེན།()"
msgctxt ""
"04060112.xhp\n"
"par_id3153000\n"
-"61\n"
"help.text"
msgid "Provides a brief description of the Add-In function and its parameters. As an option, this function can be used to show a function and parameter description in the <emph>Function Wizard</emph>."
msgstr "ཨེཌི་ཨིན་ལས་འགན་དང་ དེའི་ཚད་བཟུང་ཚུའི་ འགྲེལ་བཤད་མདོར་བསྡུས་ཅིག་བྱིནམ་ཨིན། གདམ་ཁ་སྦེ་ འ་ནི་ལས་འགན་དེ་ <emph> ལས་འགན་ཝི་ཛརཌི་ </emph> ནང་ ལས་འགན་དང་ ཚད་བཟུང་འགྲེལ་བཤད་ཚུ་སྟོན་ནིའི་དོན་ལུ་ ལག་ལེན་འཐབ་བཏུབ་ཨིན།"
@@ -26982,7 +25516,6 @@ msgstr "ཨེཌི་ཨིན་ལས་འགན་དང་ དེའི
msgctxt ""
"04060112.xhp\n"
"par_id3154501\n"
-"62\n"
"help.text"
msgid "<emph>Syntax</emph>"
msgstr "<emph> ཚིག་སྦྱོར། </emph>"
@@ -26991,7 +25524,6 @@ msgstr "<emph> ཚིག་སྦྱོར། </emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3153564\n"
-"63\n"
"help.text"
msgid "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
msgstr "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
@@ -27000,7 +25532,6 @@ msgstr "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char*
msgctxt ""
"04060112.xhp\n"
"par_id3157995\n"
-"64\n"
"help.text"
msgid "<emph>Parameter</emph>"
msgstr "<emph> ཚད་བཟུང་། </emph>"
@@ -27009,7 +25540,6 @@ msgstr "<emph> ཚད་བཟུང་། </emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3155925\n"
-"65\n"
"help.text"
msgid "USHORT& nNo:"
msgstr "USHORT& nNo:"
@@ -27018,7 +25548,6 @@ msgstr "USHORT& nNo:"
msgctxt ""
"04060112.xhp\n"
"par_id3149883\n"
-"66\n"
"help.text"
msgid "Input: Number of the function in the library; between 0 and nCount-1."
msgstr "ཨིན་པུཊི་: ༠ དང་ nCount-1 བར་གྱི་ དཔེ་མཛོད་ནང་ལས་འགན་གྱི་གྱངས་ཁ།"
@@ -27027,7 +25556,6 @@ msgstr "ཨིན་པུཊི་: ༠ དང་ nCount-1 བར་གྱི
msgctxt ""
"04060112.xhp\n"
"par_id3154326\n"
-"67\n"
"help.text"
msgid "USHORT& nParam:"
msgstr "USHORT& nParam:"
@@ -27036,7 +25564,6 @@ msgstr "USHORT& nParam:"
msgctxt ""
"04060112.xhp\n"
"par_id3159139\n"
-"68\n"
"help.text"
msgid "Input: Indicates, for which parameter the description is provided; parameters start at 1. If nParam is 0, the description itself is supposed to be provided in pDesc; in this case, pName does not have any meaning."
msgstr "ཨིན་པུཊི་: འགྲེལ་བཤད་དེ་ ཚད་བཟུང་ག་དེའི་དོན་ལུ་བྱིན་ཡོདཔ་ཨིན་ན་ བརྡ་སྟོནམ་ཨིན་ ཚད་བཟུང་ཚུ་ ༡ ལུ་འགོ་བཙུགསཔ་ཨིན། nParam དེ་ ༠ ཨིན་པ་ཅིན་ འགྲེལ་བཤད་དེ་ pDesc ནང་ལུ་བྱིན་དགོཔ་སྦེ་ཨིན་ འ་ནི་གནས་སྟངས་ནང་ pName ལུ་ དོན་དག་ག་ནི་ཡང་མེདཔ་ཨིན།"
@@ -27045,7 +25572,6 @@ msgstr "ཨིན་པུཊི་: འགྲེལ་བཤད་དེ་ ཚ
msgctxt ""
"04060112.xhp\n"
"par_id3147374\n"
-"69\n"
"help.text"
msgid "char* pName:"
msgstr "char* pName:"
@@ -27054,7 +25580,6 @@ msgstr "char* pName:"
msgctxt ""
"04060112.xhp\n"
"par_id3145245\n"
-"70\n"
"help.text"
msgid "Output: Takes up the parameter name or type, for example, the word \"Number\" or \"String\" or \"Date\", and so on. Implemented in $[officename] Calc as char[256]."
msgstr "ཨའུཊི་པུཊི་: ཚད་བཟུང་མིང་ངམ་ དབྱེ་བ་ལེནམ་ཨིན་ དཔེ་འབད་བ་ཅིན་ \"Number\" ཡང་ན་ \"String\" ཡང་ན་ \"Date\" ལ་སོགས། $[officename] ཀེལ་སི་ནང་ ལཱ་འགན་འགྲུབ་ནི་ [256] སྦེ་བསྟར་སྤྱོད་འབད་ཡོདཔ་ཨིན།"
@@ -27063,7 +25588,6 @@ msgstr "ཨའུཊི་པུཊི་: ཚད་བཟུང་མིང་
msgctxt ""
"04060112.xhp\n"
"par_id3151020\n"
-"71\n"
"help.text"
msgid "char* pDesc:"
msgstr "char* pDesc:"
@@ -27072,7 +25596,6 @@ msgstr "char* pDesc:"
msgctxt ""
"04060112.xhp\n"
"par_id3148389\n"
-"72\n"
"help.text"
msgid "Output: Takes up the description of the parameter, for example, \"Value, at which the universe is to be calculated.\" Implemented in $[officename] Calc as char[256]."
msgstr "ཨའུཊི་པུཊི་: ཚད་བཟུང་གི་འགྲེལ་བཤད་ལེནམ་ཨིན་ དཔེ་འབད་བ་ཅིན་ འཇིག་རྟེན་དེ་རྩིས་རྐྱབ་ཡོད་སའི་ \"Value བཟུམ། $[officename] ཀེལ་སི་ནང་ལུ་ ལཱ་འགན་འགྲུབ་ནི་ [256] སྦེ་བསྟར་སྤྱོད་འབད་ཡོདཔ།"
@@ -27081,7 +25604,6 @@ msgstr "ཨའུཊི་པུཊི་: ཚད་བཟུང་གི་འ
msgctxt ""
"04060112.xhp\n"
"par_id3145303\n"
-"73\n"
"help.text"
msgid "pName and pDesc are char arrays; implemented in $[officename] Calc with size 256. Please note that the space available in the <emph>Function Wizard</emph> is limited and that the 256 characters cannot be fully used."
msgstr "pName དང་ pDesc ཚུ་ ཚད་ ༢༥༦ དང་གཅིག་ཁར་ $[officename] ཀེལ་སི་ནང་ བསྟར་སྤྱོད་འབད་ཡོད་པའི་ལཱ་འགན་འགྲུབ་ནི་ཨིན་པའི་ཨེ་རེ་ཚུ་ཨིན། <emph> ལས་འགན་ཝི་ཛརཌི་ནང་ </emph> འཐོབ་ཚུངསཔ་སྦེ་ཡོད་པའི་ བར་སྟོང་དེ་ ཚད་ཅན་ཨིནམ་དང་ ཡིག་འབྲུ་ ༢༥༦ དེ་ གངམ་སྦེ་ལག་ལེན་འཐབ་མ་བཏུབ་ཨིནམ་དེ་དྲན་གནང་།"
@@ -27090,7 +25612,6 @@ msgstr "pName དང་ pDesc ཚུ་ ཚད་ ༢༥༦ དང་གཅི
msgctxt ""
"04060112.xhp\n"
"hd_id3148874\n"
-"76\n"
"help.text"
msgid "Cell areas"
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཚུ།"
@@ -27099,7 +25620,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཚུ།"
msgctxt ""
"04060112.xhp\n"
"par_id3150265\n"
-"77\n"
"help.text"
msgid "The following tables contain information about which data structures must be provided by an external program module in order to pass cell areas. $[officename] Calc distinguishes between three different arrays, depending on the data type."
msgstr "འོག་ལུ་ཡོད་པའི་ཐིག་ཁྲམ་ཚུ་ནང་ན་ ནང་ཐིག་མངའ་ཁོངས་ཚུ་རྩིས་སྤྲོད་ནིའི་དོན་ལུ་ ཕྱིའི་ལས་རིམ་ཚད་གཞི་གིས་ གནད་སྡུད་གཞི་བཀོད་ཚུ་ལས་ག་དེ་བྱིན་དགོཔ་ཨིན་ནའི་སྐོར་ བརྡ་དོན་ཤོམ་ཏེ་ཡོད། $[officename] ཀེལ་སི་ གིས་ གནད་སྡུད་དབྱེ་བ་ལུ་བརྟེན་ཏེ་ ཨེ་རེ་སོ་སོར་གསུམ་བར་ དབྱེ་བ་ཕྱེཝ་ཨིན།"
@@ -27108,7 +25628,6 @@ msgstr "འོག་ལུ་ཡོད་པའི་ཐིག་ཁྲམ་ཚ
msgctxt ""
"04060112.xhp\n"
"hd_id3156060\n"
-"78\n"
"help.text"
msgid "Double Array"
msgstr "ཨེ་རེ་གཉིས་ལྡནམ།"
@@ -27117,7 +25636,6 @@ msgstr "ཨེ་རེ་གཉིས་ལྡནམ།"
msgctxt ""
"04060112.xhp\n"
"par_id3149540\n"
-"79\n"
"help.text"
msgid "As a parameter, a cell area with values of the Number/Double type can be passed. A double array in $[officename] Calc is defined as follows:"
msgstr "ཚད་བཟུང་བཟུམ་སྦེ་ཡོད་མི་དེ་གིས་ ཨང་གྲངས་/དབྱེ་བ་གཉིས་ལྡན་གྱི་གནས་གོང་ཚུ་དང་གཅིག་ཁར་ཡོད་མི་ནང་ཐིག་མངའ་ཁོངས་གཅིག་རྩིས་སྤྲོད་འབད་ཚུགས། $[officename] ནང་ཨེ་རེ་གཉིས་ལྡན་དེ་ འོག་ལུ་ཡོད་མི་བཟུམ་སྦེ་ངེས་འཛིན་འབད་ཡོད།:"
@@ -27126,7 +25644,6 @@ msgstr "ཚད་བཟུང་བཟུམ་སྦེ་ཡོད་མི་
msgctxt ""
"04060112.xhp\n"
"par_id3149388\n"
-"80\n"
"help.text"
msgid "<emph>Offset</emph>"
msgstr "<emph> པར་ལེན། </emph>"
@@ -27135,7 +25652,6 @@ msgstr "<emph> པར་ལེན། </emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3154636\n"
-"81\n"
"help.text"
msgid "<emph>Name</emph>"
msgstr "<emph> མིང་། </emph>"
@@ -27144,7 +25660,6 @@ msgstr "<emph> མིང་། </emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3153228\n"
-"82\n"
"help.text"
msgid "<emph>Description</emph>"
msgstr "<emph> འགྲེལ་བཤད། </emph>"
@@ -27153,7 +25668,6 @@ msgstr "<emph> འགྲེལ་བཤད། </emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3150685\n"
-"83\n"
"help.text"
msgid "0"
msgstr ""
@@ -27162,7 +25676,6 @@ msgstr ""
msgctxt ""
"04060112.xhp\n"
"par_id3154869\n"
-"84\n"
"help.text"
msgid "Col1"
msgstr "ཀེར་ཐིག་ ༡"
@@ -27171,7 +25684,6 @@ msgstr "ཀེར་ཐིག་ ༡"
msgctxt ""
"04060112.xhp\n"
"par_id3147541\n"
-"85\n"
"help.text"
msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ ལྟག་གི་གཡོན་གྱི་སྒྱིད་ཁུག་ ནང་གི་ཀེར་ཐིག་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན། (-l)"
@@ -27180,7 +25692,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ ལྟག
msgctxt ""
"04060112.xhp\n"
"par_id3149783\n"
-"86\n"
"help.text"
msgid "2"
msgstr ""
@@ -27189,7 +25700,6 @@ msgstr ""
msgctxt ""
"04060112.xhp\n"
"par_id3155986\n"
-"87\n"
"help.text"
msgid "Row1"
msgstr "གྲལ་ཐིག་ ༡"
@@ -27198,7 +25708,6 @@ msgstr "གྲལ་ཐིག་ ༡"
msgctxt ""
"04060112.xhp\n"
"par_id3147483\n"
-"88\n"
"help.text"
msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ ལྟག་གི་གཡོན་གྱི་སྒྱིད་ཁུག་ ནང་ གྲལ་ཐིག་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།(-l)"
@@ -27207,7 +25716,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ ལྟག
msgctxt ""
"04060112.xhp\n"
"par_id3153721\n"
-"89\n"
"help.text"
msgid "4"
msgstr ""
@@ -27216,7 +25724,6 @@ msgstr ""
msgctxt ""
"04060112.xhp\n"
"par_id3154317\n"
-"90\n"
"help.text"
msgid "Tab1"
msgstr "མཆོང་ལྡེ་ ༡"
@@ -27225,7 +25732,6 @@ msgstr "མཆོང་ལྡེ་ ༡"
msgctxt ""
"04060112.xhp\n"
"par_id3149820\n"
-"91\n"
"help.text"
msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ལྟག་གི་གཡོན་གྱི་སྒྱིད་ཁུག་ ནང་ ཐིག་ཁྲམ་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།(-l)"
@@ -27234,7 +25740,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ལྟག་
msgctxt ""
"04060112.xhp\n"
"par_id3163820\n"
-"92\n"
"help.text"
msgid "6"
msgstr ""
@@ -27243,7 +25748,6 @@ msgstr ""
msgctxt ""
"04060112.xhp\n"
"par_id3149710\n"
-"93\n"
"help.text"
msgid "Col2"
msgstr "ཀེར་ཐིག་ ༢"
@@ -27252,7 +25756,6 @@ msgstr "ཀེར་ཐིག་ ༢"
msgctxt ""
"04060112.xhp\n"
"par_id3154819\n"
-"94\n"
"help.text"
msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ འོག་གི་གཡས་ཀྱི་སྒྱིད་ཁུག་ནང་ ཀེར་ཐིག་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།(-r)"
@@ -27261,7 +25764,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ འོག
msgctxt ""
"04060112.xhp\n"
"par_id3145083\n"
-"95\n"
"help.text"
msgid "8"
msgstr ""
@@ -27270,7 +25772,6 @@ msgstr ""
msgctxt ""
"04060112.xhp\n"
"par_id3156310\n"
-"96\n"
"help.text"
msgid "Row2"
msgstr "གྲལ་ཐིག་ ༢"
@@ -27279,7 +25780,6 @@ msgstr "གྲལ་ཐིག་ ༢"
msgctxt ""
"04060112.xhp\n"
"par_id3150968\n"
-"97\n"
"help.text"
msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ འོག་གི་གཡས་ཀྱི་སྒྱིད་ཁུག་ནང་ གྲལ་ཐིག་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།(-r)"
@@ -27288,7 +25788,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ འོག
msgctxt ""
"04060112.xhp\n"
"par_id3156133\n"
-"98\n"
"help.text"
msgid "10"
msgstr "༡༠"
@@ -27297,7 +25796,6 @@ msgstr "༡༠"
msgctxt ""
"04060112.xhp\n"
"par_id3153218\n"
-"99\n"
"help.text"
msgid "Tab2"
msgstr "མཆོང་ལྡེ་ ༢"
@@ -27306,7 +25804,6 @@ msgstr "མཆོང་ལྡེ་ ༢"
msgctxt ""
"04060112.xhp\n"
"par_id3147086\n"
-"100\n"
"help.text"
msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ འོག་གི་གཡས་ཀྱི་སྒྱིད་ཁུག་ནང་ ཐིག་ཁྲམ་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།(-r)"
@@ -27315,7 +25812,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ འོག
msgctxt ""
"04060112.xhp\n"
"par_id3151270\n"
-"101\n"
"help.text"
msgid "12"
msgstr "༡༢"
@@ -27324,7 +25820,6 @@ msgstr "༡༢"
msgctxt ""
"04060112.xhp\n"
"par_id3152934\n"
-"102\n"
"help.text"
msgid "Count"
msgstr "གྱངས་ཁ།"
@@ -27333,7 +25828,6 @@ msgstr "གྱངས་ཁ།"
msgctxt ""
"04060112.xhp\n"
"par_id3145202\n"
-"103\n"
"help.text"
msgid "Number of the following elements. Empty cells are not counted or passed."
msgstr "འོག་ལུ་ཡོད་པའི་ ཆ་ཤས་ཚུའི་གྱངས་ཁ། ནང་ཐིག་སྟོངམ་ཚུ་ གྱངས་ཁ་ཡང་ན་ རྩིས་སྤྲོད་འབད་མེདཔ་ཨིན།"
@@ -27342,7 +25836,6 @@ msgstr "འོག་ལུ་ཡོད་པའི་ ཆ་ཤས་ཚུའ
msgctxt ""
"04060112.xhp\n"
"par_id3150879\n"
-"104\n"
"help.text"
msgid "14"
msgstr "༡༤"
@@ -27351,7 +25844,6 @@ msgstr "༡༤"
msgctxt ""
"04060112.xhp\n"
"par_id3156002\n"
-"105\n"
"help.text"
msgid "Col"
msgstr "ཀེར་ཐིག"
@@ -27360,7 +25852,6 @@ msgstr "ཀེར་ཐིག"
msgctxt ""
"04060112.xhp\n"
"par_id3147276\n"
-"106\n"
"help.text"
msgid "Column number of the element. Numbering starts at 0."
msgstr "ཆ་ཤས་ཀྱི་ ཀེར་ཐིག་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།"
@@ -27369,7 +25860,6 @@ msgstr "ཆ་ཤས་ཀྱི་ ཀེར་ཐིག་གྱངས་ཁ
msgctxt ""
"04060112.xhp\n"
"par_id3151295\n"
-"107\n"
"help.text"
msgid "16"
msgstr "༡༦"
@@ -27378,7 +25868,6 @@ msgstr "༡༦"
msgctxt ""
"04060112.xhp\n"
"par_id3150261\n"
-"108\n"
"help.text"
msgid "Row"
msgstr "གྲལ་ཐིག"
@@ -27387,7 +25876,6 @@ msgstr "གྲལ་ཐིག"
msgctxt ""
"04060112.xhp\n"
"par_id3155851\n"
-"109\n"
"help.text"
msgid "Row number of the element; numbering starts at 0."
msgstr "ཆ་ཤས་ཀྱི་ གྲལ་ཐིག་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།"
@@ -27396,7 +25884,6 @@ msgstr "ཆ་ཤས་ཀྱི་ གྲལ་ཐིག་གྱངས་ཁ
msgctxt ""
"04060112.xhp\n"
"par_id3153150\n"
-"110\n"
"help.text"
msgid "18"
msgstr "༡༨"
@@ -27405,7 +25892,6 @@ msgstr "༡༨"
msgctxt ""
"04060112.xhp\n"
"par_id3153758\n"
-"111\n"
"help.text"
msgid "Tab"
msgstr "མཆོང་ལྡེ།"
@@ -27414,7 +25900,6 @@ msgstr "མཆོང་ལྡེ།"
msgctxt ""
"04060112.xhp\n"
"par_id3150154\n"
-"112\n"
"help.text"
msgid "Table number of the element; numbering starts at 0."
msgstr "ཆ་ཤས་ཀྱི་ ཐིག་ཁྲམ་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།"
@@ -27423,7 +25908,6 @@ msgstr "ཆ་ཤས་ཀྱི་ ཐིག་ཁྲམ་གྱངས་ཁ
msgctxt ""
"04060112.xhp\n"
"par_id3149289\n"
-"113\n"
"help.text"
msgid "20"
msgstr "༢༠"
@@ -27432,7 +25916,6 @@ msgstr "༢༠"
msgctxt ""
"04060112.xhp\n"
"par_id3156010\n"
-"114\n"
"help.text"
msgid "Error"
msgstr "འཛོལ།"
@@ -27441,7 +25924,6 @@ msgstr "འཛོལ།"
msgctxt ""
"04060112.xhp\n"
"par_id3159181\n"
-"115\n"
"help.text"
msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
msgstr "གནས་གོང་ ༠ དེ་ \"no error.\" སྦེ་ ངེས་འཛིན་འབད་ཡོད་པའི་འཛོལ་བའི་གྱངས་ཁ། ཆ་ཤས་དེ་ མན་ངག་ནང་ཐིག་ནང་ལས་འོང་པ་ཅིན་ གནས་གོང་འཛོལ་བ་དེ་ མན་ངག་གིས་གཏན་འབེབས་བཟོ་ཡོདཔ་ཨིན།"
@@ -27450,7 +25932,6 @@ msgstr "གནས་གོང་ ༠ དེ་ \"no error.\" སྦེ་ ང
msgctxt ""
"04060112.xhp\n"
"par_id3147493\n"
-"116\n"
"help.text"
msgid "22"
msgstr "༢༢"
@@ -27459,7 +25940,6 @@ msgstr "༢༢"
msgctxt ""
"04060112.xhp\n"
"par_id3149200\n"
-"117\n"
"help.text"
msgid "Value"
msgstr "གནས་གོང་།"
@@ -27468,7 +25948,6 @@ msgstr "གནས་གོང་།"
msgctxt ""
"04060112.xhp\n"
"par_id3151174\n"
-"118\n"
"help.text"
msgid "8 byte IEEE variable of type double/floating point"
msgstr "དབྱེ་བ་གཉིས་ལྡན་/འཕུར་ལྡིང་ས་ཚིགས་ཀྱི་ ཨའི་ཨི་ཨི་ཨི་འགྱུར་ཅན་བཱའིཊི་ ༨།"
@@ -27477,7 +25956,6 @@ msgstr "དབྱེ་བ་གཉིས་ལྡན་/འཕུར་ལྡ
msgctxt ""
"04060112.xhp\n"
"par_id3154688\n"
-"119\n"
"help.text"
msgid "30"
msgstr "༣༠"
@@ -27486,7 +25964,6 @@ msgstr "༣༠"
msgctxt ""
"04060112.xhp\n"
"par_id3159337\n"
-"120\n"
"help.text"
msgid "..."
msgstr "..."
@@ -27495,7 +25972,6 @@ msgstr "..."
msgctxt ""
"04060112.xhp\n"
"par_id3155388\n"
-"121\n"
"help.text"
msgid "Next element"
msgstr "ཤུལ་མའི་ཆ་ཤས།"
@@ -27504,7 +25980,6 @@ msgstr "ཤུལ་མའི་ཆ་ཤས།"
msgctxt ""
"04060112.xhp\n"
"hd_id3154935\n"
-"122\n"
"help.text"
msgid "String Array"
msgstr "ཡིག་རྒྱུན་ཨེ་རེ།"
@@ -27513,7 +25988,6 @@ msgstr "ཡིག་རྒྱུན་ཨེ་རེ།"
msgctxt ""
"04060112.xhp\n"
"par_id3153105\n"
-"123\n"
"help.text"
msgid "A cell area, which contains values of data type Text and is passed as a string array. A string array in $[officename] Calc is defined as follows:"
msgstr "གནད་སྡུད་དབྱེ་བ་ཚིག་ཡིག་གི་གནས་གོང་ཚུ་ནང་ན་ཤོམ་ཏེ་ཡོད་པའི་ནང་ཐིག་མངའ་ཁོངས་དེ་ ཡིག་རྒྱུན་ཨེ་རེ་སྦེ་རྩིས་སྤྲོད་འབད་ཡོདཔ་ཨིན། $[officename] ཀེལ་སི་ནང་ ཡིག་རྒྱུན་ཨེ་རེ་དེ་ འོག་ལུ་ཡོད་མི་བཟུམ་སྦེ་རྩིས་སྤྲོད་ཡོད།:"
@@ -27522,7 +25996,6 @@ msgstr "གནད་སྡུད་དབྱེ་བ་ཚིག་ཡིག་
msgctxt ""
"04060112.xhp\n"
"par_id3149908\n"
-"124\n"
"help.text"
msgid "<emph>Offset</emph>"
msgstr "<emph> པར་ལེན། </emph>"
@@ -27531,7 +26004,6 @@ msgstr "<emph> པར་ལེན། </emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3159165\n"
-"125\n"
"help.text"
msgid "<emph>Name</emph>"
msgstr "<emph> མིང་། </emph>"
@@ -27540,7 +26012,6 @@ msgstr "<emph> མིང་། </emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3159150\n"
-"126\n"
"help.text"
msgid "<emph>Description</emph>"
msgstr "<emph> འགྲེལ་བཤད། </emph>"
@@ -27549,7 +26020,6 @@ msgstr "<emph> འགྲེལ་བཤད། </emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3149769\n"
-"127\n"
"help.text"
msgid "0"
msgstr ""
@@ -27558,7 +26028,6 @@ msgstr ""
msgctxt ""
"04060112.xhp\n"
"par_id3150509\n"
-"128\n"
"help.text"
msgid "Col1"
msgstr "ཀེར་ཐིག་ ༡"
@@ -27567,7 +26036,6 @@ msgstr "ཀེར་ཐིག་ ༡"
msgctxt ""
"04060112.xhp\n"
"par_id3148447\n"
-"129\n"
"help.text"
msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ ལྟག་གི་གཡོན་གྱི་སྒྱིད་ཁུག་ ནང་གི་ཀེར་ཐིག་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན། (-l)"
@@ -27576,7 +26044,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ ལྟག
msgctxt ""
"04060112.xhp\n"
"par_id3145418\n"
-"130\n"
"help.text"
msgid "2"
msgstr ""
@@ -27585,7 +26052,6 @@ msgstr ""
msgctxt ""
"04060112.xhp\n"
"par_id3147512\n"
-"131\n"
"help.text"
msgid "Row1"
msgstr "གྲལ་ཐིག་ ༡"
@@ -27594,7 +26060,6 @@ msgstr "གྲལ་ཐིག་ ༡"
msgctxt ""
"04060112.xhp\n"
"par_id3147235\n"
-"132\n"
"help.text"
msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ ལྟག་གི་གཡོན་གྱི་སྒྱིད་ཁུག་ ནང་ གྲལ་ཐིག་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།(-l)"
@@ -27603,7 +26068,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ ལྟག
msgctxt ""
"04060112.xhp\n"
"par_id3155362\n"
-"133\n"
"help.text"
msgid "4"
msgstr ""
@@ -27612,7 +26076,6 @@ msgstr ""
msgctxt ""
"04060112.xhp\n"
"par_id3151051\n"
-"134\n"
"help.text"
msgid "Tab1"
msgstr "མཆོང་ལྡེ་ ༡"
@@ -27621,7 +26084,6 @@ msgstr "མཆོང་ལྡེ་ ༡"
msgctxt ""
"04060112.xhp\n"
"par_id3148923\n"
-"135\n"
"help.text"
msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ལྟག་གི་གཡོན་གྱི་སྒྱིད་ཁུག་ ནང་ ཐིག་ཁྲམ་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།(-l)"
@@ -27630,7 +26092,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ལྟག་
msgctxt ""
"04060112.xhp\n"
"par_id3149158\n"
-"136\n"
"help.text"
msgid "6"
msgstr ""
@@ -27639,7 +26100,6 @@ msgstr ""
msgctxt ""
"04060112.xhp\n"
"par_id3166437\n"
-"137\n"
"help.text"
msgid "Col2"
msgstr "ཀེར་ཐིག་ ༢"
@@ -27648,7 +26108,6 @@ msgstr "ཀེར་ཐིག་ ༢"
msgctxt ""
"04060112.xhp\n"
"par_id3149788\n"
-"138\n"
"help.text"
msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ འོག་གི་གཡས་ཀྱི་སྒྱིད་ཁུག་ནང་ ཀེར་ཐིག་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།(-r)"
@@ -27657,7 +26116,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ འོག
msgctxt ""
"04060112.xhp\n"
"par_id3166450\n"
-"139\n"
"help.text"
msgid "8"
msgstr ""
@@ -27666,7 +26124,6 @@ msgstr ""
msgctxt ""
"04060112.xhp\n"
"par_id3152877\n"
-"140\n"
"help.text"
msgid "Row2"
msgstr "གྲལ་ཐིག་ ༢"
@@ -27675,7 +26132,6 @@ msgstr "གྲལ་ཐིག་ ༢"
msgctxt ""
"04060112.xhp\n"
"par_id3152949\n"
-"141\n"
"help.text"
msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ འོག་གི་གཡས་ཀྱི་སྒྱིད་ཁུག་ནང་ གྲལ་ཐིག་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།(-r)"
@@ -27684,7 +26140,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ འོག
msgctxt ""
"04060112.xhp\n"
"par_id3159270\n"
-"142\n"
"help.text"
msgid "10"
msgstr "༡༠"
@@ -27693,7 +26148,6 @@ msgstr "༡༠"
msgctxt ""
"04060112.xhp\n"
"par_id3154107\n"
-"143\n"
"help.text"
msgid "Tab2"
msgstr "མཆོང་ལྡེ་ ༢"
@@ -27702,7 +26156,6 @@ msgstr "མཆོང་ལྡེ་ ༢"
msgctxt ""
"04060112.xhp\n"
"par_id3153747\n"
-"144\n"
"help.text"
msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ འོག་གི་གཡས་ཀྱི་སྒྱིད་ཁུག་ནང་ ཐིག་ཁྲམ་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།(-r)"
@@ -27711,7 +26164,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ འོག
msgctxt ""
"04060112.xhp\n"
"par_id3149924\n"
-"145\n"
"help.text"
msgid "12"
msgstr "༡༢"
@@ -27720,7 +26172,6 @@ msgstr "༡༢"
msgctxt ""
"04060112.xhp\n"
"par_id3154858\n"
-"146\n"
"help.text"
msgid "Count"
msgstr "གྱངས་ཁ།"
@@ -27729,7 +26180,6 @@ msgstr "གྱངས་ཁ།"
msgctxt ""
"04060112.xhp\n"
"par_id3148621\n"
-"147\n"
"help.text"
msgid "Number of the following elements. Empty cells are not counted or passed."
msgstr "འོག་ལུ་ཡོད་པའི་ ཆ་ཤས་ཚུའི་གྱངས་ཁ། ནང་ཐིག་སྟོངམ་ཚུ་ གྱངས་ཁ་ཡང་ན་ རྩིས་སྤྲོད་འབད་མེདཔ་ཨིན།"
@@ -27738,7 +26188,6 @@ msgstr "འོག་ལུ་ཡོད་པའི་ ཆ་ཤས་ཚུའ
msgctxt ""
"04060112.xhp\n"
"par_id3148467\n"
-"148\n"
"help.text"
msgid "14"
msgstr "༡༤"
@@ -27747,7 +26196,6 @@ msgstr "༡༤"
msgctxt ""
"04060112.xhp\n"
"par_id3151126\n"
-"149\n"
"help.text"
msgid "Col"
msgstr "ཀེར་ཐིག"
@@ -27756,7 +26204,6 @@ msgstr "ཀེར་ཐིག"
msgctxt ""
"04060112.xhp\n"
"par_id3154334\n"
-"150\n"
"help.text"
msgid "Column number of the element. Numbering starts at 0."
msgstr "ཆ་ཤས་ཀྱི་ ཀེར་ཐིག་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།"
@@ -27765,7 +26212,6 @@ msgstr "ཆ་ཤས་ཀྱི་ ཀེར་ཐིག་གྱངས་ཁ
msgctxt ""
"04060112.xhp\n"
"par_id3149416\n"
-"151\n"
"help.text"
msgid "16"
msgstr "༡༦"
@@ -27774,7 +26220,6 @@ msgstr "༡༦"
msgctxt ""
"04060112.xhp\n"
"par_id3150631\n"
-"152\n"
"help.text"
msgid "Row"
msgstr "གྲལ་ཐིག"
@@ -27783,7 +26228,6 @@ msgstr "གྲལ་ཐིག"
msgctxt ""
"04060112.xhp\n"
"par_id3150424\n"
-"153\n"
"help.text"
msgid "Row number of the element; numbering starts at 0."
msgstr "ཆ་ཤས་ཀྱི་ གྲལ་ཐིག་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།"
@@ -27792,7 +26236,6 @@ msgstr "ཆ་ཤས་ཀྱི་ གྲལ་ཐིག་གྱངས་ཁ
msgctxt ""
"04060112.xhp\n"
"par_id3154797\n"
-"154\n"
"help.text"
msgid "18"
msgstr "༡༨"
@@ -27801,7 +26244,6 @@ msgstr "༡༨"
msgctxt ""
"04060112.xhp\n"
"par_id3143274\n"
-"155\n"
"help.text"
msgid "Tab"
msgstr "མཆོང་ལྡེ།"
@@ -27810,7 +26252,6 @@ msgstr "མཆོང་ལྡེ།"
msgctxt ""
"04060112.xhp\n"
"par_id3149513\n"
-"156\n"
"help.text"
msgid "Table number of the element; numbering starts at 0."
msgstr "ཆ་ཤས་ཀྱི་ ཐིག་ཁྲམ་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།"
@@ -27819,7 +26260,6 @@ msgstr "ཆ་ཤས་ཀྱི་ ཐིག་ཁྲམ་གྱངས་ཁ
msgctxt ""
"04060112.xhp\n"
"par_id3145306\n"
-"157\n"
"help.text"
msgid "20"
msgstr "༢༠"
@@ -27828,7 +26268,6 @@ msgstr "༢༠"
msgctxt ""
"04060112.xhp\n"
"par_id3153948\n"
-"158\n"
"help.text"
msgid "Error"
msgstr "འཛོལ།"
@@ -27837,7 +26276,6 @@ msgstr "འཛོལ།"
msgctxt ""
"04060112.xhp\n"
"par_id3153534\n"
-"159\n"
"help.text"
msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
msgstr "གནས་གོང་ ༠ དེ་ \"no error.\" སྦེ་ ངེས་འཛིན་འབད་ཡོད་པའི་འཛོལ་བའི་གྱངས་ཁ། ཆ་ཤས་དེ་ མན་ངག་ནང་ཐིག་ནང་ལས་འོང་པ་ཅིན་ གནས་གོང་འཛོལ་བ་དེ་ མན་ངག་གིས་གཏན་འབེབས་བཟོ་ཡོདཔ་ཨིན།"
@@ -27846,7 +26284,6 @@ msgstr "གནས་གོང་ ༠ དེ་ \"no error.\" སྦེ་ ང
msgctxt ""
"04060112.xhp\n"
"par_id3153311\n"
-"160\n"
"help.text"
msgid "22"
msgstr "༢༢"
@@ -27855,7 +26292,6 @@ msgstr "༢༢"
msgctxt ""
"04060112.xhp\n"
"par_id3148695\n"
-"161\n"
"help.text"
msgid "Len"
msgstr "ལིན།"
@@ -27864,7 +26300,6 @@ msgstr "ལིན།"
msgctxt ""
"04060112.xhp\n"
"par_id3152769\n"
-"162\n"
"help.text"
msgid "Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
msgstr "ཁ་བསྡམས་མི་ཀླད་ཀོར་བཱའིཊི་གྲངས་སུ་བཙུགས་ཏེ་ འོག་ལུ་ཡོད་པའི་ཡིག་རྒྱུན་གྱི་རིང་ཚད། ཁ་བསྡམས་མི་ཀླད་ཀོར་བཱའིཊི་དེ་ གནས་གོང་ཡ་ཅན་དང་མཉམ་པ་ཅིན་ ཀླད་ཀོར་བཱའིཊི་གཉིས་པམ་དེ་ཡང་ གནས་གོང་ཆ་ཅན་འཐོབ་ནི་ཨིནམ་ལས་ཁ་སྐོང་བརྐྱབ་ཡོདཔ་ཨིན། ནི་འབདཝ་ལས་ ལེན་དེ་ ((StrLen+2)&~1) ལག་ལེན་ཐོག་ལས་ རྩིས་སྟོན་འབད་ཡོདཔ་ཨིན།"
@@ -27873,7 +26308,6 @@ msgstr "ཁ་བསྡམས་མི་ཀླད་ཀོར་བཱའིཊ
msgctxt ""
"04060112.xhp\n"
"par_id3153772\n"
-"163\n"
"help.text"
msgid "24"
msgstr "༢༤"
@@ -27882,7 +26316,6 @@ msgstr "༢༤"
msgctxt ""
"04060112.xhp\n"
"par_id3153702\n"
-"164\n"
"help.text"
msgid "String"
msgstr "ཡིག་རྒྱུན།"
@@ -27891,7 +26324,6 @@ msgstr "ཡིག་རྒྱུན།"
msgctxt ""
"04060112.xhp\n"
"par_id3154474\n"
-"165\n"
"help.text"
msgid "String with closing zero byte"
msgstr "ཁ་བསྡམས་མི་ཀླད་ཀོར་བཱའིཊི་དང་བཅས་པའི་ཡིག་རྒྱུན།"
@@ -27900,7 +26332,6 @@ msgstr "ཁ་བསྡམས་མི་ཀླད་ཀོར་བཱའིཊ
msgctxt ""
"04060112.xhp\n"
"par_id3156269\n"
-"166\n"
"help.text"
msgid "24+Len"
msgstr "༢༤+ལིན།"
@@ -27909,7 +26340,6 @@ msgstr "༢༤+ལིན།"
msgctxt ""
"04060112.xhp\n"
"par_id3154825\n"
-"167\n"
"help.text"
msgid "..."
msgstr "..."
@@ -27918,7 +26348,6 @@ msgstr "..."
msgctxt ""
"04060112.xhp\n"
"par_id3147097\n"
-"168\n"
"help.text"
msgid "Next element"
msgstr "ཤུལ་མའི་ཆ་ཤས།"
@@ -27927,7 +26356,6 @@ msgstr "ཤུལ་མའི་ཆ་ཤས།"
msgctxt ""
"04060112.xhp\n"
"hd_id3159091\n"
-"169\n"
"help.text"
msgid "Cell Array"
msgstr "ནང་ཐིག་ཨེ་རེ།"
@@ -27936,7 +26364,6 @@ msgstr "ནང་ཐིག་ཨེ་རེ།"
msgctxt ""
"04060112.xhp\n"
"par_id3156140\n"
-"170\n"
"help.text"
msgid "Cell arrays are used to call cell areas containing text as well as numbers. A cell array in $[officename] Calc is defined as follows:"
msgstr "ནང་ཐིག་ཨེ་རེ་ཚུ་ ནང་ན་ཚིག་ཡིག་མ་ཚད་ཨང་གྲངས་ཚུ་ཡང་ཤོམ་ཏེ་ཡོད་པའི་ནང་ཐིག་མངའ་ཁོངས་ཚུ་འབོ་ནིའི་དོན་ལུ་ལག་ལེན་འཐབ་ཡོད། $[officename] ཀེལ་སི་ནང་ ནང་ཐིག་ཨེ་རེ་དེ་ འོག་ལུ་ཡོད་དོ་བཟུམ་སྦེ་ངེས་འཛིན་འབད་ཡོདཔ་ཨིན།:"
@@ -27945,7 +26372,6 @@ msgstr "ནང་ཐིག་ཨེ་རེ་ཚུ་ ནང་ན་ཚི
msgctxt ""
"04060112.xhp\n"
"par_id3154664\n"
-"171\n"
"help.text"
msgid "<emph>Offset</emph>"
msgstr "<emph> པར་ལེན། </emph>"
@@ -27954,7 +26380,6 @@ msgstr "<emph> པར་ལེན། </emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3154566\n"
-"172\n"
"help.text"
msgid "<emph>Name</emph>"
msgstr "<emph> མིང་། </emph>"
@@ -27963,7 +26388,6 @@ msgstr "<emph> མིང་། </emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3146073\n"
-"173\n"
"help.text"
msgid "<emph>Description</emph>"
msgstr "<emph> འགྲེལ་བཤད། </emph>"
@@ -27972,7 +26396,6 @@ msgstr "<emph> འགྲེལ་བཤད། </emph>"
msgctxt ""
"04060112.xhp\n"
"par_id3154117\n"
-"174\n"
"help.text"
msgid "0"
msgstr ""
@@ -27981,7 +26404,6 @@ msgstr ""
msgctxt ""
"04060112.xhp\n"
"par_id3150988\n"
-"175\n"
"help.text"
msgid "Col1"
msgstr "ཀེར་ཐིག་ ༡"
@@ -27990,7 +26412,6 @@ msgstr "ཀེར་ཐིག་ ༡"
msgctxt ""
"04060112.xhp\n"
"par_id3146783\n"
-"176\n"
"help.text"
msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ ལྟག་གི་གཡོན་གྱི་སྒྱིད་ཁུག་ ནང་གི་ཀེར་ཐིག་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན། (-l)"
@@ -27999,7 +26420,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ ལྟག
msgctxt ""
"04060112.xhp\n"
"par_id3153666\n"
-"177\n"
"help.text"
msgid "2"
msgstr ""
@@ -28008,7 +26428,6 @@ msgstr ""
msgctxt ""
"04060112.xhp\n"
"par_id3149560\n"
-"178\n"
"help.text"
msgid "Row1"
msgstr "གྲལ་ཐིག་ ༡"
@@ -28017,7 +26436,6 @@ msgstr "གྲལ་ཐིག་ ༡"
msgctxt ""
"04060112.xhp\n"
"par_id3156156\n"
-"179\n"
"help.text"
msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ ལྟག་གི་གཡོན་གྱི་སྒྱིད་ཁུག་ ནང་ གྲལ་ཐིག་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།(-l)"
@@ -28026,7 +26444,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ ལྟག
msgctxt ""
"04060112.xhp\n"
"par_id3150408\n"
-"180\n"
"help.text"
msgid "4"
msgstr ""
@@ -28035,7 +26452,6 @@ msgstr ""
msgctxt ""
"04060112.xhp\n"
"par_id3150593\n"
-"181\n"
"help.text"
msgid "Tab1"
msgstr "མཆོང་ལྡེ་ ༡"
@@ -28044,7 +26460,6 @@ msgstr "མཆོང་ལྡེ་ ༡"
msgctxt ""
"04060112.xhp\n"
"par_id3150357\n"
-"182\n"
"help.text"
msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ལྟག་གི་གཡོན་གྱི་སྒྱིད་ཁུག་ ནང་ ཐིག་ཁྲམ་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།(-l)"
@@ -28053,7 +26468,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ལྟག་
msgctxt ""
"04060112.xhp\n"
"par_id3146912\n"
-"183\n"
"help.text"
msgid "6"
msgstr ""
@@ -28062,7 +26476,6 @@ msgstr ""
msgctxt ""
"04060112.xhp\n"
"par_id3153352\n"
-"184\n"
"help.text"
msgid "Col2"
msgstr "ཀེར་ཐིག་ ༢"
@@ -28071,7 +26484,6 @@ msgstr "ཀེར་ཐིག་ ༢"
msgctxt ""
"04060112.xhp\n"
"par_id3155893\n"
-"185\n"
"help.text"
msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ འོག་གི་གཡས་ཀྱི་སྒྱིད་ཁུག་ནང་ ཀེར་ཐིག་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།(-r)"
@@ -28080,7 +26492,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ འོག
msgctxt ""
"04060112.xhp\n"
"par_id3150827\n"
-"186\n"
"help.text"
msgid "8"
msgstr ""
@@ -28089,7 +26500,6 @@ msgstr ""
msgctxt ""
"04060112.xhp\n"
"par_id3148406\n"
-"187\n"
"help.text"
msgid "Row2"
msgstr "གྲལ་ཐིག་ ༢"
@@ -28098,7 +26508,6 @@ msgstr "གྲལ་ཐིག་ ༢"
msgctxt ""
"04060112.xhp\n"
"par_id3150673\n"
-"188\n"
"help.text"
msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ འོག་གི་གཡས་ཀྱི་སྒྱིད་ཁུག་ནང་ གྲལ་ཐིག་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།(-r)"
@@ -28107,7 +26516,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ འོག
msgctxt ""
"04060112.xhp\n"
"par_id3155864\n"
-"189\n"
"help.text"
msgid "10"
msgstr "༡༠"
@@ -28116,7 +26524,6 @@ msgstr "༡༠"
msgctxt ""
"04060112.xhp\n"
"par_id3153197\n"
-"190\n"
"help.text"
msgid "Tab2"
msgstr "མཆོང་ལྡེ་ ༢"
@@ -28125,7 +26532,6 @@ msgstr "མཆོང་ལྡེ་ ༢"
msgctxt ""
"04060112.xhp\n"
"par_id3149329\n"
-"191\n"
"help.text"
msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ འོག་གི་གཡས་ཀྱི་སྒྱིད་ཁུག་ནང་ ཐིག་ཁྲམ་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།(-r)"
@@ -28134,7 +26540,6 @@ msgstr "ནང་ཐིག་མངའ་ཁོངས་ཀྱི་ འོག
msgctxt ""
"04060112.xhp\n"
"par_id3147360\n"
-"192\n"
"help.text"
msgid "12"
msgstr "༡༢"
@@ -28143,7 +26548,6 @@ msgstr "༡༢"
msgctxt ""
"04060112.xhp\n"
"par_id3154520\n"
-"193\n"
"help.text"
msgid "Count"
msgstr "གྱངས་ཁ།"
@@ -28152,7 +26556,6 @@ msgstr "གྱངས་ཁ།"
msgctxt ""
"04060112.xhp\n"
"par_id3150647\n"
-"194\n"
"help.text"
msgid "Number of the following elements. Empty cells are not counted or passed."
msgstr "འོག་ལུ་ཡོད་པའི་ ཆ་ཤས་ཚུའི་གྱངས་ཁ། ནང་ཐིག་སྟོངམ་ཚུ་ གྱངས་ཁ་ཡང་ན་ རྩིས་སྤྲོད་འབད་མེདཔ་ཨིན།"
@@ -28161,7 +26564,6 @@ msgstr "འོག་ལུ་ཡོད་པའི་ ཆ་ཤས་ཚུའ
msgctxt ""
"04060112.xhp\n"
"par_id3149747\n"
-"195\n"
"help.text"
msgid "14"
msgstr "༡༤"
@@ -28170,7 +26572,6 @@ msgstr "༡༤"
msgctxt ""
"04060112.xhp\n"
"par_id3147579\n"
-"196\n"
"help.text"
msgid "Col"
msgstr "ཀེར་ཐིག"
@@ -28179,7 +26580,6 @@ msgstr "ཀེར་ཐིག"
msgctxt ""
"04060112.xhp\n"
"par_id3154188\n"
-"197\n"
"help.text"
msgid "Column number of the element. Numbering starts at 0."
msgstr "ཆ་ཤས་ཀྱི་ ཀེར་ཐིག་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།"
@@ -28188,7 +26588,6 @@ msgstr "ཆ་ཤས་ཀྱི་ ཀེར་ཐིག་གྱངས་ཁ
msgctxt ""
"04060112.xhp\n"
"par_id3159209\n"
-"198\n"
"help.text"
msgid "16"
msgstr "༡༦"
@@ -28197,7 +26596,6 @@ msgstr "༡༦"
msgctxt ""
"04060112.xhp\n"
"par_id3153265\n"
-"199\n"
"help.text"
msgid "Row"
msgstr "གྲལ་ཐིག"
@@ -28206,7 +26604,6 @@ msgstr "གྲལ་ཐིག"
msgctxt ""
"04060112.xhp\n"
"par_id3150095\n"
-"200\n"
"help.text"
msgid "Row number of the element; numbering starts at 0."
msgstr "ཆ་ཤས་ཀྱི་ གྲལ་ཐིག་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།"
@@ -28215,7 +26612,6 @@ msgstr "ཆ་ཤས་ཀྱི་ གྲལ་ཐིག་གྱངས་ཁ
msgctxt ""
"04060112.xhp\n"
"par_id3151276\n"
-"201\n"
"help.text"
msgid "18"
msgstr "༡༨"
@@ -28224,7 +26620,6 @@ msgstr "༡༨"
msgctxt ""
"04060112.xhp\n"
"par_id3149177\n"
-"202\n"
"help.text"
msgid "Tab"
msgstr "མཆོང་ལྡེ།"
@@ -28233,7 +26628,6 @@ msgstr "མཆོང་ལྡེ།"
msgctxt ""
"04060112.xhp\n"
"par_id3146925\n"
-"203\n"
"help.text"
msgid "Table number of the element; numbering starts at 0."
msgstr "ཆ་ཤས་ཀྱི་ ཐིག་ཁྲམ་གྱངས་ཁ། ཨང་བཏགས་ནི་དེ་ ༠ ལས་འགོ་བཙུགསཔ་ཨིན།"
@@ -28242,7 +26636,6 @@ msgstr "ཆ་ཤས་ཀྱི་ ཐིག་ཁྲམ་གྱངས་ཁ
msgctxt ""
"04060112.xhp\n"
"par_id3150488\n"
-"204\n"
"help.text"
msgid "20"
msgstr "༢༠"
@@ -28251,7 +26644,6 @@ msgstr "༢༠"
msgctxt ""
"04060112.xhp\n"
"par_id3149441\n"
-"205\n"
"help.text"
msgid "Error"
msgstr "འཛོལ།"
@@ -28260,7 +26652,6 @@ msgstr "འཛོལ།"
msgctxt ""
"04060112.xhp\n"
"par_id3156048\n"
-"206\n"
"help.text"
msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
msgstr "གནས་གོང་ ༠ དེ་ \"no error.\" སྦེ་ ངེས་འཛིན་འབད་ཡོད་པའི་འཛོལ་བའི་གྱངས་ཁ། ཆ་ཤས་དེ་ མན་ངག་ནང་ཐིག་ནང་ལས་འོང་པ་ཅིན་ གནས་གོང་འཛོལ་བ་དེ་ མན་ངག་གིས་གཏན་འབེབས་བཟོ་ཡོདཔ་ཨིན།"
@@ -28269,7 +26660,6 @@ msgstr "གནས་གོང་ ༠ དེ་ \"no error.\" སྦེ་ ང
msgctxt ""
"04060112.xhp\n"
"par_id3163813\n"
-"207\n"
"help.text"
msgid "22"
msgstr "༢༢"
@@ -28278,7 +26668,6 @@ msgstr "༢༢"
msgctxt ""
"04060112.xhp\n"
"par_id3159102\n"
-"208\n"
"help.text"
msgid "Type"
msgstr "དབྱེ་བ།"
@@ -28287,7 +26676,6 @@ msgstr "དབྱེ་བ།"
msgctxt ""
"04060112.xhp\n"
"par_id3149581\n"
-"209\n"
"help.text"
msgid "Type of cell content, 0 == Double, 1 == String"
msgstr "ནང་ཐིག་ནང་དོན་གྱི་ དབྱེ་བ་ ༠ == གཉིས་ལྡན་ ༡ == ཡིག་རྒྱུན།"
@@ -28296,7 +26684,6 @@ msgstr "ནང་ཐིག་ནང་དོན་གྱི་ དབྱེ་
msgctxt ""
"04060112.xhp\n"
"par_id3155182\n"
-"210\n"
"help.text"
msgid "24"
msgstr "༢༤"
@@ -28305,7 +26692,6 @@ msgstr "༢༤"
msgctxt ""
"04060112.xhp\n"
"par_id3153291\n"
-"211\n"
"help.text"
msgid "Value or Len"
msgstr "གནས་གོང་ ཡང་ན་ ལིན།"
@@ -28314,7 +26700,6 @@ msgstr "གནས་གོང་ ཡང་ན་ ལིན།"
msgctxt ""
"04060112.xhp\n"
"par_id3148560\n"
-"212\n"
"help.text"
msgid "If type == 0: 8 byte IEEE variable of type double/floating point"
msgstr "དབྱེ་བ་ == ༠: དབྱེ་བ་གཉིས་ལྡན་/འཕུར་ལྡིང་ས་ཚིགས་ཀྱི་ འགྱུར་ཅན་ ཨའི་ཨི་ཨི་ཨི་ ༨ བཱའིཊི།"
@@ -28323,7 +26708,6 @@ msgstr "དབྱེ་བ་ == ༠: དབྱེ་བ་གཉིས་ལྡ
msgctxt ""
"04060112.xhp\n"
"par_id3148901\n"
-"213\n"
"help.text"
msgid "If type == 1: Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
msgstr "དབྱེ་ == ༡: ཨིན་པ་ཅིན་ ཁ་བསྡམས་ཀླད་ཀོར་བཱའིཊི་གྲངས་སུ་བཙུགས་ཏེ་ འོག་ལུ་ཡོད་པའི་ཡིག་རྒྱུན་གྱི་རིང་ཚད། ཁ་བསྡམས་ཀླད་ཀོར་བཱའིཊི་གྲངས་སུ་བཙུགས་པའི་རིང་ཚད་གནས་གོང་ཡ་ཅན་དང་མཉམ་པ་ཅིན་ གནས་གོང་ཆ་ཅན་འཐོབ་ནི་ཨིནམ་ལས་ ཡིག་རྒྱུན་ལུ་ ཀླད་ཀོར་བཱའིཊི་གཉིས་པམ་དེ་ཁ་སྐོང་བརྐྱབ་ཡོདཔ་ཨིན། ནི་འབདཝ་ལས་ ལེན་དེ་ ((StrLen+2)&~1) ལག་ལེན་ཐོག་ལས་ རྩིས་སྟོན་ཡོདཔ་ཨིན།"
@@ -28332,7 +26716,6 @@ msgstr "དབྱེ་ == ༡: ཨིན་པ་ཅིན་ ཁ་བསྡ
msgctxt ""
"04060112.xhp\n"
"par_id3145215\n"
-"214\n"
"help.text"
msgid "26 if type==1"
msgstr "དབྱེ་བ་==༡ ཨིན་པ་ཅིན་ ༢༦ །"
@@ -28341,7 +26724,6 @@ msgstr "དབྱེ་བ་==༡ ཨིན་པ་ཅིན་ ༢༦ །"
msgctxt ""
"04060112.xhp\n"
"par_id3155143\n"
-"215\n"
"help.text"
msgid "String"
msgstr "ཡིག་རྒྱུན།"
@@ -28350,7 +26732,6 @@ msgstr "ཡིག་རྒྱུན།"
msgctxt ""
"04060112.xhp\n"
"par_id3149298\n"
-"216\n"
"help.text"
msgid "If type == 1: String with closing zero byte"
msgstr "དབྱེ་བ་ == 1: ཁ་བསྡམས་མི་བཱའིཊི་ཀླད་ཀོར་དང་བཅས་པའི་ཡིག་རྒྱུན།"
@@ -28359,7 +26740,6 @@ msgstr "དབྱེ་བ་ == 1: ཁ་བསྡམས་མི་བཱའ
msgctxt ""
"04060112.xhp\n"
"par_id3151322\n"
-"217\n"
"help.text"
msgid "32 or 26+Len"
msgstr "༣༢ ཡང་ན་ ༢༦ + ལེན།"
@@ -28368,7 +26748,6 @@ msgstr "༣༢ ཡང་ན་ ༢༦ + ལེན།"
msgctxt ""
"04060112.xhp\n"
"par_id3163722\n"
-"218\n"
"help.text"
msgid "..."
msgstr "..."
@@ -28377,7 +26756,6 @@ msgstr "..."
msgctxt ""
"04060112.xhp\n"
"par_id3151059\n"
-"219\n"
"help.text"
msgid "Next element"
msgstr "ཤུལ་མའི་ཆ་ཤས།"
@@ -28395,14 +26773,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3152871\n"
"help.text"
-msgid "<bookmark_value>add-ins; analysis functions</bookmark_value><bookmark_value>analysis functions</bookmark_value>"
-msgstr "<bookmark_value> ཨེཌི་ཨིནསི། དཔྱད་ཞིབ་ལས་འགན་ཚུ། </bookmark_value><bookmark_value> དཔྱད་ཞིབ་ལས་འགན་ཚུ། </bookmark_value>"
+msgid "<bookmark_value>add-ins; analysis functions</bookmark_value> <bookmark_value>analysis functions</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3152871\n"
-"1\n"
"help.text"
msgid "<variable id=\"head_addin_analysis_one\"><link href=\"text/scalc/01/04060115.xhp\" name=\"Add-in Functions, List of Analysis Functions Part One\">Add-in Functions, List of Analysis Functions Part One</link></variable>"
msgstr ""
@@ -28419,7 +26796,6 @@ msgstr "<bookmark_value>Bessel ལས་འགན་ཚུ།</bookmark_value>"
msgctxt ""
"04060115.xhp\n"
"hd_id3153334\n"
-"111\n"
"help.text"
msgid "BESSELI"
msgstr "BESSELI"
@@ -28428,16 +26804,14 @@ msgstr "BESSELI"
msgctxt ""
"04060115.xhp\n"
"par_id3153960\n"
-"112\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calculates the modified Bessel function.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELI\"> ལེགས་བཅོས་འབད་ཡོད་པའི་ བེ་སེལ་ལས་འགན་རྩིས་སྟོནམ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calculates the modified Bessel function of the first kind In(x).</ahelp>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3150392\n"
-"113\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -28446,7 +26820,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id3147295\n"
-"114\n"
"help.text"
msgid "BESSELI(X; N)"
msgstr "BESSELI(x;n)"
@@ -28455,7 +26828,6 @@ msgstr "BESSELI(x;n)"
msgctxt ""
"04060115.xhp\n"
"par_id3151338\n"
-"115\n"
"help.text"
msgid "<emph>X</emph> is the value on which the function will be calculated."
msgstr "ཨེགསི་: གུ་ལུ་ལས་འགན་རྩིས་སྟོན་འབད་ནི་ཨིན་པའི་ གནས་གོང་།"
@@ -28464,16 +26836,46 @@ msgstr "ཨེགསི་: གུ་ལུ་ལས་འགན་རྩིས
msgctxt ""
"04060115.xhp\n"
"par_id3151392\n"
-"116\n"
"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
+msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function In(x)"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id050220171032372604\n"
+"help.text"
+msgid "Examples"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019072404\n"
+"help.text"
+msgid "=BESSELI(3.45, 4), returns 0.651416873060081"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019072953\n"
+"help.text"
+msgid "=BESSELI(3.45, 4.333), returns 0.651416873060081, same as above because the fractional part of N is ignored."
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019075086\n"
+"help.text"
+msgid "=BESSELI(-1, 3), returns -0.022168424924332"
msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3153027\n"
-"103\n"
"help.text"
msgid "BESSELJ"
msgstr "BESSELJ"
@@ -28482,16 +26884,14 @@ msgstr "BESSELJ"
msgctxt ""
"04060115.xhp\n"
"par_id3153015\n"
-"104\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calculates the Bessel function (cylinder function).</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\"> བེ་སེལ་ལས་འགན་ རྩིས་སྟོནམ་ཨིན། (སི་ལིན་ཌར་ལས་འགན་)།</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calculates the Bessel function of the first kind Jn(x) (cylinder function).</ahelp>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3146884\n"
-"105\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -28500,7 +26900,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id3150032\n"
-"106\n"
"help.text"
msgid "BESSELJ(X; N)"
msgstr "BESSELJ(x;n)"
@@ -28509,7 +26908,6 @@ msgstr "BESSELJ(x;n)"
msgctxt ""
"04060115.xhp\n"
"par_id3150378\n"
-"107\n"
"help.text"
msgid "<emph>X</emph> is the value on which the function will be calculated."
msgstr "ཨེགསི་: གུ་ལུ་ལས་འགན་རྩིས་སྟོན་འབད་ནི་ཨིན་པའི་ གནས་གོང་།"
@@ -28518,16 +26916,46 @@ msgstr "ཨེགསི་: གུ་ལུ་ལས་འགན་རྩིས
msgctxt ""
"04060115.xhp\n"
"par_id3145638\n"
-"108\n"
"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
+msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function Jn(x)"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id050220171032372274\n"
+"help.text"
+msgid "Examples"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019077179\n"
+"help.text"
+msgid "=BESSELJ(3.45, 4), returns 0.196772639864984"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019078280\n"
+"help.text"
+msgid "=BESSELJ(3.45, 4.333), returns 0.144803466373734, same as above because the fractional part of N is ignored."
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019079818\n"
+"help.text"
+msgid "=BESSELJ(-1, 3), returns -0.019563353982668"
msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3149946\n"
-"117\n"
"help.text"
msgid "BESSELK"
msgstr "BESSELK"
@@ -28536,16 +26964,14 @@ msgstr "BESSELK"
msgctxt ""
"04060115.xhp\n"
"par_id3159122\n"
-"118\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calculates the modified Bessel function.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELK\"> ལེགས་བཅོས་འབད་ཡོད་པའི་ བེ་སེལ་ལས་འགན་རྩིས་སྟོནམ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calculates the modified Bessel function of the second kind Kn(x).</ahelp>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3150650\n"
-"119\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -28554,7 +26980,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id3149354\n"
-"120\n"
"help.text"
msgid "BESSELK(X; N)"
msgstr "BESSELK(x;n)"
@@ -28563,25 +26988,54 @@ msgstr "BESSELK(x;n)"
msgctxt ""
"04060115.xhp\n"
"par_id3150481\n"
-"121\n"
"help.text"
-msgid "<emph>X</emph> is the value on which the function will be calculated."
-msgstr "ཨེགསི་: གུ་ལུ་ལས་འགན་རྩིས་སྟོན་འབད་ནི་ཨིན་པའི་ གནས་གོང་།"
+msgid "<emph>X</emph> is the strictly positive value (X > 0) on which the function will be calculated."
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"par_id3150024\n"
-"122\n"
"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
+msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function Kn(x)"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id050220171032373675\n"
+"help.text"
+msgid "Examples"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019073898\n"
+"help.text"
+msgid "=BESSELK(3.45, 4), returns 0.144803466373734"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019079889\n"
+"help.text"
+msgid "=BESSELK(3.45, 4.333), returns 0.144803466373734, same as above because the fractional part of N is ignored."
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019076471\n"
+"help.text"
+msgid "=BESSELK(0, 3), returns Err:502 – invalid argument (X=0)"
msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3145828\n"
-"123\n"
"help.text"
msgid "BESSELY"
msgstr "BESSELY"
@@ -28590,16 +27044,14 @@ msgstr "BESSELY"
msgctxt ""
"04060115.xhp\n"
"par_id3146877\n"
-"124\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the modified Bessel function.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELY\"> ལེགས་བཅོས་འབད་ཡོད་པའི་བེསི་སེལ་ལས་འགན་འདི་རྩིས་སྟོན་འབདཝ་ཨིན།</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the Bessel function of the second kind Yn(x).</ahelp>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3146941\n"
-"125\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -28608,7 +27060,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id3148884\n"
-"126\n"
"help.text"
msgid "BESSELY(X; N)"
msgstr "BESSELY(x;n)"
@@ -28617,18 +27068,48 @@ msgstr "BESSELY(x;n)"
msgctxt ""
"04060115.xhp\n"
"par_id3147475\n"
-"127\n"
"help.text"
-msgid "<emph>X</emph> is the value on which the function will be calculated."
-msgstr "ཨེགསི་: གུ་ལུ་ལས་འགན་རྩིས་སྟོན་འབད་ནི་ཨིན་པའི་ གནས་གོང་།"
+msgid "<emph>X</emph> is the strictly positive value (X > 0) on which the function will be calculated."
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"par_id3147421\n"
-"128\n"
"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
+msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function Yn(x)"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id050220171019084402\n"
+"help.text"
+msgid "Examples"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019081114\n"
+"help.text"
+msgid "=BESSELY(3.45, 4), returns -0.679848116844476"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019081288\n"
+"help.text"
+msgid "=BESSELY(3.45, 4.333), returns -0.679848116844476, same as above because the fractional part of N is ignored."
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id050220171019082347\n"
+"help.text"
+msgid "=BESSELY(0, 3), returns Err:502 – invalid argument (X=0)"
msgstr ""
#: 04060115.xhp
@@ -28636,14 +27117,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3153034\n"
"help.text"
-msgid "<bookmark_value>BIN2DEC function</bookmark_value><bookmark_value>converting;binary numbers, into decimal numbers</bookmark_value>"
-msgstr "<bookmark_value>BIN2DEC ལས་འགན་</bookmark_value><bookmark_value>གཞི་བསྒྱུར་འབད་དོ་ ཟུང་ལྡན་ཨང་ཚུ་ བཅུ་ཚག་ཨང་ནང་</bookmark_value>"
+msgid "<bookmark_value>BIN2DEC function</bookmark_value> <bookmark_value>converting;binary numbers, into decimal numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3153034\n"
-"17\n"
"help.text"
msgid "BIN2DEC"
msgstr "BIN2DEC"
@@ -28652,7 +27132,6 @@ msgstr "BIN2DEC"
msgctxt ""
"04060115.xhp\n"
"par_id3144744\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">The result is the decimal number for the binary number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\"> གྲུབ་འབྲས་དེ་ བཙུགས་ཡོད་པའི་ཟུང་ལྡན་ཨང་གྲངས་དོན་ལུ་བཅུ་ཚག་ཨང་གྲངས་ཨིན། </ahelp>"
@@ -28661,7 +27140,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\"> གྲུབ་འབྲས་ད
msgctxt ""
"04060115.xhp\n"
"hd_id3145593\n"
-"19\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -28670,7 +27148,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id3149726\n"
-"20\n"
"help.text"
msgid "BIN2DEC(Number)"
msgstr "BIN2DEC (ཨང་།)"
@@ -28679,7 +27156,6 @@ msgstr "BIN2DEC (ཨང་།)"
msgctxt ""
"04060115.xhp\n"
"par_id3150142\n"
-"21\n"
"help.text"
msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
msgstr "ཨང་གྲངས་: ཨང་གྲངས་ ཟུང་ལྡན། ཨང་གྲངས་ལུ་ མང་མཐའ་རང་ ས་གནས་ ༡༠ ཚུ་ཡོད་བཏུབ་ཨིན་(བིཊིསི)། ཧ་ཅང་གིས་གལ་ཅན་བིཊི་དེ་ བརྡ་སྟོན་བིཊི་ཨིན། ཨང་གྲངས་མེད་ཆ་ཚུ་ གཉིས་ཀྱི་ ལྷན་ཐབས་སྦེ་བཙུགས་ཡོདཔ་ཨིན།"
@@ -28688,7 +27164,6 @@ msgstr "ཨང་གྲངས་: ཨང་གྲངས་ ཟུང་ལྡན
msgctxt ""
"04060115.xhp\n"
"hd_id3149250\n"
-"22\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -28697,7 +27172,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060115.xhp\n"
"par_id3145138\n"
-"23\n"
"help.text"
msgid "<item type=\"input\">=BIN2DEC(1100100)</item> returns 100."
msgstr ""
@@ -28707,14 +27181,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3149954\n"
"help.text"
-msgid "<bookmark_value>BIN2HEX function</bookmark_value><bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
-msgstr "<bookmark_value>BIN2HEX ལས་འགན་</bookmark_value><bookmark_value>གཞི་བསྒྱུར་འབད་དོ་ ཟུང་ལྡན་ཨི་ཚུ་ ཧེག་ཟ་ཌེ་སི་མཱལ་ཨང་ནང་ལུ་</bookmark_value>"
+msgid "<bookmark_value>BIN2HEX function</bookmark_value> <bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3149954\n"
-"24\n"
"help.text"
msgid "BIN2HEX"
msgstr "BIN2HEX"
@@ -28723,7 +27196,6 @@ msgstr "BIN2HEX"
msgctxt ""
"04060115.xhp\n"
"par_id3148585\n"
-"25\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">The result is the hexadecimal number for the binary number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\"> གྲུབ་འབྲས་དེ་ བཙུགས་ཡོད་པའི་ ཟུང་ལྡན་ཨང་གྲངས་དོན་ལུ་ ཧེག་ཟ་ཌི་སི་མཱལ་ཨང་གྲངས་ཨིན། </ahelp>"
@@ -28732,7 +27204,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\"> གྲུབ་འབྲས་ད
msgctxt ""
"04060115.xhp\n"
"hd_id3153936\n"
-"26\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -28741,7 +27212,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id3148753\n"
-"27\n"
"help.text"
msgid "BIN2HEX(Number; Places)"
msgstr "BIN2HEX(ཨང། ས་གནས་ཚུ།)"
@@ -28750,7 +27220,6 @@ msgstr "BIN2HEX(ཨང། ས་གནས་ཚུ།)"
msgctxt ""
"04060115.xhp\n"
"par_id3155255\n"
-"28\n"
"help.text"
msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
msgstr "ཨང་གྲངས་: ཨང་གྲངས་ ཟུང་ལྡན། ཨང་གྲངས་ལུ་ མང་མཐའ་རང་ ས་གནས་ ༡༠ ཚུ་ཡོད་བཏུབ་ཨིན་(བིཊིསི)། ཧ་ཅང་གིས་གལ་ཅན་བིཊི་དེ་ བརྡ་སྟོན་བིཊི་ཨིན། ཨང་གྲངས་མེད་ཆ་ཚུ་ གཉིས་ཀྱི་ ལྷན་ཐབས་སྦེ་བཙུགས་ཡོདཔ་ཨིན།"
@@ -28759,7 +27228,6 @@ msgstr "ཨང་གྲངས་: ཨང་གྲངས་ ཟུང་ལྡན
msgctxt ""
"04060115.xhp\n"
"par_id3150860\n"
-"29\n"
"help.text"
msgid "Places means the number of places to be output."
msgstr "ས་གནས་ཚུ་ : ཨའུཊི་པུཊི་ཨིན་དགོ་མི་ས་གནས་ཚུའི་གྱངས་ཁ།"
@@ -28768,7 +27236,6 @@ msgstr "ས་གནས་ཚུ་ : ཨའུཊི་པུཊི་ཨིན
msgctxt ""
"04060115.xhp\n"
"hd_id3155829\n"
-"30\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -28777,7 +27244,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060115.xhp\n"
"par_id3149686\n"
-"31\n"
"help.text"
msgid "<item type=\"input\">=BIN2HEX(1100100;6)</item> returns 000064."
msgstr ""
@@ -28787,14 +27253,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3153332\n"
"help.text"
-msgid "<bookmark_value>BIN2OCT function</bookmark_value><bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
-msgstr "<bookmark_value>BIN2OCT ལས་འགན་</bookmark_value><bookmark_value>གཞི་བསྒྱུར་འབད་དོ་ ཟུང་ལྡན་ཨང་ཚུ་ ཨོཀ་ཊཱལ་ཨང་ཚུ་ནང་ལུ་</bookmark_value>"
+msgid "<bookmark_value>BIN2OCT function</bookmark_value> <bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3153332\n"
-"9\n"
"help.text"
msgid "BIN2OCT"
msgstr "BIN2OCT"
@@ -28803,7 +27268,6 @@ msgstr "BIN2OCT"
msgctxt ""
"04060115.xhp\n"
"par_id3155951\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> The result is the octal number for the binary number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> གྲུབ་འབྲས་དེ་ བཙུགས་ཏེ་ཡོད་པའི་ཟུང་ལྡན་ཨང་གྲངས་དོན་ལུ་ ཨོཀ་ཊཱལ་ཨིན། </ahelp>"
@@ -28812,7 +27276,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> གྲུབ་འབྲས་ད
msgctxt ""
"04060115.xhp\n"
"hd_id3153001\n"
-"11\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -28821,7 +27284,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id3154508\n"
-"12\n"
"help.text"
msgid "BIN2OCT(Number; Places)"
msgstr "BIN2OCT(ཨང་། ས་གནས་ཚུ།)"
@@ -28830,7 +27292,6 @@ msgstr "BIN2OCT(ཨང་། ས་གནས་ཚུ།)"
msgctxt ""
"04060115.xhp\n"
"par_id3153567\n"
-"13\n"
"help.text"
msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
msgstr "ཨང་གྲངས་: ཨང་གྲངས་ ཟུང་ལྡན། ཨང་གྲངས་ལུ་ མང་མཐའ་རང་ ས་གནས་ ༡༠ ཚུ་ཡོད་བཏུབ་ཨིན་(བིཊིསི)། ཧ་ཅང་གིས་གལ་ཅན་བིཊི་དེ་ བརྡ་སྟོན་བིཊི་ཨིན། ཨང་གྲངས་མེད་ཆ་ཚུ་ གཉིས་ཀྱི་ ལྷན་ཐབས་སྦེ་བཙུགས་ཡོདཔ་ཨིན།"
@@ -28839,7 +27300,6 @@ msgstr "ཨང་གྲངས་: ཨང་གྲངས་ ཟུང་ལྡན
msgctxt ""
"04060115.xhp\n"
"par_id3155929\n"
-"14\n"
"help.text"
msgid "<emph>Places</emph> means the number of places to be output."
msgstr "ས་གནས་ཚུ་ : ཨའུཊི་པུཊི་ཨིན་དགོ་མི་ས་གནས་ཚུའི་གྱངས་ཁ།"
@@ -28848,7 +27308,6 @@ msgstr "ས་གནས་ཚུ་ : ཨའུཊི་པུཊི་ཨིན
msgctxt ""
"04060115.xhp\n"
"hd_id3150128\n"
-"15\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -28857,7 +27316,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060115.xhp\n"
"par_id3153733\n"
-"16\n"
"help.text"
msgid "<item type=\"input\">=BIN2OCT(1100100;4)</item> returns 0144."
msgstr ""
@@ -28867,14 +27325,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3150014\n"
"help.text"
-msgid "<bookmark_value>DELTA function</bookmark_value><bookmark_value>recognizing;equal numbers</bookmark_value>"
-msgstr "<bookmark_value>DELTA ལས་འགན་</bookmark_value><bookmark_value>ངོས་འཛིན་འབད་དོ་ མཉམ་པའི་ཨང་ཚུ་</bookmark_value>"
+msgid "<bookmark_value>DELTA function</bookmark_value> <bookmark_value>recognizing;equal numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3150014\n"
-"129\n"
"help.text"
msgid "DELTA"
msgstr "DELTA"
@@ -28883,7 +27340,6 @@ msgstr "DELTA"
msgctxt ""
"04060115.xhp\n"
"par_id3148760\n"
-"130\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DELTA\">The result is TRUE (1) if both numbers, which are delivered as an argument, are equal, otherwise it is FALSE (0).</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DELTA\"> སྒྲུབ་རྟགས་སྦེ་འགྲེམ་སྤེལ་འབད་ཡོད་མི་ ཨང་གྲངས་གཉིས་ཆ་རང་མཉམ་པ་ཡོད་པ་ཅིན་ གྲུབ་འབྲས་དེ་ TRUE (1) དང་ དེ་མེན་པ་ཅིན་ གྲུབ་འབྲས་དེ་ FALSE (0) ཨིན། </ahelp>"
@@ -28892,7 +27348,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_DELTA\"> སྒྲུབ་རྟགས་ས
msgctxt ""
"04060115.xhp\n"
"hd_id3155435\n"
-"131\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -28901,7 +27356,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id3145247\n"
-"132\n"
"help.text"
msgid "DELTA(Number1; Number2)"
msgstr "DELTA(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།)"
@@ -28910,7 +27364,6 @@ msgstr "DELTA(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།)"
msgctxt ""
"04060115.xhp\n"
"hd_id3149002\n"
-"133\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -28919,7 +27372,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060115.xhp\n"
"par_id3151020\n"
-"134\n"
"help.text"
msgid "<item type=\"input\">=DELTA(1;2)</item> returns 0."
msgstr ""
@@ -28929,14 +27381,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3157971\n"
"help.text"
-msgid "<bookmark_value>DEC2BIN function</bookmark_value><bookmark_value>converting;decimal numbers, into binary numbers</bookmark_value>"
-msgstr "<bookmark_value>DEC2BIN ལས་འགན་</bookmark_value><bookmark_value>གཞི་བསྒྱུར་འབད་དོ་ བཅུ་ཚག་ཨང་ཚུ་ ཟུང་ལྡན་ཨང་ཚུ་ནང་</bookmark_value>"
+msgid "<bookmark_value>DEC2BIN function</bookmark_value> <bookmark_value>converting;decimal numbers, into binary numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3157971\n"
-"55\n"
"help.text"
msgid "DEC2BIN"
msgstr "DEC2BIN"
@@ -28945,7 +27396,6 @@ msgstr "DEC2BIN"
msgctxt ""
"04060115.xhp\n"
"par_id3153043\n"
-"56\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\"> The result is the binary number for the decimal number entered between -512 and 511.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\"> -༥༡༢ དང་ -༥༡༡ བར་ བཙུགས་ཏེ་ཡོད་པའི་བཅུ་ཚག་ཨང་གྲངས་དོན་ལུ་ གྲུབ་འབྲས་དེ་ ཨང་གྲངས་ཟུང་ལྡན་ཨིན། </ahelp>"
@@ -28954,7 +27404,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\"> -༥༡༢ དང་ -༥༡༡ བ
msgctxt ""
"04060115.xhp\n"
"hd_id3145349\n"
-"57\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -28963,7 +27412,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id3150569\n"
-"58\n"
"help.text"
msgid "DEC2BIN(Number; Places)"
msgstr "DEC2BIN(ཨང་། ས་གནས་ཚུ།)"
@@ -28972,7 +27420,6 @@ msgstr "DEC2BIN(ཨང་། ས་གནས་ཚུ།)"
msgctxt ""
"04060115.xhp\n"
"par_id3148768\n"
-"59\n"
"help.text"
msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a binary number with 10 characters. The most significant bit is the sign bit, the other 9 bits return the value."
msgstr "ཨང་གྲངས་: བཅུ་ཚག་ཨང་གྲངས། <emph> ཨང་གྲངས་དེ་ </emph> མེད་ཆ་ཨིན་པ་ཅིན་ ལས་འགན་གྱིས་ ཡིག་འབྲུ་༡༠ དང་བཅས་པའི་ཨང་གྲངས་ཟུང་ལྡན་སླར་ལོག་འབདཝ་ཨིན། ཧ་ཅང་གིས་གལ་ཅན་བིཊི་དེ་ བརྡ་སྟོན་བིཊི་ཨིནམ་མ་ཚད་ བིཊིསི་ གཞན་མི་ ༩ གིས་ གནས་གོང་སླར་ལོག་འབདཝ་ཨིན།"
@@ -28981,7 +27428,6 @@ msgstr "ཨང་གྲངས་: བཅུ་ཚག་ཨང་གྲངས།
msgctxt ""
"04060115.xhp\n"
"par_id3149537\n"
-"60\n"
"help.text"
msgid "<emph>Places</emph> means the number of places to be output."
msgstr "ས་གནས་ཚུ་ : ཨའུཊི་པུཊི་ཨིན་དགོ་མི་ས་གནས་ཚུའི་གྱངས་ཁ།"
@@ -28990,7 +27436,6 @@ msgstr "ས་གནས་ཚུ་ : ཨའུཊི་པུཊི་ཨིན
msgctxt ""
"04060115.xhp\n"
"hd_id3150265\n"
-"61\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -28999,7 +27444,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060115.xhp\n"
"par_id3150662\n"
-"62\n"
"help.text"
msgid "<item type=\"input\">=DEC2BIN(100;8)</item> returns 01100100."
msgstr ""
@@ -29009,14 +27453,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3149388\n"
"help.text"
-msgid "<bookmark_value>DEC2HEX function</bookmark_value><bookmark_value>converting;decimal numbers, into hexadecimal numbers</bookmark_value>"
-msgstr "<bookmark_value>DEC2HEX ལས་འགན་</bookmark_value><bookmark_value>གཞི་བསྒྱུར་འབད་དོ་ བཅུ་ཚག་ཨང་ཚུ་ ཧེག་ཟ་ཌེ་སི་མཱལ་ཨང་ཚུ་ནང་ལུ་</bookmark_value>"
+msgid "<bookmark_value>DEC2HEX function</bookmark_value> <bookmark_value>converting;decimal numbers, into hexadecimal numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3149388\n"
-"71\n"
"help.text"
msgid "DEC2HEX"
msgstr "DEC2HEX"
@@ -29025,7 +27468,6 @@ msgstr "DEC2HEX"
msgctxt ""
"04060115.xhp\n"
"par_id3149030\n"
-"72\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">The result is the hexadecimal number for the decimal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\"> གྲུབ་འབྲས་དེ་ བཙུགས་ཏེ་ཡོད་པའི་བཅུ་ཚག་ཨང་གྲངས་དོན་ལུ་ ཧེག་ཟ་ཌེ་སི་མཱལ་ཨང་གྲངས་ཨིན། </ahelp>"
@@ -29034,7 +27476,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\"> གྲུབ་འབྲས་ད
msgctxt ""
"04060115.xhp\n"
"hd_id3150691\n"
-"73\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -29043,7 +27484,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id3147535\n"
-"74\n"
"help.text"
msgid "DEC2HEX(Number; Places)"
msgstr "DEC2HEX(ཨང་། ས་གནས་ཚུ།)"
@@ -29052,7 +27492,6 @@ msgstr "DEC2HEX(ཨང་། ས་གནས་ཚུ།)"
msgctxt ""
"04060115.xhp\n"
"par_id3152820\n"
-"75\n"
"help.text"
msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a hexadecimal number with 10 characters (40 bits). The most significant bit is the sign bit, the other 39 bits return the value."
msgstr "ཨང་གྲངས་: བཅུ་ཚག་ཨང་གྲངས། <emph> ཨང་གྲངས་ </emph> དེ་ མེད་ཆ་ཨིན་པ་ཅིན་ ལས་འགན་གྱིས་ ཡིག་འབྲུ་ ༡༠ དང་བཅས་པའི་ ཧེག་ཟ་ཌེ་སི་མཱལ་ སླར་ལོག་འབདཝ་ཨིན(བིཊིསི་ ༤༠)། ཧ་ཅང་གིས་གལ་ཅན་བིཊི་དེ་ བརྡ་སྟོན་བིཊི་ཨིནམ་ལས་ བིཊིསི་གཞན་མི་ ༣༩ གིས་ གནས་གོང་སླར་ལོག་འབདཝ་ཨིན།"
@@ -29061,7 +27500,6 @@ msgstr "ཨང་གྲངས་: བཅུ་ཚག་ཨང་གྲངས།
msgctxt ""
"04060115.xhp\n"
"par_id3153221\n"
-"76\n"
"help.text"
msgid "<emph>Places</emph> means the number of places to be output."
msgstr "ས་གནས་ཚུ་ : ཨའུཊི་པུཊི་ཨིན་དགོ་མི་ས་གནས་ཚུའི་གྱངས་ཁ།"
@@ -29070,7 +27508,6 @@ msgstr "ས་གནས་ཚུ་ : ཨའུཊི་པུཊི་ཨིན
msgctxt ""
"04060115.xhp\n"
"hd_id3154869\n"
-"77\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -29079,7 +27516,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060115.xhp\n"
"par_id3150476\n"
-"78\n"
"help.text"
msgid "<item type=\"input\">=DEC2HEX(100;4)</item> returns 0064."
msgstr ""
@@ -29089,14 +27525,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3154948\n"
"help.text"
-msgid "<bookmark_value>DEC2OCT function</bookmark_value><bookmark_value>converting;decimal numbers, into octal numbers</bookmark_value>"
-msgstr "<bookmark_value>DEC2OCT ལས་འགན་</bookmark_value><bookmark_value>གཞི་བསྒྱུར་འབད་དོ་ བཅུ་ཚག་ཨང་ཚུ་ ཨོཀ་ཊཱལ་ཨང་ཚུ་ནང་ལུ་</bookmark_value>"
+msgid "<bookmark_value>DEC2OCT function</bookmark_value> <bookmark_value>converting;decimal numbers, into octal numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3154948\n"
-"63\n"
"help.text"
msgid "DEC2OCT"
msgstr "DEC2OCT"
@@ -29105,7 +27540,6 @@ msgstr "DEC2OCT"
msgctxt ""
"04060115.xhp\n"
"par_id3153920\n"
-"64\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">The result is the octal number for the decimal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\"> གྲུབ་འབྲས་དེ་ བཙུགས་ཏེ་ཡོད་པའི་ བཅུ་ཚག་ཨང་གྲངས་དོན་ལུ་ ཨོཀ་ཊཱལ་ཨང་གྲངས་ཨིན། </ahelp>"
@@ -29114,7 +27548,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\"> གྲུབ་འབྲས་ད
msgctxt ""
"04060115.xhp\n"
"hd_id3153178\n"
-"65\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -29123,7 +27556,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id3148427\n"
-"66\n"
"help.text"
msgid "DEC2OCT(Number; Places)"
msgstr "DEC2OCT(ཨང་། ས་གནས་ཚུ།)"
@@ -29132,7 +27564,6 @@ msgstr "DEC2OCT(ཨང་། ས་གནས་ཚུ།)"
msgctxt ""
"04060115.xhp\n"
"par_id3155991\n"
-"67\n"
"help.text"
msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns an octal number with 10 characters (30 bits). The most significant bit is the sign bit, the other 29 bits return the value."
msgstr "ཨང་གྲངས་: བཅུ་ཚག་ཨང་གྲངས། <emph> ཨང་གྲངས་ </emph> དེ་མེད་ཆ་ཨིན་པ་ཅིན་ ལས་འགན་གྱིས་ ཡིག་འབྲུ་ ༡༠ དང་བཅས་པའི་ ཨོཀ་ཊཱལ་ཨང་གྲངས་ སླར་ལོག་འབདཝ་ཨིན་(བིཊིསི་ ༣༠)། ཧ་ཅང་གིས་ གལ་ཅན་བིཊི་དེ་ བརྡ་སྟོན་བིཊི་ཨིནམ་ལས་ གཞན་མི་ བིཊིསི་ ༢༩ གིས་ གནས་གོང་སླར་ལོག་འབདཝ་ཨིན།"
@@ -29141,7 +27572,6 @@ msgstr "ཨང་གྲངས་: བཅུ་ཚག་ཨང་གྲངས།
msgctxt ""
"04060115.xhp\n"
"par_id3152587\n"
-"68\n"
"help.text"
msgid "<emph>Places</emph> means the number of places to be output."
msgstr "ས་གནས་ཚུ་ : ཨའུཊི་པུཊི་ཨིན་དགོ་མི་ས་གནས་ཚུའི་གྱངས་ཁ།"
@@ -29150,7 +27580,6 @@ msgstr "ས་གནས་ཚུ་ : ཨའུཊི་པུཊི་ཨིན
msgctxt ""
"04060115.xhp\n"
"hd_id3147482\n"
-"69\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -29159,7 +27588,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060115.xhp\n"
"par_id3154317\n"
-"70\n"
"help.text"
msgid "<item type=\"input\">=DEC2OCT(100;4)</item> returns 0144."
msgstr ""
@@ -29169,14 +27597,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3083446\n"
"help.text"
-msgid "<bookmark_value>ERF function</bookmark_value><bookmark_value>Gaussian error integral</bookmark_value>"
-msgstr "<bookmark_value>ERF ལས་འགན་</bookmark_value><bookmark_value>གའུ་ཤཱན་འཛོལ་བ་ཧྲིལ་གྲངས་</bookmark_value>"
+msgid "<bookmark_value>ERF function</bookmark_value> <bookmark_value>Gaussian error integral</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3083446\n"
-"135\n"
"help.text"
msgid "ERF"
msgstr "ERF"
@@ -29185,7 +27612,6 @@ msgstr "ERF"
msgctxt ""
"04060115.xhp\n"
"par_id3150381\n"
-"136\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_ERF\">Returns values of the Gaussian error integral.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_ERF\"> གའུ་ཤཱན་འཛོལ་བ་མེད་ཐབས་མེད་པའི་གནས་གོང་ཚུ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -29194,7 +27620,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_ERF\"> གའུ་ཤཱན་འཛོལ་
msgctxt ""
"04060115.xhp\n"
"hd_id3152475\n"
-"137\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -29203,7 +27628,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id3163824\n"
-"138\n"
"help.text"
msgid "ERF(LowerLimit; UpperLimit)"
msgstr "ERF(འོག་གི་བཅད་མཚམས། ལྟག་གི་ བཅད་མཚམས་)།"
@@ -29212,7 +27636,6 @@ msgstr "ERF(འོག་གི་བཅད་མཚམས། ལྟག་གི
msgctxt ""
"04060115.xhp\n"
"par_id3149715\n"
-"139\n"
"help.text"
msgid "<emph>LowerLimit</emph> is the lower limit of the integral."
msgstr ""
@@ -29221,7 +27644,6 @@ msgstr ""
msgctxt ""
"04060115.xhp\n"
"par_id3156294\n"
-"140\n"
"help.text"
msgid "<emph>UpperLimit</emph> is optional. It is the upper limit of the integral. If this value is missing, the calculation takes places between 0 and the lower limit."
msgstr "སྟེང་གི་བཅད་མཚམས་: གདམ་ཁ་དང་འཁྲིལ་ཏེ་ མེད་ཐབས་མེད་པའི་སྟེང་གི་བཅད་མཚམས། གནས་གོང་དེ་ བརླག་སྟོར་ཞུགས་ཏེ་ཡོད་པ་ཅིན་ རྩིས་ལས་དེ་ ༠ དང་ འོག་གི་བཅད་མཚམས་བར་རྩིས་སྟོན་འབདཝ་ཨིན།"
@@ -29230,7 +27652,6 @@ msgstr "སྟེང་གི་བཅད་མཚམས་: གདམ་ཁ་
msgctxt ""
"04060115.xhp\n"
"hd_id3154819\n"
-"141\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -29239,25 +27660,22 @@ msgstr "དཔེ།"
msgctxt ""
"04060115.xhp\n"
"par_id3152974\n"
-"142\n"
"help.text"
msgid "<item type=\"input\">=ERF(0;1)</item> returns 0.842701."
msgstr ""
#: 04060115.xhp
-#, fuzzy
msgctxt ""
"04060115.xhp\n"
"bm_id2983446\n"
"help.text"
-msgid "<bookmark_value>ERF.PRECISE function</bookmark_value><bookmark_value>Gaussian error integral</bookmark_value>"
-msgstr "<bookmark_value>ERF ལས་འགན་</bookmark_value><bookmark_value>གའུ་ཤཱན་འཛོལ་བ་ཧྲིལ་གྲངས་</bookmark_value>"
+msgid "<bookmark_value>ERF.PRECISE function</bookmark_value> <bookmark_value>Gaussian error integral</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id2983446\n"
-"135\n"
"help.text"
msgid "ERF.PRECISE"
msgstr ""
@@ -29274,7 +27692,6 @@ msgstr ""
msgctxt ""
"04060115.xhp\n"
"hd_id2952475\n"
-"137\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -29283,7 +27700,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id2963824\n"
-"138\n"
"help.text"
msgid "ERF.PRECISE(LowerLimit)"
msgstr ""
@@ -29300,7 +27716,6 @@ msgstr ""
msgctxt ""
"04060115.xhp\n"
"hd_id2954819\n"
-"141\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -29325,7 +27740,6 @@ msgstr "<bookmark_value>ERFC ལས་འགན།</bookmark_value>"
msgctxt ""
"04060115.xhp\n"
"hd_id3145082\n"
-"143\n"
"help.text"
msgid "ERFC"
msgstr "ERFC"
@@ -29334,7 +27748,6 @@ msgstr "ERFC"
msgctxt ""
"04060115.xhp\n"
"par_id3149453\n"
-"144\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_ERFC\">Returns complementary values of the Gaussian error integral between x and infinity.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_ERFC\"> x དང་ ཚད་མེད་བར་ གའུ་ཤཱན་མེད་ཐབས་མེད་པའི་འཛོལ་བ་གི་ལྷན་ཐབས་གནས་གོང་ཚུ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -29343,7 +27756,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_ERFC\"> x དང་ ཚད་མེད་བ
msgctxt ""
"04060115.xhp\n"
"hd_id3155839\n"
-"145\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -29352,7 +27764,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id3153220\n"
-"146\n"
"help.text"
msgid "ERFC(LowerLimit)"
msgstr "ERFC(འོག་གི་བཅད་མཚམས་)།"
@@ -29361,7 +27772,6 @@ msgstr "ERFC(འོག་གི་བཅད་མཚམས་)།"
msgctxt ""
"04060115.xhp\n"
"par_id3147620\n"
-"147\n"
"help.text"
msgid "<emph>LowerLimit</emph> is the lower limit of the integral"
msgstr ""
@@ -29370,7 +27780,6 @@ msgstr ""
msgctxt ""
"04060115.xhp\n"
"hd_id3146861\n"
-"148\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -29379,13 +27788,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060115.xhp\n"
"par_id3156102\n"
-"149\n"
"help.text"
msgid "<item type=\"input\">=ERFC(1)</item> returns 0.157299."
msgstr ""
#: 04060115.xhp
-#, fuzzy
msgctxt ""
"04060115.xhp\n"
"bm_id2945082\n"
@@ -29397,26 +27804,22 @@ msgstr "<bookmark_value>ERFC ལས་འགན།</bookmark_value>"
msgctxt ""
"04060115.xhp\n"
"hd_id2945082\n"
-"143\n"
"help.text"
msgid "ERFC.PRECISE"
msgstr ""
#: 04060115.xhp
-#, fuzzy
msgctxt ""
"04060115.xhp\n"
"par_id2949453\n"
-"144\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ERFC_MS\">Returns complementary values of the Gaussian error integral between x and infinity.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ERFC\"> x དང་ ཚད་མེད་བར་ གའུ་ཤཱན་མེད་ཐབས་མེད་པའི་འཛོལ་བ་གི་ལྷན་ཐབས་གནས་གོང་ཚུ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id2955839\n"
-"145\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -29425,7 +27828,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id2953220\n"
-"146\n"
"help.text"
msgid "ERFC.PRECISE(LowerLimit)"
msgstr ""
@@ -29434,7 +27836,6 @@ msgstr ""
msgctxt ""
"04060115.xhp\n"
"par_id2947620\n"
-"147\n"
"help.text"
msgid "<emph>LowerLimit</emph> is the lower limit of the integral"
msgstr ""
@@ -29443,7 +27844,6 @@ msgstr ""
msgctxt ""
"04060115.xhp\n"
"hd_id2946861\n"
-"148\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -29452,7 +27852,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060115.xhp\n"
"par_id2956102\n"
-"149\n"
"help.text"
msgid "<item type=\"input\">=ERFC.PRECISE(1)</item> returns 0.157299."
msgstr ""
@@ -29462,14 +27861,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3152927\n"
"help.text"
-msgid "<bookmark_value>GESTEP function</bookmark_value><bookmark_value>numbers;greater than or equal to</bookmark_value>"
-msgstr "<bookmark_value>GESTEP ལས་འགན་</bookmark_value><bookmark_value>ཨང་ཚུ་ ལུ་ མཉམ་པ་ཡང་ན་སྦོམ་མི་</bookmark_value>"
+msgid "<bookmark_value>GESTEP function</bookmark_value> <bookmark_value>numbers;greater than or equal to</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3152927\n"
-"150\n"
"help.text"
msgid "GESTEP"
msgstr "GESTEP"
@@ -29478,7 +27876,6 @@ msgstr "GESTEP"
msgctxt ""
"04060115.xhp\n"
"par_id3150763\n"
-"151\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_GESTEP\">The result is 1 if <item type=\"literal\">Number</item> is greater than or equal to <item type=\"literal\">Step</item>.</ahelp>"
msgstr ""
@@ -29487,7 +27884,6 @@ msgstr ""
msgctxt ""
"04060115.xhp\n"
"hd_id3150879\n"
-"152\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -29496,7 +27892,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id3145212\n"
-"153\n"
"help.text"
msgid "GESTEP(Number; Step)"
msgstr "GESTEP(ཨང་; རིམ་པ།)"
@@ -29505,7 +27900,6 @@ msgstr "GESTEP(ཨང་; རིམ་པ།)"
msgctxt ""
"04060115.xhp\n"
"hd_id3153275\n"
-"154\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -29514,7 +27908,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060115.xhp\n"
"par_id3156132\n"
-"155\n"
"help.text"
msgid "<item type=\"input\">=GESTEP(5;1)</item> returns 1."
msgstr ""
@@ -29524,14 +27917,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3147276\n"
"help.text"
-msgid "<bookmark_value>HEX2BIN function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into binary numbers</bookmark_value>"
-msgstr "<bookmark_value>HEX2BIN ལས་འགན་</bookmark_value><bookmark_value>གཞི་བསྒྱུར་འབད་དོ་ ཧེག་ཟ་ཌེ་སི་མཱལ་ཨང་ཚུ་ ཟུང་ལྡན་ཨང་ཚུ་ནང་ལུ་</bookmark_value>"
+msgid "<bookmark_value>HEX2BIN function</bookmark_value> <bookmark_value>converting;hexadecimal numbers, into binary numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3147276\n"
-"79\n"
"help.text"
msgid "HEX2BIN"
msgstr "HEX2BIN"
@@ -29540,7 +27932,6 @@ msgstr "HEX2BIN"
msgctxt ""
"04060115.xhp\n"
"par_id3150258\n"
-"80\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">The result is the binary number for the hexadecimal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\"> གྲུབ་འབྲས་དེ་ བཙུགས་ཏེ་ཡོད་པའི་ཧེག་ཟ་ཌེ་སི་མཱལ་ཨང་གྲངས་དོན་ལུ་ ཨང་གྲངས་གཉིས་ལྡན་ཨིན། </ahelp>"
@@ -29549,7 +27940,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\"> གྲུབ་འབྲས་ད
msgctxt ""
"04060115.xhp\n"
"hd_id3156117\n"
-"81\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -29558,26 +27948,22 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id3155847\n"
-"82\n"
"help.text"
msgid "HEX2BIN(Number; Places)"
msgstr "HEX2BIN(ཨང་། ས་གནས་ཚུ།)"
#: 04060115.xhp
-#, fuzzy
msgctxt ""
"04060115.xhp\n"
"par_id3152810\n"
-"83\n"
"help.text"
msgid "<emph>Number</emph> is a hexadecimal number or a string that represents a hexadecimal number. It can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
-msgstr "ཨང་གྲངས་: ཧེག་ཟ་ཌེ་སི་མཱལ་ཨང་གྲངས། ཨང་གྲངས་དེ་ མང་མཐའ་རང་ ས་གནས་ ༡༠ ཚུ་དང་ལྡན་བཏུབ་ཨིན། ཧ་ཅང་གིས་གལ་ཅན་བིཊི་དེ་ བརྡ་སྟོན་བིཊི་ཨིནམ་ལས་ འོག་ལུ་ཡོད་པའི་ བིཊིསི་གིས་ གནས་གོང་སླར་ལོག་འབདཝ་ཨིན། ཨང་གྲངས་ མེད་ཆ་ཚུ་ གཉིས་ཀྱི་ ལྷན་ཐབས་སྦེ་བཙུགས་ཏེ་ཡོདཔ་ཨིན།"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"par_id3153758\n"
-"84\n"
"help.text"
msgid "<emph>Places</emph> is the number of places to be output."
msgstr "ས་གནས་ཚུ་ : ཨའུཊི་པུཊི་ཨིན་དགོ་མི་ས་གནས་ཚུའི་གྱངས་ཁ།"
@@ -29586,7 +27972,6 @@ msgstr "ས་གནས་ཚུ་ : ཨའུཊི་པུཊི་ཨིན
msgctxt ""
"04060115.xhp\n"
"hd_id3154052\n"
-"85\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -29595,7 +27980,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060115.xhp\n"
"par_id3156002\n"
-"86\n"
"help.text"
msgid "<item type=\"input\">=HEX2BIN(\"6a\";8)</item> returns 01101010."
msgstr ""
@@ -29605,14 +27989,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3154742\n"
"help.text"
-msgid "<bookmark_value>HEX2DEC function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into decimal numbers</bookmark_value>"
-msgstr "<bookmark_value>HEX2DEC ལས་འགན་</bookmark_value><bookmark_value>གཞི་བསྒྱུར་འབད་དོ་ ཧེག་ཟ་ཌེ་སི་མཱལ་ཨང་ཚུ་ བཅུ་ཚག་ཨང་ཚུ་ནང་ལུ་</bookmark_value>"
+msgid "<bookmark_value>HEX2DEC function</bookmark_value> <bookmark_value>converting;hexadecimal numbers, into decimal numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3154742\n"
-"87\n"
"help.text"
msgid "HEX2DEC"
msgstr "HEX2DEC"
@@ -29621,7 +28004,6 @@ msgstr "HEX2DEC"
msgctxt ""
"04060115.xhp\n"
"par_id3153626\n"
-"88\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\">The result is the decimal number for the hexadecimal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\"> གྲུབ་འབྲས་དེ་ བཙུགས་ཏེ་ཡོད་པའི་ ཧེག་ཟ་ཌེ་སི་མཱལ་ཨང་གྲངས་དོན་ལུ་ བཅུ་ཚག་ཨང་གྲངས་ཨིན། </ahelp>"
@@ -29630,7 +28012,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\"> གྲུབ་འབྲས་ད
msgctxt ""
"04060115.xhp\n"
"hd_id3143233\n"
-"89\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -29639,26 +28020,22 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id3149293\n"
-"90\n"
"help.text"
msgid "HEX2DEC(Number)"
msgstr "HEX2DEC(ཨང་།)"
#: 04060115.xhp
-#, fuzzy
msgctxt ""
"04060115.xhp\n"
"par_id3159176\n"
-"91\n"
"help.text"
msgid "<emph>Number</emph> is a hexadecimal number or a string that represents a hexadecimal number. It can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
-msgstr "ཨང་གྲངས་: ཧེག་ཟ་ཌེ་སི་མཱལ་ཨང་གྲངས། ཨང་གྲངས་དེ་ མང་མཐའ་རང་ ས་གནས་ ༡༠ ཚུ་དང་ལྡན་བཏུབ་ཨིན། ཧ་ཅང་གིས་གལ་ཅན་བིཊི་དེ་ བརྡ་སྟོན་བིཊི་ཨིནམ་ལས་ འོག་ལུ་ཡོད་པའི་ བིཊིསི་གིས་ གནས་གོང་སླར་ལོག་འབདཝ་ཨིན། ཨང་གྲངས་ མེད་ཆ་ཚུ་ གཉིས་ཀྱི་ ལྷན་ཐབས་སྦེ་བཙུགས་ཏེ་ཡོདཔ་ཨིན།"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3154304\n"
-"92\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -29667,7 +28044,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060115.xhp\n"
"par_id3146093\n"
-"93\n"
"help.text"
msgid "<item type=\"input\">=HEX2DEC(\"6a\")</item> returns 106."
msgstr ""
@@ -29677,14 +28053,13 @@ msgctxt ""
"04060115.xhp\n"
"bm_id3149750\n"
"help.text"
-msgid "<bookmark_value>HEX2OCT function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into octal numbers</bookmark_value>"
-msgstr "<bookmark_value>HEX2OCT ལས་འགན་</bookmark_value><bookmark_value>གཞི་བསྒྱུར་འབད་དོ་ ཧེག་ཟ་ཌེ་སི་མཱལ་ཨང་ཚུ་ ཨོཀ་ཊཱལ་ཨང་ཚུ་ནང་ལུ་</bookmark_value>"
+msgid "<bookmark_value>HEX2OCT function</bookmark_value> <bookmark_value>converting;hexadecimal numbers, into octal numbers</bookmark_value>"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3149750\n"
-"94\n"
"help.text"
msgid "HEX2OCT"
msgstr "HEX2OCT"
@@ -29693,7 +28068,6 @@ msgstr "HEX2OCT"
msgctxt ""
"04060115.xhp\n"
"par_id3153983\n"
-"95\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\">The result is the octal number for the hexadecimal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\"> གྲུབ་འབྲས་དེ་ བཙུགས་ཏེ་ཡོད་པའི་ ཧེག་ཟ་ཌེ་སི་མཱལ་ཨང་གྲངས་དོན་ལུ་ ཨོཀ་ཊཱལ་ཨང་གྲངས་ཨིན། </ahelp>"
@@ -29702,7 +28076,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\"> གྲུབ་འབྲས་ད
msgctxt ""
"04060115.xhp\n"
"hd_id3145660\n"
-"96\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -29711,26 +28084,22 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060115.xhp\n"
"par_id3151170\n"
-"97\n"
"help.text"
msgid "HEX2OCT(Number; Places)"
msgstr "HEX2OCT(ཨང་། ས་གནས་ཚུ།)"
#: 04060115.xhp
-#, fuzzy
msgctxt ""
"04060115.xhp\n"
"par_id3152795\n"
-"98\n"
"help.text"
msgid "<emph>Number</emph> is a hexadecimal number or a string that represents a hexadecimal number. It can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
-msgstr "ཨང་གྲངས་: ཧེག་ཟ་ཌེ་སི་མཱལ་ཨང་གྲངས། ཨང་གྲངས་དེ་ མང་མཐའ་རང་ ས་གནས་ ༡༠ ཚུ་དང་ལྡན་བཏུབ་ཨིན། ཧ་ཅང་གིས་གལ་ཅན་བིཊི་དེ་ བརྡ་སྟོན་བིཊི་ཨིནམ་ལས་ འོག་ལུ་ཡོད་པའི་ བིཊིསི་གིས་ གནས་གོང་སླར་ལོག་འབདཝ་ཨིན། ཨང་གྲངས་ མེད་ཆ་ཚུ་ གཉིས་ཀྱི་ ལྷན་ཐབས་སྦེ་བཙུགས་ཏེ་ཡོདཔ་ཨིན།"
+msgstr ""
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"par_id3149204\n"
-"99\n"
"help.text"
msgid "<emph>Places</emph> is the number of places to be output."
msgstr "ས་གནས་ཚུ་ : ཨའུཊི་པུཊི་ཨིན་དགོ་མི་ས་གནས་ཚུའི་གྱངས་ཁ།"
@@ -29739,7 +28108,6 @@ msgstr "ས་གནས་ཚུ་ : ཨའུཊི་པུཊི་ཨིན
msgctxt ""
"04060115.xhp\n"
"hd_id3153901\n"
-"100\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -29748,7 +28116,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060115.xhp\n"
"par_id3159341\n"
-"101\n"
"help.text"
msgid "<item type=\"input\">=HEX2OCT(\"6a\";4)</item> returns 0152."
msgstr ""
@@ -29773,7 +28140,6 @@ msgstr "<bookmark_value> དཔྱད་ཞིབ་ལས་འགན་ཚུ
msgctxt ""
"04060116.xhp\n"
"hd_id3154659\n"
-"1\n"
"help.text"
msgid "<variable id=\"head_addin_analysis_two\"><link href=\"text/scalc/01/04060116.xhp\" name=\"Add-in Functions, List of Analysis Functions Part Two\">Add-in Functions, List of Analysis Functions Part Two</link></variable>"
msgstr ""
@@ -29790,7 +28156,6 @@ msgstr "<bookmark_value>IMABS ལས་འགན།</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3154959\n"
-"44\n"
"help.text"
msgid "IMABS"
msgstr "IMABS"
@@ -29799,7 +28164,6 @@ msgstr "IMABS"
msgctxt ""
"04060116.xhp\n"
"par_id3149895\n"
-"45\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMABS\">The result is the absolute value of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMABS\"> གྲུབ་འབྲས་དེ་ ཨང་གྲངས་གོ་དཀའ་གི་ གནས་གོང་ཡང་དག་ཨིན། </ahelp>"
@@ -29808,7 +28172,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMABS\"> གྲུབ་འབྲས་དེ
msgctxt ""
"04060116.xhp\n"
"hd_id3155382\n"
-"46\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -29817,7 +28180,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3151302\n"
-"47\n"
"help.text"
msgid "IMABS(\"ComplexNumber\")"
msgstr "IMABS(གོ་དཀའ་བའི་ཨང་།)"
@@ -29826,7 +28188,6 @@ msgstr "IMABS(གོ་དཀའ་བའི་ཨང་།)"
msgctxt ""
"04060116.xhp\n"
"par_id3153974\n"
-"48\n"
"help.text"
msgid "<variable id=\"complex\"><emph>ComplexNumber</emph> is a complex number that is entered in the form \"x+yi\" or \"x+yj\".</variable>"
msgstr ""
@@ -29835,7 +28196,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"hd_id3149697\n"
-"49\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -29844,7 +28204,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3143222\n"
-"50\n"
"help.text"
msgid "<item type=\"input\">=IMABS(\"5+12j\")</item> returns 13."
msgstr ""
@@ -29861,7 +28220,6 @@ msgstr "<bookmark_value>IMAGINARY ལས་འགན།</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3145357\n"
-"51\n"
"help.text"
msgid "IMAGINARY"
msgstr "IMAGINARY"
@@ -29870,7 +28228,6 @@ msgstr "IMAGINARY"
msgctxt ""
"04060116.xhp\n"
"par_id3146965\n"
-"52\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">The result is the imaginary coefficient of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\"> གྲུབ་འབྲས་དེ་ ཨང་གྲངས་གོ་དཀའ་གི་ བློའི་འཆར་ཚུལ་གྲངས་རྟགས་ཨིན། </ahelp>"
@@ -29879,7 +28236,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\"> གྲུབ་འབྲས་ད
msgctxt ""
"04060116.xhp\n"
"hd_id3153555\n"
-"53\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -29888,7 +28244,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3155522\n"
-"54\n"
"help.text"
msgid "IMAGINARY(\"ComplexNumber\")"
msgstr "IMAGINARY(གོ་དཀའ་བའི་ཨང་།)"
@@ -29897,7 +28252,6 @@ msgstr "IMAGINARY(གོ་དཀའ་བའི་ཨང་།)"
msgctxt ""
"04060116.xhp\n"
"hd_id3151193\n"
-"56\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -29906,7 +28260,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3155592\n"
-"57\n"
"help.text"
msgid "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> returns 3."
msgstr ""
@@ -29923,7 +28276,6 @@ msgstr "<bookmark_value>IMPOWER ལས་འགན།</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3146106\n"
-"58\n"
"help.text"
msgid "IMPOWER"
msgstr "IMPOWER"
@@ -29932,7 +28284,6 @@ msgstr "IMPOWER"
msgctxt ""
"04060116.xhp\n"
"par_id3147245\n"
-"59\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMPOWER\">The result is the <emph>ComplexNumber</emph> raised to the power of <emph>Number</emph>.</ahelp>"
msgstr ""
@@ -29941,7 +28292,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"hd_id3150954\n"
-"60\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -29950,7 +28300,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3147501\n"
-"61\n"
"help.text"
msgid "IMPOWER(\"ComplexNumber\"; Number)"
msgstr "IMPOWER(གོ་དཀའ་བའི་ཨང་ ; ཨང་།)"
@@ -29959,7 +28308,6 @@ msgstr "IMPOWER(གོ་དཀའ་བའི་ཨང་ ; ཨང་།)"
msgctxt ""
"04060116.xhp\n"
"par_id3155743\n"
-"63\n"
"help.text"
msgid "<emph>Number</emph> is the exponent."
msgstr "<emph> ཨང་ </emph> འདི་བརྟག་ཞིབ་འབད་ནི་ཨིན་པའི་གནས་གོང་ཨིན།"
@@ -29968,7 +28316,6 @@ msgstr "<emph> ཨང་ </emph> འདི་བརྟག་ཞིབ་འབ
msgctxt ""
"04060116.xhp\n"
"hd_id3149048\n"
-"64\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -29977,7 +28324,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3151393\n"
-"65\n"
"help.text"
msgid "<item type=\"input\">=IMPOWER(\"2+3i\";2)</item> returns -5+12i."
msgstr ""
@@ -29994,7 +28340,6 @@ msgstr "<bookmark_value>IMARGUMENT ལས་འགན།</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3148748\n"
-"66\n"
"help.text"
msgid "IMARGUMENT"
msgstr "IMARGUMENT"
@@ -30003,7 +28348,6 @@ msgstr "IMARGUMENT"
msgctxt ""
"04060116.xhp\n"
"par_id3151341\n"
-"67\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">The result is the argument (the phi angle) of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\"> གྲུབ་འབྲས་དེ་ ཨང་གྲངས་གོ་དཀའ་གི་ སྒྲུབ་རྟགས་(པི་ཨེཆ་ཨའི་གྲུ་ཟུར་)ཨིན། </ahelp>"
@@ -30012,7 +28356,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\"> གྲུབ་འབྲས་
msgctxt ""
"04060116.xhp\n"
"hd_id3150533\n"
-"68\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -30021,7 +28364,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3156402\n"
-"69\n"
"help.text"
msgid "IMARGUMENT(\"ComplexNumber\")"
msgstr "IMARGUMENT(གོ་དཀའ་བའི་ཨང་།)"
@@ -30030,7 +28372,6 @@ msgstr "IMARGUMENT(གོ་དཀའ་བའི་ཨང་།)"
msgctxt ""
"04060116.xhp\n"
"hd_id3153019\n"
-"71\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -30039,7 +28380,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3159125\n"
-"72\n"
"help.text"
msgid "<item type=\"input\">=IMARGUMENT(\"3+4j\")</item> returns 0.927295."
msgstr ""
@@ -30056,7 +28396,6 @@ msgstr "<bookmark_value>IMDIV ལས་འགན།</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3150024\n"
-"80\n"
"help.text"
msgid "IMDIV"
msgstr "IMDIV"
@@ -30065,7 +28404,6 @@ msgstr "IMDIV"
msgctxt ""
"04060116.xhp\n"
"par_id3145825\n"
-"81\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">The result is the division of two complex numbers.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMDIV\"> གྲུབ་འབྲས་དེ་ གོ་དཀའ་ཨང་གྲངས་གཉིས་ཀྱི་ བགོ་རྩིས་ཨིན། </ahelp>"
@@ -30074,7 +28412,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMDIV\"> གྲུབ་འབྲས་དེ
msgctxt ""
"04060116.xhp\n"
"hd_id3150465\n"
-"82\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -30083,7 +28420,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3146942\n"
-"83\n"
"help.text"
msgid "IMDIV(\"Numerator\"; \"Denominator\")"
msgstr "IMDIV(དཔྱ་གྲངས། གཞི་གྲངས།)"
@@ -30092,7 +28428,6 @@ msgstr "IMDIV(དཔྱ་གྲངས། གཞི་གྲངས།)"
msgctxt ""
"04060116.xhp\n"
"par_id3150741\n"
-"84\n"
"help.text"
msgid "<emph>Numerator</emph>, <emph>Denominator</emph> are complex numbers that are entered in the form \"x+yi\" or \"x+yj\"."
msgstr ""
@@ -30101,7 +28436,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"hd_id3151229\n"
-"85\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -30110,7 +28444,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3148440\n"
-"86\n"
"help.text"
msgid "<item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> returns 5+12i."
msgstr ""
@@ -30127,7 +28460,6 @@ msgstr "<bookmark_value>IMEXP ལས་འགན།</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3153039\n"
-"87\n"
"help.text"
msgid "IMEXP"
msgstr "IMEXP"
@@ -30136,7 +28468,6 @@ msgstr "IMEXP"
msgctxt ""
"04060116.xhp\n"
"par_id3144741\n"
-"88\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">The result is the power of e and the complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMEXP\"> གྲུབ་འབྲས་དེ་ e གི་ ནུས་ཤུགས་དང་ ཨང་གྲངས་གོ་དཀའ་ཨིན། </ahelp>ཆད་མེད་ e ལི་གནས་གོང་ ཧ་ལམ་ ༢་༧༡༨༢༨༡༨༢༨༤༥༩༠༤ ཡོདཔ་ཨིན།"
@@ -30145,7 +28476,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMEXP\"> གྲུབ་འབྲས་དེ
msgctxt ""
"04060116.xhp\n"
"hd_id3145591\n"
-"89\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -30154,7 +28484,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3154810\n"
-"90\n"
"help.text"
msgid "IMEXP(\"ComplexNumber\")"
msgstr "IMEXP(གོ་དཀའ་བའི་ཨང་།)"
@@ -30163,7 +28492,6 @@ msgstr "IMEXP(གོ་དཀའ་བའི་ཨང་།)"
msgctxt ""
"04060116.xhp\n"
"hd_id3148581\n"
-"92\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -30172,7 +28500,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3149253\n"
-"93\n"
"help.text"
msgid "<item type=\"input\">=IMEXP(\"1+j\") </item>returns 1.47+2.29j (rounded)."
msgstr ""
@@ -30189,7 +28516,6 @@ msgstr "<bookmark_value>IMCONJUGATE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3149955\n"
-"94\n"
"help.text"
msgid "IMCONJUGATE"
msgstr "IMCONJUGATE"
@@ -30198,7 +28524,6 @@ msgstr "IMCONJUGATE"
msgctxt ""
"04060116.xhp\n"
"par_id3155263\n"
-"95\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">The result is the conjugated complex complement to a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\"> གྲུབ་འབྲས་དེ་ ཨང་གྲངས་གོ་དཀའ་ལུ་ གཅིག་ཏུ་འདྲེས་པའི་གོ་དཀའ་ལྷན་ཐབས་ལུ་ གོ་དཀའ་ཨང་གྲངས་ཨིན། </ahelp>"
@@ -30207,7 +28532,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\"> གྲུབ་འབྲས་
msgctxt ""
"04060116.xhp\n"
"hd_id3148750\n"
-"96\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -30216,7 +28540,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3153082\n"
-"97\n"
"help.text"
msgid "IMCONJUGATE(\"ComplexNumber\")"
msgstr "IMCONJUGATE(གོ་དཀའ་བའི་ཨང་།)"
@@ -30225,7 +28548,6 @@ msgstr "IMCONJUGATE(གོ་དཀའ་བའི་ཨང་།)"
msgctxt ""
"04060116.xhp\n"
"hd_id3153326\n"
-"99\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -30234,7 +28556,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3149688\n"
-"100\n"
"help.text"
msgid "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> returns 1-j."
msgstr ""
@@ -30251,7 +28572,6 @@ msgstr "<bookmark_value>IMLN ལས་འགན།</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3150898\n"
-"101\n"
"help.text"
msgid "IMLN"
msgstr "IMLN"
@@ -30260,7 +28580,6 @@ msgstr "IMLN"
msgctxt ""
"04060116.xhp\n"
"par_id3146853\n"
-"102\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMLN\">The result is the natural logarithm (to the base e) of a complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLN\"> གྲུབ་འབྲས་དེ་ གོ་དཀའ་ཨང་གྲངས་ཀྱི་ (གཞི་རྟེན་ e ལུ་) རང་བཞིན་མཉམ་གྲངས་ཨིན། </ahelp> ཆད་མེད་ e ལུ་ གནས་གོང་ ཧ་ལམ་ ༢་༧༡༨༢༨༡༨༢༨༤༥༩༠༤ ཡོདཔ་ཨིན།"
@@ -30269,7 +28588,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLN\"> གྲུབ་འབྲས་དེ
msgctxt ""
"04060116.xhp\n"
"hd_id3150008\n"
-"103\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -30278,7 +28596,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3155954\n"
-"104\n"
"help.text"
msgid "IMLN(\"ComplexNumber\")"
msgstr "IMLN(གོ་དཀའ་བའི་ཨང་།)"
@@ -30287,7 +28604,6 @@ msgstr "IMLN(གོ་དཀའ་བའི་ཨང་།)"
msgctxt ""
"04060116.xhp\n"
"hd_id3153565\n"
-"106\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -30296,7 +28612,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3153736\n"
-"107\n"
"help.text"
msgid "<item type=\"input\">=IMLN(\"1+j\")</item> returns 0.35+0.79j (rounded)."
msgstr ""
@@ -30313,7 +28628,6 @@ msgstr "<bookmark_value>IMLOG10 ལས་འགན།</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3155929\n"
-"108\n"
"help.text"
msgid "IMLOG10"
msgstr "IMLOG10"
@@ -30322,7 +28636,6 @@ msgstr "IMLOG10"
msgctxt ""
"04060116.xhp\n"
"par_id3149882\n"
-"109\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG10\">The result is the common logarithm (to the base 10) of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG10\"> གྲུབ་འབྲས་དེ་ ཨང་གྲངས་གོ་དཀའ་གི་ (གཞི་རྟེན་ ༡༠ ལུ་) མཉམ་གྲངས་མཐུན་མོངཨིན། </ahelp>"
@@ -30331,7 +28644,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG10\"> གྲུབ་འབྲས་ད
msgctxt ""
"04060116.xhp\n"
"hd_id3154327\n"
-"110\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -30340,7 +28652,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3150128\n"
-"111\n"
"help.text"
msgid "IMLOG10(\"ComplexNumber\")"
msgstr "IMLOG10(གོ་དཀའ་བའི་ཨང་།)"
@@ -30349,7 +28660,6 @@ msgstr "IMLOG10(གོ་དཀའ་བའི་ཨང་།)"
msgctxt ""
"04060116.xhp\n"
"hd_id3149003\n"
-"113\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -30358,7 +28668,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3151021\n"
-"114\n"
"help.text"
msgid "<item type=\"input\">=IMLOG10(\"1+j\")</item> returns 0.15+0.34j (rounded)."
msgstr ""
@@ -30375,7 +28684,6 @@ msgstr "<bookmark_value>IMLOG2 ལས་འགན།</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3155623\n"
-"115\n"
"help.text"
msgid "IMLOG2"
msgstr "IMLOG2"
@@ -30384,7 +28692,6 @@ msgstr "IMLOG2"
msgctxt ""
"04060116.xhp\n"
"par_id3150932\n"
-"116\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">The result is the binary logarithm of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\"> གྲུབ་འབྲས་དེ་ ཨང་གྲངས་གོ་དཀའི་མཉམ་གྲངས་ཟུང་ལྡན་ཨིན། </ahelp>"
@@ -30393,7 +28700,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\"> གྲུབ་འབྲས་དེ
msgctxt ""
"04060116.xhp\n"
"hd_id3153046\n"
-"117\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -30402,7 +28708,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3145355\n"
-"118\n"
"help.text"
msgid "IMLOG2(\"ComplexNumber\")"
msgstr "IMLOG2(གོ་དཀའ་བའི་ཨང་།)"
@@ -30411,7 +28716,6 @@ msgstr "IMLOG2(གོ་དཀའ་བའི་ཨང་།)"
msgctxt ""
"04060116.xhp\n"
"hd_id3148768\n"
-"120\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -30420,7 +28724,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3149536\n"
-"121\n"
"help.text"
msgid "<item type=\"input\">=IMLOG2(\"1+j\")</item> returns 0.50+1.13j (rounded)."
msgstr ""
@@ -30437,7 +28740,6 @@ msgstr "<bookmark_value>IMPRODUCT ལས་འགན།</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3145626\n"
-"122\n"
"help.text"
msgid "IMPRODUCT"
msgstr "IMPRODUCT"
@@ -30446,7 +28748,6 @@ msgstr "IMPRODUCT"
msgctxt ""
"04060116.xhp\n"
"par_id3153545\n"
-"123\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\">The result is the product of up to 29 complex numbers.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\"> གྲུབ་འབྲས་དེ་ ཨང་གྲངས་གོ་དཀའི་ཨང་གྲངས་ ༢༩ ཚུན་གྱི་ ཐོན་སྐྱེད་ཨིན། </ahelp>"
@@ -30455,7 +28756,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\"> གྲུབ་འབྲས་ད
msgctxt ""
"04060116.xhp\n"
"hd_id3149388\n"
-"124\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -30464,7 +28764,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3149027\n"
-"125\n"
"help.text"
msgid "IMPRODUCT(\"ComplexNumber\"; \"ComplexNumber1\"; ...)"
msgstr "IMPRODUCT(གོ་དཀའ་བའི་ཨང་ ; གོ་དཀའ་བའི་ཨང་གྲངས་ ༡ ;...)"
@@ -30473,7 +28772,6 @@ msgstr "IMPRODUCT(གོ་དཀའ་བའི་ཨང་ ; གོ་དཀ
msgctxt ""
"04060116.xhp\n"
"hd_id3153228\n"
-"127\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -30482,7 +28780,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3155815\n"
-"128\n"
"help.text"
msgid "<item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> returns 27+11j."
msgstr ""
@@ -30499,7 +28796,6 @@ msgstr "<bookmark_value>IMREAL ལས་འགན།</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3147539\n"
-"129\n"
"help.text"
msgid "IMREAL"
msgstr "IMREAL"
@@ -30508,7 +28804,6 @@ msgstr "IMREAL"
msgctxt ""
"04060116.xhp\n"
"par_id3155372\n"
-"130\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">The result is the real coefficient of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMREAL\"> གྲུབ་འབྲས་དེ་ ཨང་གྲངས་གོ་དཀའི་ གྲངས་རྟགས་ངོ་མ་ཨིན། </ahelp>"
@@ -30517,7 +28812,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMREAL\"> གྲུབ་འབྲས་དེ
msgctxt ""
"04060116.xhp\n"
"hd_id3154951\n"
-"131\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -30526,7 +28820,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3153927\n"
-"132\n"
"help.text"
msgid "IMREAL(\"ComplexNumber\")"
msgstr "IMREAL(ཨང་གྲངས་ གོ་དཀའ།)"
@@ -30535,7 +28828,6 @@ msgstr "IMREAL(ཨང་གྲངས་ གོ་དཀའ།)"
msgctxt ""
"04060116.xhp\n"
"hd_id3155409\n"
-"134\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -30544,7 +28836,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3155986\n"
-"135\n"
"help.text"
msgid "<item type=\"input\">=IMREAL(\"1+3j\")</item> returns 1."
msgstr ""
@@ -30561,7 +28852,6 @@ msgstr "<bookmark_value>IMSUB ལས་འགན།</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3163826\n"
-"143\n"
"help.text"
msgid "IMSUB"
msgstr "IMSUB"
@@ -30570,7 +28860,6 @@ msgstr "IMSUB"
msgctxt ""
"04060116.xhp\n"
"par_id3149277\n"
-"144\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">The result is the subtraction of two complex numbers.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUB\"> གྲུབ་འབྲས་དེ་ གོ་དཀའ་ཨང་གྲངས་གཉིས་ཀྱི་ ཕབ་རྩིས་ཨིན། </ahelp>"
@@ -30579,7 +28868,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUB\"> གྲུབ་འབྲས་དེ
msgctxt ""
"04060116.xhp\n"
"hd_id3149264\n"
-"145\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -30588,7 +28876,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3149710\n"
-"146\n"
"help.text"
msgid "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
msgstr "IMPRODUCT(གོ་དཀའ་བའི་ཨང་ ; གོ་དཀའ་བའི་ཨང་གྲངས་ ༡ ;...)"
@@ -30597,7 +28884,6 @@ msgstr "IMPRODUCT(གོ་དཀའ་བའི་ཨང་ ; གོ་དཀ
msgctxt ""
"04060116.xhp\n"
"hd_id3155833\n"
-"148\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -30606,7 +28892,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3150963\n"
-"149\n"
"help.text"
msgid "<item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> returns 8+j."
msgstr ""
@@ -30623,7 +28908,6 @@ msgstr "<bookmark_value>IMSUM ལས་འགན།</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3156312\n"
-"150\n"
"help.text"
msgid "IMSUM"
msgstr "IMSUM"
@@ -30632,7 +28916,6 @@ msgstr "IMSUM"
msgctxt ""
"04060116.xhp\n"
"par_id3153215\n"
-"151\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">The result is the sum of up to 29 complex numbers.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUM\"> གྲུབ་འབྲས་དེ་ གོ་དཀའ་ཨང་གྲངས་ ༢༩ ཚུན་གྱི་ བསྡོམས་ཨིན། </ahelp>"
@@ -30641,7 +28924,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUM\"> གྲུབ་འབྲས་དེ
msgctxt ""
"04060116.xhp\n"
"hd_id3156095\n"
-"152\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -30650,7 +28932,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3152930\n"
-"153\n"
"help.text"
msgid "IMSUM(\"ComplexNumber1\"; \"ComplexNumber2\"; ...)"
msgstr "IMPRODUCT(གོ་དཀའ་བའི་ཨང་ ; གོ་དཀའ་བའི་ཨང་གྲངས་ ༡ ;...)"
@@ -30659,7 +28940,6 @@ msgstr "IMPRODUCT(གོ་དཀའ་བའི་ཨང་ ; གོ་དཀ
msgctxt ""
"04060116.xhp\n"
"hd_id3154640\n"
-"155\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -30668,7 +28948,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3147081\n"
-"156\n"
"help.text"
msgid "<item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> returns 18+7j."
msgstr ""
@@ -30685,7 +28964,6 @@ msgstr "<bookmark_value>IMSQRT ལས་འགན།</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3147570\n"
-"167\n"
"help.text"
msgid "IMSQRT"
msgstr "IMSQRT"
@@ -30694,7 +28972,6 @@ msgstr "IMSQRT"
msgctxt ""
"04060116.xhp\n"
"par_id3156131\n"
-"168\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\">The result is the square root of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\"> གྲུབ་འབྲས་དེ་ གོ་དཀའ་ཨང་གྲངས་ཀྱི་ རང་བསྒྱུར་རྩ་གྲངས་ཨིན། </ahelp>"
@@ -30703,7 +28980,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\"> གྲུབ་འབྲས་དེ
msgctxt ""
"04060116.xhp\n"
"hd_id3145202\n"
-"169\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -30712,7 +28988,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3150760\n"
-"170\n"
"help.text"
msgid "IMSQRT(\"ComplexNumber\")"
msgstr "IMSQRT(ཨང་གོ་དཀའ་བ།)"
@@ -30721,7 +28996,6 @@ msgstr "IMSQRT(ཨང་གོ་དཀའ་བ།)"
msgctxt ""
"04060116.xhp\n"
"hd_id3147268\n"
-"172\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -30730,7 +29004,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3152807\n"
-"173\n"
"help.text"
msgid "<item type=\"input\">=IMSQRT(\"3+4i\")</item> returns 2+1i."
msgstr ""
@@ -30747,7 +29020,6 @@ msgstr "<bookmark_value>COMPLEX ལས་འགན།</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3154054\n"
-"157\n"
"help.text"
msgid "COMPLEX"
msgstr "COMPLEX"
@@ -30756,7 +29028,6 @@ msgstr "COMPLEX"
msgctxt ""
"04060116.xhp\n"
"par_id3156111\n"
-"158\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\">The result is a complex number which is returned from a real coefficient and an imaginary coefficient.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\"> གྲུབ་འབྲས་དེ་ གྲངས་རྟགས་ངོ་མ་དང་ བློའི་འཆར་ཚུལ་གྲངས་རྟགས་ལས་ སླར་ལོག་འབད་ཡོད་པའི་ གོ་དཀའ་ཨང་གྲངས་ཨིན། </ahelp>"
@@ -30765,7 +29036,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\"> གྲུབ་འབྲས་ད
msgctxt ""
"04060116.xhp\n"
"hd_id3154744\n"
-"159\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -30774,7 +29044,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3155999\n"
-"160\n"
"help.text"
msgid "COMPLEX(RealNum; INum; Suffix)"
msgstr "COMPLEX(Real num;I num;Suffix)"
@@ -30783,7 +29052,6 @@ msgstr "COMPLEX(Real num;I num;Suffix)"
msgctxt ""
"04060116.xhp\n"
"par_id3153626\n"
-"161\n"
"help.text"
msgid "<emph>RealNum</emph> is the real coefficient of the complex number."
msgstr ""
@@ -30792,7 +29060,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"par_id3149135\n"
-"162\n"
"help.text"
msgid "<emph>INum</emph> is the imaginary coefficient of the complex number."
msgstr ""
@@ -30801,7 +29068,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"par_id3155849\n"
-"163\n"
"help.text"
msgid "<emph>Suffix</emph> is a list of options, \"i\" or \"j\"."
msgstr ""
@@ -30810,7 +29076,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"hd_id3145659\n"
-"164\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -30819,7 +29084,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3143229\n"
-"165\n"
"help.text"
msgid "<item type=\"input\">=COMPLEX(3;4;\"j\")</item> returns 3+4j."
msgstr ""
@@ -30836,7 +29100,6 @@ msgstr "<bookmark_value>OCT2BIN ལས་འགན་</bookmark_value><bookmark_
msgctxt ""
"04060116.xhp\n"
"hd_id3155103\n"
-"217\n"
"help.text"
msgid "OCT2BIN"
msgstr "OCT2BIN"
@@ -30845,7 +29108,6 @@ msgstr "OCT2BIN"
msgctxt ""
"04060116.xhp\n"
"par_id3146898\n"
-"218\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">The result is the binary number for the octal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\"> གྲུབ་འབྲས་དེ་ བཙུགས་ཏེ་ཡོད་པའི་ཨོཀ་ཊཱལ་ཨང་གྲངས་ དོན་ལུ་ ཨང་གྲངས་ཟུང་ལྡན་ཨིན། </ahelp>"
@@ -30854,7 +29116,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\"> གྲུབ་འབྲས་ད
msgctxt ""
"04060116.xhp\n"
"hd_id3146088\n"
-"219\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -30863,7 +29124,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3154303\n"
-"220\n"
"help.text"
msgid "OCT2BIN(Number; Places)"
msgstr "OCT2BIN(ཨང་། ས་གནས་ཚུ།)"
@@ -30872,7 +29132,6 @@ msgstr "OCT2BIN(ཨང་། ས་གནས་ཚུ།)"
msgctxt ""
"04060116.xhp\n"
"par_id3156013\n"
-"221\n"
"help.text"
msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
msgstr "ཨང་གྲངས་: ཨོཀ་ཊཱལ་ཨང་གྲངས། ཨང་གྲངས་ལུ་ མང་མཐའ་རང་ ས་གནས་ ༡༠ ཚུ་དང་ལྡན་ཚུགསཔ་ཨིན། ཧ་ཅང་གིས་ གལ་ཅན་བིཊི་དེ་ བརྡ་སྟོན་བིཊི་ཨིནམ་ལས་ འོག་གི་བིཊིསི་ཚུ་གིས་ གནས་གོང་སླར་ལོགའབདཝ་ཨིན། ཨང་གྲངས་ མེད་ཆ་ཚུ་ གཉིས་ཀྱི་ ལྷན་ཐབས་སྦེ་བཙུགས་ཏེ་ཡོདཔ་ཨིན།"
@@ -30881,7 +29140,6 @@ msgstr "ཨང་གྲངས་: ཨོཀ་ཊཱལ་ཨང་གྲངས
msgctxt ""
"04060116.xhp\n"
"par_id3153984\n"
-"222\n"
"help.text"
msgid "<emph>Places</emph> is the number of places to be output."
msgstr "ས་གནས་ཚུ་ : ཨའུཊི་པུཊི་ཨིན་དགོ་མི་ས་གནས་ཚུའི་གྱངས་ཁ།"
@@ -30890,7 +29148,6 @@ msgstr "ས་གནས་ཚུ་ : ཨའུཊི་པུཊི་ཨིན
msgctxt ""
"04060116.xhp\n"
"hd_id3147493\n"
-"223\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -30899,7 +29156,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3147260\n"
-"224\n"
"help.text"
msgid "<item type=\"input\">=OCT2BIN(3;3)</item> returns 011."
msgstr ""
@@ -30916,7 +29172,6 @@ msgstr "<bookmark_value>OCT2DEC ལས་འགན་</bookmark_value><bookmark_
msgctxt ""
"04060116.xhp\n"
"hd_id3152791\n"
-"225\n"
"help.text"
msgid "OCT2DEC"
msgstr "OCT2DEC"
@@ -30925,7 +29180,6 @@ msgstr "OCT2DEC"
msgctxt ""
"04060116.xhp\n"
"par_id3149199\n"
-"226\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">The result is the decimal number for the octal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\"> གྲུབ་འབྲས་དེ་ བཙུགས་ཏེ་ཡོད་པའི་ ཨོཀ་ཊཱལ་ཨང་གྲངས་དོན་ལུ་ བཅུ་ཚག་ཨང་གྲངས་ཨིན། </ahelp>"
@@ -30934,7 +29188,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\"> གྲུབ་འབྲས་ད
msgctxt ""
"04060116.xhp\n"
"hd_id3159337\n"
-"227\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -30943,7 +29196,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3153902\n"
-"228\n"
"help.text"
msgid "OCT2DEC(Number)"
msgstr "OCT2DEC(ཨང་།)"
@@ -30952,7 +29204,6 @@ msgstr "OCT2DEC(ཨང་།)"
msgctxt ""
"04060116.xhp\n"
"par_id3155326\n"
-"229\n"
"help.text"
msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
msgstr "ཨང་གྲངས་: ཨོཀ་ཊཱལ་ཨང་གྲངས། ཨང་གྲངས་ལུ་ མང་མཐའ་རང་ ས་གནས་ ༡༠ ཚུ་དང་ལྡན་ཚུགསཔ་ཨིན། ཧ་ཅང་གིས་ གལ་ཅན་བིཊི་དེ་ བརྡ་སྟོན་བིཊི་ཨིནམ་ལས་ འོག་གི་བིཊིསི་ཚུ་གིས་ གནས་གོང་སླར་ལོགའབདཝ་ཨིན། ཨང་གྲངས་ མེད་ཆ་ཚུ་ གཉིས་ཀྱི་ ལྷན་ཐབས་སྦེ་བཙུགས་ཏེ་ཡོདཔ་ཨིན།"
@@ -30961,7 +29212,6 @@ msgstr "ཨང་གྲངས་: ཨོཀ་ཊཱལ་ཨང་གྲངས
msgctxt ""
"04060116.xhp\n"
"hd_id3154698\n"
-"230\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -30970,7 +29220,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3154930\n"
-"231\n"
"help.text"
msgid "<item type=\"input\">=OCT2DEC(144)</item> returns 100."
msgstr ""
@@ -30987,7 +29236,6 @@ msgstr "<bookmark_value>OCT2HEX ལས་འགན་</bookmark_value><bookmark_
msgctxt ""
"04060116.xhp\n"
"hd_id3155391\n"
-"232\n"
"help.text"
msgid "OCT2HEX"
msgstr "OCT2HEX"
@@ -30996,7 +29244,6 @@ msgstr "OCT2HEX"
msgctxt ""
"04060116.xhp\n"
"par_id3148831\n"
-"233\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\"> The result is the hexadecimal number for the octal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\"> གྲུབ་འབྲས་དེ་ བཙུགས་ཏེ་ཡོད་པའི་ཨོཀ་ཊཱལ་ཨང་གྲངས་དོན་ལུ་ ཧེག་ཟ་ཌི་སི་མཱལ་ཨིན། </ahelp>"
@@ -31005,7 +29252,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\"> གྲུབ་འབྲས་ད
msgctxt ""
"04060116.xhp\n"
"hd_id3146988\n"
-"234\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -31014,7 +29260,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3150523\n"
-"235\n"
"help.text"
msgid "OCT2HEX(Number; Places)"
msgstr "OCT2HEX(ཨང་གྲངས། ས་གནས་ཚུ།)"
@@ -31023,7 +29268,6 @@ msgstr "OCT2HEX(ཨང་གྲངས། ས་གནས་ཚུ།)"
msgctxt ""
"04060116.xhp\n"
"par_id3159162\n"
-"236\n"
"help.text"
msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
msgstr "ཨང་གྲངས་: ཨོཀ་ཊཱལ་ཨང་གྲངས། ཨང་གྲངས་ལུ་ མང་མཐའ་རང་ ས་གནས་ ༡༠ ཚུ་དང་ལྡན་ཚུགསཔ་ཨིན། ཧ་ཅང་གིས་ གལ་ཅན་བིཊི་དེ་ བརྡ་སྟོན་བིཊི་ཨིནམ་ལས་ འོག་གི་བིཊིསི་ཚུ་གིས་ གནས་གོང་སླར་ལོགའབདཝ་ཨིན། ཨང་གྲངས་ མེད་ཆ་ཚུ་ གཉིས་ཀྱི་ ལྷན་ཐབས་སྦེ་བཙུགས་ཏེ་ཡོདཔ་ཨིན།"
@@ -31032,7 +29276,6 @@ msgstr "ཨང་གྲངས་: ཨོཀ་ཊཱལ་ཨང་གྲངས
msgctxt ""
"04060116.xhp\n"
"par_id3145420\n"
-"237\n"
"help.text"
msgid "<emph>Places</emph> is the number of places to be output."
msgstr "ས་གནས་ཚུ་ : ཨའུཊི་པུཊི་ཨིན་དགོ་མི་ས་གནས་ཚུའི་གྱངས་ཁ།"
@@ -31041,7 +29284,6 @@ msgstr "ས་གནས་ཚུ་ : ཨའུཊི་པུཊི་ཨིན
msgctxt ""
"04060116.xhp\n"
"hd_id3150504\n"
-"238\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -31050,7 +29292,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060116.xhp\n"
"par_id3148802\n"
-"239\n"
"help.text"
msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
msgstr ""
@@ -31067,7 +29308,6 @@ msgstr "<bookmark_value>CONVERT_ADD ལས་འགན།</bookmark_value>"
msgctxt ""
"04060116.xhp\n"
"hd_id3148446\n"
-"175\n"
"help.text"
msgid "CONVERT_ADD"
msgstr "CONVERT_ADD"
@@ -31076,7 +29316,6 @@ msgstr "CONVERT_ADD"
msgctxt ""
"04060116.xhp\n"
"par_id3154902\n"
-"176\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Converts a value from one unit of measure to the corresponding value in another unit of measure.</ahelp> Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for liter) in a cell, enter the apostrophe ' immediately followed by l."
msgstr "<ahelp hid=\"HID_AAI_FUNC_CONVERT\"> འཇལ་ཚད་ཀྱི་ཆ་ཕྲན་གཅིག་ལས་ འཇལ་ཚད་ཀྱི་ཅ་ཕྲན་གཞན་མི་གཅིག་ནང་མཚུངས་པའི་གནས་གོང་ལུ་ གནས་གོང་དེ་གཞི་བསྒྱུར་འབདཝ་ཨིན། </ahelp> འཇལ་ཚད་ཚུའི་ཆ་ཕྲན་ཚུ་ཐད་ཀར་དུ་ འདྲེན་ཚིག་ཚུ་ནང་ཚིག་ཡིག་གམ་གཞི་བསྟུན་སྦེ་བཙུགས། ཁྱོད་ཀྱིས་ ནང་ཐིག་ཚུ་ནང་ འཇལ་ཚད་ཀྱི་ཆ་ཕྲན་ཚུ་བཙུགས་པ་ཅིན་ ཁོང་ཚུ་གིས་ གནས་སྡུད་ཞིབ་རྟོགས་ཅན་ཨིན་པའི་འོག་གི་ཐོ་ཡིག་དང་གཅིག་ཁར་ཏག་ཏག་སྦེ་མཚུངས་དགོཔ་ཨིན།: དཔེ་འབད་བ་ཅིན་ ནང་ཐིག་ནང་ལུ་ འོག་གི་བཅད་མཚམས་ l (ལི་ཊར་དོན་ལུ་) བཙུགས་ནིའི་དོན་ལུ་ དེ་འཕྲལ་ལས་ l གི་རྗེས་སུ་འབྲང་མི་ འབྲེལ་རྟགས་ ' བཙུགས།"
@@ -31085,7 +29324,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_CONVERT\"> འཇལ་ཚད་ཀྱི་
msgctxt ""
"04060116.xhp\n"
"par_id3153055\n"
-"177\n"
"help.text"
msgid "Property"
msgstr "དངོས་པོ།"
@@ -31094,7 +29332,6 @@ msgstr "དངོས་པོ།"
msgctxt ""
"04060116.xhp\n"
"par_id3147234\n"
-"178\n"
"help.text"
msgid "Units"
msgstr "ཆ་ཕྲན་ཚུ།"
@@ -31103,7 +29340,6 @@ msgstr "ཆ་ཕྲན་ཚུ།"
msgctxt ""
"04060116.xhp\n"
"par_id3147512\n"
-"179\n"
"help.text"
msgid "Weight"
msgstr "ལྗིད་ཚད།"
@@ -31112,7 +29348,6 @@ msgstr "ལྗིད་ཚད།"
msgctxt ""
"04060116.xhp\n"
"par_id3148476\n"
-"180\n"
"help.text"
msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
msgstr ""
@@ -31121,7 +29356,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"par_id3155361\n"
-"181\n"
"help.text"
msgid "Length"
msgstr "རིང་ཚད།"
@@ -31130,7 +29364,6 @@ msgstr "རིང་ཚད།"
msgctxt ""
"04060116.xhp\n"
"par_id3148925\n"
-"182\n"
"help.text"
msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
msgstr ""
@@ -31139,7 +29372,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"par_id3158429\n"
-"183\n"
"help.text"
msgid "Time"
msgstr "དུས་ཚོད།"
@@ -31148,7 +29380,6 @@ msgstr "དུས་ཚོད།"
msgctxt ""
"04060116.xhp\n"
"par_id3150707\n"
-"184\n"
"help.text"
msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
msgstr ""
@@ -31157,7 +29388,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"par_id3153238\n"
-"185\n"
"help.text"
msgid "Pressure"
msgstr "ཨེབ་ཤུགས།"
@@ -31166,7 +29396,6 @@ msgstr "ཨེབ་ཤུགས།"
msgctxt ""
"04060116.xhp\n"
"par_id3166437\n"
-"186\n"
"help.text"
msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
msgstr ""
@@ -31175,7 +29404,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"par_id3152944\n"
-"187\n"
"help.text"
msgid "Force"
msgstr "བང་བཙོང་ནི།"
@@ -31184,7 +29412,6 @@ msgstr "བང་བཙོང་ནི།"
msgctxt ""
"04060116.xhp\n"
"par_id3155582\n"
-"188\n"
"help.text"
msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
msgstr ""
@@ -31193,7 +29420,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"par_id3153686\n"
-"189\n"
"help.text"
msgid "Energy"
msgstr "མེ་རླུང་།"
@@ -31202,7 +29428,6 @@ msgstr "མེ་རླུང་།"
msgctxt ""
"04060116.xhp\n"
"par_id3153386\n"
-"190\n"
"help.text"
msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
msgstr ""
@@ -31211,7 +29436,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"par_id3154100\n"
-"191\n"
"help.text"
msgid "Power"
msgstr "ནུས་ཤུགས།"
@@ -31220,7 +29444,6 @@ msgstr "ནུས་ཤུགས།"
msgctxt ""
"04060116.xhp\n"
"par_id3149915\n"
-"192\n"
"help.text"
msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
msgstr ""
@@ -31229,7 +29452,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"par_id3148988\n"
-"193\n"
"help.text"
msgid "Field strength"
msgstr "ས་སྒོ་སྟོབས་ཤུགས།"
@@ -31238,7 +29460,6 @@ msgstr "ས་སྒོ་སྟོབས་ཤུགས།"
msgctxt ""
"04060116.xhp\n"
"par_id3148616\n"
-"194\n"
"help.text"
msgid "<emph>T</emph>, <emph>ga</emph>"
msgstr ""
@@ -31247,7 +29468,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"par_id3151120\n"
-"195\n"
"help.text"
msgid "Temperature"
msgstr "ཚ་དྲོད།"
@@ -31256,7 +29476,6 @@ msgstr "ཚ་དྲོད།"
msgctxt ""
"04060116.xhp\n"
"par_id3148659\n"
-"196\n"
"help.text"
msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
msgstr ""
@@ -31265,7 +29484,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"par_id3154610\n"
-"197\n"
"help.text"
msgid "Volume"
msgstr "སྦུང་ཚད།"
@@ -31274,7 +29492,6 @@ msgstr "སྦུང་ཚད།"
msgctxt ""
"04060116.xhp\n"
"par_id3149423\n"
-"198\n"
"help.text"
msgid "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
msgstr ""
@@ -31283,7 +29500,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"par_id3149244\n"
-"199\n"
"help.text"
msgid "Area"
msgstr "མངའ་ཁོངས།"
@@ -31292,7 +29508,6 @@ msgstr "མངའ་ཁོངས།"
msgctxt ""
"04060116.xhp\n"
"par_id3150425\n"
-"200\n"
"help.text"
msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
msgstr ""
@@ -31301,7 +29516,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"par_id3150629\n"
-"201\n"
"help.text"
msgid "Speed"
msgstr "མགྱོགས་ཚད།"
@@ -31310,7 +29524,6 @@ msgstr "མགྱོགས་ཚད།"
msgctxt ""
"04060116.xhp\n"
"par_id3159246\n"
-"202\n"
"help.text"
msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
msgstr ""
@@ -31319,7 +29532,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"par_id3150789\n"
-"201\n"
"help.text"
msgid "Information"
msgstr "བརྡ་དོན།"
@@ -31328,7 +29540,6 @@ msgstr "བརྡ་དོན།"
msgctxt ""
"04060116.xhp\n"
"par_id3159899\n"
-"202\n"
"help.text"
msgid "<emph>bit</emph>, <emph>byte</emph>"
msgstr ""
@@ -31337,7 +29548,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"par_id3143277\n"
-"203\n"
"help.text"
msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
msgstr ""
@@ -31346,7 +29556,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"par_id3148422\n"
-"204\n"
"help.text"
msgid "Prefix"
msgstr ""
@@ -31755,7 +29964,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"hd_id3146125\n"
-"209\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -31764,7 +29972,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3153695\n"
-"210\n"
"help.text"
msgid "CONVERT_ADD(Number; \"FromUnit\"; \"ToUnit\")"
msgstr "CONVERT_ADD(ཨང་གྲངས། ཆ་ཕྲན་ལས། ཆ་ཕྲན་ལུ།)"
@@ -31773,7 +29980,6 @@ msgstr "CONVERT_ADD(ཨང་གྲངས། ཆ་ཕྲན་ལས། ཆ་
msgctxt ""
"04060116.xhp\n"
"par_id3147522\n"
-"211\n"
"help.text"
msgid "<emph>Number</emph> is the number to be converted."
msgstr "<emph> ཨང་གྲངས་ </emph> དེ་ གཞི་བསྒྱུར་འབད་ནི་ཨིན་པའི་ ཨང་གྲངས་ཀྱི་ གནས་གོང་ཨིན།"
@@ -31782,7 +29988,6 @@ msgstr "<emph> ཨང་གྲངས་ </emph> དེ་ གཞི་བསྒ
msgctxt ""
"04060116.xhp\n"
"par_id3154472\n"
-"212\n"
"help.text"
msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
msgstr "ཆ་ཕྲན་ལས་: གཞི་བསྒྱུར་དེ་འབད་བའི་བསྒང་ཡོད་པའི་ཆ་ཕྲན།"
@@ -31791,7 +29996,6 @@ msgstr "ཆ་ཕྲན་ལས་: གཞི་བསྒྱུར་དེ་
msgctxt ""
"04060116.xhp\n"
"par_id3153790\n"
-"213\n"
"help.text"
msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
msgstr ""
@@ -31800,7 +30004,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"hd_id3156270\n"
-"214\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
@@ -31809,7 +30012,6 @@ msgstr "དཔེར་བརྗོད་ཚུ།"
msgctxt ""
"04060116.xhp\n"
"par_id3156336\n"
-"215\n"
"help.text"
msgid "<item type=\"input\">=CONVERT_ADD(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
msgstr "=CONVERT_ADD(10;\"HP\";\"PS\") བཅུ་ཚག་ས་གནས་གཉིས་ལུ་ སྡེ་ཚན་བཟོ་ཡོད་པའི་ ༡༠་༡༤་༡༠ HP མཉམ་མི་ ༡༠་༡༤ PS སླར་ལོག་འབདཝ་ཨིན།"
@@ -31818,7 +30020,6 @@ msgstr "=CONVERT_ADD(10;\"HP\";\"PS\") བཅུ་ཚག་ས་གནས་
msgctxt ""
"04060116.xhp\n"
"par_id3154834\n"
-"216\n"
"help.text"
msgid "<item type=\"input\">=CONVERT_ADD(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
msgstr "=CONVERT_ADD(10;\"km\";\"mi\") བཅུ་ཚག་ས་གནས་གཉིས་ལུ་སྡེ་བཟོཝ་ཡོད་པའི་ ༦་༢༡་ ༡༠ ཀེ་ལོ་མི་ཊརསི་དང་མཉམ་མི་ ༦་༢༡ མཡིལསི་ སླར་ལོག་འབདཝ་ཨིན། k དེ་ ཆ་རྐྱེན་ 10^3 དོན་ལུ་ གནང་བ་བྱིན་ཡོད་པའི་ཡིག་འབྲུ་སྔོན་ཚིག་ཨིན།"
@@ -31835,7 +30036,6 @@ msgstr "<bookmark_value>FACTDOUBLE ལས་འགན་</bookmark_value><bookma
msgctxt ""
"04060116.xhp\n"
"hd_id3147096\n"
-"36\n"
"help.text"
msgid "FACTDOUBLE"
msgstr "FACTDOUBLE"
@@ -31844,7 +30044,6 @@ msgstr "FACTDOUBLE"
msgctxt ""
"04060116.xhp\n"
"par_id3151309\n"
-"37\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Returns the double factorial of a number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">ཨང་གྲངས་ཀྱི་བགོ་གྲངས་གཉིས་ལྡན་སླར་ལོག་འབདཝ་ཨིན།</ahelp>"
@@ -31853,7 +30052,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">ཨང་གྲངས་ཀྱི
msgctxt ""
"04060116.xhp\n"
"hd_id3154666\n"
-"38\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -31862,7 +30060,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060116.xhp\n"
"par_id3155121\n"
-"39\n"
"help.text"
msgid "FACTDOUBLE(Number)"
msgstr "FACTDOUBLE(ཨང་།)"
@@ -31871,7 +30068,6 @@ msgstr "FACTDOUBLE(ཨང་།)"
msgctxt ""
"04060116.xhp\n"
"par_id3158440\n"
-"40\n"
"help.text"
msgid "Returns <emph>Number</emph> <emph>!!</emph>, the double factorial of <emph>Number</emph>, where <emph>Number</emph> is an integer greater than or equal to zero."
msgstr "<emph>ཨང་གྲངས་</emph><emph>!!</emph>སླར་ལོག་འབདཝ་ཨིན་, <emph>Number</emph>གི་བགོ་གྲངས་གཉིས་ལྡན་, <emph>ཨང་གྲངས་</emph> འདི་ ཧྲིལ་གྲངས་འདི་ཀླད་ཀོར་ལས་སྦོམ་མི་ཡང་ན་མཉམ་པ།"
@@ -31920,7 +30116,6 @@ msgstr "FACTDOUBLE(0) དེ་གིས་ ངེས་ཚིག་གིས
msgctxt ""
"04060116.xhp\n"
"hd_id3154622\n"
-"42\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -31937,7 +30132,6 @@ msgstr ""
msgctxt ""
"04060116.xhp\n"
"par_id3154116\n"
-"43\n"
"help.text"
msgid "<item type=\"input\">=FACTDOUBLE(6)</item> returns 48."
msgstr ""
@@ -31967,7 +30161,6 @@ msgid "Financial Functions Part Three"
msgstr "དངུལ་འབྲེལ་ལས་འགན་ཚུའི་ ལེའུ་གསུམ་པ།"
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3145112\n"
@@ -32432,7 +30625,6 @@ msgid "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875;
msgstr ""
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3148768\n"
@@ -32553,7 +30745,6 @@ msgid "<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 currenc
msgstr "VDB(35000;7500;36;10;20;2) = དངུལ་ཆ་ཕྲན་ ༨༦༠༣་༨༠། དུས་ཡུན་སྐབས་སུ་ དུས་ཡུན་ བཅུ་པ་དང་ ཉི་ཤུ་པའི་བར་གྱི་ གོང་ཐང་ཆག་པ་དེ་ དངུལ་ཆ་ཕྲན་ ༨༦༠༣་༨༠ ཨིན།"
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3147485\n"
@@ -32890,7 +31081,6 @@ msgid "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> returns 323.02."
msgstr ""
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3148822\n"
@@ -32987,7 +31177,6 @@ msgid "The interest rate must be 7.46 % so that 7,500 currency units will become
msgstr "དངུལ་ཆ་ཕྲན་ ༧༥༠༠ དེ་ དངུལ་་ཕྲན་ ༡༠,༠༠༠ ལུ་འགྱུར་ནི་ཨིན་པའི་ཕྱིར་དུ་ སྐྱེད་གོང་ཚད་དེ་ ༧་༤༦ % ཨིན་དགོཔ་ཨིན།"
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3154267\n"
@@ -33460,7 +31649,6 @@ msgid "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 110."
msgstr ""
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3150408\n"
@@ -33549,7 +31737,6 @@ msgid "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 71."
msgstr ""
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3152957\n"
@@ -33638,7 +31825,6 @@ msgid "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2000-15-11."
msgstr ""
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3150673\n"
@@ -33727,7 +31913,6 @@ msgid "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2."
msgstr ""
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3149339\n"
@@ -33840,7 +32025,6 @@ msgid "<item type=\"input\">=IPMT(5%;5;7;15000)</item> = -352.97 currency units.
msgstr "ཨའི་པི་ཨེམ་ཊི་(༥%;༥;༧;༡༥༠༠༠) = -༣༥༢.༩༧ དངུལ་གྱི་ཆ་ཕྲན། དུས་ཡུན་(ལོ་)ལྔ་པའི་སྐབས་ཀྱི་ སྐྱེད་ཅུང་འདི་ ༣༥༢.༩༧ དངུལ་གྱི་ཆ་ཕྲན་ཨིན།"
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3151205\n"
@@ -33945,7 +32129,6 @@ msgid "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 currency units.
msgstr "FV(4%;2;750;2500) = -༤༢༣༤་༠༠ དངུལ་ཆ་ཕྲན་ཚུ། མ་རྩ་བཙུགས་པའི་མཇུག་ལུ་ གནས་གོང་དེ་ ༤༣༢༤་༠༠ དངུལ་ཆ་ཕྲན་ཚུ་ཨིན།"
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3155912\n"
@@ -34026,7 +32209,6 @@ msgid "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> returns 11
msgstr ""
#: 04060118.xhp
-#, fuzzy
msgctxt ""
"04060118.xhp\n"
"bm_id3156435\n"
@@ -34158,7 +32340,6 @@ msgstr "དངུལ་འབྲེལ་ལས་འགན་ཚུའི་
msgctxt ""
"04060119.xhp\n"
"hd_id3149052\n"
-"1\n"
"help.text"
msgid "Financial Functions Part Two"
msgstr "དངུལ་འབྲེལ་ལས་འགན་ཚུའི་ ལེའུ་གཉིས་ལུ།"
@@ -34167,7 +32348,6 @@ msgstr "དངུལ་འབྲེལ་ལས་འགན་ཚུའི་
msgctxt ""
"04060119.xhp\n"
"par_id3148742\n"
-"343\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\"> ལོག་སྟེ་རང་ དངུལ་འབྲེལ་ལས་འགན་ཚུའི་ལེའུ་གཅིག་པ་ལུ། </link>"
@@ -34176,7 +32356,6 @@ msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Funct
msgctxt ""
"04060119.xhp\n"
"par_id3151341\n"
-"344\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Forward to Financial Functions Part Three</link>"
msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\"> དངུལ་འབྲེལ་ལས་འགན་ཚུའི་ལེའུ་གསུམ་པ། </link>"
@@ -34193,7 +32372,6 @@ msgstr "<bookmark_value>PPMT ལས་འགན།</bookmark_value>"
msgctxt ""
"04060119.xhp\n"
"hd_id3150026\n"
-"238\n"
"help.text"
msgid "PPMT"
msgstr "PPMT"
@@ -34202,7 +32380,6 @@ msgstr "PPMT"
msgctxt ""
"04060119.xhp\n"
"par_id3146942\n"
-"239\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KAPZ\">Returns for a given period the payment on the principal for an investment that is based on periodic and constant payments and a constant interest rate.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KAPZ\"> དུས་མཚམས་དང་ ཆད་མེད་གླ་དངུལ་ཚུ་དེ་ལས་ ཆད་མེད་སྐྱེད་གོང་ཚད་གུ་ལུ་གཞི་བཞག་སྟེ་མ་རྩ་བཙུགས་པ་གཅིག་གི་དོན་ལུ་ མ་རྩ་གུ་ལུ་གྲ་སྒྲིག་འབད་ཡོད་པའི་གླ་དངུལ་དུས་ཡུན་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -34211,7 +32388,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KAPZ\"> དུས་མཚམས་དང་ ཆ
msgctxt ""
"04060119.xhp\n"
"hd_id3150459\n"
-"240\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -34220,7 +32396,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3146878\n"
-"241\n"
"help.text"
msgid "PPMT(Rate; Period; NPer; PV; FV; Type)"
msgstr "PPMT(གོང་ཚད། དུས་ཡུན། ཨེན་པི་ཨི་ཨར། པི་ཝི། ཨེཕ་ཝི། དབྱེ་བ།)"
@@ -34229,7 +32404,6 @@ msgstr "PPMT(གོང་ཚད། དུས་ཡུན། ཨེན་པི
msgctxt ""
"04060119.xhp\n"
"par_id3151228\n"
-"242\n"
"help.text"
msgid "<emph>Rate</emph> is the periodic interest rate."
msgstr "<emph> གོང་ཚད་ </emph> དེ་ དུས་མཚམས་སྐྱེད་གོང་ཚད་ཨིན།"
@@ -34238,7 +32412,6 @@ msgstr "<emph> གོང་ཚད་ </emph> དེ་ དུས་མཚམས
msgctxt ""
"04060119.xhp\n"
"par_id3148887\n"
-"243\n"
"help.text"
msgid "<emph>Period</emph> is the amortizement period. P = 1 for the first and P = NPer for the last period."
msgstr "དུས་ཡུན་: བུ་ལོན་བཏབ་པའི་དུས་ཡུན། དང་པམ་དེ་ལུ་ P=༡ དང་ མཇུག་གི་དེ་ལུ་ P=NPER །"
@@ -34247,7 +32420,6 @@ msgstr "དུས་ཡུན་: བུ་ལོན་བཏབ་པའི་
msgctxt ""
"04060119.xhp\n"
"par_id3148436\n"
-"244\n"
"help.text"
msgid "<emph>NPer</emph> is the total number of periods during which annuity is paid."
msgstr "<emph>NPER</emph> དེ་ ལོ་འཁོར་དངུལ་ཕོགས་དེ་ སྤྲོད་ཡོད་པའི་ དུས་ཡུན་ཚུའི་ གྱངས་ཁ་བསྡོམས་ཨིན།"
@@ -34256,7 +32428,6 @@ msgstr "<emph>NPER</emph> དེ་ ལོ་འཁོར་དངུལ་ཕ
msgctxt ""
"04060119.xhp\n"
"par_id3153035\n"
-"245\n"
"help.text"
msgid "<emph>PV</emph> is the present value in the sequence of payments."
msgstr "<emph>PV</emph> དེ་ གླ་དངུལ་ཚུའི་འབྱུང་རིམ་ནང་ ད་ལྟོའི་དངུལ་རྐྱང་གནས་གོང་།"
@@ -34265,7 +32436,6 @@ msgstr "<emph>PV</emph> དེ་ གླ་དངུལ་ཚུའི་འབ
msgctxt ""
"04060119.xhp\n"
"par_id3147474\n"
-"246\n"
"help.text"
msgid "<emph>FV</emph> (optional) is the desired (future) value."
msgstr ""
@@ -34274,7 +32444,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"par_id3144744\n"
-"247\n"
"help.text"
msgid "<emph>Type</emph> (optional) defines the due date. F = 1 for payment at the beginning of a period and F = 0 for payment at the end of a period."
msgstr "དབྱེ་བ་ (གདམ་ཁ་ཅན་): གིས་ སྤྲོད་དགོ་པའི་ཚེས་གྲངས་ངེས་འཛིན་འབདཝ་ཨིན། དུས་ཡུན་ཐོག་མ་ལུ་ གླ་གངུལ་དོན་ལུ་ F= ༡ དང་ དུས་ཡུན་མཇུག་ལུ་ གླ་དངུལ་དོན་ལུ་ F= ༠ ཨིན།"
@@ -34283,7 +32452,6 @@ msgstr "དབྱེ་བ་ (གདམ་ཁ་ཅན་): གིས་ སྤ
msgctxt ""
"04060119.xhp\n"
"hd_id3148582\n"
-"248\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -34292,7 +32460,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3154811\n"
-"249\n"
"help.text"
msgid "How high is the periodic monthly payment at an annual interest rate of 8.75% over a period of 3 years? The cash value is 5,000 currency units and is always paid at the beginning of a period. The future value is 8,000 currency units."
msgstr "ལོ་ངོ་གསུམ་གྱི་རིང་ལུ་ ལོ་བསྟར་སྐྱེད་གོང་ཚད་ ༨་༧༥% ལུ་ དུས་མཚམས་ཟླ་རིམ་གླ་དངུལ་དེ་ མཐོ་ཚད་ག་དེམ་ཅིག་འདུག? དངུལ་རྐྱང་གནས་གོང་དེ་ དངུལ་ཆ་ཕྲན་ ༥༠༠༠ ཨིནམ་ད་དེ་ ཨ་རྟག་་རང་ དུས་ཡུན་ཐོག་མ་ལུ་སྤྲོད་ཡོདཔ་ཨིན། མ་འོངས་པའི་གནས་གོང་དེ་ ༨༠༠༠ དངུལ་ཆ་ཕྲན་ཨིན།"
@@ -34301,7 +32468,6 @@ msgstr "ལོ་ངོ་གསུམ་གྱི་རིང་ལུ་ ལ
msgctxt ""
"04060119.xhp\n"
"par_id3149246\n"
-"250\n"
"help.text"
msgid "<item type=\"input\">=PPMT(8.75%/12;1;36;5000;8000;1)</item> = -350.99 currency units."
msgstr ""
@@ -34318,7 +32484,6 @@ msgstr "<bookmark_value>རྩིས་སྟོན་འབད་དོ་ བ
msgctxt ""
"04060119.xhp\n"
"hd_id3146139\n"
-"252\n"
"help.text"
msgid "CUMPRINC"
msgstr "CUMPRINC"
@@ -34327,7 +32492,6 @@ msgstr "CUMPRINC"
msgctxt ""
"04060119.xhp\n"
"par_id3150140\n"
-"253\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KUMKAPITAL\">Returns the cumulative interest paid for an investment period with a constant interest rate.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KUMKAPITAL\"> ཆད་མེད་སྐྱེད་གོང་ཚད་དང་བཅསཔ་སྦེ་ མ་རྩ་བཙུགས་པའི་དུས་ཡུན་དོན་ལུ་ སྤྲོད་ཡོད་པའི་སྐྱེད་བསྡུ་གསོག་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -34336,7 +32500,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KUMKAPITAL\"> ཆད་མེད་སྐྱེད
msgctxt ""
"04060119.xhp\n"
"hd_id3149188\n"
-"254\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -34345,7 +32508,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3148733\n"
-"255\n"
"help.text"
msgid "CUMPRINC(Rate; NPer; PV; S; E; Type)"
msgstr "CUMPRINC(གོང་ཚད། ཨེན་པི་ཨི་ཨར། པི་ཝི། ཨེསི། ཨི། དབྱེ་བ།)"
@@ -34354,7 +32516,6 @@ msgstr "CUMPRINC(གོང་ཚད། ཨེན་པི་ཨི་ཨར།
msgctxt ""
"04060119.xhp\n"
"par_id3150864\n"
-"256\n"
"help.text"
msgid "<emph>Rate</emph> is the periodic interest rate."
msgstr "<emph> གོང་ཚད་ </emph> དེ་ དུས་མཚམས་སྐྱེད་གོང་ཚད་ཨིན།"
@@ -34363,7 +32524,6 @@ msgstr "<emph> གོང་ཚད་ </emph> དེ་ དུས་མཚམས
msgctxt ""
"04060119.xhp\n"
"par_id3166052\n"
-"257\n"
"help.text"
msgid "<emph>NPer</emph> is the payment period with the total number of periods. NPER can also be a non-integer value."
msgstr "NPER: དུས་ཡུན་ཚུའི་གྱངས་ཁ་བསྡོམས་དང་བཅས་པའི་ གླ་དངུལ་དུས་ཡུན། NPER དེ་ ཧྲིལ་ཨང་མེན་པའི་གནས་གོང་ཡང་འོང་ཚུགསཔ་ཨིན།"
@@ -34372,7 +32532,6 @@ msgstr "NPER: དུས་ཡུན་ཚུའི་གྱངས་ཁ་བས
msgctxt ""
"04060119.xhp\n"
"par_id3150007\n"
-"258\n"
"help.text"
msgid "<emph>PV</emph> is the current value in the sequence of payments."
msgstr "<emph>PV</emph> དེ་ གླ་དངུལ་ཚུའི་འབྱུང་རིམ་ནང་ ད་ལྟོའི་དངུལ་རྐྱང་གནས་གོང་།"
@@ -34381,7 +32540,6 @@ msgstr "<emph>PV</emph> དེ་ གླ་དངུལ་ཚུའི་འབ
msgctxt ""
"04060119.xhp\n"
"par_id3153112\n"
-"259\n"
"help.text"
msgid "<emph>S</emph> is the first period."
msgstr ""
@@ -34390,7 +32548,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"par_id3146847\n"
-"260\n"
"help.text"
msgid "<emph>E</emph> is the last period."
msgstr ""
@@ -34399,7 +32556,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"par_id3145167\n"
-"261\n"
"help.text"
msgid "<emph>Type</emph> is the due date of the payment at the beginning or end of each period."
msgstr "དབྱེ་བ་: དུས་ཡུན་གྱི་ཐོག་མ་ལུའམ་ མཇུག་ལུ་ གླ་དངུལ་གྱི་སྤྲོད་དགོ་པའི་ཚེས་གྲངས།"
@@ -34408,7 +32564,6 @@ msgstr "དབྱེ་བ་: དུས་ཡུན་གྱི་ཐོག་
msgctxt ""
"04060119.xhp\n"
"hd_id3154502\n"
-"262\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -34417,7 +32572,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3153570\n"
-"263\n"
"help.text"
msgid "What are the payoff amounts if the yearly interest rate is 5.5% for 36 months? The cash value is 15,000 currency units. The payoff amount is calculated between the 10th and 18th period. The due date is at the end of the period."
msgstr "ཟླཝ་ ༣༦ དོན་ལུ་ ལོ་བསྟར་སྐྱེད་གོང་ཚད་དེ་ ༥་༥% ཨིན་པ་ཅིན་ གླ་འཐུས་དངུལ་བསྡོམས་ཚུ་ ག་ཅི་དང་ག་ཅི་རང་སྨ? དངུལ་རྐྱང་གནས་གོང་དེ་ དངུལ་ཆ་ཕྲན་ ༡༥,༠༠༠ ཨིན། གླ་འཐུས་དངུལ་བསྡོམས་དེ་ དུས་ཡུན་ ༡༠ པ་དང་ ༡༨ པའི་བར་རྩིས་རྐྱབ་ཡོདཔ་ཨིན། སྤྲོད་དགོ་པའི་ཚེས་གྲངས་དེ་ དུས་ཡུན་གྱི་མཇུག་ལུ་ཨིན།"
@@ -34426,7 +32580,6 @@ msgstr "ཟླཝ་ ༣༦ དོན་ལུ་ ལོ་བསྟར་སྐ
msgctxt ""
"04060119.xhp\n"
"par_id3149884\n"
-"264\n"
"help.text"
msgid "<item type=\"input\">=CUMPRINC(5.5%/12;36;15000;10;18;0)</item> = -3669.74 currency units. The payoff amount between the 10th and 18th period is 3669.74 currency units."
msgstr "CUMPRINC(5.5%/12;36;15000;10;18;0) = -༣༦༦༩་༧༤ དངུལ་ཆ་ཕྲན་ཚུ། དུས་ཡུན་ བཅུ་པ་དང་ བཅོ་བརྒྱད་པའི་བར་གྱི་ གླ་རིན་དངུལ་བསྡོམས་དེ་ ༣༦༦༩་༧༤ དངུལ་ཆ་ཕྲན་ཚུ་ཨིན།"
@@ -34443,7 +32596,6 @@ msgstr "<bookmark_value>CUMPRINC_ADD ལས་འགན།</bookmark_value>"
msgctxt ""
"04060119.xhp\n"
"hd_id3150019\n"
-"182\n"
"help.text"
msgid "CUMPRINC_ADD"
msgstr "CUMPRINC_ADD"
@@ -34452,7 +32604,6 @@ msgstr "CUMPRINC_ADD"
msgctxt ""
"04060119.xhp\n"
"par_id3145246\n"
-"183\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_CUMPRINC\"> Calculates the cumulative redemption of a loan in a period.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_CUMPRINC\"> དུས་ཡུན་གཅིག་ནང་ སྐྱིན་འགྲུལ་གྱི་ བསྡུ་གསོག་བུན་ཚབ་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -34461,7 +32612,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_CUMPRINC\"> དུས་ཡུན་གཅི
msgctxt ""
"04060119.xhp\n"
"hd_id3153047\n"
-"184\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -34470,7 +32620,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3157970\n"
-"185\n"
"help.text"
msgid "CUMPRINC_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
msgstr "CUMPRINC_ADD(གོང་ཚད། ཨེན་པི་ཨི་ཨར། པི་ཝི། དུས་ཡུན་འགོ་བཙུགས། དུས་ཡུན་མཇུག་བསྡུ། དབྱེ་བ།)"
@@ -34479,7 +32628,6 @@ msgstr "CUMPRINC_ADD(གོང་ཚད། ཨེན་པི་ཨི་ཨར
msgctxt ""
"04060119.xhp\n"
"par_id3145302\n"
-"186\n"
"help.text"
msgid "<emph>Rate</emph> is the interest rate for each period."
msgstr "<emph> གོང་ཚད་ </emph> ཀྱིས་ དུས་ཡུན་རེ་རེའི་སྐྱེད་ཀྱི་གོང་ཚད་ངེས་འཛིན་འབདཝ་ཨིན།"
@@ -34488,7 +32636,6 @@ msgstr "<emph> གོང་ཚད་ </emph> ཀྱིས་ དུས་ཡུ
msgctxt ""
"04060119.xhp\n"
"par_id3151017\n"
-"187\n"
"help.text"
msgid "<emph>NPer</emph> is the total number of payment periods. The rate and NPER must refer to the same unit, and thus both be calculated annually or monthly."
msgstr "NPER: གླ་དངུལ་དུས་ཡུན་ཚུའི་གྱངས་ཁ་བསྡོམས། གོང་ཚད་དང་ NPER དེ་གཉིས་པོ་དེ་ ཆ་ཕྲན་གཅིག་པ་ལུ་གཞི་བསྟུན་འབད་དགོཔ་ད་ གཉིས་ཆ་རང་ ལོ་བསྟར་སྦེ་ཡང་ན་ཟླ་རིམ་སྦེ་ རྩིས་རྐྱབ་དགོཔ་ཨིན།"
@@ -34497,7 +32644,6 @@ msgstr "NPER: གླ་དངུལ་དུས་ཡུན་ཚུའི་ག
msgctxt ""
"04060119.xhp\n"
"par_id3155620\n"
-"188\n"
"help.text"
msgid "<emph>PV</emph> is the current value."
msgstr ""
@@ -34506,7 +32652,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"par_id3145352\n"
-"189\n"
"help.text"
msgid "<emph>StartPeriod</emph> is the first payment period for the calculation."
msgstr "དུས་ཡུན་འགོ་བཙུགས་: རྩིས་ལས་དོན་ལུ་ གླ་དངུལ་དུས་ཡུན་དང་པ།"
@@ -34515,7 +32660,6 @@ msgstr "དུས་ཡུན་འགོ་བཙུགས་: རྩིས་
msgctxt ""
"04060119.xhp\n"
"par_id3157986\n"
-"190\n"
"help.text"
msgid "<emph>EndPeriod</emph> is the last payment period for the calculation."
msgstr "དུས་ཡུན་འགོ་བཙུགས་: རྩིས་ལས་དོན་ལུ་ གླ་དངུལ་དུས་ཡུན་དང་པ།"
@@ -34524,7 +32668,6 @@ msgstr "དུས་ཡུན་འགོ་བཙུགས་: རྩིས་
msgctxt ""
"04060119.xhp\n"
"par_id3150570\n"
-"191\n"
"help.text"
msgid "<emph>Type</emph> is the maturity of a payment at the end of each period (Type = 0) or at the start of the period (Type = 1)."
msgstr "དབྱེ་བ་: གླ་དངུལ་གྱི་དུས་ཡུན་ཚང་བ་དེ་ དུས་ཡུན་གྱི་ མཇུག་ལུའམ་(དབྱེ་བ་= ༠) དུས་ཡུན་གྱི་འགོ་བཙུགས་ལུ་ཨིན་(དབྱེ་བ་= ༡)།"
@@ -34533,7 +32676,6 @@ msgstr "དབྱེ་བ་: གླ་དངུལ་གྱི་དུས་
msgctxt ""
"04060119.xhp\n"
"hd_id3150269\n"
-"192\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -34542,7 +32684,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3148774\n"
-"193\n"
"help.text"
msgid "The following mortgage loan is taken out on a house:"
msgstr "འོག་ལུ་ཡོད་པའི་སྐྱིལ་འགྲུལ་གཏའ་མ་དེ་ ཁྱིམ་གྱི་དོན་ལུ་འབག་ཡོདཔ་ཨིན།:"
@@ -34551,7 +32692,6 @@ msgstr "འོག་ལུ་ཡོད་པའི་སྐྱིལ་འགྲ
msgctxt ""
"04060119.xhp\n"
"par_id3150661\n"
-"194\n"
"help.text"
msgid "Rate: 9.00 per cent per annum (9% / 12 = 0.0075), Duration: 30 years (payment periods = 30 * 12 = 360), NPV: 125000 currency units."
msgstr "གོང་ཚད་: ལོ་རིམ་བཞིན་ བརྒྱ་ཆ་ ༩་༠༠ (9% / 12 = 0.0075) དུས་ཡུན་: ལོ་ངོ་ ༣༠ (payment periods = 30 * 12 = 360) NPV: དངུལ་ཆ་ཕྲན་ ༡༢༥༠༠༠ ཚུ་ཨིན།"
@@ -34560,7 +32700,6 @@ msgstr "གོང་ཚད་: ལོ་རིམ་བཞིན་ བརྒྱ
msgctxt ""
"04060119.xhp\n"
"par_id3155512\n"
-"195\n"
"help.text"
msgid "How much will you repay in the second year of the mortgage (thus from periods 13 to 24)?"
msgstr "ཁྱོད་ཀྱིས་ གཏའ་མའི་ལོ་ངོ་གཉིས་པམ་ནང་ལུ་ ག་དེམ་ཅིག་ལོག་སྤྲོད་ནི་སྨོ་(དུས་ཡུན་ ༡༣ ལས་ ༢༤ ཚུན་)?"
@@ -34569,7 +32708,6 @@ msgstr "ཁྱོད་ཀྱིས་ གཏའ་མའི་ལོ་ངོ
msgctxt ""
"04060119.xhp\n"
"par_id3149394\n"
-"196\n"
"help.text"
msgid "<item type=\"input\">=CUMPRINC_ADD(0.0075;360;125000;13;24;0)</item> returns -934.1071"
msgstr ""
@@ -34578,7 +32716,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"par_id3149026\n"
-"197\n"
"help.text"
msgid "In the first month you will be repaying the following amount:"
msgstr "ཟླཝ་དང་པམ་དེ་ནང་ལུ་ ཁྱོད་ཀྱིས་ འོག་ལུ་ཡོད་པའི་དངུལ་བསྡོམས་ ལོག་སྤྲོད་འོང་།"
@@ -34587,7 +32724,6 @@ msgstr "ཟླཝ་དང་པམ་དེ་ནང་ལུ་ ཁྱོད
msgctxt ""
"04060119.xhp\n"
"par_id3154636\n"
-"198\n"
"help.text"
msgid "<item type=\"input\">=CUMPRINC_ADD(0.0075;360;125000;1;1;0)</item> returns -68.27827"
msgstr ""
@@ -34604,7 +32740,6 @@ msgstr "<bookmark_value> རྩིས་སྟོན་ནི། བསག་བ
msgctxt ""
"04060119.xhp\n"
"hd_id3155370\n"
-"266\n"
"help.text"
msgid "CUMIPMT"
msgstr "CUMIPMT"
@@ -34613,7 +32748,6 @@ msgstr "CUMIPMT"
msgctxt ""
"04060119.xhp\n"
"par_id3158411\n"
-"267\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KUMZINSZ\">Calculates the cumulative interest payments, that is, the total interest, for an investment based on a constant interest rate.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KUMZINSZ\"> ཆད་མེད་སྐྱེད་གོང་ཚད་གུ་ལུ་གཞི་བཞག་སྟེ་ མ་རྩ་བཙུགས་པའི་དོན་ལུ་ སྐྱེད་བསྡོམས་ཨིན་པའི་ བསྡུ་གསོག་སྐྱེད་གླ་དངུལ་ཚུ་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -34622,7 +32756,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KUMZINSZ\"> ཆད་མེད་སྐྱེད
msgctxt ""
"04060119.xhp\n"
"hd_id3155814\n"
-"268\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -34631,7 +32764,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3147536\n"
-"269\n"
"help.text"
msgid "CUMIPMT(Rate; NPer; PV; S; E; Type)"
msgstr "CUMPRINC(གོང་ཚད། ཨེན་པི་ཨི་ཨར། པི་ཝི། ཨེསི། ཨི། དབྱེ་བ།)"
@@ -34640,7 +32772,6 @@ msgstr "CUMPRINC(གོང་ཚད། ཨེན་པི་ཨི་ཨར།
msgctxt ""
"04060119.xhp\n"
"par_id3150475\n"
-"270\n"
"help.text"
msgid "<emph>Rate</emph> is the periodic interest rate."
msgstr "<emph> གོང་ཚད་ </emph> དེ་ དུས་མཚམས་སྐྱེད་གོང་ཚད་ཨིན།"
@@ -34649,7 +32780,6 @@ msgstr "<emph> གོང་ཚད་ </emph> དེ་ དུས་མཚམས
msgctxt ""
"04060119.xhp\n"
"par_id3153921\n"
-"271\n"
"help.text"
msgid "<emph>NPer</emph> is the payment period with the total number of periods. NPER can also be a non-integer value."
msgstr "NPER: དུས་ཡུན་ཚུའི་གྱངས་ཁ་བསྡོམས་དང་བཅས་པའི་ གླ་དངུལ་དུས་ཡུན། NPER དེ་ ཧྲིལ་ཨང་མེན་པའི་གནས་གོང་ཡང་འོང་ཚུགསཔ་ཨིན།"
@@ -34658,7 +32788,6 @@ msgstr "NPER: དུས་ཡུན་ཚུའི་གྱངས་ཁ་བས
msgctxt ""
"04060119.xhp\n"
"par_id3153186\n"
-"272\n"
"help.text"
msgid "<emph>PV</emph> is the current value in the sequence of payments."
msgstr "<emph>PV</emph> དེ་ གླ་དངུལ་ཚུའི་འབྱུང་རིམ་ནང་ ད་ལྟོའི་དངུལ་རྐྱང་གནས་གོང་།"
@@ -34667,7 +32796,6 @@ msgstr "<emph>PV</emph> དེ་ གླ་དངུལ་ཚུའི་འབ
msgctxt ""
"04060119.xhp\n"
"par_id3156259\n"
-"273\n"
"help.text"
msgid "<emph>S</emph> is the first period."
msgstr ""
@@ -34676,7 +32804,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"par_id3155990\n"
-"274\n"
"help.text"
msgid "<emph>E</emph> is the last period."
msgstr ""
@@ -34685,7 +32812,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"par_id3149777\n"
-"275\n"
"help.text"
msgid "<emph>Type</emph> is the due date of the payment at the beginning or end of each period."
msgstr "དབྱེ་བ་: དུས་ཡུན་གྱི་ཐོག་མ་ལུའམ་ མཇུག་ལུ་ གླ་དངུལ་གྱི་སྤྲོད་དགོ་པའི་ཚེས་གྲངས།"
@@ -34694,7 +32820,6 @@ msgstr "དབྱེ་བ་: དུས་ཡུན་གྱི་ཐོག་
msgctxt ""
"04060119.xhp\n"
"hd_id3153723\n"
-"276\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -34703,7 +32828,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3147478\n"
-"277\n"
"help.text"
msgid "What are the interest payments at a yearly interest rate of 5.5 %, a payment period of monthly payments for 2 years and a current cash value of 5,000 currency units? The start period is the 4th and the end period is the 6th period. The payment is due at the beginning of each period."
msgstr "ལོ་བསྟར་སྐྱེད་གོང་ཚད་དེ་ ༥་༥% ལོ་ངོ་གཉིས་ཀྱི་དོན་ལུ་ཟླ་རིམ་གླ་དངུལ་ཚུའི་གླ་དངུལ་དུས་ཡུན་དང་ དངུལ་རྐྱང་གནས་གོང་ ༥༠༠༠ དངུལ་ཆ་ཕྲན་ཚུའི་ སྐྱེད་གླ་དངུལ་ཚུ་ག་ཅི་རང་སྨོ? འགོ་བཙུགས་དུས་ཡུན་དེ་ བཞི་པ་དང་ མཇུག་བསྡུ་དུས་ཡུན་དེ་ དྲུག་པ་ཨིན། གླ་དངུལ་དེ་ དུས་ཡུན་རེ་རེའི་མགུ་ལུ་ ཆད་ཡོདཔ་ཨིན།"
@@ -34712,7 +32836,6 @@ msgstr "ལོ་བསྟར་སྐྱེད་གོང་ཚད་དེ་
msgctxt ""
"04060119.xhp\n"
"par_id3149819\n"
-"278\n"
"help.text"
msgid "<item type=\"input\">=CUMIPMT(5.5%/12;24;5000;4;6;1)</item> = -57.54 currency units. The interest payments for between the 4th and 6th period are 57.54 currency units."
msgstr "CUMIPMT(5.5%/12;24;5000;4;6;1) = -༥༧་༥༤ དངུལ་ཆ་ཕྲན་ཚུ། དུས་ཡུན་ ༤པ་དང་ ༦པའི་དོན་ལུ་ སྐྱེད་གླ་དངུལ་ཚུ་ནི་ ༥༧་༥༤ དངུལ་ཆ་ཕྲན་ཚུ་ཨིན།"
@@ -34729,7 +32852,6 @@ msgstr "<bookmark_value>CUMIPMT_ADD ལས་འགན།</bookmark_value>"
msgctxt ""
"04060119.xhp\n"
"hd_id3083280\n"
-"165\n"
"help.text"
msgid "CUMIPMT_ADD"
msgstr "CUMIPMT_ADD"
@@ -34738,7 +32860,6 @@ msgstr "CUMIPMT_ADD"
msgctxt ""
"04060119.xhp\n"
"par_id3152482\n"
-"166\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_CUMIPMT\">Calculates the accumulated interest for a period.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_CUMIPMT\"> དུས་ཡུན་དོན་ལུ་ བསག་བསགས་པའི་སྐྱེད་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -34747,7 +32868,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_CUMIPMT\"> དུས་ཡུན་དོན
msgctxt ""
"04060119.xhp\n"
"hd_id3149713\n"
-"167\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -34756,7 +32876,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3145087\n"
-"168\n"
"help.text"
msgid "CUMIPMT_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
msgstr "CUMIPMT_ADD(གོང་ཚད། ཨེན་པི་ཨི་ཨར། པི་ཝི། དུས་ཡུན་འགོ་བཙུགས། དུས་ཡུན་མཇུག་བསྡུ། དབྱེ་བ།)"
@@ -34765,7 +32884,6 @@ msgstr "CUMIPMT_ADD(གོང་ཚད། ཨེན་པི་ཨི་ཨར
msgctxt ""
"04060119.xhp\n"
"par_id3149277\n"
-"169\n"
"help.text"
msgid "<emph>Rate</emph> is the interest rate for each period."
msgstr "<emph> གོང་ཚད་ </emph> ཀྱིས་ དུས་ཡུན་རེ་རེའི་སྐྱེད་ཀྱི་གོང་ཚད་ངེས་འཛིན་འབདཝ་ཨིན།"
@@ -34774,7 +32892,6 @@ msgstr "<emph> གོང་ཚད་ </emph> ཀྱིས་ དུས་ཡུ
msgctxt ""
"04060119.xhp\n"
"par_id3149270\n"
-"170\n"
"help.text"
msgid "<emph>NPer</emph> is the total number of payment periods. The rate and NPER must refer to the same unit, and thus both be calculated annually or monthly."
msgstr "NPER: གླ་དངུལ་དུས་ཡུན་ཚུའི་གྱངས་ཁ་བསྡོམས། གོང་ཚད་དང་ NPER དེ་གཉིས་པོ་དེ་ ཆ་ཕྲན་གཅིག་པ་ལུ་གཞི་བསྟུན་འབད་དགོཔ་ད་ གཉིས་ཆ་རང་ ལོ་བསྟར་སྦེ་ཡང་ན་ཟླ་རིམ་སྦེ་ རྩིས་རྐྱབ་དགོཔ་ཨིན།"
@@ -34783,7 +32900,6 @@ msgstr "NPER: གླ་དངུལ་དུས་ཡུན་ཚུའི་ག
msgctxt ""
"04060119.xhp\n"
"par_id3152967\n"
-"171\n"
"help.text"
msgid "<emph>PV</emph> is the current value."
msgstr ""
@@ -34792,7 +32908,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"par_id3156308\n"
-"172\n"
"help.text"
msgid "<emph>StartPeriod</emph> is the first payment period for the calculation."
msgstr "དུས་ཡུན་འགོ་བཙུགས་: རྩིས་ལས་དོན་ལུ་ གླ་དངུལ་དུས་ཡུན་དང་པ།"
@@ -34801,7 +32916,6 @@ msgstr "དུས་ཡུན་འགོ་བཙུགས་: རྩིས་
msgctxt ""
"04060119.xhp\n"
"par_id3149453\n"
-"173\n"
"help.text"
msgid "<emph>EndPeriod</emph> is the last payment period for the calculation."
msgstr "དུས་ཡུན་འགོ་བཙུགས་: རྩིས་ལས་དོན་ལུ་ གླ་དངུལ་དུས་ཡུན་དང་པ།"
@@ -34810,7 +32924,6 @@ msgstr "དུས་ཡུན་འགོ་བཙུགས་: རྩིས་
msgctxt ""
"04060119.xhp\n"
"par_id3150962\n"
-"174\n"
"help.text"
msgid "<emph>Type</emph> is the maturity of a payment at the end of each period (Type = 0) or at the start of the period (Type = 1)."
msgstr "དབྱེ་བ་: གླ་དངུལ་གྱི་དུས་ཡུན་ཚང་བ་དེ་ དུས་ཡུན་གྱི་ མཇུག་ལུའམ་(དབྱེ་བ་= ༠) དུས་ཡུན་གྱི་འགོ་བཙུགས་ལུ་ཨིན་(དབྱེ་བ་= ༡)།"
@@ -34819,7 +32932,6 @@ msgstr "དབྱེ་བ་: གླ་དངུལ་གྱི་དུས་
msgctxt ""
"04060119.xhp\n"
"hd_id3152933\n"
-"175\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -34828,7 +32940,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3156324\n"
-"176\n"
"help.text"
msgid "The following mortgage loan is taken out on a house:"
msgstr "འོག་ལུ་ཡོད་པའི་སྐྱིལ་འགྲུལ་གཏའ་མ་དེ་ ཁྱིམ་གྱི་དོན་ལུ་འབག་ཡོདཔ་ཨིན།:"
@@ -34837,7 +32948,6 @@ msgstr "འོག་ལུ་ཡོད་པའི་སྐྱིལ་འགྲ
msgctxt ""
"04060119.xhp\n"
"par_id3147566\n"
-"177\n"
"help.text"
msgid "Rate: 9.00 per cent per annum (9% / 12 = 0.0075), Duration: 30 years (NPER = 30 * 12 = 360), Pv: 125000 currency units."
msgstr "གོང་ཚད་: ལོ་རིམ་བཞིན་ བརྒྱ་ཆ་ ༩་༠༠ (9% / 12 = 0.0075) དུས་ཡུན་: ལོ་ངོ་ ༣༠ (NPER = 30 * 12 = 360) Pv: དངུལ་ཆ་ཕྲན་ ༡༢༥༠༠༠ ཚུ་ཨིན།"
@@ -34846,7 +32956,6 @@ msgstr "གོང་ཚད་: ལོ་རིམ་བཞིན་ བརྒྱ
msgctxt ""
"04060119.xhp\n"
"par_id3151272\n"
-"178\n"
"help.text"
msgid "How much interest must you pay in the second year of the mortgage (thus from periods 13 to 24)?"
msgstr "གཏའ་མའི་ལོ་ངོ་གཉིས་པམ་ནང་ལུ་ ཁྱོད་ཀྱིས་ སྐྱེད་ག་དེམ་ཅིག་སྤྲོད་དགོཔ་སྨོ་(དུས་ཡུན་ ༡༣ ཚུ་ལས་ ༢༤ ཚུན)?"
@@ -34855,7 +32964,6 @@ msgstr "གཏའ་མའི་ལོ་ངོ་གཉིས་པམ་ནང
msgctxt ""
"04060119.xhp\n"
"par_id3156130\n"
-"179\n"
"help.text"
msgid "<item type=\"input\">=CUMIPMT_ADD(0.0075;360;125000;13;24;0)</item> returns -11135.23."
msgstr ""
@@ -34864,7 +32972,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"par_id3150764\n"
-"180\n"
"help.text"
msgid "How much interest must you pay in the first month?"
msgstr "ཟླཝ་དང་པམ་ནང་ལུ་ ཁྱོད་ཀྱིས་ སྐྱེད་ག་དེམ་ཅིག་སྤྲོད་དགོཔ་སྨ?"
@@ -34873,7 +32980,6 @@ msgstr "ཟླཝ་དང་པམ་ནང་ལུ་ ཁྱོད་ཀྱ
msgctxt ""
"04060119.xhp\n"
"par_id3146857\n"
-"181\n"
"help.text"
msgid "<item type=\"input\">=CUMIPMT_ADD(0.0075;360;125000;1;1;0)</item> returns -937.50."
msgstr ""
@@ -34890,7 +32996,6 @@ msgstr "<bookmark_value>PRICE ལས་འགན་</bookmark_value><bookmark_va
msgctxt ""
"04060119.xhp\n"
"hd_id3150878\n"
-"9\n"
"help.text"
msgid "PRICE"
msgstr "PRICE"
@@ -34899,7 +33004,6 @@ msgstr "PRICE"
msgctxt ""
"04060119.xhp\n"
"par_id3153210\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_PRICE\">Calculates the market value of a fixed interest security with a par value of 100 currency units as a function of the forecast yield.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICE\"> སྔོན་བཤད་ཐོན་འབྲས་ཀྱི་ ལས་འགན་སྦེ་ ༡༠༠ དངུལ་ཆ་ཕྲན་ཚུའི་ གནས་གོང་མཉམ་པ་དང་བཅས་པའི་ སྐྱེད་སྲུང་སྐྱོབ་གཏན་བཟོས་ཀྱི་ ཁྲོམ་སྡའི་གནས་གོང་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -34908,7 +33012,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICE\"> སྔོན་བཤད་ཐོན
msgctxt ""
"04060119.xhp\n"
"hd_id3154646\n"
-"11\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -34917,7 +33020,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3152804\n"
-"12\n"
"help.text"
msgid "PRICE(Settlement; Maturity; Rate; Yield; Redemption; Frequency; Basis)"
msgstr "PRICE(བུ་ལོན་སྤྲོད་འཇལ། དུས་ཡུན་ཚང་བ། གོང་ཚད། ཐོན་འབྲས། བུན་ཚབ། འབྱུང་ཐེངས། གཞི་རྩ)།"
@@ -34926,7 +33028,6 @@ msgstr "PRICE(བུ་ལོན་སྤྲོད་འཇལ། དུས་
msgctxt ""
"04060119.xhp\n"
"par_id3156121\n"
-"13\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ཉོ་ཚོང་འབད་བའི་ཚེས།"
@@ -34935,7 +33036,6 @@ msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: ས
msgctxt ""
"04060119.xhp\n"
"par_id3149983\n"
-"14\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་སྐྱོབ་དུས་ཡུན་ཚང་ནིའི་ཚེས། (དུས་ཡོལཝ་ཨིན།)."
@@ -34944,7 +33044,6 @@ msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་
msgctxt ""
"04060119.xhp\n"
"par_id3153755\n"
-"15\n"
"help.text"
msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
msgstr "<emph> གོང་ཚད་ </emph>: སྐྱེད་ཀྱི་ལོ་བསྟར་གོང་ཚད་ཆུང་བ། (འཛིན་ཤོག་སྐྱེད་ཀྱི་གོང་ཚད།)"
@@ -34953,7 +33052,6 @@ msgstr "<emph> གོང་ཚད་ </emph>: སྐྱེད་ཀྱི་ལ
msgctxt ""
"04060119.xhp\n"
"par_id3155999\n"
-"16\n"
"help.text"
msgid "<emph>Yield</emph> is the annual yield of the security."
msgstr "<emph> ཐོན་འབྲས་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ ལོ་བསྟར་ཐོན་འབྲས།"
@@ -34962,7 +33060,6 @@ msgstr "<emph> ཐོན་འབྲས་ </emph>: སྲུང་སྐྱོ
msgctxt ""
"04060119.xhp\n"
"par_id3156114\n"
-"17\n"
"help.text"
msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
msgstr "བུན་ཚབ་: གནས་གོང་མཉམ་པ་གི་ ༡༠༠ དངུལ་རེ་རེའི་བུན་ཚབ་གནས་གོང་།"
@@ -34971,7 +33068,6 @@ msgstr "བུན་ཚབ་: གནས་གོང་མཉམ་པ་གི
msgctxt ""
"04060119.xhp\n"
"par_id3155846\n"
-"18\n"
"help.text"
msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
msgstr "<emph> འབྱུང་ཐེངས་ </emph>: ལོ་རེ་རེ་ལུ་སྐྱེད་གླ་དངུལ་ཚུའི་གྱངས་ཁ། (༡, ༢ ཡང་ན་ ༤།)."
@@ -34980,7 +33076,6 @@ msgstr "<emph> འབྱུང་ཐེངས་ </emph>: ལོ་རེ་ར
msgctxt ""
"04060119.xhp\n"
"hd_id3153148\n"
-"19\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -34989,7 +33084,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3150260\n"
-"20\n"
"help.text"
msgid "A security is purchased on 1999-02-15; the maturity date is 2007-11-15. The nominal rate of interest is 5.75%. The yield is 6.5%. The redemption value is 100 currency units. Interest is paid half-yearly (frequency is 2). With calculation on basis 0, the price is as follows:"
msgstr "སྲུང་སྐྱོབ་གཅིག་ 2/15/1999 ལུ་ཉོ་ཚོང་འབད་ཡོདཔ་ད་ དུས་ཡུན་ཚང་བའི་ཚེས་གྲངས་དེ་ 11/15/2007 ལུ་ཨིན་པས། སྐྱེད་ཀྱི་ གོང་ཚད་ཆུང་བ་དེ་ 5.75% ཨིན་པས། ཐོན་འབྲས་དེ་ 6.5% ཨིན་པས། བུན་ཚབ་གནས་གོང་དེ་ དངུལ་ཆ་ཕྲན་ ༡༠༠ ཨིན་པས། སྐྱེད་དེ་ ལོ་ཕྱེད་སྦེ་སྤྲོད་ཡོདཔ་ཨིན་(འབྱུང་ཐེངས་དེ་ ༢ ཨིན)། གཞི་རྩ་ 0 དང་བཅས་པའི་རྩིས་ལས་དེ་ འོག་ལུ་བཀོད་ཡོདཔ་བཟུམ་ཨིན་:"
@@ -34998,7 +33092,6 @@ msgstr "སྲུང་སྐྱོབ་གཅིག་ 2/15/1999 ལུ་ཉ
msgctxt ""
"04060119.xhp\n"
"par_id3147273\n"
-"21\n"
"help.text"
msgid "=PRICE(\"1999-02-15\"; \"2007-11-15\"; 0.0575; 0.065; 100; 2; 0) returns 95.04287."
msgstr ""
@@ -35015,7 +33108,6 @@ msgstr "<bookmark_value>PRICEDISC ལསའ་གན་</bookmark_value><bookmar
msgctxt ""
"04060119.xhp\n"
"hd_id3151297\n"
-"22\n"
"help.text"
msgid "PRICEDISC"
msgstr "PRICEDISC"
@@ -35024,7 +33116,6 @@ msgstr "PRICEDISC"
msgctxt ""
"04060119.xhp\n"
"par_id3155100\n"
-"23\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_PRICEDISC\">Calculates the price per 100 currency units of par value of a non-interest- bearing security.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICEDISC\"> སྐྱེད་ཕོག་ནི་མེད་པའི་གཏའམ་གི་གནས་གོང་མཉམ་པའི་ ༡༠༠ དངུལ་ཆ་ཕྲན་རེ་རེའི་ཚུའི་གོང་ཚད་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -35033,7 +33124,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICEDISC\"> སྐྱེད་ཕོག་ན
msgctxt ""
"04060119.xhp\n"
"hd_id3149294\n"
-"24\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -35042,7 +33132,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3146084\n"
-"25\n"
"help.text"
msgid "PRICEDISC(Settlement; Maturity; Discount; Redemption; Basis)"
msgstr "PRICEDISC(བུ་ལོན་སྤྲོད་འཇལ། དུས་ཡུན་ཚང་བ། མར་བཅག བུན་ཚབ། གཞི་རྩ།)"
@@ -35051,7 +33140,6 @@ msgstr "PRICEDISC(བུ་ལོན་སྤྲོད་འཇལ། དུས
msgctxt ""
"04060119.xhp\n"
"par_id3159179\n"
-"26\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ཉོ་ཚོང་འབད་བའི་ཚེས།"
@@ -35060,7 +33148,6 @@ msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: ས
msgctxt ""
"04060119.xhp\n"
"par_id3154304\n"
-"27\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་སྐྱོབ་དུས་ཡུན་ཚང་ནིའི་ཚེས། (དུས་ཡོལཝ་ཨིན།)."
@@ -35069,7 +33156,6 @@ msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་
msgctxt ""
"04060119.xhp\n"
"par_id3156014\n"
-"28\n"
"help.text"
msgid "<emph>Discount</emph> is the discount of a security as a percentage."
msgstr "མར་བཅག་: སྲུང་སྐྱོབ་ཀྱི་ མར་བཅག་བརྒྱ་ཆ།"
@@ -35078,7 +33164,6 @@ msgstr "མར་བཅག་: སྲུང་སྐྱོབ་ཀྱི་ མ
msgctxt ""
"04060119.xhp\n"
"par_id3147489\n"
-"29\n"
"help.text"
msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
msgstr "བུན་ཚབ་: གནས་གོང་མཉམ་པ་གི་ ༡༠༠ དངུལ་རེ་རེའི་བུན་ཚབ་གནས་གོང་།"
@@ -35087,7 +33172,6 @@ msgstr "བུན་ཚབ་: གནས་གོང་མཉམ་པ་གི
msgctxt ""
"04060119.xhp\n"
"hd_id3152794\n"
-"30\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -35096,7 +33180,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3149198\n"
-"31\n"
"help.text"
msgid "A security is purchased on 1999-02-15; the maturity date is 1999-03-01. Discount in per cent is 5.25%. The redemption value is 100. When calculating on basis 2 the price discount is as follows:"
msgstr "སྲུང་སྐྱོབ་གཅིག་ ༢/༡༥/༡༩༩༩ ལུ་ ཉོ་ཚོང་འབད་ཡོདཔ་ད་ དུས་ཡུན་ཚང་བ་དེ་ ༣/༡/༡༩༩༩ ལུ་ཨིན་པས། མར་བཅག་དེ་བརྒྱ་ཆ་ནང་འབད་བ་ཅིན་ ༥་༢༥% ཨིན་པས། བུན་ཚབ་གནས་གོང་དེ་ ༡༠༠ ཨིན། གཞི་རྩ་ ༢་ལུ་རྩིས་སྟོན་པའི་སྐབས་སུ་ མར་བཅག་གོང་ཚད་དེ་ འོག་ལུ་བཀོད་ཡོད་མི་བཟུམ་ཨིན།:"
@@ -35105,7 +33188,6 @@ msgstr "སྲུང་སྐྱོབ་གཅིག་ ༢/༡༥/༡༩༩༩
msgctxt ""
"04060119.xhp\n"
"par_id3151178\n"
-"32\n"
"help.text"
msgid "=PRICEDISC(\"1999-02-15\"; \"1999-03-01\"; 0.0525; 100; 2) returns 99.79583."
msgstr ""
@@ -35122,7 +33204,6 @@ msgstr "<bookmark_value>PRICEMAT ལས་འགན་</bookmark_value><bookmark
msgctxt ""
"04060119.xhp\n"
"hd_id3154693\n"
-"33\n"
"help.text"
msgid "PRICEMAT"
msgstr "PRICEMAT"
@@ -35131,7 +33212,6 @@ msgstr "PRICEMAT"
msgctxt ""
"04060119.xhp\n"
"par_id3153906\n"
-"34\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_PRICEMAT\">Calculates the price per 100 currency units of par value of a security, that pays interest on the maturity date.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICEMAT\"> དུས་ཡུན་ཚང་བའི་ཚེས་གྲངས་ལུ་སྐྱེད་སྤྲོད་པའི་སྲུང་སྐྱོབ་ཀྱི་ གནས་གོང་མཉམ་པའི་ ༡༠༠ དངུལ་ཆ་ཕྲན་ཚུ་རེ་རེའི་ གོང་ཚད་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -35140,7 +33220,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICEMAT\"> དུས་ཡུན་ཚང་
msgctxt ""
"04060119.xhp\n"
"hd_id3154933\n"
-"35\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -35149,7 +33228,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3155393\n"
-"36\n"
"help.text"
msgid "PRICEMAT(Settlement; Maturity; Issue; Rate; Yield; Basis)"
msgstr "PRICEMAT(བུ་ལོན་སྤྲོད་འཇལ། དུས་ཡུན་ཚང་བ། སྤྲོད་པ། གོང་ཚད། ཐོན་འབྲས། གཞི་རྩ།)"
@@ -35158,7 +33236,6 @@ msgstr "PRICEMAT(བུ་ལོན་སྤྲོད་འཇལ། དུས
msgctxt ""
"04060119.xhp\n"
"par_id3153102\n"
-"37\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ཉོ་ཚོང་འབད་བའི་ཚེས།"
@@ -35167,7 +33244,6 @@ msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: ས
msgctxt ""
"04060119.xhp\n"
"par_id3150530\n"
-"38\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་སྐྱོབ་དུས་ཡུན་ཚང་ནིའི་ཚེས། (དུས་ཡོལཝ་ཨིན།)."
@@ -35176,7 +33252,6 @@ msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་
msgctxt ""
"04060119.xhp\n"
"par_id3149903\n"
-"39\n"
"help.text"
msgid "<emph>Issue</emph> is the date of issue of the security."
msgstr "<emph> སྤྲོད་ </emph>: སྲུང་སྐྱོབ་ཀྱི་སྤྲོད་ཚེས།"
@@ -35185,7 +33260,6 @@ msgstr "<emph> སྤྲོད་ </emph>: སྲུང་སྐྱོབ་ཀ
msgctxt ""
"04060119.xhp\n"
"par_id3148828\n"
-"40\n"
"help.text"
msgid "<emph>Rate</emph> is the interest rate of the security on the issue date."
msgstr "གོང་ཚད་: སྤྲོད་པའི་ཚེས་གྲངས་གུ་ལུ་ སྲུང་སྐྱོབ་སྐྱེད་ཀྱི་གོང་ཚད།"
@@ -35194,7 +33268,6 @@ msgstr "གོང་ཚད་: སྤྲོད་པའི་ཚེས་གྲ
msgctxt ""
"04060119.xhp\n"
"par_id3146993\n"
-"41\n"
"help.text"
msgid "<emph>Yield</emph> is the annual yield of the security."
msgstr "<emph> ཐོན་འབྲས་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ ལོ་བསྟར་ཐོན་འབྲས།"
@@ -35203,7 +33276,6 @@ msgstr "<emph> ཐོན་འབྲས་ </emph>: སྲུང་སྐྱོ
msgctxt ""
"04060119.xhp\n"
"hd_id3150507\n"
-"42\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -35212,7 +33284,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3154289\n"
-"43\n"
"help.text"
msgid "Settlement date: February 15 1999, maturity date: April 13 1999, issue date: November 11 1998. Interest rate: 6.1 per cent, yield: 6.1 per cent, basis: 30/360 = 0."
msgstr "བུ་ལོན་སྤྲོད་འཇལ་ཚེས་གྲངས་ : སྤྱི་ལོ་ ༡༩༩༩ དབྱིན་ཟླ་ གཉིས་པའི་ དབྱིན་ཚེས་ ༡༥། དུས་ཡུན་ཚང་མའི་ཚེས་གྲངས་: སྤྱི་ལོ་ ༡༩༩༩ དབྱིན་ཟླ་ བཞི་པའི་ དབྱིན་ཚེས་ ༡༣། སྤྲོད་པའི་ཚེས་གྲངས་: སྤྱི་ལོ་ ༡༩༩༨ དབྱིན་ཟླ་ ༡༡ པའི་ དབྱིན་ཚེས་ ༡༡། སྐྱེད་ཀྱི་གོང་ཚད་: བརྒྱ་ཆ་ ༦་༡ ཐོན་འབྲས་ བརྒྱ་ཆ་ ༦་༡ གཞི་རྩ་: ༣༠/༣༦༠ =༠༑"
@@ -35221,7 +33292,6 @@ msgstr "བུ་ལོན་སྤྲོད་འཇལ་ཚེས་གྲང
msgctxt ""
"04060119.xhp\n"
"par_id3154905\n"
-"44\n"
"help.text"
msgid "The price is calculated as follows:"
msgstr "གོང་ཚད་དེ་ འོག་ལུ་ཡོདཔ་བཟུམ་སྦེ་ རྩིས་སྟོན་ཡོདཔ་ཨིན།:"
@@ -35230,7 +33300,6 @@ msgstr "གོང་ཚད་དེ་ འོག་ལུ་ཡོདཔ་བ
msgctxt ""
"04060119.xhp\n"
"par_id3158409\n"
-"45\n"
"help.text"
msgid "=PRICEMAT(\"1999-02-15\";\"1999-04-13\";\"1998-11-11\"; 0.061; 0.061;0) returns 99.98449888."
msgstr ""
@@ -35247,7 +33316,6 @@ msgstr "<bookmark_value>རྩིས་སྟོན་འབད་དོ་ ད
msgctxt ""
"04060119.xhp\n"
"hd_id3148448\n"
-"280\n"
"help.text"
msgid "DURATION"
msgstr "DURATION"
@@ -35256,7 +33324,6 @@ msgstr "DURATION"
msgctxt ""
"04060119.xhp\n"
"par_id3153056\n"
-"281\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LAUFZEIT\">Calculates the number of periods required by an investment to attain the desired value.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LAUFZEIT\"> འདོད་པ་སྐྱེ་ཡོད་པའི་གནས་གོང་དེ་ འཐོབ་ནིའི་དོན་ལུ་ མ་རྩ་བཙུགས་པ་གི་དགོས་མཁོ་བའི་ དུས་ཡུན་ཚུའི་གྱངས་ཁ་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -35265,7 +33332,6 @@ msgstr "<ahelp hid=\"HID_FUNC_LAUFZEIT\"> འདོད་པ་སྐྱེ་
msgctxt ""
"04060119.xhp\n"
"hd_id3145421\n"
-"282\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -35274,7 +33340,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3148933\n"
-"283\n"
"help.text"
msgid "DURATION(Rate; PV; FV)"
msgstr "DURATION(གོང་ཚད། པི་ཝི། ཨེཕ་ཝི།)"
@@ -35283,7 +33348,6 @@ msgstr "DURATION(གོང་ཚད། པི་ཝི། ཨེཕ་ཝི།)
msgctxt ""
"04060119.xhp\n"
"par_id3148801\n"
-"284\n"
"help.text"
msgid "<emph>Rate</emph> is a constant. The interest rate is to be calculated for the entire duration (duration period). The interest rate per period is calculated by dividing the interest rate by the calculated duration. The internal rate for an annuity is to be entered as Rate/12."
msgstr "གོང་ཚད་: ཆད་མེད་གཅིག སྐྱེད་གོང་ཚད་དེ་ དུས་ཡུན་ཧྲིལ་བུ་ལུ་རྩིས་རྐྱབ་དགོཔ་ཨིན་(དུས་ཡུན་གྱི་ཚད)། དུས་ཡུན་རེ་རེའི་སྐྱེད་གོང་ཚད་དེ་ རྩིས་རྐྱབ་ཡོད་པའི་དུས་ཡུན་གྱིས་ སྐྱེད་གོང་ཚད་བགོ་བཤའ་བརྐྱབ་ཐོག་ལས་ རྩིས་རྐྱབ་ཡོདཔ་ཨིན། ལོ་འཁོར་དངུལ་ཕོགས་དོན་ལུ་ གོང་ཚད་ནང་འཁོད་དེ་ Rate/12 སྦེ་བཙུགས་དགོཔ་ཨིན།"
@@ -35292,7 +33356,6 @@ msgstr "གོང་ཚད་: ཆད་མེད་གཅིག སྐྱེད
msgctxt ""
"04060119.xhp\n"
"par_id3147239\n"
-"285\n"
"help.text"
msgid "<emph>PV</emph> is the present (current) value. The cash value is the deposit of cash or the current cash value of an allowance in kind. As a deposit value a positive value must be entered; the deposit must not be 0 or <0."
msgstr "PV: ད་ལྟོའི་(ད་ལྟོའི་)གནས་གོང་། དངུལ་རྐྱང་གནས་གོང་དེ་ དངུལ་རྐྱང་གི་བཙུགས་བཞག་གམ་ད་ལྟོའི་དངུལ་རྐྱང་གནས་གོང་གི་དབྱེ་བ་ནང་ འཐུས་ཨིན། གནས་གོང་ཡོད་ཆ་དེ་ བཙུགས་བཞག་གནས་གོང་སྦེ་བཙུགས་དགོཔ་ཨིན། བཙུགས་བཞག་དེ་ ༠ ཡང་ན་ < ༠ མི་བཏུབ་ཨིན།"
@@ -35301,7 +33364,6 @@ msgstr "PV: ད་ལྟོའི་(ད་ལྟོའི་)གནས་གོ
msgctxt ""
"04060119.xhp\n"
"par_id3147515\n"
-"286\n"
"help.text"
msgid "<emph>FV</emph> is the expected value. The future value determines the desired (future) value of the deposit."
msgstr "FV: རེ་བ་བསྐྱེད་ཡོད་པའི་གནས་གོང་། མ་འོངས་པའི་གནས་གོང་གིས་ བཙུགས་བཞག་ཡོད་པའི་འདོད་པ་སྐྱེ་པའི་གནས་གོང་གཏན་འབེབས་བཟོཝ་ཨིན་(མ་འོངས་པ)།"
@@ -35310,7 +33372,6 @@ msgstr "FV: རེ་བ་བསྐྱེད་ཡོད་པའི་གན
msgctxt ""
"04060119.xhp\n"
"hd_id3153579\n"
-"287\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -35319,7 +33380,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3148480\n"
-"288\n"
"help.text"
msgid "At an interest rate of 4.75%, a cash value of 25,000 currency units and a future value of 1,000,000 currency units, a duration of 79.49 payment periods is returned. The periodic payment is the resulting quotient from the future value and the duration, in this case 1,000,000/79.49=12,850.20."
msgstr "སྐྱེད་གོང་ཚད་ ༤་༧༥% གུ་ལུ་ དངུལ་རྐྱང་གནས་གོང་ ༢༥,༠༠༠ དངུལ་ཆ་ཕྲན་ཚུ་དང་ མ་འོངས་པའི་གནས་གོང་ ༡,༠༠༠,༠༠༠ དངུལ་ཆ་ཕྲན་ཚུ་ དེ་ལས་ དུས་ཡུན་ ༧༩་༤༩ གླ་དངུལ་དུས་ཡུན་ཚུ་སླར་ལོག་འབད་ཡོདཔ་ཨིན་པས། དུས་མཚམས་གླ་དངུལ་དེ་ མ་འོངས་པའི་གནས་གོང་དང་དུས་ཡུན་ཚུ་ལས་ གྲུབ་འབྲས་འཐོན་པའི་ ཐོབ་གྲངས་ཨིན་ གནས་སྟངས་འ་ནི་དེ་ནང་ ༡,༠༠༠,༠༠༠/༧༩་༤༩=༡༢,༨༥༠་༢༠ ཨིན།"
@@ -35336,7 +33396,6 @@ msgstr "<bookmark_value>རྩིས་སྟོན་འབད་དོ་ ཐ
msgctxt ""
"04060119.xhp\n"
"hd_id3148912\n"
-"290\n"
"help.text"
msgid "SLN"
msgstr "SLN"
@@ -35345,7 +33404,6 @@ msgstr "SLN"
msgctxt ""
"04060119.xhp\n"
"par_id3149154\n"
-"291\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LIA\">Returns the straight-line depreciation of an asset for one period.</ahelp> The amount of the depreciation is constant during the depreciation period."
msgstr "<ahelp hid=\"HID_FUNC_LIA\"> དུས་ཡུན་གཅིག་གི་དོན་ལུ་ བདོག་གཏད་ཀྱི་ གོང་ཐང་ཆག་པའི་ ཕྲང་པའི་གྲལ་ཐིག་སླར་ལོག་འབདཝ་ཨིན། </ahelp> གོང་ཐང་ཆག་པའི་དངུལ་བསྡོམས་དེ་ གོང་ཐང་ཆག་པའི་དུས་ཡུན་སྐབས་སུ་ ཆད་མེད་ཨིན།"
@@ -35354,7 +33412,6 @@ msgstr "<ahelp hid=\"HID_FUNC_LIA\"> དུས་ཡུན་གཅིག་ག
msgctxt ""
"04060119.xhp\n"
"hd_id3153240\n"
-"292\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -35363,7 +33420,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3166456\n"
-"293\n"
"help.text"
msgid "SLN(Cost; Salvage; Life)"
msgstr ""
@@ -35372,7 +33428,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"par_id3146955\n"
-"294\n"
"help.text"
msgid "<emph>Cost</emph> is the initial cost of an asset."
msgstr "<emph> རིན་ </emph> འདི་བདོག་གཏད་ཀྱི་འགོ་ཐོག་རིན་ཨིན།"
@@ -35381,7 +33436,6 @@ msgstr "<emph> རིན་ </emph> འདི་བདོག་གཏད་ཀ
msgctxt ""
"04060119.xhp\n"
"par_id3149796\n"
-"295\n"
"help.text"
msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
msgstr "<emph> ཉེན་སྐྱོབ་ </emph> འདི་ གོང་ཐང་ཆག་པའི་མཇུག་གི་ བདོག་གཏད་ཀྱི་གནས་གོང་ཨིན།"
@@ -35390,7 +33444,6 @@ msgstr "<emph> ཉེན་སྐྱོབ་ </emph> འདི་ གོང་
msgctxt ""
"04060119.xhp\n"
"par_id3166444\n"
-"296\n"
"help.text"
msgid "<emph>Life</emph> is the depreciation period determining the number of periods in the depreciation of the asset."
msgstr "LIFE: བདོག་གཏད་ཀྱི་ གོང་ཐང་ཆག་པ་ནང་ དུས་ཡུན་ཚུའི་གྱངས་ཁ་གཏན་འབེབས་བཟོ་བའི་གོང་ཐང་ཆག་པའི་དུས་ཡུན།"
@@ -35399,7 +33452,6 @@ msgstr "LIFE: བདོག་གཏད་ཀྱི་ གོང་ཐང་ཆ
msgctxt ""
"04060119.xhp\n"
"hd_id3155579\n"
-"297\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -35408,7 +33460,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3154098\n"
-"298\n"
"help.text"
msgid "Office equipment with an initial cost of 50,000 currency units is to be depreciated over 7 years. The value at the end of the depreciation is to be 3,500 currency units."
msgstr "འགོ་ཐོག་རིན་ ༥༠,༠༠༠ དངུལ་ཆ་ཕྲན་ཚུ་དང་བཅས་པའི་ ཡིག་ཚང་མཁོ་ཆས་དེ་ ལོ་ངོ་ ༧ གི་ རིང་ལུ་ གོང་ཐང་ཆག་ནི་ཨིན། གོང་ཐང་ཆག་པའི་མཇུག་ལུ་ གནས་གོང་དེ་ ༣༥༠༠ དངུལ་ཆ་ཕྲན་ཚུ་འོང་དགོཔ་ཨིན།"
@@ -35417,7 +33468,6 @@ msgstr "འགོ་ཐོག་རིན་ ༥༠,༠༠༠ དངུལ་ཆ
msgctxt ""
"04060119.xhp\n"
"par_id3153390\n"
-"299\n"
"help.text"
msgid "<item type=\"input\">=SLN(50000;3,500;84)</item> = 553.57 currency units. The periodic monthly depreciation of the office equipment is 553.57 currency units."
msgstr "SLN(50000;3,500;84) = ༥༥༣་༥༧ དངུལ་ཆ་ཕརན་ཚུ། ཡིག་ཚང་མཁོ་ཆས་ཀྱི་ དུས་མཚམས་ཟླ་རིམ་གོང་ཐང་ཆག་པ་དེ་ ༥༥༣་༥༧ དངུལ་ཆ་ཕྲན་ཚུ་ཨིན།"
@@ -35434,7 +33484,6 @@ msgstr "<bookmark_value>MDURATION ལས་འགན་</bookmark_value><bookmar
msgctxt ""
"04060119.xhp\n"
"hd_id3153739\n"
-"217\n"
"help.text"
msgid "MDURATION"
msgstr "MDURATION"
@@ -35443,7 +33492,6 @@ msgstr "MDURATION"
msgctxt ""
"04060119.xhp\n"
"par_id3149923\n"
-"218\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_MDURATION\">Calculates the modified Macauley duration of a fixed interest security in years.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_MDURATION\"> ལོ་ཚུ་ནང་ གཏན་བཟོས་པའི་སྲུང་སྐྱོབ་སྐྱེད་ཀྱི་ ལེགས་བཅོས་འབད་ཡོད་པའི་ མེ་ཀེའུ་ལེ་ དུས་ཡུན་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -35452,7 +33500,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_MDURATION\"> ལོ་ཚུ་ནང་ ག
msgctxt ""
"04060119.xhp\n"
"hd_id3149964\n"
-"219\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -35461,7 +33508,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3148987\n"
-"220\n"
"help.text"
msgid "MDURATION(Settlement; Maturity; Coupon; Yield; Frequency; Basis)"
msgstr "MDURATION(བུ་ལོན་སྤྲོད་འཇལ། དུས་ཡུན་ཚང་བ། འཛིན་ཤོག ཐོན་འབྲས། འབྱུང་ཐེངས། གཞི་རྩ།)"
@@ -35470,7 +33516,6 @@ msgstr "MDURATION(བུ་ལོན་སྤྲོད་འཇལ། དུས
msgctxt ""
"04060119.xhp\n"
"par_id3148619\n"
-"221\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ཉོ་ཚོང་འབད་བའི་ཚེས།"
@@ -35479,7 +33524,6 @@ msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: ས
msgctxt ""
"04060119.xhp\n"
"par_id3149805\n"
-"222\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་སྐྱོབ་དུས་ཡུན་ཚང་ནིའི་ཚེས། (དུས་ཡོལཝ་ཨིན།)."
@@ -35488,7 +33532,6 @@ msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་
msgctxt ""
"04060119.xhp\n"
"par_id3154338\n"
-"223\n"
"help.text"
msgid "<emph>Coupon</emph> is the annual nominal rate of interest (coupon interest rate)"
msgstr "<emph> གོང་ཚད་ </emph>: སྐྱེད་ཀྱི་ལོ་བསྟར་གོང་ཚད་ཆུང་བ། (འཛིན་ཤོག་སྐྱེད་ཀྱི་གོང་ཚད།)"
@@ -35497,7 +33540,6 @@ msgstr "<emph> གོང་ཚད་ </emph>: སྐྱེད་ཀྱི་ལ
msgctxt ""
"04060119.xhp\n"
"par_id3148466\n"
-"224\n"
"help.text"
msgid "<emph>Yield</emph> is the annual yield of the security."
msgstr "<emph> ཐོན་འབྲས་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ ལོ་བསྟར་ཐོན་འབྲས།"
@@ -35506,7 +33548,6 @@ msgstr "<emph> ཐོན་འབྲས་ </emph>: སྲུང་སྐྱོ
msgctxt ""
"04060119.xhp\n"
"par_id3149423\n"
-"225\n"
"help.text"
msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
msgstr "<emph> འབྱུང་ཐེངས་ </emph>: ལོ་རེ་རེ་ལུ་སྐྱེད་གླ་དངུལ་ཚུའི་གྱངས་ཁ། (༡, ༢ ཡང་ན་ ༤།)."
@@ -35515,7 +33556,6 @@ msgstr "<emph> འབྱུང་ཐེངས་ </emph>: ལོ་རེ་ར
msgctxt ""
"04060119.xhp\n"
"hd_id3154602\n"
-"226\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -35524,7 +33564,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3148652\n"
-"227\n"
"help.text"
msgid "A security is purchased on 2001-01-01; the maturity date is 2006-01-01. The nominal rate of interest is 8%. The yield is 9.0%. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how long is the modified duration?"
msgstr "སྲུང་སྐྱོབ་གཅིག་ ༡/༡/༢༠༠༡ ལུ་ཉོ་ཚོང་འབད་ཡོདཔ་ཨིནམ་ད་ དུས་ཡུན་ཚང་བའི་ཚེས་གྲངས་དེ་ ༡/༡/༢༠༠༦ ལུ་ཨིན་པས། སྐྱེད་ཀྱི་གོང་ཚད་ཆུང་བ་དེ་ ༨% ཨིན་པས། ཐོན་འབྲས་དེ་ ༩་༠% ཨིན་པས། སྐྱེད་དེ་ ལོ་ཕྱེད་སྦེ་སྤྲོད་ཡོདཔ་མས་(འབྱུང་ཐེངས་དེ་ ༢ ཨིན)། ཉིན་བསྟར་སྐྱེད་ལྷག་ལུས་རྩིས་ལས་ (གཞི་རྩ་ ༣) ལག་ལེན་འཐབ་ཐོག་ལས་ ལེགས་བཅོས་འབད་ཡོད་པའི་དུས་ཡུན་དེ་ རིང་ཐུང་ག་དེམ་ཅིག་འདུག?"
@@ -35533,7 +33572,6 @@ msgstr "སྲུང་སྐྱོབ་གཅིག་ ༡/༡/༢༠༠༡
msgctxt ""
"04060119.xhp\n"
"par_id3145378\n"
-"228\n"
"help.text"
msgid "=MDURATION(\"2001-01-01\"; \"2006-01-01\"; 0.08; 0.09; 2; 3) returns 4.02 years."
msgstr ""
@@ -35550,7 +33588,6 @@ msgstr "<bookmark_value> རྩིས་སྟོན་ནི། ནེཊི་
msgctxt ""
"04060119.xhp\n"
"hd_id3149242\n"
-"301\n"
"help.text"
msgid "NPV"
msgstr "NPV"
@@ -35575,7 +33612,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"hd_id3149937\n"
-"303\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -35584,7 +33620,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3153321\n"
-"304\n"
"help.text"
msgid "NPV(Rate; Value1; Value2; ...)"
msgstr ""
@@ -35593,7 +33628,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"par_id3150630\n"
-"305\n"
"help.text"
msgid "<emph>Rate</emph> is the discount rate for a period."
msgstr "<emph> གོང་ཚད་ </emph> ཀྱིས་ དུས་ཡུན་རེ་རེའི་སྐྱེད་ཀྱི་གོང་ཚད་ངེས་འཛིན་འབདཝ་ཨིན།"
@@ -35602,7 +33636,6 @@ msgstr "<emph> གོང་ཚད་ </emph> ཀྱིས་ དུས་ཡུ
msgctxt ""
"04060119.xhp\n"
"par_id3150427\n"
-"306\n"
"help.text"
msgid "<emph>Value1;...</emph> are up to 30 values, which represent deposits or withdrawals."
msgstr "གནས་གོང་ ༡;... ཚུ་ བཙུགས་བཞག་པ་ཚུ་དང་ བཏོན་ནི་ཚུ་ཁྱད་ཚབ་འབད་བའི་ ༣༠ ཚུན་གྱི་ གནས་གོང་ཚུ་ཨིན།"
@@ -35611,7 +33644,6 @@ msgstr "གནས་གོང་ ༡;... ཚུ་ བཙུགས་བཞག
msgctxt ""
"04060119.xhp\n"
"hd_id3153538\n"
-"307\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -35620,7 +33652,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3154800\n"
-"308\n"
"help.text"
msgid "What is the net present value of periodic payments of 10, 20 and 30 currency units with a discount rate of 8.75%. At time zero the costs were payed as -40 currency units."
msgstr "མར་བཅག་གོང་ཚད་ ༨་༧༥% དང་བཅས་པའི་ ༡༠ ༢༠ དང་ ༣༠ དངུལ་ཆ་ཕྲན་ཚུའི་ དུས་མཚམས་གླ་དངུལ་ཚུའི་ ད་ལྟོའི་གནས་གོང་ ནེཊི་ག་ཅི་སྨོ? དུས་ཚོད་ཀླད་ཀོར་སྐབས་སུ་ རིན་ཚུ་ དངུལ་ཆ་ཕྲན་-༤༠ ཚུ་སྦེ་སྤྲོད་ཡོདཔ་ཨིན་པས།"
@@ -35629,7 +33660,6 @@ msgstr "མར་བཅག་གོང་ཚད་ ༨་༧༥% དང་བཅ
msgctxt ""
"04060119.xhp\n"
"par_id3143270\n"
-"309\n"
"help.text"
msgid "<item type=\"input\">=NPV(8.75%;10;20;30)</item> = 49.43 currency units. The net present value is the returned value minus the initial costs of 40 currency units, therefore 9.43 currency units."
msgstr "NPV(8.75%;10;20;30) = ༤༩་༤༣ དངུལ་ཆ་ཕྲན་ཚུ། ད་ལྟོའི་ནེཊི་གནས་གོང་དེ་ དངུལ་ཆ་ཕྲན་ ༤༠ གི་འགོ་ཐོག་རིན་དང་སླར་ལོག་འབད་ཡོད་པའི་གནས་གོང་གཉིས་ཕབ་ཕབ་ཨིནམ་ལས་ དངུལ་ཆ་ཕྲན་ཚུ་ ༩་༤༣ ཨིན།"
@@ -35646,7 +33676,6 @@ msgstr "<bookmark_value>རྩིས་སྟོན་འབད་དོ་ ད
msgctxt ""
"04060119.xhp\n"
"hd_id3149484\n"
-"311\n"
"help.text"
msgid "NOMINAL"
msgstr "NOMINAL"
@@ -35655,7 +33684,6 @@ msgstr "NOMINAL"
msgctxt ""
"04060119.xhp\n"
"par_id3149596\n"
-"312\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NOMINAL\">Calculates the yearly nominal interest rate, given the effective rate and the number of compounding periods per year.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NOMINAL\"> ལོ་རེ་རེ་ནང་ མཉམ་བསྡོམས་དུས་ཡུན་ཚུའི་ གོང་ཚད་ནུས་ཅན་དང་ ཨང་གྲངས་ཚུ་བྱིན་ཏེ་ཡོད་པ་ཅིན་ ལོ་བསྟར་སྐྱེད་ཆུང་གོང་ཚད་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -35664,7 +33692,6 @@ msgstr "<ahelp hid=\"HID_FUNC_NOMINAL\"> ལོ་རེ་རེ་ནང་
msgctxt ""
"04060119.xhp\n"
"hd_id3151252\n"
-"313\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -35673,7 +33700,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3152769\n"
-"314\n"
"help.text"
msgid "NOMINAL(EffectiveRate; NPerY)"
msgstr "NOMINAL_ADD(གོང་ཚད་ནུས་ཅན། ཨེན་པི་ཨི་ཨར་ཝའི།)"
@@ -35682,7 +33708,6 @@ msgstr "NOMINAL_ADD(གོང་ཚད་ནུས་ཅན། ཨེན་པ
msgctxt ""
"04060119.xhp\n"
"par_id3147521\n"
-"315\n"
"help.text"
msgid "<emph>EffectiveRate</emph> is the effective interest rate"
msgstr ""
@@ -35691,7 +33716,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"par_id3156334\n"
-"316\n"
"help.text"
msgid "<emph>NPerY</emph> is the number of periodic interest payments per year."
msgstr "NPERY: ལོ་རེ་རེའི་ དུས་མཚམས་སྐྱེད་གོང་ཚད་གླ་དངུལ་ཚུའི་ གྱངས་ཁ།"
@@ -35700,7 +33724,6 @@ msgstr "NPERY: ལོ་རེ་རེའི་ དུས་མཚམས་ས
msgctxt ""
"04060119.xhp\n"
"hd_id3154473\n"
-"317\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -35709,7 +33732,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3147091\n"
-"318\n"
"help.text"
msgid "What is the nominal interest per year for an effective interest rate of 13.5% if twelve payments are made per year."
msgstr "ལོ་རེ་རེ་ནང་ གླ་དངུལ་བཅུ་གཉིས་དེ་རེ་བྱིན་པ་ཅིན་ སྐྱེད་གོང་ཚད་ནུས་ཅན་ ༡༣་༥% དོན་ལུ་ ལོ་རེ་རེ་བཞིན་སྐྱེད་ཆུང་ག་དེམ་ཅིག་སྨོ?"
@@ -35718,7 +33740,6 @@ msgstr "ལོ་རེ་རེ་ནང་ གླ་དངུལ་བཅུ
msgctxt ""
"04060119.xhp\n"
"par_id3154831\n"
-"319\n"
"help.text"
msgid "<item type=\"input\">=NOMINAL(13.5%;12)</item> = 12.73%. The nominal interest rate per year is 12.73%."
msgstr ""
@@ -35735,7 +33756,6 @@ msgstr "<bookmark_value>NOMINAL_ADD ལས་འགན།</bookmark_value>"
msgctxt ""
"04060119.xhp\n"
"hd_id3155123\n"
-"229\n"
"help.text"
msgid "NOMINAL_ADD"
msgstr "NOMINAL_ADD"
@@ -35744,7 +33764,6 @@ msgstr "NOMINAL_ADD"
msgctxt ""
"04060119.xhp\n"
"par_id3148671\n"
-"230\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_NOMINAL\">Calculates the annual nominal rate of interest on the basis of the effective rate and the number of interest payments per annum.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_NOMINAL\"> ལོ་རེ་རེའི་སྐྱེད་གླ་དངུལ་ཚུའི་གྱངས་ཁ་དང་ གོང་ཚད་ནུས་ཅན་གྱི་གཞི་རྩ་གུ་ལུ་གཞི་བཞག་སྟེ་སྐྱེད་ཀྱི་ ལོ་བསྟར་གོང་ཚད་ཆུང་བ་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -35753,7 +33772,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_NOMINAL\"> ལོ་རེ་རེའི་
msgctxt ""
"04060119.xhp\n"
"hd_id3155611\n"
-"231\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -35762,7 +33780,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3156157\n"
-"232\n"
"help.text"
msgid "NOMINAL_ADD(EffectiveRate; NPerY)"
msgstr "NOMINAL_ADD(གོང་ཚད་ནུས་ཅན། ཨེན་པི་ཨི་ཨར་ཝའི།)"
@@ -35771,7 +33788,6 @@ msgstr "NOMINAL_ADD(གོང་ཚད་ནུས་ཅན། ཨེན་པ
msgctxt ""
"04060119.xhp\n"
"par_id3153777\n"
-"233\n"
"help.text"
msgid "<emph>EffectiveRate</emph> is the effective annual rate of interest."
msgstr ""
@@ -35780,7 +33796,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"par_id3150409\n"
-"234\n"
"help.text"
msgid "<emph>NPerY</emph> the number of interest payments per year."
msgstr "<emph> པི་ </emph> འདི་ ལོ་བསྟར་ སྐྱེད་གླ་དངུལ་ དུས་ཡུན་གྱི་གྱངས་ཁ་ཨིན།"
@@ -35789,7 +33804,6 @@ msgstr "<emph> པི་ </emph> འདི་ ལོ་བསྟར་ སྐྱ
msgctxt ""
"04060119.xhp\n"
"hd_id3146789\n"
-"235\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -35798,7 +33812,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3145777\n"
-"236\n"
"help.text"
msgid "What is the nominal rate of interest for a 5.3543% effective rate of interest and quarterly payment."
msgstr "སྐྱེད་ཀྱི་གོང་ཚད་ནུས་ཅན་ ༥་༣༥༤༣% དང་ བཞི་དཔྱའི་དོན་ལུ་ སྐྱེད་ཀྱི་ གོང་ཚད་ཆུང་བ་ག་ཅི་སྨོ་?"
@@ -35807,7 +33820,6 @@ msgstr "སྐྱེད་ཀྱི་གོང་ཚད་ནུས་ཅན་
msgctxt ""
"04060119.xhp\n"
"par_id3156146\n"
-"237\n"
"help.text"
msgid "<item type=\"input\">=NOMINAL_ADD(5.3543%;4)</item> returns 0.0525 or 5.25%."
msgstr ""
@@ -35824,7 +33836,6 @@ msgstr "<bookmark_value>DOLLARFR ལས་འགན་</bookmark_value><bookmark
msgctxt ""
"04060119.xhp\n"
"hd_id3159087\n"
-"208\n"
"help.text"
msgid "DOLLARFR"
msgstr "DOLLARFR"
@@ -35833,7 +33844,6 @@ msgstr "DOLLARFR"
msgctxt ""
"04060119.xhp\n"
"par_id3150593\n"
-"209\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DOLLARFR\">Converts a quotation that has been given as a decimal number into a mixed decimal fraction.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DOLLARFR\"> སྦྱོར་བའི་བཅུ་ཚག་དཔྱ་ཕྲན་ནང་ན་ བཅུ་ཚག་ཨང་གྲངས་སྦེ་གྲ་སྒྲིག་འབད་ཡོད་པའི་ འདྲེན་ཚིག་གཞི་བསྒྱུར་འབདཝ་ཨིན། </ahelp>"
@@ -35842,7 +33852,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_DOLLARFR\"> སྦྱོར་བའི་བ
msgctxt ""
"04060119.xhp\n"
"hd_id3151106\n"
-"210\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -35851,7 +33860,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3152959\n"
-"211\n"
"help.text"
msgid "DOLLARFR(DecimalDollar; Fraction)"
msgstr "DOLLARFR (བཅུ་ཚག་ཌོ་ལར། དཔྱ་ཕྲན།)"
@@ -35860,7 +33868,6 @@ msgstr "DOLLARFR (བཅུ་ཚག་ཌོ་ལར། དཔྱ་ཕྲན
msgctxt ""
"04060119.xhp\n"
"par_id3149558\n"
-"212\n"
"help.text"
msgid "<emph>DecimalDollar</emph> is a decimal number."
msgstr ""
@@ -35869,7 +33876,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"par_id3153672\n"
-"213\n"
"help.text"
msgid "<emph>Fraction</emph> is a whole number that is used as the denominator of the decimal fraction."
msgstr "དཔྱ་ཕྲན་ : བཅུ་ཚག་དཔྱ་ཕྲན་གྱི་ གཞི་གྲངས་སྦེ་ལག་ལེན་འཐབ་ཡོད་པའི་ ཨང་གྲངས་ཧྲིལ་བུམ།"
@@ -35878,7 +33884,6 @@ msgstr "དཔྱ་ཕྲན་ : བཅུ་ཚག་དཔྱ་ཕྲན་
msgctxt ""
"04060119.xhp\n"
"hd_id3156274\n"
-"214\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -35887,7 +33892,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3153795\n"
-"215\n"
"help.text"
msgid "<item type=\"input\">=DOLLARFR(1.125;16)</item> converts into sixteenths. The result is 1.02 for 1 plus 2/16."
msgstr "=DOLLARFR(1.125;16) གིས་ བཅུ་དྲུག་པ་ཚུ་ནང་གཞི་བསྒྱུར་འབདཝ་ཨིན། ༡ དང་ ༢/༡༦ བསྡོམས་ད་ གྲུབ་འབྲས་དེ་ ༡་༠༢ ཨིན།"
@@ -35896,7 +33900,6 @@ msgstr "=DOLLARFR(1.125;16) གིས་ བཅུ་དྲུག་པ་ཚུ
msgctxt ""
"04060119.xhp\n"
"par_id3150995\n"
-"216\n"
"help.text"
msgid "<item type=\"input\">=DOLLARFR(1.125;8)</item> converts into eighths. The result is 1.1 for 1 plus 1/8."
msgstr "=DOLLARFR(1.125;16) གིས་ བཅུ་དྲུག་པ་ཚུ་ནང་གཞི་བསྒྱུར་འབདཝ་ཨིན། ༡ དང་ ༢/༡༦ བསྡོམས་ད་ གྲུབ་འབྲས་དེ་ ༡་༠༢ ཨིན།"
@@ -35913,7 +33916,6 @@ msgstr "<bookmark_value>དཔྱ་ཕྲན་ཚུ་ གཞི་བསྒ
msgctxt ""
"04060119.xhp\n"
"hd_id3154671\n"
-"199\n"
"help.text"
msgid "DOLLARDE"
msgstr "DOLLARDE"
@@ -35922,7 +33924,6 @@ msgstr "DOLLARDE"
msgctxt ""
"04060119.xhp\n"
"par_id3154418\n"
-"200\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DOLLARDE\">Converts a quotation that has been given as a decimal fraction into a decimal number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DOLLARDE\"> བཅུ་ཚག་ཨང་གྲངས་ནང་ན་ བཅུ་ཚག་དཔྱ་ཕྲན་སྦེ་གྲ་སྒྲིག་འབད་ཡོད་པའི་ འདྲེན་ཚིག་གཞི་བསྒྱུར་འབདཝ་ཨིན། </ahelp>"
@@ -35931,7 +33932,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_DOLLARDE\"> བཅུ་ཚག་ཨང་ག
msgctxt ""
"04060119.xhp\n"
"hd_id3146124\n"
-"201\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -35940,7 +33940,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3150348\n"
-"202\n"
"help.text"
msgid "DOLLARDE(FractionalDollar; Fraction)"
msgstr "DOLLARDE(ཨང་རྩིས་ ཌོ་ལར། དཔྱ་ཕྲན།)"
@@ -35949,7 +33948,6 @@ msgstr "DOLLARDE(ཨང་རྩིས་ ཌོ་ལར། དཔྱ་ཕྲ
msgctxt ""
"04060119.xhp\n"
"par_id3154111\n"
-"203\n"
"help.text"
msgid "<emph>FractionalDollar</emph> is a number given as a decimal fraction."
msgstr ""
@@ -35958,7 +33956,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"par_id3153695\n"
-"204\n"
"help.text"
msgid "<emph>Fraction</emph> is a whole number that is used as the denominator of the decimal fraction."
msgstr "དཔྱ་ཕྲན་ : བཅུ་ཚག་དཔྱ་ཕྲན་གྱི་ གཞི་གྲངས་སྦེ་ལག་ལེན་འཐབ་ཡོད་པའི་ ཨང་གྲངས་ཧྲིལ་བུམ།"
@@ -35967,7 +33964,6 @@ msgstr "དཔྱ་ཕྲན་ : བཅུ་ཚག་དཔྱ་ཕྲན་
msgctxt ""
"04060119.xhp\n"
"hd_id3153884\n"
-"205\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -35976,7 +33972,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3150941\n"
-"206\n"
"help.text"
msgid "<item type=\"input\">=DOLLARDE(1.02;16)</item> stands for 1 and 2/16. This returns 1.125."
msgstr ""
@@ -35985,7 +33980,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"par_id3150830\n"
-"207\n"
"help.text"
msgid "<item type=\"input\">=DOLLARDE(1.1;8)</item> stands for 1 and 1/8. This returns 1.125."
msgstr ""
@@ -36002,7 +33996,6 @@ msgstr "<bookmark_value>རྩིས་སྟོན་འབད་དོ་ ས
msgctxt ""
"04060119.xhp\n"
"hd_id3148974\n"
-"321\n"
"help.text"
msgid "MIRR"
msgstr "MIRR"
@@ -36011,7 +34004,6 @@ msgstr "MIRR"
msgctxt ""
"04060119.xhp\n"
"par_id3155497\n"
-"322\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_QIKV\">Calculates the modified internal rate of return of a series of investments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_QIKV\"> མ་རྩ་བཙུགས་པ་ཚུའི་ རྒྱུན་རིམ་ཚུའི་ སླར་ལོག་གི་ལེགས་བཅོས་འབད་ཡོད་པའི་ནང་འཁོད་གོང་ཚད་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -36020,7 +34012,6 @@ msgstr "<ahelp hid=\"HID_FUNC_QIKV\"> མ་རྩ་བཙུགས་པ་ཚ
msgctxt ""
"04060119.xhp\n"
"hd_id3154354\n"
-"323\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -36029,7 +34020,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3148399\n"
-"324\n"
"help.text"
msgid "MIRR(Values; Investment; ReinvestRate)"
msgstr "MIRR(Values; investment; reinvest_rate)"
@@ -36038,7 +34028,6 @@ msgstr "MIRR(Values; investment; reinvest_rate)"
msgctxt ""
"04060119.xhp\n"
"par_id3155896\n"
-"325\n"
"help.text"
msgid "<emph>Values</emph> corresponds to the array or the cell reference for cells whose content corresponds to the payments."
msgstr "གནས་གོང་ཚུ་: ནང་དོན་དེ་ གླ་དངུལ་ཚུ་ལུ་ཆ་མཉམ་པའི་ནང་ཐིག་ཚུའི་དོན་ལུ་ ཨེ་རེའམ་ནང་ཐིག་གཞི་བསྟུན་ལུ་ཆ་མཉམ་ཨིན།"
@@ -36047,7 +34036,6 @@ msgstr "གནས་གོང་ཚུ་: ནང་དོན་དེ་ གླ
msgctxt ""
"04060119.xhp\n"
"par_id3149998\n"
-"326\n"
"help.text"
msgid "<emph>Investment</emph> is the rate of interest of the investments (the negative values of the array)"
msgstr "མ་རྩ་བཙུགས་པ་: མ་རྩ་བཙུགས་པ་ཚུའི་སྐྱེད་ཀྱི་གོང་ཚད་ (ཨེ་རེ་གི་གནས་གོང་མེད་ཆ་ཚུ)།"
@@ -36056,7 +34044,6 @@ msgstr "མ་རྩ་བཙུགས་པ་: མ་རྩ་བཙུགས
msgctxt ""
"04060119.xhp\n"
"par_id3159408\n"
-"327\n"
"help.text"
msgid "<emph>ReinvestRate</emph>:the rate of interest of the reinvestment (the positive values of the array)"
msgstr "reinvest_rate:མ་རྩ་བཙུགས་པ་གི་ སྐྱེད་ཀྱི་ གོང་ཚད་ (ཨེ་རེ་གི་གནས་གོང་ཡོད་ཆ་ཚུ)།"
@@ -36065,7 +34052,6 @@ msgstr "reinvest_rate:མ་རྩ་བཙུགས་པ་གི་ སྐྱ
msgctxt ""
"04060119.xhp\n"
"hd_id3154714\n"
-"328\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -36074,7 +34060,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3147352\n"
-"329\n"
"help.text"
msgid "Assuming a cell content of A1 = <item type=\"input\">-5</item>, A2 = <item type=\"input\">10</item>, A3 = <item type=\"input\">15</item>, and A4 = <item type=\"input\">8</item>, and an investment value of 0.5 and a reinvestment value of 0.1, the result is 94.16%."
msgstr ""
@@ -36091,7 +34076,6 @@ msgstr "<bookmark_value>YIELD ལས་འགན་</bookmark_value><bookmark_va
msgctxt ""
"04060119.xhp\n"
"hd_id3149323\n"
-"129\n"
"help.text"
msgid "YIELD"
msgstr "YIELD"
@@ -36100,7 +34084,6 @@ msgstr "YIELD"
msgctxt ""
"04060119.xhp\n"
"par_id3150643\n"
-"130\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_YIELD\">Calculates the yield of a security.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELD\"> སྲུང་སྐྱོབ་ཀྱི་ ཐོན་འབྲས་རྩིས་སྟོན་འབདཝ་ཨིན། </ahelp>"
@@ -36109,7 +34092,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELD\"> སྲུང་སྐྱོབ་ཀ
msgctxt ""
"04060119.xhp\n"
"hd_id3149344\n"
-"131\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -36118,7 +34100,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3149744\n"
-"132\n"
"help.text"
msgid "YIELD(Settlement; Maturity; Rate; Price; Redemption; Frequency; Basis)"
msgstr "YIELD(བུ་ལོན་སྤྲོད་འཇལ། དུས་ཡུན་ཚང་བ། གོང་ཚད། གོང་ཚད། བུན་ཚབ། འབྱུང་ཐེངས། གཞི་རྩ་)།"
@@ -36127,7 +34108,6 @@ msgstr "YIELD(བུ་ལོན་སྤྲོད་འཇལ། དུས་
msgctxt ""
"04060119.xhp\n"
"par_id3154526\n"
-"133\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ཉོ་ཚོང་འབད་བའི་ཚེས།"
@@ -36136,7 +34116,6 @@ msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: ས
msgctxt ""
"04060119.xhp\n"
"par_id3153266\n"
-"134\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་སྐྱོབ་དུས་ཡུན་ཚང་ནིའི་ཚེས། (དུས་ཡོལཝ་ཨིན།)."
@@ -36145,7 +34124,6 @@ msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་
msgctxt ""
"04060119.xhp\n"
"par_id3151284\n"
-"135\n"
"help.text"
msgid "<emph>Rate</emph> is the annual rate of interest."
msgstr ""
@@ -36154,7 +34132,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"par_id3147314\n"
-"136\n"
"help.text"
msgid "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
msgstr "གོང་ཚད་: གནས་གོང་མཉམ་པ་གི་ ༡༠༠ དངུལ་ཆ་ཕྲན་ཚུའི་སྲུང་སྐྱོབ་ཀྱི་ གོང་ཚད་(ཉོ་ཚོང་གོང་ཚད)།"
@@ -36163,7 +34140,6 @@ msgstr "གོང་ཚད་: གནས་གོང་མཉམ་པ་གི
msgctxt ""
"04060119.xhp\n"
"par_id3145156\n"
-"137\n"
"help.text"
msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
msgstr "བུན་ཚབ་: གནས་གོང་མཉམ་པ་གི་ ༡༠༠ དངུལ་རེ་རེའི་བུན་ཚབ་གནས་གོང་།"
@@ -36172,7 +34148,6 @@ msgstr "བུན་ཚབ་: གནས་གོང་མཉམ་པ་གི
msgctxt ""
"04060119.xhp\n"
"par_id3159218\n"
-"138\n"
"help.text"
msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
msgstr "<emph> འབྱུང་ཐེངས་ </emph>: ལོ་རེ་རེ་ལུ་སྐྱེད་གླ་དངུལ་ཚུའི་གྱངས་ཁ། (༡, ༢ ཡང་ན་ ༤།)."
@@ -36181,7 +34156,6 @@ msgstr "<emph> འབྱུང་ཐེངས་ </emph>: ལོ་རེ་ར
msgctxt ""
"04060119.xhp\n"
"hd_id3147547\n"
-"139\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -36190,7 +34164,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3151214\n"
-"140\n"
"help.text"
msgid "A security is purchased on 1999-02-15. It matures on 2007-11-15. The rate of interest is 5.75%. The price is 95.04287 currency units per 100 units of par value, the redemption value is 100 units. Interest is paid half-yearly (frequency = 2) and the basis is 0. How high is the yield?"
msgstr "སྲུང་སྐྱོབ་གཅིག་ ༢/༡༥/༡༩༩༩ ལུ་ཉོ་ཚོང་འབད་ཡོདཔ་ཨིན་པས། ༡༡/༡༥/༢༠༠༧ ལུ་དུས་ཡུན་ཚང་ནི་ཨིན་པས། སྐྱེད་ཀྱི་གོང་ཚད་དེ་ ༥་༧༥% ཨིན་པས། བུན་ཚབ་གནས་གོང་དེ་ ༡༠༠ ཆ་ཕྲན་དང་ གོང་ཚད་དེ་ གནས་གོང་མཉམ་པའི་ ༡༠༠ ཆ་ཕྲན་རེ་རེ་ཚུའི་ དངུལ་ཆ་ཕྲན་ ༩༥་༠༤༢༨༧ ཨིན། སྐྱེད་དེ་ལོ་ཕྱེད་སྦེ་ (འབྱུང་ཐེངས་ = ༢)སྤྲོད་ཡོདཔ་ད་ གཞི་རྩ་དེ་ ༠ ཨིན། ཐོན་འབྲས་དེ་མཐོ་ཚད་ག་དེམ་ཅིག་འདུག?"
@@ -36199,7 +34172,6 @@ msgstr "སྲུང་སྐྱོབ་གཅིག་ ༢/༡༥/༡༩༩༩
msgctxt ""
"04060119.xhp\n"
"par_id3154194\n"
-"141\n"
"help.text"
msgid "=YIELD(\"1999-02-15\"; \"2007-11-15\"; 0.0575 ;95.04287; 100; 2; 0) returns 0.065 or 6.50 per cent."
msgstr "=YIELD(\"2/15/1999\"; \"11/15/2007\"; 0.0575 ;95.04287; 100; 2; 0) གིས་ བརྒྱ་ཆ་ ༠་༠༦༥ ཡང་ན་ ༦་༥ སླར་ལོག་འབདཝ་ཨིན།"
@@ -36216,7 +34188,6 @@ msgstr "<bookmark_value>YIELDDISC ལས་འགན་</bookmark_value><bookmar
msgctxt ""
"04060119.xhp\n"
"hd_id3150100\n"
-"142\n"
"help.text"
msgid "YIELDDISC"
msgstr "YIELDDISC"
@@ -36225,7 +34196,6 @@ msgstr "YIELDDISC"
msgctxt ""
"04060119.xhp\n"
"par_id3150486\n"
-"143\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_YIELDDISC\">Calculates the annual yield of a non-interest-bearing security.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELDDISC\"> སྐྱེད་ཕོག་ནི་མེད་པའི་གཏའམ་གཅིག་གི་ ལོ་བསྟར་ཐོན་འབྲས་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -36234,7 +34204,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELDDISC\"> སྐྱེད་ཕོག་ན
msgctxt ""
"04060119.xhp\n"
"hd_id3149171\n"
-"144\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -36243,7 +34212,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3159191\n"
-"145\n"
"help.text"
msgid "YIELDDISC(Settlement; Maturity; Price; Redemption; Basis)"
msgstr "YIELDDISC(བུ་ལོན་སྤྲོད་འཇལ། དུས་ཡུན་ཚང་བ། གོང་ཚད། བུན་ཚབ། གཞི་རྩ།)"
@@ -36252,7 +34220,6 @@ msgstr "YIELDDISC(བུ་ལོན་སྤྲོད་འཇལ། དུས
msgctxt ""
"04060119.xhp\n"
"par_id3150237\n"
-"146\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ཉོ་ཚོང་འབད་བའི་ཚེས།"
@@ -36261,7 +34228,6 @@ msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: ས
msgctxt ""
"04060119.xhp\n"
"par_id3146924\n"
-"147\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་སྐྱོབ་དུས་ཡུན་ཚང་ནིའི་ཚེས། (དུས་ཡོལཝ་ཨིན།)."
@@ -36270,7 +34236,6 @@ msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་
msgctxt ""
"04060119.xhp\n"
"par_id3151201\n"
-"148\n"
"help.text"
msgid "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
msgstr "གོང་ཚད་: གནས་གོང་མཉམ་པ་གི་ ༡༠༠ དངུལ་ཆ་ཕྲན་ཚུའི་སྲུང་སྐྱོབ་ཀྱི་ གོང་ཚད་(ཉོ་ཚོང་གོང་ཚད)།"
@@ -36279,7 +34244,6 @@ msgstr "གོང་ཚད་: གནས་གོང་མཉམ་པ་གི
msgctxt ""
"04060119.xhp\n"
"par_id3156049\n"
-"149\n"
"help.text"
msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
msgstr "བུན་ཚབ་: གནས་གོང་མཉམ་པ་གི་ ༡༠༠ དངུལ་རེ་རེའི་བུན་ཚབ་གནས་གོང་།"
@@ -36288,7 +34252,6 @@ msgstr "བུན་ཚབ་: གནས་གོང་མཉམ་པ་གི
msgctxt ""
"04060119.xhp\n"
"hd_id3154139\n"
-"150\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -36297,7 +34260,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3163815\n"
-"151\n"
"help.text"
msgid "A non-interest-bearing security is purchased on 1999-02-15. It matures on 1999-03-01. The price is 99.795 currency units per 100 units of par value, the redemption value is 100 units. The basis is 2. How high is the yield?"
msgstr "༢/༡༥/༡༩༩༩ ལུ་ སྐྱེད་ཕོག་ནི་མེད་པའི་གཏའམ་གཅིག་ཉོ་ཚོང་འབད་ཡོདཔ་ཨིན་པས། དེ་ ༣/༡/༡༩༩༩ ལུ་དུས་ཡུན་ཚང་ནི་ཨིན་པས། བུན་ཚབ་གནས་གོང་དེ་ ༡༠༠ དང་ གོང་ཚད་དེ་ གནས་གོང་མཉམ་པའི་ ༡༠༠ ཆ་ཕྲན་རེ་རེ་ཚུའི་དངུལ་ཆ་ཕྲན་ ༩༩་༧༩༥ ཨིན་པས། གཞི་རྩ་དེ་ ༢ ཨིན། ཐོན་འབྲས་དེ་ མཐོ་ཚད་ག་དེམ་ཅིག་འདུག?"
@@ -36306,7 +34268,6 @@ msgstr "༢/༡༥/༡༩༩༩ ལུ་ སྐྱེད་ཕོག་ནི
msgctxt ""
"04060119.xhp\n"
"par_id3155187\n"
-"152\n"
"help.text"
msgid "=YIELDDISC(\"1999-02-15\"; \"1999-03-01\"; 99.795; 100; 2) returns 0.052823 or 5.2823 per cent."
msgstr "=YIELDDISC(\"2/15/1999\"; \"3/1/1999\"; 99.795; 100; 2) གིས་ བརྒྱ་ཆ་ ༠་༠༥༢༨༢༣ ཡང་ན་ ༥་༢༨༢༣ སླར་ལོག་འབདཝ་ཨིན།"
@@ -36323,7 +34284,6 @@ msgstr "<bookmark_value>YIELDMAT ལས་འགན་</bookmark_value><bookmark
msgctxt ""
"04060119.xhp\n"
"hd_id3155140\n"
-"153\n"
"help.text"
msgid "YIELDMAT"
msgstr "YIELDMAT"
@@ -36332,7 +34292,6 @@ msgstr "YIELDMAT"
msgctxt ""
"04060119.xhp\n"
"par_id3151332\n"
-"154\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_YIELDMAT\">Calculates the annual yield of a security, the interest of which is paid on the date of maturity.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELDMAT\"> སྲུང་སྐྱོབ་ཀྱི་ལོ་བསྟར་ཐོན་འབྲས་ཀྱི་སྐྱེས་དུས་ཡུན་ཚང་བའི་ཚེས་གྲངས་ནང་སྤྲོད་ཡོད་མི་དེ་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -36341,7 +34300,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELDMAT\"> སྲུང་སྐྱོབ་
msgctxt ""
"04060119.xhp\n"
"hd_id3159100\n"
-"155\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -36350,7 +34308,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3159113\n"
-"156\n"
"help.text"
msgid "YIELDMAT(Settlement; Maturity; Issue; Rate; Price; Basis)"
msgstr "YIELDMAT(བུ་ལོན་སྤྲོད་འཇལ། དུས་ཡུན་ཚང་བ། སྤྲོད། གོང་ཚད། གོང་ཚད། གཞི་རྩ།)"
@@ -36359,7 +34316,6 @@ msgstr "YIELDMAT(བུ་ལོན་སྤྲོད་འཇལ། དུས
msgctxt ""
"04060119.xhp\n"
"par_id3149309\n"
-"157\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ཉོ་ཚོང་འབད་བའི་ཚེས།"
@@ -36368,7 +34324,6 @@ msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: ས
msgctxt ""
"04060119.xhp\n"
"par_id3151381\n"
-"158\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་སྐྱོབ་དུས་ཡུན་ཚང་ནིའི་ཚེས། (དུས་ཡོལཝ་ཨིན།)."
@@ -36377,7 +34332,6 @@ msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་
msgctxt ""
"04060119.xhp\n"
"par_id3153302\n"
-"159\n"
"help.text"
msgid "<emph>Issue</emph> is the date of issue of the security."
msgstr "<emph> སྤྲོད་ </emph>: སྲུང་སྐྱོབ་ཀྱི་སྤྲོད་ཚེས།"
@@ -36386,7 +34340,6 @@ msgstr "<emph> སྤྲོད་ </emph>: སྲུང་སྐྱོབ་ཀ
msgctxt ""
"04060119.xhp\n"
"par_id3147140\n"
-"160\n"
"help.text"
msgid "<emph>Rate</emph> is the interest rate of the security on the issue date."
msgstr "གོང་ཚད་: སྤྲོད་པའི་ཚེས་གྲངས་གུ་ལུ་ སྲུང་སྐྱོབ་སྐྱེད་ཀྱི་གོང་ཚད།"
@@ -36395,7 +34348,6 @@ msgstr "གོང་ཚད་: སྤྲོད་པའི་ཚེས་གྲ
msgctxt ""
"04060119.xhp\n"
"par_id3151067\n"
-"161\n"
"help.text"
msgid "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
msgstr "གོང་ཚད་: གནས་གོང་མཉམ་པ་གི་ ༡༠༠ དངུལ་ཆ་ཕྲན་ཚུའི་སྲུང་སྐྱོབ་ཀྱི་ གོང་ཚད་(ཉོ་ཚོང་གོང་ཚད)།"
@@ -36404,7 +34356,6 @@ msgstr "གོང་ཚད་: གནས་གོང་མཉམ་པ་གི
msgctxt ""
"04060119.xhp\n"
"hd_id3155342\n"
-"162\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -36413,7 +34364,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3163717\n"
-"163\n"
"help.text"
msgid "A security is purchased on 1999-03-15. It matures on 1999-11-03. The issue date was 1998-11-08. The rate of interest is 6.25%, the price is 100.0123 units. The basis is 0. How high is the yield?"
msgstr "སྲུང་སྐྱོབ་གཅིག་ ༣/༡༥/༡༩༩༩ གུ་ལུ་ ཉོ་ཚོང་འབད་ཡོདཔ་ཨིན་པས། དེ་ ༡༡/༣/༡༩༩༩ ལུ་དུས་ཡུན་ཚངམ་ཨིན། སྤྲོད་པའི་ཚེས་གྲངས་དེ་ ༡༡/༨/༡༩༩༨ ལུ་ཨིན་པས། སྐྱེད་ཀྱི་གོང་ཚད་དེ་ ༦་༢༥% ཨིནམ་ད་ གོང་ཚད་དེ་ ༡༠༠་༠༡༢༣ ཆ་ཕྲན་ཚུ་ཨིན་པས། གཞི་རྩ་དེ་ ༠ ཨིན། ཐོན་འབྲས་དེ་ མཐོ་བ་ག་དེམ་ཅིག་འདུག?"
@@ -36422,7 +34372,6 @@ msgstr "སྲུང་སྐྱོབ་གཅིག་ ༣/༡༥/༡༩༩༩
msgctxt ""
"04060119.xhp\n"
"par_id3155311\n"
-"164\n"
"help.text"
msgid "=YIELDMAT(\"1999-03-15\"; \"1999-11-03\"; \"1998-11-08\"; 0.0625; 100.0123; 0) returns 0.060954 or 6.0954 per cent."
msgstr "=YIELDMAT(\"3/15/1999\"; \"11/3/1999\"; \"11/8/1998\"; 0.0625; 100.0123; 0) གིས་ བརྒྱ་ཆ་ ༠་༠༦༠༩༥༤ ཡང་ན་ ༦་༠༩༥༤ སླར་ལོག་འབདཝ་ཨིན།"
@@ -36439,7 +34388,6 @@ msgstr "<bookmark_value> རྩིས་སྟོན་ནི། ལོ་འཁ
msgctxt ""
"04060119.xhp\n"
"hd_id3149577\n"
-"330\n"
"help.text"
msgid "PMT"
msgstr "PMT"
@@ -36448,7 +34396,6 @@ msgstr "PMT"
msgctxt ""
"04060119.xhp\n"
"par_id3148563\n"
-"331\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_RMZ\">Returns the periodic payment for an annuity with constant interest rates.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_RMZ\"> ཆད་མེད་སྐྱེད་གོང་ཚད་ཚུ་དང་ བཅས་པའི་ལོ་འཁོར་དངུལ་ཕོགས་དོན་ལུ་ དུས་མཚམས་གླ་དངུལ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -36457,7 +34404,6 @@ msgstr "<ahelp hid=\"HID_FUNC_RMZ\"> ཆད་མེད་སྐྱེད་ག
msgctxt ""
"04060119.xhp\n"
"hd_id3145257\n"
-"332\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -36466,7 +34412,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3147278\n"
-"333\n"
"help.text"
msgid "PMT(Rate; NPer; PV; FV; Type)"
msgstr "PMT(གོང་ཚད། ཨེན་པི་ཨི་ཨར། པི་ཝི། ཨེཕ་ཝི། དབྱེ་བ།)"
@@ -36475,7 +34420,6 @@ msgstr "PMT(གོང་ཚད། ཨེན་པི་ཨི་ཨར། པི
msgctxt ""
"04060119.xhp\n"
"par_id3147291\n"
-"334\n"
"help.text"
msgid "<emph>Rate</emph> is the periodic interest rate."
msgstr "<emph> གོང་ཚད་ </emph> དེ་ དུས་མཚམས་སྐྱེད་གོང་ཚད་ཨིན།"
@@ -36484,7 +34428,6 @@ msgstr "<emph> གོང་ཚད་ </emph> དེ་ དུས་མཚམས
msgctxt ""
"04060119.xhp\n"
"par_id3148641\n"
-"335\n"
"help.text"
msgid "<emph>NPer</emph> is the number of periods in which annuity is paid."
msgstr "<emph>NPER</emph> དེ་ ལོ་འཁོར་དངུལ་ཕོགས་དེ་ སྤྲོད་ཡོད་པའི་ དུས་ཡུན་ཚུའི་ གྱངས་ཁ་བསྡོམས་ཨིན།"
@@ -36493,7 +34436,6 @@ msgstr "<emph>NPER</emph> དེ་ ལོ་འཁོར་དངུལ་ཕ
msgctxt ""
"04060119.xhp\n"
"par_id3156360\n"
-"336\n"
"help.text"
msgid "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
msgstr "<emph>PV</emph> དེ་ གླ་དངུལ་ཚུའི་འབྱུང་རིམ་ནང་ ད་ལྟོའི་དངུལ་རྐྱང་གནས་གོང་།"
@@ -36502,7 +34444,6 @@ msgstr "<emph>PV</emph> དེ་ གླ་དངུལ་ཚུའི་འབ
msgctxt ""
"04060119.xhp\n"
"par_id3154920\n"
-"337\n"
"help.text"
msgid "<emph>FV</emph> (optional) is the desired value (future value) to be reached at the end of the periodic payments."
msgstr "FV (གདམ་ཁ་ཅན་): དུས་མཚམས་གླ་དངུལ་ཚུའི་མཇུག་ལུ་ལྷོད་ནི་ཨིན་པའི་ (མ་འོངས་པའི་གནས་གོང་)རེ་འདོད་སྐྱེ་ཡོད་པའི་གནས་གོང་།"
@@ -36511,7 +34452,6 @@ msgstr "FV (གདམ་ཁ་ཅན་): དུས་མཚམས་གླ་
msgctxt ""
"04060119.xhp\n"
"par_id3156434\n"
-"338\n"
"help.text"
msgid "<emph>Type</emph> (optional) is the due date for the periodic payments. Type=1 is payment at the beginning and Type=0 is payment at the end of each period."
msgstr "དབྱེ་བ་ (གདམ་ཁ་ཅན་) : གླ་དངུལ་ཚུའི་དུས་མཚམས་དོན་ལུ་ ཚེས་གྲངས་རན་པ། དབྱེ་བ་ = ༡ དེ་དུས་ཡུན་རེ་རེའི་ འགོ་བཙུགས་ལུ་གླ་དངུལ་དང་ དབྱེ་བ་ = ༠ དེ་ མཇུག་གི་གླ་དངུལ་ཨིན།"
@@ -36520,7 +34460,6 @@ msgstr "དབྱེ་བ་ (གདམ་ཁ་ཅན་) : གླ་དངུ
msgctxt ""
"04060119.xhp\n"
"hd_id3152358\n"
-"339\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -36529,7 +34468,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3154222\n"
-"340\n"
"help.text"
msgid "What are the periodic payments at a yearly interest rate of 1.99% if the payment time is 3 years and the cash value is 25,000 currency units. There are 36 months as 36 payment periods, and the interest rate per payment period is 1.99%/12."
msgstr "གླ་དངུལ་དུས་ཚོད་དེ་ ལོ་ངོ་གསུམ་དང་ དངུལ་རྐྱང་གནས་གོང་དེ་ ༢༥༠༠༠ དངུལ་ཆ་ཕྲན་ཨིན་པ་ཅིན་ ལོ་བསྟར་སྐྱེད་གོང་ཚད་དེ་ ༡་༩༩% ཡོད་པའི་དུས་མཚམས་གླ་དངུལ་ག་ཅི་དང་ག་ཅི་རང་སྨོ? དེ་ཁར་ལུ་ གླ་དངུལ་དུས་ཡུན་ ༣༦ སྦེ་ ཟླཝ་ ༣༦ ཡོདཔ་གི་མ་ཚད་པར་ གླ་དངུལ་དུས་ཡུན་རེ་རེར་སྐྱེད་གོང་ཚད་དེ་ ༡་༩༩%/༡༢ ཨིན་པས།"
@@ -36538,7 +34476,6 @@ msgstr "གླ་དངུལ་དུས་ཚོད་དེ་ ལོ་ང
msgctxt ""
"04060119.xhp\n"
"par_id3155943\n"
-"341\n"
"help.text"
msgid "<item type=\"input\">=PMT(1.99%/12;36;25000)</item> = -715.96 currency units. The periodic monthly payment is therefore 715.96 currency units."
msgstr "PMT(1.99%/12;36;25000) = -༧༡༥་༩༦ དངུལ་ཆ་ཕྲན་ཚུ། ནི་འབདཝ་ལས་ ཟླ་རིམ་དུས་མཚམས་གླ་དངུལ་དེ་ ༧༡༥་༩༦ དངུལ་ཆ་ཕྲན་ཚུ་ཨིན།"
@@ -36555,7 +34492,6 @@ msgstr "<bookmark_value>TBILLEQ ལས་འགན་</bookmark_value><bookmark_
msgctxt ""
"04060119.xhp\n"
"hd_id3155799\n"
-"58\n"
"help.text"
msgid "TBILLEQ"
msgstr "TBILLEQ"
@@ -36564,7 +34500,6 @@ msgstr "TBILLEQ"
msgctxt ""
"04060119.xhp\n"
"par_id3154403\n"
-"59\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLEQ\">Calculates the annual return on a treasury bill.</ahelp> A treasury bill is purchased on the settlement date and sold at the full par value on the maturity date, that must fall within the same year. A discount is deducted from the purchase price."
msgstr ""
@@ -36573,7 +34508,6 @@ msgstr ""
msgctxt ""
"04060119.xhp\n"
"hd_id3155080\n"
-"60\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -36582,7 +34516,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3150224\n"
-"61\n"
"help.text"
msgid "TBILLEQ(Settlement; Maturity; Discount)"
msgstr "TBILLEQ(བུ་ལོན་སྤྲོད་འཇལ། དུས་ཡུན་ཚང་བ། མར་བཅག)"
@@ -36591,7 +34524,6 @@ msgstr "TBILLEQ(བུ་ལོན་སྤྲོད་འཇལ། དུས་
msgctxt ""
"04060119.xhp\n"
"par_id3156190\n"
-"62\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ཉོ་ཚོང་འབད་བའི་ཚེས།"
@@ -36600,7 +34532,6 @@ msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: ས
msgctxt ""
"04060119.xhp\n"
"par_id3153827\n"
-"63\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་སྐྱོབ་དུས་ཡུན་ཚང་ནིའི་ཚེས། (དུས་ཡོལཝ་ཨིན།)."
@@ -36609,7 +34540,6 @@ msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་
msgctxt ""
"04060119.xhp\n"
"par_id3150310\n"
-"64\n"
"help.text"
msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
msgstr "<emph> མར་བཅག་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ཉོ་སྒྲུབ་གུ་ལུ་ མར་བཅག་བརྒྱ་ཆ།"
@@ -36618,7 +34548,6 @@ msgstr "<emph> མར་བཅག་ </emph>: སྲུང་སྐྱོབ་
msgctxt ""
"04060119.xhp\n"
"hd_id3150324\n"
-"65\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -36627,7 +34556,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3153173\n"
-"66\n"
"help.text"
msgid "Settlement date: March 31 1999, maturity date: June 1 1999, discount: 9.14 per cent."
msgstr "བུ་ལོན་སྤྲོད་འཇལ་ཚེས་གྲངས་: དབྱིན་ལོ་ ༡༩༩༩ ཟླཝ་ ༣ པའི་ཚེས་ ༣༡། དུས་ཡུན་ཚང་བའི་ཚེས་གྲངས་: དབྱིན་ལོ་ ༡༩༩༩ ཟླཝ་ ༦ པའི་ ཚེས་ ༡། མར་བཅག་: བརྒྱ་ཆ་ ༩་༡༤།"
@@ -36636,7 +34564,6 @@ msgstr "བུ་ལོན་སྤྲོད་འཇལ་ཚེས་གྲང
msgctxt ""
"04060119.xhp\n"
"par_id3153520\n"
-"67\n"
"help.text"
msgid "The return on the treasury bill corresponding to a security is worked out as follows:"
msgstr "སྲུང་སྐྱོབ་ལུ་ཆ་མཉམ་པའི་ དངུལ་འཛིན་ལས་ཁུངས་འཛིན་ཤོག་གུ་ལུ་སླར་ལོག་དེ་ འོག་ལུ་ཡོད་མི་བཟུམ་སྦེ་ལཱ་འབད་དེ་ཡོདཔ་ཨིན།:"
@@ -36645,7 +34572,6 @@ msgstr "སྲུང་སྐྱོབ་ལུ་ཆ་མཉམ་པའི་
msgctxt ""
"04060119.xhp\n"
"par_id3154382\n"
-"68\n"
"help.text"
msgid "=TBILLEQ(\"1999-03-31\";\"1999-06-01\"; 0.0914) returns 0.094151 or 9.4151 per cent."
msgstr "=TBILLEQ(\"3/31/99\";\"6/1/99\"; 0.0914) གིས་ བརྒྱ་ཆ་ ༠་༠༩༤༡༥༡ ཡང་ན་ ༩་༤༡༥༡ སླར་ལོག་འབདཝ་ཨིན།"
@@ -36662,7 +34588,6 @@ msgstr "<bookmark_value>TBILLPRICE ལས་འགན་</bookmark_value><bookma
msgctxt ""
"04060119.xhp\n"
"hd_id3151032\n"
-"69\n"
"help.text"
msgid "TBILLPRICE"
msgstr "TBILLPRICE"
@@ -36671,7 +34596,6 @@ msgstr "TBILLPRICE"
msgctxt ""
"04060119.xhp\n"
"par_id3157887\n"
-"70\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLPRICE\">Calculates the price of a treasury bill per 100 currency units.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLPRICE\"> ༡༠༠ དངུལ་ཆ་ཕྲན་རེ་རེ་ཚུའི་ དངུལ་འཛིན་ལས་ཁུངས་འཛིན་ཤོག་གྱི་གོང་ཚད་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -36680,7 +34604,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLPRICE\"> ༡༠༠ དངུལ་ཆ་
msgctxt ""
"04060119.xhp\n"
"hd_id3156374\n"
-"71\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -36689,7 +34612,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3150284\n"
-"72\n"
"help.text"
msgid "TBILLPRICE(Settlement; Maturity; Discount)"
msgstr "TBILLPRICE(བུ་ལོན་སྤྲོད་འཇལ། དུས་ཡུན་ཚང་བ། མར་བཅག)"
@@ -36698,7 +34620,6 @@ msgstr "TBILLPRICE(བུ་ལོན་སྤྲོད་འཇལ། དུས
msgctxt ""
"04060119.xhp\n"
"par_id3154059\n"
-"73\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ཉོ་ཚོང་འབད་བའི་ཚེས།"
@@ -36707,7 +34628,6 @@ msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: ས
msgctxt ""
"04060119.xhp\n"
"par_id3154073\n"
-"74\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་སྐྱོབ་དུས་ཡུན་ཚང་ནིའི་ཚེས། (དུས་ཡོལཝ་ཨིན།)."
@@ -36716,7 +34636,6 @@ msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་
msgctxt ""
"04060119.xhp\n"
"par_id3145765\n"
-"75\n"
"help.text"
msgid "<emph>Discount</emph> is the percentage discount upon acquisition of the security."
msgstr "<emph> མར་བཅག་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ཉོ་སྒྲུབ་གུ་ལུ་ མར་བཅག་བརྒྱ་ཆ།"
@@ -36725,7 +34644,6 @@ msgstr "<emph> མར་བཅག་ </emph>: སྲུང་སྐྱོབ་
msgctxt ""
"04060119.xhp\n"
"hd_id3153373\n"
-"76\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -36734,7 +34652,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3155542\n"
-"77\n"
"help.text"
msgid "Settlement date: March 31 1999, maturity date: June 1 1999, discount: 9 per cent."
msgstr "བུ་ལོན་སྤྲོད་འཇལ་གྱི་ཚེས་གྲངས་: དབྱིན་ལོ་ ༡༩༩༩ དབྱིན་ཟླ་ ༣ པའི་ དབྱིན་ཚེས་ ༣༡། དུས་ཡུན་ཚང་བའི་ཚེས་གྲངས་: དབྱིན་ལོ་ ༡༩༩༩ དབྱིན་ཟླ་ ༦ པའི་དབྱིན་ཚེས་ ༡ ། མར་བཅག་ : བརྒྱ་ཆ་ ༩།"
@@ -36743,7 +34660,6 @@ msgstr "བུ་ལོན་སྤྲོད་འཇལ་གྱི་ཚེས
msgctxt ""
"04060119.xhp\n"
"par_id3154578\n"
-"78\n"
"help.text"
msgid "The price of the treasury bill is worked out as follows:"
msgstr "དངུལ་འཛིན་ལས་ཁུངས་འཛིན་ཤོག་གི་གོང་ཚད་དེ་ འོག་ལུ་ཡོད་མི་བཟུམ་སྦེ་ལཱ་འབད་ཡོདཔ་ཨིན། :"
@@ -36752,7 +34668,6 @@ msgstr "དངུལ་འཛིན་ལས་ཁུངས་འཛིན་ཤ
msgctxt ""
"04060119.xhp\n"
"par_id3154592\n"
-"79\n"
"help.text"
msgid "=TBILLPRICE(\"1999-03-31\";\"1999-06-01\"; 0.09) returns 98.45."
msgstr ""
@@ -36769,7 +34684,6 @@ msgstr "<bookmark_value>TBILLYIELD ལས་འགན་</bookmark_value><bookma
msgctxt ""
"04060119.xhp\n"
"hd_id3152912\n"
-"80\n"
"help.text"
msgid "TBILLYIELD"
msgstr "TBILLYIELD"
@@ -36778,7 +34692,6 @@ msgstr "TBILLYIELD"
msgctxt ""
"04060119.xhp\n"
"par_id3145560\n"
-"81\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLYIELD\">Calculates the yield of a treasury bill.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLYIELD\"> དངུལ་འཛིན་ལས་ཁུངས་འཛིན་ཤོག་གི་ ཐོན་འབྲས་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -36787,7 +34700,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLYIELD\"> དངུལ་འཛིན་
msgctxt ""
"04060119.xhp\n"
"hd_id3145578\n"
-"82\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -36796,7 +34708,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060119.xhp\n"
"par_id3156077\n"
-"83\n"
"help.text"
msgid "TBILLYIELD(Settlement; Maturity; Price)"
msgstr "TBILLYIELD(དུ་ལོན་སྤྲོད་འཇལ། དུས་ཡུན་ཚང་བ། གོང་ཚད།)"
@@ -36805,7 +34716,6 @@ msgstr "TBILLYIELD(དུ་ལོན་སྤྲོད་འཇལ། དུས
msgctxt ""
"04060119.xhp\n"
"par_id3156091\n"
-"84\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: སྲུང་སྐྱོབ་ཀྱི་ཉོ་ཚོང་འབད་བའི་ཚེས།"
@@ -36814,7 +34724,6 @@ msgstr "<emph> བུ་ལོན་སྤྲོད་འཇལ་ </emph>: ས
msgctxt ""
"04060119.xhp\n"
"par_id3157856\n"
-"85\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་སྐྱོབ་དུས་ཡུན་ཚང་ནིའི་ཚེས། (དུས་ཡོལཝ་ཨིན།)."
@@ -36823,7 +34732,6 @@ msgstr "<emph> དུས་ཡུན་ཚང་བ་ </emph>: སྲུང་
msgctxt ""
"04060119.xhp\n"
"par_id3149627\n"
-"86\n"
"help.text"
msgid "<emph>Price</emph> is the price (purchase price) of the treasury bill per 100 currency units of par value."
msgstr "གོང་ཚད་: གནས་གོང་མཉམ་པའི་ ༡༠༠ དངུལ་ཆ་ཕྲན་རེ་རེའི་ དངུལ་འཛིན་ལས་ཁུངས་འཛིན་ཤོག་གི་ (ཉོ་ཚོང་གོང་ཚད་) གོང་ཚད།"
@@ -36832,7 +34740,6 @@ msgstr "གོང་ཚད་: གནས་གོང་མཉམ་པའི་
msgctxt ""
"04060119.xhp\n"
"hd_id3149642\n"
-"87\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -36841,7 +34748,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060119.xhp\n"
"par_id3145178\n"
-"88\n"
"help.text"
msgid "Settlement date: March 31 1999, maturity date: June 1 1999, price: 98.45 currency units."
msgstr "བུ་ལོན་སྤྲོད་འཇལ་གྱི་ཚེས་གྲངས་ : སྤྱི་ལོ་ ༡༩༩༩ སྤྱི་ཟླ་ གསུམ་པའི་ སྤྱི་ཚེས་ ༣༡ དུས་ཡུན་ཚང་བའི་ ཚེས་གྲངས་ : སྤྱི་ལོ་ ༡༩༩༩ ཟླཝ་ དྲུག་པའི་ སྤྱི་ཚེས་ ༡ གོང་ཚད་: ༩༨་༤༥ དངུཤ་ཆ་ཕྲན།"
@@ -36850,7 +34756,6 @@ msgstr "བུ་ལོན་སྤྲོད་འཇལ་གྱི་ཚེས
msgctxt ""
"04060119.xhp\n"
"par_id3145193\n"
-"89\n"
"help.text"
msgid "The yield of the treasury bill is worked out as follows:"
msgstr "དངུལ་འཛིན་ལས་ཁུངས་ཀྱི་འཛིན་ཤོག་གི་ཐོན་འབྲས་དེ་ འོག་ལུ་ཡོད་མི་བཟུམ་སྦེ་ལཱ་འབད་ཡོདཔ་ཨིན། :"
@@ -36859,7 +34764,6 @@ msgstr "དངུལ་འཛིན་ལས་ཁུངས་ཀྱི་འཛ
msgctxt ""
"04060119.xhp\n"
"par_id3148528\n"
-"90\n"
"help.text"
msgid "=TBILLYIELD(\"1999-03-31\";\"1999-06-01\"; 98.45) returns 0.091417 or 9.1417 per cent."
msgstr "=TBILLYIELD(\"3/31/99\";\"6/1/99\"; 98.45) གིས་ བརྒྱ་ཆ་ ༠་༠༩༡༤༡༧ ཡང་ན་ ༩་༡༤༡༧ སླར་ལོག་འབདཝ་ཨིན།"
@@ -36868,7 +34772,6 @@ msgstr "=TBILLYIELD(\"3/31/99\";\"6/1/99\"; 98.45) གིས་ བརྒྱ་
msgctxt ""
"04060119.xhp\n"
"par_id3148546\n"
-"345\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\"> ལོག་སྟེ་རང་ དངུལ་འབྲེལ་ལས་འགན་ཚུའི་ལེའུ་གཅིག་པ་ལུ། </link>"
@@ -36877,7 +34780,6 @@ msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Funct
msgctxt ""
"04060119.xhp\n"
"par_id3146762\n"
-"346\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Forward to Financial Functions Part Three</link>"
msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\"> དངུལ་འབྲེལ་ལས་འགན་ཚུའི་ལེའུ་གསུམ་པ། </link>"
@@ -36894,7 +34796,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"hd_id4149052\n"
-"1\n"
"help.text"
msgid "Bit Operation Functions"
msgstr ""
@@ -36911,7 +34812,6 @@ msgstr "<bookmark_value>AND ལས་འགན།</bookmark_value>"
msgctxt ""
"04060120.xhp\n"
"hd_id4150026\n"
-"238\n"
"help.text"
msgid "BITAND"
msgstr ""
@@ -36920,7 +34820,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"par_id4146942\n"
-"239\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BITAND\">Returns a bitwise logical \"and\" of the parameters.</ahelp>"
msgstr ""
@@ -36929,7 +34828,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"hd_id4150459\n"
-"240\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -36938,7 +34836,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060120.xhp\n"
"par_id4146878\n"
-"241\n"
"help.text"
msgid "BITAND(number1; number2)"
msgstr ""
@@ -36947,7 +34844,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"par_id4151228\n"
-"242\n"
"help.text"
msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
msgstr ""
@@ -36956,7 +34852,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"hd_id4148582\n"
-"248\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -36965,7 +34860,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060120.xhp\n"
"par_id4149246\n"
-"250\n"
"help.text"
msgid "<item type=\"input\">=BITAND(6;10)</item> returns 2 (0110 & 1010 = 0010)."
msgstr ""
@@ -36982,7 +34876,6 @@ msgstr "<bookmark_value>OR ལས་འགན།</bookmark_value>"
msgctxt ""
"04060120.xhp\n"
"hd_id4146139\n"
-"252\n"
"help.text"
msgid "BITOR"
msgstr ""
@@ -36991,7 +34884,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"par_id4150140\n"
-"253\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BITOR\">Returns a bitwise logical \"or\" of the parameters.</ahelp>"
msgstr ""
@@ -37000,7 +34892,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"hd_id4149188\n"
-"254\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -37009,7 +34900,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060120.xhp\n"
"par_id4148733\n"
-"255\n"
"help.text"
msgid "BITOR(number1; number2)"
msgstr ""
@@ -37018,7 +34908,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"par_id4150864\n"
-"256\n"
"help.text"
msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
msgstr ""
@@ -37027,7 +34916,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"par_id4149884\n"
-"264\n"
"help.text"
msgid "<item type=\"input\">=BITOR(6;10)</item> returns 14 (0110 | 1010 = 1110)."
msgstr ""
@@ -37044,7 +34932,6 @@ msgstr "<bookmark_value>OR ལས་འགན།</bookmark_value>"
msgctxt ""
"04060120.xhp\n"
"hd_id4150019\n"
-"182\n"
"help.text"
msgid "BITXOR"
msgstr ""
@@ -37053,7 +34940,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"par_id4145246\n"
-"183\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BITXOR\">Returns a bitwise logical \"exclusive or\" of the parameters.</ahelp>"
msgstr ""
@@ -37062,7 +34948,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"hd_id4153047\n"
-"184\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -37071,7 +34956,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060120.xhp\n"
"par_id4157970\n"
-"185\n"
"help.text"
msgid "BITXOR(number1; number2)"
msgstr ""
@@ -37080,7 +34964,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"par_id4145302\n"
-"186\n"
"help.text"
msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
msgstr ""
@@ -37089,7 +34972,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"hd_id4150269\n"
-"192\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -37098,7 +34980,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060120.xhp\n"
"par_id4149394\n"
-"196\n"
"help.text"
msgid "<item type=\"input\">=BITXOR(6;10)</item> returns 12 (0110 ^ 1010 = 1100)"
msgstr ""
@@ -37115,7 +34996,6 @@ msgstr "<bookmark_value>BINOMDIST ལས་འགན།</bookmark_value>"
msgctxt ""
"04060120.xhp\n"
"hd_id4155370\n"
-"266\n"
"help.text"
msgid "BITLSHIFT"
msgstr ""
@@ -37124,7 +35004,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"par_id4158411\n"
-"267\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BITLSHIFT\">Shifts a number left by n bits.</ahelp>"
msgstr ""
@@ -37133,7 +35012,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"hd_id4155814\n"
-"268\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -37142,7 +35020,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060120.xhp\n"
"par_id4147536\n"
-"269\n"
"help.text"
msgid "BITLSHIFT(number; shift)"
msgstr ""
@@ -37151,7 +35028,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"par_id4150475\n"
-"270\n"
"help.text"
msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
msgstr ""
@@ -37160,7 +35036,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"par_id4153921\n"
-"271\n"
"help.text"
msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the left. If shift is negative, it is synonymous with BITRSHIFT (number; -shift)."
msgstr ""
@@ -37169,7 +35044,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"hd_id4153723\n"
-"276\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -37178,7 +35052,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060120.xhp\n"
"par_id4149819\n"
-"278\n"
"help.text"
msgid "<item type=\"input\">=BITLSHIFT(6;1)</item> returns 12 (0110 << 1 = 1100)."
msgstr ""
@@ -37195,7 +35068,6 @@ msgstr "<bookmark_value>BINOMDIST ལས་འགན།</bookmark_value>"
msgctxt ""
"04060120.xhp\n"
"hd_id4083280\n"
-"165\n"
"help.text"
msgid "BITRSHIFT"
msgstr ""
@@ -37204,7 +35076,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"par_id4152482\n"
-"166\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BITRSHIFT\">Shifts a number right by n bits.</ahelp>"
msgstr ""
@@ -37213,7 +35084,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"hd_id4149713\n"
-"167\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -37222,7 +35092,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060120.xhp\n"
"par_id4145087\n"
-"168\n"
"help.text"
msgid "BITRSHIFT(number; shift)"
msgstr ""
@@ -37231,7 +35100,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"par_id4149277\n"
-"169\n"
"help.text"
msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
msgstr ""
@@ -37240,7 +35108,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"par_id4149270\n"
-"170\n"
"help.text"
msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the right. If shift is negative, it is synonymous with BITLSHIFT (number; -shift)."
msgstr ""
@@ -37249,7 +35116,6 @@ msgstr ""
msgctxt ""
"04060120.xhp\n"
"hd_id4152933\n"
-"175\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -37258,7 +35124,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060120.xhp\n"
"par_id4156130\n"
-"179\n"
"help.text"
msgid "<item type=\"input\">=BITRSHIFT(6;1)</item> returns 3 (0110 >> 1 = 0011)."
msgstr ""
@@ -37280,7 +35145,6 @@ msgid "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Statistical
msgstr "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\"> གྲངས་ཀྱི་ལས་འགན་ཚུའི་ཡན་ལག་དང་པ། </link></variable>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3145632\n"
@@ -37369,7 +35233,6 @@ msgid "<item type=\"input\">=INTERCEPT(D3:D9;C3:C9)</item> = 2.15."
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3148437\n"
@@ -37442,7 +35305,6 @@ msgid "<item type=\"input\">=COUNT(2;4;6;\"eight\")</item> = 3. The count of num
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3149729\n"
@@ -37515,7 +35377,6 @@ msgid "<item type=\"input\">=COUNTA(2;4;6;\"eight\")</item> = 4. The count of va
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3150896\n"
@@ -37532,7 +35393,6 @@ msgid "COUNTBLANK"
msgstr "COUNTBLANK"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id3155260\n"
@@ -37557,7 +35417,6 @@ msgid "COUNTBLANK(Range)"
msgstr "COUNTBLANK(ཁྱབ་ཚད།)"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id3149512\n"
@@ -37582,7 +35441,6 @@ msgid "<item type=\"input\">=COUNTBLANK(A1:B2)</item> returns 4 if cells A1, A2,
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3164897\n"
@@ -37599,7 +35457,6 @@ msgid "COUNTIF"
msgstr "COUNTIF"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id3164926\n"
@@ -37624,7 +35481,6 @@ msgid "COUNTIF(Range; Criteria)"
msgstr "COUNTIF(ཁྱབ་ཚད་; ཁྱད་ཚད།)"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id3164980\n"
@@ -37705,7 +35561,6 @@ msgid "To count only negative numbers: <item type=\"input\">=COUNTIF(A1:A10;\"<0
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3150267\n"
@@ -37802,7 +35657,6 @@ msgid "<item type=\"input\">=B(10;1/6;2)</item> returns a probability of 29%."
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3158416\n"
@@ -37875,7 +35729,6 @@ msgid "<item type=\"input\">=RSQ(A1:A20;B1:B20)</item> calculates the determinat
msgstr "=RSQ(A1:A20; B1:B20) ཀེར་ཐིག་ A དང་ B ཚུ་ནང་ གནད་སྡུད་ཆ་ཚན་གཉིས་ཆ་རའི་དོན་ལུ་ མཐུན་མོས་ཀྱི་འབྲེལ་བ་གྲངས་རྟགས་རྩིས་སྟོནམ་ཨིན།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3145620\n"
@@ -37972,7 +35825,6 @@ msgid "<item type=\"input\">=BETAINV(0.5;5;10)</item> returns the value 0.33."
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id2945620\n"
@@ -37981,7 +35833,6 @@ msgid "<bookmark_value>BETA.INV function</bookmark_value> <bookmark_value>cumul
msgstr "<bookmark_value>BETAINV ལས་འགན་</bookmark_value><bookmark_value>བསྡུ་གསོག་འབྱུང་ངེས་སྟུག་ཚད་ལསའ་གན་ གི་ལུགས་ལྡོག་</bookmark_value>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"hd_id2945620\n"
@@ -37990,7 +35841,6 @@ msgid "BETA.INV"
msgstr "BETAINV"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2949825\n"
@@ -38007,7 +35857,6 @@ msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2956300\n"
@@ -38016,7 +35865,6 @@ msgid "BETA.INV(Number; Alpha; Beta; Start; End)"
msgstr "BETAINV(ཨང་། ཨཱལ་ཕ། སྔོན་དཔྱད། འགོ་བཙུགས། མཇུག)"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2949266\n"
@@ -38041,7 +35889,6 @@ msgid "<emph>Beta</emph> is a parameter to the distribution."
msgstr "<emph> སྔོན་དཔྱད་ </emph> འདི་བགོ་བཀྲམ་ལུ་ ཚད་བཟུང་ཨིན།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2950960\n"
@@ -38050,7 +35897,6 @@ msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>.
msgstr "<emph> འགོ་བཙུགས་ </emph> (གདམ་ཁ་ཅན་) དེ་ ཨང་གྲངས་དོན་ལུ་ <emph> བཅད་མཚམས་འོག་མམ་དེ་ཨིན། </emph>."
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2951268\n"
@@ -38075,7 +35921,6 @@ msgid "<item type=\"input\">=BETA.INV(0.5;5;10)</item> returns the value 0.32575
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3156096\n"
@@ -38180,7 +36025,6 @@ msgid "<item type=\"input\">=BETADIST(0.75;3;4)</item> returns the value 0.96"
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id2956096\n"
@@ -38189,7 +36033,6 @@ msgid "<bookmark_value>BETA.DIST function</bookmark_value> <bookmark_value>cumu
msgstr "<bookmark_value>BETADIST ལས་འགན་</bookmark_value><bookmark_value>བསྡུ་གསོག་འབྱུང་ངེས་སྟུག་ཚད་ལསའ་གན་ རྩིས་སྟོན་འབད་དོ་</bookmark_value>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"hd_id2956096\n"
@@ -38198,7 +36041,6 @@ msgid "BETA.DIST"
msgstr "BETADIST"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2950880\n"
@@ -38223,7 +36065,6 @@ msgid "BETA.DIST(Number; Alpha; Beta; Cumulative; Start; End)"
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2956317\n"
@@ -38232,7 +36073,6 @@ msgid "<emph>Number</emph> (required) is the value between <emph>Start</emph> an
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ལས་འགན་བརྟག་ཞིབ་འབད་སའི་ འགོ་བཙུགས་དང་ <emph> མཇུག་བསྡུ་ </emph> བར་གྱི་ <emph> གནས་གོང་ </emph> ཨིན།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2956107\n"
@@ -38241,7 +36081,6 @@ msgid "<emph>Alpha</emph> (required) is a parameter to the distribution."
msgstr "<emph> ཨཱལ་ཕ་ </emph> འདི་བགོ་བཀྲམ་ལུ་ ཚད་བཟུང་ཨིན།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2953619\n"
@@ -38258,7 +36097,6 @@ msgid "<emph>Cumulative</emph> (required) can be 0 or False to calculate the pro
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2950254\n"
@@ -38267,7 +36105,6 @@ msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>.
msgstr "<emph> འགོ་བཙུགས་ </emph> (གདམ་ཁ་ཅན་) དེ་ ཨང་གྲངས་དོན་ལུ་ <emph> བཅད་མཚམས་འོག་མམ་དེ་ཨིན། </emph>."
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2949138\n"
@@ -38396,7 +36233,6 @@ msgid "<item type=\"input\">=BINOMDIST(A1;12;0.5;1)</item> shows the cumulative
msgstr "=BINOMDIST(A1; 12; 0.5; 1) གིས་ རྒྱུན་རིམ་གཅིག་པའི་དོན་ལུ་ བསྡུ་གསོག་འབྱུང་འགྱུར་ཚུ་སྟོནམ་ཨིན། དཔེ་འབད་བ་ཅིན་་་ A1 = ༤ ཨིན་པ་ཅིན་ རྒྱུན་རིམ་གྱི་ བསྡུ་གསོག་འབྱུང་འགྱུར་དེ་ ༠ ༡ ༢ ༣ ཡང་ན་ <emph> གྱངས་ཁ་ཚར་བཞི་འབྱུངམ་ཨིན། </emph> (non-exclusive OR)."
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id2943228\n"
@@ -38405,7 +36241,6 @@ msgid "<bookmark_value>BINOM.DIST function</bookmark_value>"
msgstr "<bookmark_value>BINOMDIST ལས་འགན།</bookmark_value>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"hd_id2943228\n"
@@ -38414,7 +36249,6 @@ msgid "BINOM.DIST"
msgstr "BINOMDIST"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2946897\n"
@@ -38431,7 +36265,6 @@ msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2956009\n"
@@ -38464,7 +36297,6 @@ msgid "<emph>SP</emph> is the probability of success on each trial."
msgstr "<emph> ཨེསི་པི་ </emph> ཟེར་མི་དེ་ སྔོན་རྟགས་རེ་རེར་གུ་མཐར་འཁྱོལ་གྱི་འབྱུང་འགྱུར་ཨིན།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id299760\n"
@@ -38489,7 +36321,6 @@ msgid "<item type=\"input\">=BINOM.DIST(A1;12;0.5;0)</item> shows (if the values
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id290120\n"
@@ -38498,7 +36329,6 @@ msgid "<item type=\"input\">=BINOM.DIST(A1;12;0.5;1)</item> shows the cumulative
msgstr "=BINOMDIST(A1; 12; 0.5; 1) གིས་ རྒྱུན་རིམ་གཅིག་པའི་དོན་ལུ་ བསྡུ་གསོག་འབྱུང་འགྱུར་ཚུ་སྟོནམ་ཨིན། དཔེ་འབད་བ་ཅིན་་་ A1 = ༤ ཨིན་པ་ཅིན་ རྒྱུན་རིམ་གྱི་ བསྡུ་གསོག་འབྱུང་འགྱུར་དེ་ ༠ ༡ ༢ ༣ ཡང་ན་ <emph> གྱངས་ཁ་ཚར་བཞི་འབྱུངམ་ཨིན། </emph> (non-exclusive OR)."
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id2843228\n"
@@ -38539,7 +36369,6 @@ msgid "BINOM.INV(Trials; SP; Alpha)"
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2847492\n"
@@ -38560,7 +36389,7 @@ msgctxt ""
"04060181.xhp\n"
"par_id289760\n"
"help.text"
-msgid "<emph>Alpha</emph>The border probability that is attained or exceeded."
+msgid "<emph>Alpha</emph> The border probability that is attained or exceeded."
msgstr ""
#: 04060181.xhp
@@ -38628,7 +36457,6 @@ msgid "<emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-squ
msgstr "<emph>Degrees_freedom</emph> དེ་ མོ་བཏབ་རང་དབང་གི་ དབྱེ་རིམ་ཚུ་ཨིན།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id2919200902432928\n"
@@ -38637,7 +36465,6 @@ msgid "<bookmark_value>CHISQ.INV function</bookmark_value>"
msgstr "<bookmark_value>CHIINV ལས་འགན།</bookmark_value>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"hd_id2919200902421451\n"
@@ -38646,7 +36473,6 @@ msgid "CHISQ.INV"
msgstr "CHIINV"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2919200902421449\n"
@@ -38671,7 +36497,6 @@ msgid "CHISQ.INV(Probability; DegreesFreedom)"
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2919200902475286\n"
@@ -38680,7 +36505,6 @@ msgid "<emph>Probability</emph> is the probability value for which the inverse o
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> གམ་མ་ལུགས་ལྡོག་བགོ་བཀྲམ་དེ་རྩིས་སྟོན་ནི་ཨིན་པའི་ གནས་གོང་འབྱུང་ངེས་ཨིན།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2919200902475282\n"
@@ -38817,7 +36641,6 @@ msgid "If the probability of error is 5%, the die is not true. If the probabilit
msgstr "འཛོལ་བའི་འབྱུང་འགྱུར་དེ་ ༥% ཨིན་པ་ཅིན་ ཤོ་དེ་བདེན་པ་མེན། འཛོལ་བའི་འབྱུང་འགྱུར་དེ་ ༢% ཨིན་པ་ཅིན་ དེ་གཏན་བཟོས་ཨིན་ཟེར་ ཡིད་ཆེས་སྐྱེད་དགོ་པའི་རྒྱུ་མཚན་རང་མེད།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id2948835\n"
@@ -38826,7 +36649,6 @@ msgid "<bookmark_value>CHISQ.INV.RT function</bookmark_value>"
msgstr "<bookmark_value>CHIINV ལས་འགན།</bookmark_value>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"hd_id2948835\n"
@@ -38835,7 +36657,6 @@ msgid "CHISQ.INV.RT"
msgstr "CHIINV"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2949906\n"
@@ -38852,7 +36673,6 @@ msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2950504\n"
@@ -38869,7 +36689,6 @@ msgid "<emph>Number</emph> is the value of the error probability."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> འབྱུང་འགྱུར་འཛོལ་བའི་གནས་གོང་ཨིན།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2954294\n"
@@ -38886,7 +36705,6 @@ msgid "Example"
msgstr "དཔེ།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2950777\n"
@@ -38895,7 +36713,6 @@ msgid "A die is thrown 1020 times. The numbers on the die 1 through 6 come up 19
msgstr "ཤོ་གཅིག་ཚར་ ༡༠༢༠ འཕང་ཡོདཔ་ཨིན་པས། ཤོ་ ༡ ལུ་ ༦ རྒྱུད་དེ་ འཐོན་པའི་ཨང་གྲངས་ཚུནི་ ༡༩༥ ༡༥༡ ༡༤༨ ༡༨༩ ༡༨༣ དང་ ཚར་ ༡༥༤ ཨིན་པས་(ཞིབ་བལྟ་གནས་གོང་ཚུ) ། ཤོ་དེ་ གཏན་བཟོས་མ་འབད་བས་ཟེར་བའི་དཔག་ཚོད་དེ་བརྟག་ཞིབ་འབད་ནི་ཨིན།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2953062\n"
@@ -38904,7 +36721,6 @@ msgid "The Chi square distribution of the random sample is determined by the for
msgstr "གང་འབྱུང་དཔེ་ཚད་ཀྱི་ ཅི་ གྲུ་བཞི་བགོ་བཀྲམ་དེ་ ལྟག་ལུ་གྲ་སྒྲིག་འབད་ཡོད་པའི་མན་ངག་གིས་གཏན་འབེབས་བཟོ་ཡོདཔ་ཨིན། ཤོ་གུ་ལུ་ གྲ་སྒྲིག་འབད་ཡོད་པའི་ཨང་གྲངས་དོན་ལུ་ རེ་བ་སྐྱེ་ཡོད་པའི་གནས་གོང་དེ་ ཨེན་ འཕང་བ་ཚུའི་དོན་ལུ་ ཚར་ཨེན་ ༡/༦ ཨིནམ་ལས་ ༡༠༢༠/༦ = ༡༧༠ མན་ངག་གིས་ ཅི་གྲུ་བཞི་གནས་གོང་ ༡༣་༢༧ སླར་ལོག་འབདཝ་ཨིན།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2948806\n"
@@ -38929,7 +36745,6 @@ msgid "<item type=\"input\">=CHISQ.INV.RT(0.02;5)</item> returns 13.388222599."
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2958401\n"
@@ -39178,7 +36993,6 @@ msgid "<item type=\"input\">=CHITEST(A1:A6;B1:B6)</item> equals 0.02. This is th
msgstr "=CHITEST(A1:A6; B1:B6) གིས་ ༠་༠༢ དང་མཉམ་ཨིན། འ་ནི་དེ་ གྲུབ་མཐའི་ ཅི་ གྲུ་བཞི་བགོ་བཀྲམ་གྱི་ བལྟ་ཞིབ་འབད་ཡོད་པའི་གནད་སྡུད་ཚད་ལང་བའི་འབྱུང་འགྱུར་ཨིན།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id2954260\n"
@@ -39187,7 +37001,6 @@ msgid "<bookmark_value>CHISQ.TEST function</bookmark_value>"
msgstr "<bookmark_value>CHITEST ལས་འགན།</bookmark_value>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"hd_id2954260\n"
@@ -39196,7 +37009,6 @@ msgid "CHISQ.TEST"
msgstr "CHIDIST"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2951052\n"
@@ -39205,7 +37017,6 @@ msgid "<ahelp hid=\"HID_FUNC_CHITEST_MS\">Returns the probability of a deviance
msgstr "<ahelp hid=\"HID_FUNC_CHITEST\">རང་དབང་དོན་ལུ་ ཅི་ གྲུ་བཞི་ཅན་བརྟག་ཞིབ་གུ་ལུ་གཞི་བཞག་སྟེ་ བརྟག་ཞིབ་རྒྱུན་རིམ་གཉིས་ཀྱི་ བགོ་བཀྲམ་གང་འབྱུང་ལས་ སྤྱི་དང་མ་མཚུངས་པའི་འབྱུང་འགྱུར་སླར་ལོག་འབདཝ་ཨིན། </ahelp> CHITEST གིས་ གནད་སྡུད་ཀྱི་ ཅི་ གྲུ་བཞི་ཅན་བགོ་བཀྲམ་སླར་ལོག་འབདཝ་ཨིན།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2948925\n"
@@ -39222,7 +37033,6 @@ msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2949162\n"
@@ -39415,7 +37225,6 @@ msgid "<item type=\"input\">170</item>"
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2949481\n"
@@ -39512,7 +37321,6 @@ msgid "If the Chi square value of the random sample is 13.27 and if the experime
msgstr "དཔེ་ཚད་གང་འབྱུང་གི་ ཅི་ གྲུ་བཞི་གནས་གོང་དེ་ ༡༣་༢༧ ཨིན་པ་ཅིན་དང་ མོ་བཏབ་ལུ་ དལ་དབང་ དབྱེ་རིམ་ ༥ ཡོད་པ་ཅིན་ དཔག་ཚོད་དེ་ འཛོལ་བ་ ༢% དང་ གཅིག་ཁར་ ཏན་ཏན་བཟོ་ཡོདཔ་ཨིན།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id2848690\n"
@@ -39521,7 +37329,6 @@ msgid "<bookmark_value>CHISQ.DIST function</bookmark_value>"
msgstr "<bookmark_value>CHIDIST ལས་འགན།</bookmark_value>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"hd_id2848690\n"
@@ -39546,7 +37353,6 @@ msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2858439\n"
@@ -39555,7 +37361,6 @@ msgid "CHISQ.DIST(Number; DegreesFreedom; Cumulative)"
msgstr "TDIST(ཨང་གྲངས། Degrees_freedom; ཐབས་ལམ།)"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2848675\n"
@@ -39564,7 +37369,6 @@ msgid "<emph>Number</emph> is the chi-square value of the random sample used to
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> འབྱུང་འགྱུར་འཛོལ་བ་གཏན་འབེབས་བཟོ་ནིའི་དོན་ལུ་ལག་ལེན་འཐབ་ཡོད་པའི་ དཔེ་ཚད་གང་འབྱུང་གི་ ཅི་ གྲུ་བཞི་གནས་གོང་ཨིན།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2855615\n"
@@ -39605,7 +37409,6 @@ msgid "<item type=\"input\">=CHISQ.DIST(3; 2; 1) </item>equals 0.7768698399, the
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id2948690\n"
@@ -39614,7 +37417,6 @@ msgid "<bookmark_value>CHISQ.DIST.RT function</bookmark_value>"
msgstr "<bookmark_value>CHIDIST ལས་འགན།</bookmark_value>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"hd_id2948690\n"
@@ -39623,7 +37425,6 @@ msgid "CHISQ.DIST.RT"
msgstr "CHIDIST"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2956338\n"
@@ -39632,7 +37433,6 @@ msgid "<ahelp hid=\"HID_FUNC_CHIVERT_MS\">Returns the probability value from the
msgstr "<ahelp hid=\"HID_FUNC_CHIVERT\"> དཔག་ཚོད་དེ་ངེས་དཔྱད་འབད་ཡོད་ཟེར་བརྡ་སྟོན་འབད་ཡོད་པའི་ ཅི་ གྲུ་བཞི་ལས་ འབྱུང་འགྱུར་གནས་གོང་སླར་ལོག་འབདཝ་ཨིན། </ahelp>གིས་ དཔག་ཚོད་དོན་ལུ་བརྟག་ཞིབ་འབད་ནི་ཨིན་པའི་འཛོལ་བའི་ འ་ནི་འབྱུང་འགྱུར་ལས་ གཏན་འབེབས་བཟོ་ནི་དང་ གྲུབ་མཐའི་ ཅི་ གྲུ་བཞི་བགོ་བཀྲམ་དང་བཅས་པའི་གནས་གོང་ཚུ་ཆ་མཉམ་དོན་ལུ་ (བལྟ་ཞིབ་འབད་བའི་གནས་གོང་ -རེ་བ་བསྐྱེད་ཡོད་པའི་གནས་གོང་)^2/ རེ་བ་བསྐྱེད་ཡོད་པའི་གནས་གོང་གི་ དངུལ་བསྡོམས་ལས་ རྩིས་བརྐྱབ་པའི་དཔེ་ཚད་གང་འབྱུང་དོན་ལུ་ གྲ་སྒྲིག་འབད་ནི་ཨིན་པའི་ ཅི་ གྲུ་བཞི་གནས་གོང་ག་བསྡུར་བརྐྱབ་ཨིན།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2951316\n"
@@ -39649,7 +37449,6 @@ msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2958439\n"
@@ -39658,7 +37457,6 @@ msgid "CHISQ.DIST.RT(Number; DegreesFreedom)"
msgstr "CHIDIST (Number; degrees_freedom)"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2948675\n"
@@ -39667,7 +37465,6 @@ msgid "<emph>Number</emph> is the chi-square value of the random sample used to
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> འབྱུང་འགྱུར་འཛོལ་བ་གཏན་འབེབས་བཟོ་ནིའི་དོན་ལུ་ལག་ལེན་འཐབ་ཡོད་པའི་ དཔེ་ཚད་གང་འབྱུང་གི་ ཅི་ གྲུ་བཞི་གནས་གོང་ཨིན།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2955615\n"
@@ -39692,7 +37489,6 @@ msgid "<item type=\"input\">=CHISQ.DIST.RT(13.27; 5)</item> equals 0.0209757694.
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2956141\n"
@@ -39701,7 +37497,6 @@ msgid "If the Chi square value of the random sample is 13.27 and if the experime
msgstr "དཔེ་ཚད་གང་འབྱུང་གི་ ཅི་ གྲུ་བཞི་གནས་གོང་དེ་ ༡༣་༢༧ ཨིན་པ་ཅིན་དང་ མོ་བཏབ་ལུ་ དལ་དབང་ དབྱེ་རིམ་ ༥ ཡོད་པ་ཅིན་ དཔག་ཚོད་དེ་ འཛོལ་བ་ ༢% དང་ གཅིག་ཁར་ ཏན་ཏན་བཟོ་ཡོདཔ་ཨིན།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id0119200902231887\n"
@@ -39734,7 +37529,6 @@ msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id0119200902395679\n"
@@ -39767,7 +37561,6 @@ msgid "<emph>Cumulative</emph> (optional): 0 or False calculates the probability
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3150603\n"
@@ -39848,7 +37641,6 @@ msgid "<item type=\"input\">=EXPONDIST(3;0.5;1)</item> returns 0.78."
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id2950603\n"
@@ -39857,7 +37649,6 @@ msgid "<bookmark_value>EXPON.DIST function</bookmark_value> <bookmark_value>exp
msgstr "<bookmark_value>EXPONDIST ལས་འགན།</bookmark_value><bookmark_value> བསྒྱུར་གྲངས་བགོ་བཀྲམ་འབད་ནི་ཚུ། </bookmark_value>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"hd_id2950603\n"
@@ -39866,7 +37657,6 @@ msgid "EXPON.DIST"
msgstr "EXPONDIST"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2949563\n"
@@ -39883,7 +37673,6 @@ msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2950987\n"
@@ -39908,7 +37697,6 @@ msgid "<emph>Lambda</emph> is the parameter value."
msgstr "<emph> ལེམ་ཌ་ </emph> འདི་ཚད་བཟུང་གནས་གོང་ཨིན།"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2947332\n"
@@ -39944,7 +37732,6 @@ msgstr "གྲངས་ཀྱི་ ལས་འགན་ཚུའི་ལེ
msgctxt ""
"04060182.xhp\n"
"hd_id3154372\n"
-"1\n"
"help.text"
msgid "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Statistical Functions Part Two\">Statistical Functions Part Two</link></variable>"
msgstr "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Statistical Functions Part Two\"> གྲངས་ཀྱི་ ལས་འགན་ཚུའི་ ལེའུ་གཉིས་པ། </link></variable>"
@@ -39961,7 +37748,6 @@ msgstr "<bookmark_value>FINV ལས་འགན་</bookmark_value><bookmark_val
msgctxt ""
"04060182.xhp\n"
"hd_id3145388\n"
-"2\n"
"help.text"
msgid "FINV"
msgstr "FINV"
@@ -39970,7 +37756,6 @@ msgstr "FINV"
msgctxt ""
"04060182.xhp\n"
"par_id3155089\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FINV\">Returns the inverse of the F probability distribution.</ahelp> The F distribution is used for F tests in order to set the relation between two differing data sets."
msgstr "<ahelp hid=\"HID_FUNC_FINV\"> ཨེཕ་ འབྱུང་འགྱུར་བགོ་བཀྲམ་གྱི་ ལུག་ལྡོག་སླར་ལོག་འབདཝ་ཨིན། </ahelp> ཨེཕ་བགོ་བཀྲམ་དེ་ ཁྱད་པར་ཕྱེ་བའི་གནད་སྡུད་ཆ་ཚན་གཉིས་ཀྱི་བར་ན་མཐུན་འབྲེལ་བཟོ་ནིའི་ལུ་ ཨེཕ་བརྟག་ཞིབ་ཚུའི་དོན་ལུ་ལག་ལེན་འཐབ་སྟེ་ཡོདཔ་ཨིན།"
@@ -39979,7 +37764,6 @@ msgstr "<ahelp hid=\"HID_FUNC_FINV\"> ཨེཕ་ འབྱུང་འགྱ
msgctxt ""
"04060182.xhp\n"
"hd_id3153816\n"
-"4\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -39988,7 +37772,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060182.xhp\n"
"par_id3153068\n"
-"5\n"
"help.text"
msgid "FINV(Number; DegreesFreedom1; DegreesFreedom2)"
msgstr "FINV(Number; degrees_freedom_1; degrees_freedom_2)"
@@ -39997,7 +37780,6 @@ msgstr "FINV(Number; degrees_freedom_1; degrees_freedom_2)"
msgctxt ""
"04060182.xhp\n"
"par_id3146866\n"
-"6\n"
"help.text"
msgid "<emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ལུགས་ལྡོག་ F བགོ་བཀྲམ་དེ་རྩིས་བརྐྱབ་ནི་ཨིན་པའི་ འབྱུང་འགྱུར་གནས་གོང་ཨིན།"
@@ -40006,7 +37788,6 @@ msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ལུགས་ལྡ
msgctxt ""
"04060182.xhp\n"
"par_id3153914\n"
-"7\n"
"help.text"
msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
msgstr "<emph>degrees_freedom_1</emph> དེ་ ཨེཕ་ བགོ་བཀྲམ་གྱི་དཔྱ་གྲངས་ནང་གི་རབ་དབང་གི་དབྱེ་རིམ་ཚུའི་གྱངས་ཁ།"
@@ -40015,7 +37796,6 @@ msgstr "<emph>degrees_freedom_1</emph> དེ་ ཨེཕ་ བགོ་བཀ
msgctxt ""
"04060182.xhp\n"
"par_id3148607\n"
-"8\n"
"help.text"
msgid "<emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
msgstr "<emph>degrees_freedom_2</emph> དེ་ ཨེཕ་བགོ་བཀྲམ་གྱི་ གཞི་གྲངས་ནང་གི་རང་དབང་གི་དབྱེ་རིམ་ཚུའི་གྱངས་ཁ་ཨིན།"
@@ -40024,7 +37804,6 @@ msgstr "<emph>degrees_freedom_2</emph> དེ་ ཨེཕ་བགོ་བཀ
msgctxt ""
"04060182.xhp\n"
"hd_id3156021\n"
-"9\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -40033,13 +37812,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id3145073\n"
-"10\n"
"help.text"
msgid "<item type=\"input\">=FINV(0.5;5;10)</item> yields 0.93."
msgstr ""
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id2945388\n"
@@ -40048,21 +37825,17 @@ msgid "<bookmark_value>F.INV function</bookmark_value> <bookmark_value>Va
msgstr "<bookmark_value>FINV ལས་འགན་</bookmark_value><bookmark_value>ལུགས་ལྡོག་ ཨེཕ་ འབྱུང་ངེས་བགོབཀྲམ་</bookmark_value>"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"hd_id2945388\n"
-"2\n"
"help.text"
msgid "F.INV"
msgstr "FINV"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2955089\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_F_INV_LT\">Returns the inverse of the cumulative F distribution.</ahelp> The F distribution is used for F tests in order to set the relation between two differing data sets."
msgstr "<ahelp hid=\"HID_FUNC_FINV\"> ཨེཕ་ འབྱུང་འགྱུར་བགོ་བཀྲམ་གྱི་ ལུག་ལྡོག་སླར་ལོག་འབདཝ་ཨིན། </ahelp> ཨེཕ་བགོ་བཀྲམ་དེ་ ཁྱད་པར་ཕྱེ་བའི་གནད་སྡུད་ཆ་ཚན་གཉིས་ཀྱི་བར་ན་མཐུན་འབྲེལ་བཟོ་ནིའི་ལུ་ ཨེཕ་བརྟག་ཞིབ་ཚུའི་དོན་ལུ་ལག་ལེན་འཐབ་སྟེ་ཡོདཔ་ཨིན།"
@@ -40071,47 +37844,38 @@ msgstr "<ahelp hid=\"HID_FUNC_FINV\"> ཨེཕ་ འབྱུང་འགྱ
msgctxt ""
"04060182.xhp\n"
"hd_id2953816\n"
-"4\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2953068\n"
-"5\n"
"help.text"
msgid "F.INV(Number; DegreesFreedom1; DegreesFreedom2)"
msgstr "FINV(Number; degrees_freedom_1; degrees_freedom_2)"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2946866\n"
-"6\n"
"help.text"
msgid "<emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ལུགས་ལྡོག་ F བགོ་བཀྲམ་དེ་རྩིས་བརྐྱབ་ནི་ཨིན་པའི་ འབྱུང་འགྱུར་གནས་གོང་ཨིན།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2953914\n"
-"7\n"
"help.text"
msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
msgstr "<emph>degrees_freedom_1</emph> དེ་ ཨེཕ་ བགོ་བཀྲམ་གྱི་དཔྱ་གྲངས་ནང་གི་རབ་དབང་གི་དབྱེ་རིམ་ཚུའི་གྱངས་ཁ།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2948607\n"
-"8\n"
"help.text"
msgid "<emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
msgstr "<emph>degrees_freedom_2</emph> དེ་ ཨེཕ་བགོ་བཀྲམ་གྱི་ གཞི་གྲངས་ནང་གི་རང་དབང་གི་དབྱེ་རིམ་ཚུའི་གྱངས་ཁ་ཨིན།"
@@ -40120,7 +37884,6 @@ msgstr "<emph>degrees_freedom_2</emph> དེ་ ཨེཕ་བགོ་བཀ
msgctxt ""
"04060182.xhp\n"
"hd_id2956021\n"
-"9\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -40129,13 +37892,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id2945073\n"
-"10\n"
"help.text"
msgid "<item type=\"input\">=F.INV(0.5;5;10)</item> yields 0.9319331609."
msgstr ""
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id2845388\n"
@@ -40147,17 +37908,14 @@ msgstr "<bookmark_value>FINV ལས་འགན་</bookmark_value><bookmark_val
msgctxt ""
"04060182.xhp\n"
"hd_id2845388\n"
-"2\n"
"help.text"
msgid "F.INV.RT"
msgstr ""
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2855089\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_F_INV_RT\">Returns the inverse right tail of the F distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TINV\"> t-distribution གི་ ལུགས་ལྡོག་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -40166,47 +37924,38 @@ msgstr "<ahelp hid=\"HID_FUNC_TINV\"> t-distribution གི་ ལུགས་
msgctxt ""
"04060182.xhp\n"
"hd_id2853816\n"
-"4\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2853068\n"
-"5\n"
"help.text"
msgid "F.INV.RT(Number; DegreesFreedom1; DegreesFreedom2)"
msgstr "FINV(Number; degrees_freedom_1; degrees_freedom_2)"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2846866\n"
-"6\n"
"help.text"
msgid "<emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ལུགས་ལྡོག་ F བགོ་བཀྲམ་དེ་རྩིས་བརྐྱབ་ནི་ཨིན་པའི་ འབྱུང་འགྱུར་གནས་གོང་ཨིན།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2853914\n"
-"7\n"
"help.text"
msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
msgstr "<emph>degrees_freedom_1</emph> དེ་ ཨེཕ་ བགོ་བཀྲམ་གྱི་དཔྱ་གྲངས་ནང་གི་རབ་དབང་གི་དབྱེ་རིམ་ཚུའི་གྱངས་ཁ།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2848607\n"
-"8\n"
"help.text"
msgid "<emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
msgstr "<emph>degrees_freedom_2</emph> དེ་ ཨེཕ་བགོ་བཀྲམ་གྱི་ གཞི་གྲངས་ནང་གི་རང་དབང་གི་དབྱེ་རིམ་ཚུའི་གྱངས་ཁ་ཨིན།"
@@ -40215,7 +37964,6 @@ msgstr "<emph>degrees_freedom_2</emph> དེ་ ཨེཕ་བགོ་བཀ
msgctxt ""
"04060182.xhp\n"
"hd_id2856021\n"
-"9\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -40224,7 +37972,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id2845073\n"
-"10\n"
"help.text"
msgid "<item type=\"input\">=F.INV.RT(0.5;5;10)</item> yields 0.9319331609."
msgstr ""
@@ -40241,7 +37988,6 @@ msgstr "<bookmark_value>FISHER ལས་འགན།</bookmark_value>"
msgctxt ""
"04060182.xhp\n"
"hd_id3150888\n"
-"12\n"
"help.text"
msgid "FISHER"
msgstr "FISHER"
@@ -40250,7 +37996,6 @@ msgstr "FISHER"
msgctxt ""
"04060182.xhp\n"
"par_id3155384\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FISHER\">Returns the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_FISHER\"> ཨེགསི་དོན་ལུ་ ཕི་ཤར་བསྒྱུར་བ་སླར་ལོག་འབད་དེ་ སྤྱིར་བཏང་བགོ་བཀྲམ་གྱི་སྦོ་ལོགས་ཁར་ ལས་འགན་གཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན། </ahelp>"
@@ -40259,7 +38004,6 @@ msgstr "<ahelp hid=\"HID_FUNC_FISHER\"> ཨེགསི་དོན་ལུ་
msgctxt ""
"04060182.xhp\n"
"hd_id3149898\n"
-"14\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -40268,7 +38012,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060182.xhp\n"
"par_id3143220\n"
-"15\n"
"help.text"
msgid "FISHER(Number)"
msgstr "FISHER(ཨང་།)"
@@ -40277,7 +38020,6 @@ msgstr "FISHER(ཨང་།)"
msgctxt ""
"04060182.xhp\n"
"par_id3159228\n"
-"16\n"
"help.text"
msgid "<emph>Number</emph> is the value to be transformed."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> བཟོ་བསྒྱུར་འབད་ནི་ཨིན་པའི་ གནས་གོང་ཨིན།"
@@ -40286,7 +38028,6 @@ msgstr "<emph> ཨང་གྲངས་དེ་ </emph> བཟོ་བསྒ
msgctxt ""
"04060182.xhp\n"
"hd_id3154763\n"
-"17\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -40295,7 +38036,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id3149383\n"
-"18\n"
"help.text"
msgid "<item type=\"input\">=FISHER(0.5)</item> yields 0.55."
msgstr ""
@@ -40312,7 +38052,6 @@ msgstr "<bookmark_value>FISHERINV ལས་འགན་</bookmark_value><bookmar
msgctxt ""
"04060182.xhp\n"
"hd_id3155758\n"
-"20\n"
"help.text"
msgid "FISHERINV"
msgstr "FISHERINV"
@@ -40321,7 +38060,6 @@ msgstr "FISHERINV"
msgctxt ""
"04060182.xhp\n"
"par_id3154734\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FISHERINV\">Returns the inverse of the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_FISHERINV\"> ཨེགསི་དོན་ལུ་ ཕི་ཤར་བསྒྱུར་བའི་ལུག་ལྡོག་སླར་ལོག་འབད་དེ་ སྤྱིར་བཏང་བགོ་བཀྲམ་གྱི་སྦོ་ལོགས་ཁར་ ལས་འགན་གཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན། </ahelp>"
@@ -40330,7 +38068,6 @@ msgstr "<ahelp hid=\"HID_FUNC_FISHERINV\"> ཨེགསི་དོན་ལུ
msgctxt ""
"04060182.xhp\n"
"hd_id3155755\n"
-"22\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -40339,7 +38076,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060182.xhp\n"
"par_id3146108\n"
-"23\n"
"help.text"
msgid "FISHERINV(Number)"
msgstr "FISHERINV(ཨང་།)"
@@ -40348,7 +38084,6 @@ msgstr "FISHERINV(ཨང་།)"
msgctxt ""
"04060182.xhp\n"
"par_id3145115\n"
-"24\n"
"help.text"
msgid "<emph>Number</emph> is the value that is to undergo reverse-transformation."
msgstr "<emph> ཨང་གྲངས་ </emph> དེ་ རིམ་ལོག་བཟོ་བསྒྱུར་འབད་ནི་ཨིན་པའི་གནས་གོང་ཨིན།"
@@ -40357,7 +38092,6 @@ msgstr "<emph> ཨང་གྲངས་ </emph> དེ་ རིམ་ལོག
msgctxt ""
"04060182.xhp\n"
"hd_id3155744\n"
-"25\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -40366,7 +38100,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id3150432\n"
-"26\n"
"help.text"
msgid "<item type=\"input\">=FISHERINV(0.5)</item> yields 0.46."
msgstr ""
@@ -40383,7 +38116,6 @@ msgstr "<bookmark_value>FTEST ལས་འགན།</bookmark_value>"
msgctxt ""
"04060182.xhp\n"
"hd_id3151390\n"
-"28\n"
"help.text"
msgid "FTEST"
msgstr "FTEST"
@@ -40392,7 +38124,6 @@ msgstr "FTEST"
msgctxt ""
"04060182.xhp\n"
"par_id3150534\n"
-"29\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FTEST\">Returns the result of an F test.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_FTEST\"> ཨེཕ་བརྟག་ཞིབ་ཀྱི་ གྲུབ་འབྲས་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -40401,7 +38132,6 @@ msgstr "<ahelp hid=\"HID_FUNC_FTEST\"> ཨེཕ་བརྟག་ཞིབ་
msgctxt ""
"04060182.xhp\n"
"hd_id3166466\n"
-"30\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -40410,7 +38140,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060182.xhp\n"
"par_id3153024\n"
-"31\n"
"help.text"
msgid "FTEST(Data1; Data2)"
msgstr "FTEST(Data_1; Data_2)"
@@ -40419,7 +38148,6 @@ msgstr "FTEST(Data_1; Data_2)"
msgctxt ""
"04060182.xhp\n"
"par_id3150032\n"
-"32\n"
"help.text"
msgid "<emph>Data1</emph> is the first record array."
msgstr "<emph>Data_1</emph> དེ་ ཨེ་རེ་དྲན་ཐོ་དང་པམ་ཨིན།"
@@ -40428,7 +38156,6 @@ msgstr "<emph>Data_1</emph> དེ་ ཨེ་རེ་དྲན་ཐོ་ད
msgctxt ""
"04060182.xhp\n"
"par_id3153018\n"
-"33\n"
"help.text"
msgid "<emph>Data2</emph> is the second record array."
msgstr "<emph>Data_2</emph> དེ་ དྲན་ཐོ་ཨེ་རེ་གཉིས་པམ་ཨིན།"
@@ -40437,7 +38164,6 @@ msgstr "<emph>Data_2</emph> དེ་ དྲན་ཐོ་ཨེ་རེ་ག
msgctxt ""
"04060182.xhp\n"
"hd_id3153123\n"
-"34\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -40446,13 +38172,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id3159126\n"
-"35\n"
"help.text"
msgid "<item type=\"input\">=FTEST(A1:A30;B1:B12)</item> calculates whether the two data sets are different in their variance and returns the probability that both sets could have come from the same total population."
msgstr "=FTEST(A1:A30; B1:B12) གནད་སྡུད་ཆ་ཚན་གཉིས་ཆ་རང་ཁོང་རའི་མི་མཐུན་པ་ནང་སོ་སོར་ཨིན་མེན་རྩིས་སྟོནམ་ཨིནམ་དང་ ཆ་ཚན་གཉིས་ཆ་རང་མི་རློབས་བསྡོམས་གཅིག་པ་ལས་འཐོན་འཐོནམ་འོང་བའི་འབྱུང་འགྱུར་སླར་ལོག་འབདཝ་ཨིན།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id2951390\n"
@@ -40461,21 +38185,17 @@ msgid "<bookmark_value>F.TEST function</bookmark_value>"
msgstr "<bookmark_value>FTEST ལས་འགན།</bookmark_value>"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"hd_id2951390\n"
-"28\n"
"help.text"
msgid "F.TEST"
msgstr "FTEST"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2950534\n"
-"29\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_F_TEST_MS\">Returns the result of an F test.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_FTEST\"> ཨེཕ་བརྟག་ཞིབ་ཀྱི་ གྲུབ་འབྲས་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -40484,17 +38204,14 @@ msgstr "<ahelp hid=\"HID_FUNC_FTEST\"> ཨེཕ་བརྟག་ཞིབ་
msgctxt ""
"04060182.xhp\n"
"hd_id2966466\n"
-"30\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2953024\n"
-"31\n"
"help.text"
msgid "F.TEST(Data1; Data2)"
msgstr "FTEST(Data_1; Data_2)"
@@ -40503,7 +38220,6 @@ msgstr "FTEST(Data_1; Data_2)"
msgctxt ""
"04060182.xhp\n"
"par_id2950032\n"
-"32\n"
"help.text"
msgid "<emph>Data1</emph> is the first record array."
msgstr "<emph>Data_1</emph> དེ་ ཨེ་རེ་དྲན་ཐོ་དང་པམ་ཨིན།"
@@ -40512,7 +38228,6 @@ msgstr "<emph>Data_1</emph> དེ་ ཨེ་རེ་དྲན་ཐོ་ད
msgctxt ""
"04060182.xhp\n"
"par_id2953018\n"
-"33\n"
"help.text"
msgid "<emph>Data2</emph> is the second record array."
msgstr "<emph>Data_2</emph> དེ་ དྲན་ཐོ་ཨེ་རེ་གཉིས་པམ་ཨིན།"
@@ -40521,17 +38236,14 @@ msgstr "<emph>Data_2</emph> དེ་ དྲན་ཐོ་ཨེ་རེ་ག
msgctxt ""
"04060182.xhp\n"
"hd_id2953123\n"
-"34\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2959126\n"
-"35\n"
"help.text"
msgid "<item type=\"input\">=F.TEST(A1:A30;B1:B12)</item> calculates whether the two data sets are different in their variance and returns the probability that both sets could have come from the same total population."
msgstr "=FTEST(A1:A30; B1:B12) གནད་སྡུད་ཆ་ཚན་གཉིས་ཆ་རང་ཁོང་རའི་མི་མཐུན་པ་ནང་སོ་སོར་ཨིན་མེན་རྩིས་སྟོནམ་ཨིནམ་དང་ ཆ་ཚན་གཉིས་ཆ་རང་མི་རློབས་བསྡོམས་གཅིག་པ་ལས་འཐོན་འཐོནམ་འོང་བའི་འབྱུང་འགྱུར་སླར་ལོག་འབདཝ་ཨིན།"
@@ -40548,7 +38260,6 @@ msgstr "<bookmark_value>FDIST ལས་འགན།</bookmark_value>"
msgctxt ""
"04060182.xhp\n"
"hd_id3150372\n"
-"37\n"
"help.text"
msgid "FDIST"
msgstr "FDIST"
@@ -40557,7 +38268,6 @@ msgstr "FDIST"
msgctxt ""
"04060182.xhp\n"
"par_id3152981\n"
-"38\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FVERT\">Calculates the values of an F distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_FVERT\"> ཨེཕ་བགོ་བཀྲམ་གཅིག་གི་ གནས་གོང་ཚུ་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -40566,7 +38276,6 @@ msgstr "<ahelp hid=\"HID_FUNC_FVERT\"> ཨེཕ་བགོ་བཀྲམ་
msgctxt ""
"04060182.xhp\n"
"hd_id3150484\n"
-"39\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -40575,7 +38284,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060182.xhp\n"
"par_id3145826\n"
-"40\n"
"help.text"
msgid "FDIST(Number; DegreesFreedom1; DegreesFreedom2)"
msgstr "FDIST(Number; degrees_freedom_1; degrees_freedom_2)"
@@ -40584,7 +38292,6 @@ msgstr "FDIST(Number; degrees_freedom_1; degrees_freedom_2)"
msgctxt ""
"04060182.xhp\n"
"par_id3150461\n"
-"41\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the F distribution is to be calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཨེཕ་ བགོ་བཀྲམ་རྩིས་སྟོན་འབད་ནི་ཨིན་པའི་ གནས་གོང་ཨིན།"
@@ -40593,7 +38300,6 @@ msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཨེཕ་ བགོ
msgctxt ""
"04060182.xhp\n"
"par_id3150029\n"
-"42\n"
"help.text"
msgid "<emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
msgstr "<emph>degrees_freedom_1</emph> དེ་ ཨེཕ་ བགོ་བཀྲམ་ནང་གི་ དཔྱ་གྲངས་ནང་གི་ རང་དབང་གི་དབྱེ་རིམ་ཚུ་ཨིན།"
@@ -40602,7 +38308,6 @@ msgstr "<emph>degrees_freedom_1</emph> དེ་ ཨེཕ་ བགོ་བཀ
msgctxt ""
"04060182.xhp\n"
"par_id3146877\n"
-"43\n"
"help.text"
msgid "<emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
msgstr "<emph>degrees_freedom_2</emph> དེ་ ཨེཕ་ བགོ་བཀྲམ་ནང་ གཞི་གྲངས་ནང་གི་ རང་དབང་གི་ དབྱེ་རིམ་ཚུ་ཨིན།"
@@ -40611,7 +38316,6 @@ msgstr "<emph>degrees_freedom_2</emph> དེ་ ཨེཕ་ བགོ་བཀ
msgctxt ""
"04060182.xhp\n"
"hd_id3147423\n"
-"44\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -40620,13 +38324,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id3150696\n"
-"45\n"
"help.text"
msgid "<item type=\"input\">=FDIST(0.8;8;12)</item> yields 0.61."
msgstr ""
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id2950372\n"
@@ -40635,21 +38337,17 @@ msgid "<bookmark_value>F.DIST function</bookmark_value>"
msgstr "<bookmark_value>FDIST ལས་འགན།</bookmark_value>"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"hd_id2950372\n"
-"37\n"
"help.text"
msgid "F.DIST"
msgstr "FDIST"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2952981\n"
-"38\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_F_DIST_LT\">Calculates the values of the left tail of the F distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TINV\"> t-distribution གི་ ལུགས་ལྡོག་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -40658,57 +38356,46 @@ msgstr "<ahelp hid=\"HID_FUNC_TINV\"> t-distribution གི་ ལུགས་
msgctxt ""
"04060182.xhp\n"
"hd_id2950484\n"
-"39\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2945826\n"
-"40\n"
"help.text"
msgid "F.DIST(Number; DegreesFreedom1; DegreesFreedom2; Cumulative)"
msgstr "FDIST(Number; degrees_freedom_1; degrees_freedom_2)"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2950461\n"
-"41\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the F distribution is to be calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཨེཕ་ བགོ་བཀྲམ་རྩིས་སྟོན་འབད་ནི་ཨིན་པའི་ གནས་གོང་ཨིན།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2950029\n"
-"42\n"
"help.text"
msgid "<emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
msgstr "<emph>degrees_freedom_1</emph> དེ་ ཨེཕ་ བགོ་བཀྲམ་ནང་གི་ དཔྱ་གྲངས་ནང་གི་ རང་དབང་གི་དབྱེ་རིམ་ཚུ་ཨིན།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2946877\n"
-"43\n"
"help.text"
msgid "<emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
msgstr "<emph>degrees_freedom_2</emph> དེ་ ཨེཕ་ བགོ་བཀྲམ་ནང་ གཞི་གྲངས་ནང་གི་ རང་དབང་གི་ དབྱེ་རིམ་ཚུ་ཨིན།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2946878\n"
-"43\n"
"help.text"
msgid "<emph>Cumulative</emph> = 0 or False calculates the density function <emph>Cumulative</emph> = 1 or True calculates the distribution."
msgstr "<emph> སི་ </emph> = ༠ གིས་ སྟུག་ཚད་ལས་འགན་རྩིས་སྟོནམ་ཨིན། <emph> སི་ </emph> = ༡ གིས་ བགོ་བཀྲམ་འབད་ནི་དེ་རྩིས་སྟོནམ་ཨིན།"
@@ -40717,7 +38404,6 @@ msgstr "<emph> སི་ </emph> = ༠ གིས་ སྟུག་ཚད་ལ
msgctxt ""
"04060182.xhp\n"
"hd_id2947423\n"
-"44\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -40726,7 +38412,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id2950696\n"
-"45\n"
"help.text"
msgid "<item type=\"input\">=F.DIST(0.8;8;12;0)</item> yields 0.7095282499."
msgstr ""
@@ -40735,13 +38420,11 @@ msgstr ""
msgctxt ""
"04060182.xhp\n"
"par_id2950697\n"
-"45\n"
"help.text"
msgid "<item type=\"input\">=F.DIST(0.8;8;12;1)</item> yields 0.3856603563."
msgstr ""
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id2850372\n"
@@ -40753,17 +38436,14 @@ msgstr "<bookmark_value>FDIST ལས་འགན།</bookmark_value>"
msgctxt ""
"04060182.xhp\n"
"hd_id280372\n"
-"37\n"
"help.text"
msgid "F.DIST.RT"
msgstr ""
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2852981\n"
-"38\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_F_DIST_RT\">Calculates the values of the right tail of the F distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TINV\"> t-distribution གི་ ལུགས་ལྡོག་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -40772,47 +38452,38 @@ msgstr "<ahelp hid=\"HID_FUNC_TINV\"> t-distribution གི་ ལུགས་
msgctxt ""
"04060182.xhp\n"
"hd_id2850484\n"
-"39\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2845826\n"
-"40\n"
"help.text"
msgid "F.DIST.RT(Number; DegreesFreedom1; DegreesFreedom2)"
msgstr "FDIST(Number; degrees_freedom_1; degrees_freedom_2)"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2850461\n"
-"41\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the F distribution is to be calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཨེཕ་ བགོ་བཀྲམ་རྩིས་སྟོན་འབད་ནི་ཨིན་པའི་ གནས་གོང་ཨིན།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2850029\n"
-"42\n"
"help.text"
msgid "<emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
msgstr "<emph>degrees_freedom_1</emph> དེ་ ཨེཕ་ བགོ་བཀྲམ་ནང་གི་ དཔྱ་གྲངས་ནང་གི་ རང་དབང་གི་དབྱེ་རིམ་ཚུ་ཨིན།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2846877\n"
-"43\n"
"help.text"
msgid "<emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
msgstr "<emph>degrees_freedom_2</emph> དེ་ ཨེཕ་ བགོ་བཀྲམ་ནང་ གཞི་གྲངས་ནང་གི་ རང་དབང་གི་ དབྱེ་རིམ་ཚུ་ཨིན།"
@@ -40821,7 +38492,6 @@ msgstr "<emph>degrees_freedom_2</emph> དེ་ ཨེཕ་ བགོ་བཀ
msgctxt ""
"04060182.xhp\n"
"hd_id2847423\n"
-"44\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -40830,7 +38500,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id2850696\n"
-"45\n"
"help.text"
msgid "<item type=\"input\">=F.DIST.RT(0.8;8;12)</item> yields 0.6143396437."
msgstr ""
@@ -40887,7 +38556,6 @@ msgstr "<bookmark_value>GAMMAINV ལས་འགན།</bookmark_value>"
msgctxt ""
"04060182.xhp\n"
"hd_id3154841\n"
-"47\n"
"help.text"
msgid "GAMMAINV"
msgstr "GAMMAINV"
@@ -40896,7 +38564,6 @@ msgstr "GAMMAINV"
msgctxt ""
"04060182.xhp\n"
"par_id3153932\n"
-"48\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GAMMAINV\">Returns the inverse of the Gamma cumulative distribution GAMMADIST.</ahelp> This function allows you to search for variables with different distribution."
msgstr "<ahelp hid=\"HID_FUNC_GAMMAINV\"> གམ་མ་བསྡུ་གསོག་བགོ་བཀྲམ་གྱི་ ལོགས་ལྡོག་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -40905,7 +38572,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GAMMAINV\"> གམ་མ་བསྡུ་གས
msgctxt ""
"04060182.xhp\n"
"hd_id3149949\n"
-"49\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -40914,7 +38580,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060182.xhp\n"
"par_id3155828\n"
-"50\n"
"help.text"
msgid "GAMMAINV(Number; Alpha; Beta)"
msgstr "GAMMAINV(ཨང་; ཨཱལ་ཕ་; སྔོན་དཔྱད།)"
@@ -40923,7 +38588,6 @@ msgstr "GAMMAINV(ཨང་; ཨཱལ་ཕ་; སྔོན་དཔྱད།)"
msgctxt ""
"04060182.xhp\n"
"par_id3145138\n"
-"51\n"
"help.text"
msgid "<emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> གམ་མ་ལུགས་ལྡོག་བགོ་བཀྲམ་དེ་རྩིས་སྟོན་ནི་ཨིན་པའི་ གནས་གོང་འབྱུང་ངེས་ཨིན།"
@@ -40932,7 +38596,6 @@ msgstr "<emph> ཨང་གྲངས་དེ་ </emph> གམ་མ་ལུ
msgctxt ""
"04060182.xhp\n"
"par_id3152785\n"
-"52\n"
"help.text"
msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
msgstr "<emph> ཨཱལ་ཕ་དེ་ </emph> གམ་མ་བགོ་བཀྲམ་གྱི་ ཚད་བཟུང་ཨཱལ་ཕ་ཨིན།"
@@ -40941,7 +38604,6 @@ msgstr "<emph> ཨཱལ་ཕ་དེ་ </emph> གམ་མ་བགོ་
msgctxt ""
"04060182.xhp\n"
"par_id3154561\n"
-"53\n"
"help.text"
msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
msgstr "<emph> སྔོན་དཔྱད་དེ་ </emph> གམ་མ་བགོ་བཀྲམ་གྱི་སྔོན་དཔྱད་ཚད་བཟུང་ཨིན།"
@@ -40950,7 +38612,6 @@ msgstr "<emph> སྔོན་དཔྱད་དེ་ </emph> གམ་མ་
msgctxt ""
"04060182.xhp\n"
"hd_id3148734\n"
-"54\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -40959,13 +38620,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id3153331\n"
-"55\n"
"help.text"
msgid "<item type=\"input\">=GAMMAINV(0.8;1;1)</item> yields 1.61."
msgstr ""
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id2914841\n"
@@ -40974,21 +38633,17 @@ msgid "<bookmark_value>GAMMA.INV function</bookmark_value>"
msgstr "<bookmark_value>GAMMAINV ལས་འགན།</bookmark_value>"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"hd_id2914841\n"
-"47\n"
"help.text"
msgid "GAMMA.INV"
msgstr "GAMMAINV"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2913932\n"
-"48\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GAMMAINV_MS\">Returns the inverse of the Gamma cumulative distribution GAMMADIST.</ahelp> This function allows you to search for variables with different distribution."
msgstr "<ahelp hid=\"HID_FUNC_GAMMAINV\"> གམ་མ་བསྡུ་གསོག་བགོ་བཀྲམ་གྱི་ ལོགས་ལྡོག་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -41005,27 +38660,22 @@ msgstr ""
msgctxt ""
"04060182.xhp\n"
"hd_id2919949\n"
-"49\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2915828\n"
-"50\n"
"help.text"
msgid "GAMMA.INV(Number; Alpha; Beta)"
msgstr "GAMMAINV(ཨང་; ཨཱལ་ཕ་; སྔོན་དཔྱད།)"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2915138\n"
-"51\n"
"help.text"
msgid "<emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> གམ་མ་ལུགས་ལྡོག་བགོ་བཀྲམ་དེ་རྩིས་སྟོན་ནི་ཨིན་པའི་ གནས་གོང་འབྱུང་ངེས་ཨིན།"
@@ -41034,7 +38684,6 @@ msgstr "<emph> ཨང་གྲངས་དེ་ </emph> གམ་མ་ལུ
msgctxt ""
"04060182.xhp\n"
"par_id2912785\n"
-"52\n"
"help.text"
msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
msgstr "<emph> ཨཱལ་ཕ་དེ་ </emph> གམ་མ་བགོ་བཀྲམ་གྱི་ ཚད་བཟུང་ཨཱལ་ཕ་ཨིན།"
@@ -41043,7 +38692,6 @@ msgstr "<emph> ཨཱལ་ཕ་དེ་ </emph> གམ་མ་བགོ་
msgctxt ""
"04060182.xhp\n"
"par_id2914561\n"
-"53\n"
"help.text"
msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
msgstr "<emph> སྔོན་དཔྱད་དེ་ </emph> གམ་མ་བགོ་བཀྲམ་གྱི་སྔོན་དཔྱད་ཚད་བཟུང་ཨིན།"
@@ -41052,7 +38700,6 @@ msgstr "<emph> སྔོན་དཔྱད་དེ་ </emph> གམ་མ་
msgctxt ""
"04060182.xhp\n"
"hd_id2918734\n"
-"54\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -41061,7 +38708,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id2913331\n"
-"55\n"
"help.text"
msgid "<item type=\"input\">=GAMMA.INV(0.8;1;1)</item> yields 1.61."
msgstr ""
@@ -41078,7 +38724,6 @@ msgstr "<bookmark_value>GAMMALN ལས་འགན་</bookmark_value><bookmark_
msgctxt ""
"04060182.xhp\n"
"hd_id3154806\n"
-"57\n"
"help.text"
msgid "GAMMALN"
msgstr "GAMMALN"
@@ -41087,7 +38732,6 @@ msgstr "GAMMALN"
msgctxt ""
"04060182.xhp\n"
"par_id3148572\n"
-"58\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GAMMALN\">Returns the natural logarithm of the Gamma function: G(x).</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GAMMALN\"> གམ་མ་ལས་འགན་གྱི་ རང་བཞིན་མཉམ་གྲངས་སླར་ལོག་འབདཝ་ཨིན།: G(x).</ahelp>"
@@ -41096,7 +38740,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GAMMALN\"> གམ་མ་ལས་འགན་ག
msgctxt ""
"04060182.xhp\n"
"hd_id3152999\n"
-"59\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -41105,7 +38748,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060182.xhp\n"
"par_id3153112\n"
-"60\n"
"help.text"
msgid "GAMMALN(Number)"
msgstr "GAMMALN(ཨང་།)"
@@ -41114,7 +38756,6 @@ msgstr "GAMMALN(ཨང་།)"
msgctxt ""
"04060182.xhp\n"
"par_id3154502\n"
-"61\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the natural logarithm of the Gamma function is to be calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> གམ་མ་ལས་འགན་གྱི་ རང་བཞིན་མཉམ་གྲངས་རྩིས་སྟོན་ནི་ཨིན་པའི་ གནས་གོང་ཨིན།"
@@ -41123,7 +38764,6 @@ msgstr "<emph> ཨང་གྲངས་དེ་ </emph> གམ་མ་ལས
msgctxt ""
"04060182.xhp\n"
"hd_id3153568\n"
-"62\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -41132,13 +38772,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id3153730\n"
-"63\n"
"help.text"
msgid "<item type=\"input\">=GAMMALN(2)</item> yields 0."
msgstr ""
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id2914806\n"
@@ -41150,17 +38788,14 @@ msgstr "<bookmark_value>GAMMALN ལས་འགན་</bookmark_value><bookmark_
msgctxt ""
"04060182.xhp\n"
"hd_id2914806\n"
-"57\n"
"help.text"
msgid "GAMMALN.PRECISE"
msgstr ""
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2918572\n"
-"58\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GAMMALN_MS\">Returns the natural logarithm of the Gamma function: G(x).</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GAMMALN\"> གམ་མ་ལས་འགན་གྱི་ རང་བཞིན་མཉམ་གྲངས་སླར་ལོག་འབདཝ་ཨིན།: G(x).</ahelp>"
@@ -41169,7 +38804,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GAMMALN\"> གམ་མ་ལས་འགན་ག
msgctxt ""
"04060182.xhp\n"
"hd_id2912999\n"
-"59\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -41178,17 +38812,14 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060182.xhp\n"
"par_id2913112\n"
-"60\n"
"help.text"
msgid "GAMMALN.PRECISE(Number)"
msgstr ""
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2914502\n"
-"61\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the natural logarithm of the Gamma function is to be calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> གམ་མ་ལས་འགན་གྱི་ རང་བཞིན་མཉམ་གྲངས་རྩིས་སྟོན་ནི་ཨིན་པའི་ གནས་གོང་ཨིན།"
@@ -41197,7 +38828,6 @@ msgstr "<emph> ཨང་གྲངས་དེ་ </emph> གམ་མ་ལས
msgctxt ""
"04060182.xhp\n"
"hd_id2913568\n"
-"62\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -41206,7 +38836,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id2913730\n"
-"63\n"
"help.text"
msgid "<item type=\"input\">=GAMMALN.PRECISE(2)</item> yields 0."
msgstr ""
@@ -41223,7 +38852,6 @@ msgstr "<bookmark_value>GAMMADIST ལས་འགན།</bookmark_value>"
msgctxt ""
"04060182.xhp\n"
"hd_id3150132\n"
-"65\n"
"help.text"
msgid "GAMMADIST"
msgstr "GAMMADIST"
@@ -41232,7 +38860,6 @@ msgstr "GAMMADIST"
msgctxt ""
"04060182.xhp\n"
"par_id3155931\n"
-"66\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Returns the values of a Gamma distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\"> གམ་མ་བགོ་བཀྲམ་གྱི་ གནས་གོང་ཚུ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -41249,7 +38876,6 @@ msgstr ""
msgctxt ""
"04060182.xhp\n"
"hd_id3147373\n"
-"67\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -41258,7 +38884,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060182.xhp\n"
"par_id3155436\n"
-"68\n"
"help.text"
msgid "GAMMADIST(Number; Alpha; Beta; C)"
msgstr "GAMMADIST(ཨང་; ཨཱལ་ཕ་; སྔོན་དཔྱད་; སི།)"
@@ -41267,7 +38892,6 @@ msgstr "GAMMADIST(ཨང་; ཨཱལ་ཕ་; སྔོན་དཔྱད་;
msgctxt ""
"04060182.xhp\n"
"par_id3150571\n"
-"69\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the Gamma distribution is to be calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> གམ་མ་བགོ་བཀྲམ་དེ་ རྩིས་སྟོན་ནི་ཨིན་པའི་ གནས་གོང་ཨིན།"
@@ -41276,7 +38900,6 @@ msgstr "<emph> ཨང་གྲངས་དེ་ </emph> གམ་མ་བག
msgctxt ""
"04060182.xhp\n"
"par_id3145295\n"
-"70\n"
"help.text"
msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
msgstr "<emph> ཨཱལ་ཕ་དེ་ </emph> གམ་མ་བགོ་བཀྲམ་གྱི་ ཚད་བཟུང་ཨཱལ་ཕ་ཨིན།"
@@ -41285,7 +38908,6 @@ msgstr "<emph> ཨཱལ་ཕ་དེ་ </emph> གམ་མ་བགོ་
msgctxt ""
"04060182.xhp\n"
"par_id3151015\n"
-"71\n"
"help.text"
msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution"
msgstr "<emph> སྔོན་དཔྱད་ </emph> དེ་ གམ་མ་བགོ་བཀྲམ་གྱི་ཚད་བཟུང་སྔོན་དཔྱད་ཨིན།"
@@ -41294,7 +38916,6 @@ msgstr "<emph> སྔོན་དཔྱད་ </emph> དེ་ གམ་མ་
msgctxt ""
"04060182.xhp\n"
"par_id3157972\n"
-"72\n"
"help.text"
msgid "<emph>C</emph> (optional) = 0 or False calculates the density function <emph>C</emph> = 1 or True calculates the distribution."
msgstr "<emph> སི་ </emph> = ༠ གིས་ སྟུག་ཚད་ལས་འགན་རྩིས་སྟོནམ་ཨིན། <emph> སི་ </emph> = ༡ གིས་ བགོ་བཀྲམ་འབད་ནི་དེ་རྩིས་སྟོནམ་ཨིན།"
@@ -41303,7 +38924,6 @@ msgstr "<emph> སི་ </emph> = ༠ གིས་ སྟུག་ཚད་ལ
msgctxt ""
"04060182.xhp\n"
"hd_id3149535\n"
-"73\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -41312,13 +38932,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id3145354\n"
-"74\n"
"help.text"
msgid "<item type=\"input\">=GAMMADIST(2;1;1;1)</item> yields 0.86."
msgstr ""
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id240620142206421\n"
@@ -41327,7 +38945,6 @@ msgid "<bookmark_value>GAMMA.DIST function</bookmark_value>"
msgstr "<bookmark_value>GAMMADIST ལས་འགན།</bookmark_value>"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"hd_id2406201422120061\n"
@@ -41336,7 +38953,6 @@ msgid "GAMMA.DIST"
msgstr "GAMMADIST"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2406201422414690\n"
@@ -41369,7 +38985,6 @@ msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id240620142238475\n"
@@ -41378,7 +38993,6 @@ msgid "GAMMA.DIST(Number; Alpha; Beta; C)"
msgstr "GAMMADIST(ཨང་; ཨཱལ་ཕ་; སྔོན་དཔྱད་; སི།)"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2406201422385134\n"
@@ -41403,7 +39017,6 @@ msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution"
msgstr "<emph> སྔོན་དཔྱད་ </emph> དེ་ གམ་མ་བགོ་བཀྲམ་གྱི་ཚད་བཟུང་སྔོན་དཔྱད་ཨིན།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2406201422391058\n"
@@ -41439,7 +39052,6 @@ msgstr "<bookmark_value>GAUSS ལས་འགན་</bookmark_value><bookmark_va
msgctxt ""
"04060182.xhp\n"
"hd_id3150272\n"
-"76\n"
"help.text"
msgid "GAUSS"
msgstr "GAUSS"
@@ -41448,7 +39060,6 @@ msgstr "GAUSS"
msgctxt ""
"04060182.xhp\n"
"par_id3149030\n"
-"77\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GAUSS\">Returns the standard normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GAUSS\"> སྤྱིར་བཏང་ཚད་ལྡན་བསྡུ་གསོག་བགོ་བཀྲམ་འབད་ནི་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -41465,7 +39076,6 @@ msgstr "GAUSS(x)=NORMSDIST(x)-0.5 ཨིན།"
msgctxt ""
"04060182.xhp\n"
"hd_id3153551\n"
-"78\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -41474,7 +39084,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060182.xhp\n"
"par_id3155368\n"
-"79\n"
"help.text"
msgid "GAUSS(Number)"
msgstr "GAUSS(ཨང་།)"
@@ -41483,7 +39092,6 @@ msgstr "GAUSS(ཨང་།)"
msgctxt ""
"04060182.xhp\n"
"par_id3153228\n"
-"80\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the value of the standard normal distribution is to be calculated."
msgstr "<emph>ཨང་</emph> འདི་ ཚད་ལྡན་སྤྱིར་བཏང་བགོ་བཀྲམ་འབད་ནི་འདི་རྩིས་སྟོན་འབད་ནི་ཨིན་མི་འདི་གི་ གནས་གོང་གི་དོན་ལུ་ གནས་གོང་འདི་ཨིན།"
@@ -41492,7 +39100,6 @@ msgstr "<emph>ཨང་</emph> འདི་ ཚད་ལྡན་སྤྱིར
msgctxt ""
"04060182.xhp\n"
"hd_id3150691\n"
-"81\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -41501,7 +39108,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id3154867\n"
-"82\n"
"help.text"
msgid "<item type=\"input\">=GAUSS(0.19)</item> = 0.08"
msgstr ""
@@ -41510,7 +39116,6 @@ msgstr ""
msgctxt ""
"04060182.xhp\n"
"par_id3148594\n"
-"83\n"
"help.text"
msgid "<item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
msgstr ""
@@ -41527,7 +39132,6 @@ msgstr "<bookmark_value>GEOMEAN ལསའགན་</bookmark_value><bookmark_val
msgctxt ""
"04060182.xhp\n"
"hd_id3148425\n"
-"85\n"
"help.text"
msgid "GEOMEAN"
msgstr "GEOMEAN"
@@ -41536,7 +39140,6 @@ msgstr "GEOMEAN"
msgctxt ""
"04060182.xhp\n"
"par_id3156257\n"
-"86\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Returns the geometric mean of a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GEOMITTEL\"> དཔེ་ཚད་ཀྱི་ ཐིག་རྩིས་མཱིན་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -41545,7 +39148,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GEOMITTEL\"> དཔེ་ཚད་ཀྱི་ ཐ
msgctxt ""
"04060182.xhp\n"
"hd_id3147167\n"
-"87\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -41554,7 +39156,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060182.xhp\n"
"par_id3153720\n"
-"88\n"
"help.text"
msgid "GEOMEAN(Number1; Number2; ...Number30)"
msgstr "GEOMEAN(ཨང་དང་ ; ཨང་གཉིས་པ་ ; ...ཨང་སུམ་ཅུ་པ།)"
@@ -41563,7 +39164,6 @@ msgstr "GEOMEAN(ཨང་དང་ ; ཨང་གཉིས་པ་ ; ...ཨང
msgctxt ""
"04060182.xhp\n"
"par_id3152585\n"
-"89\n"
"help.text"
msgid "<emph>Number1, Number2,...Number30</emph> are numeric arguments or ranges that represent a random sample."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢ ... ཨང་གྲངས་ ༣༠ </emph> ཚུ་ དཔེ་ཚད་གང་འབྱུང་ཁྱད་ཚབ་འབད་བའི་ ཨང་གྲངས་ཀྱི་ སྒྲུབ་རྟགས་ཚུའམ་ ཁྱབ་ཚད་ཚུ་ཨིན།"
@@ -41572,7 +39172,6 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢ ...
msgctxt ""
"04060182.xhp\n"
"hd_id3146146\n"
-"90\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -41581,7 +39180,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id3149819\n"
-"92\n"
"help.text"
msgid "<item type=\"input\">=GEOMEAN(23;46;69)</item> = 41.79. The geometric mean value of this random sample is therefore 41.79."
msgstr "GEOMEAN(23; 46; 69) = ༤༡་༧༩ ཨིན། དེ་འབདཝ་ལས་ འ་ནི་དཔེ་ཚད་ཀྱི་ ཐིག་རྩིས་མཱིན་གནས་གོང་དེ་ ༤༡་༧༩ ཨིན།"
@@ -41598,7 +39196,6 @@ msgstr "<bookmark_value>TRIMMEAN ལས་འགན་</bookmark_value><bookmark
msgctxt ""
"04060182.xhp\n"
"hd_id3152966\n"
-"94\n"
"help.text"
msgid "TRIMMEAN"
msgstr "TRIMMEAN"
@@ -41607,7 +39204,6 @@ msgstr "TRIMMEAN"
msgctxt ""
"04060182.xhp\n"
"par_id3149716\n"
-"95\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">Returns the mean of a data set without the Alpha percent of data at the margins.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\"> མཐའ་སྟོང་ཚུ་གུ་ཡོད་པའི་ གནད་སྡུད་ཀྱི་ ཨཱལ་ཕ་བརྒྱ་ཆ་དང་མ་བཅས་པའི་ གནད་སྡུད་ཆ་ཚན་གྱི་ མཱིན་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -41616,7 +39212,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\"> མཐའ་སྟོང་ཚ
msgctxt ""
"04060182.xhp\n"
"hd_id3149281\n"
-"96\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -41625,7 +39220,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060182.xhp\n"
"par_id3154821\n"
-"97\n"
"help.text"
msgid "TRIMMEAN(Data; Alpha)"
msgstr "TRIMMEAN(གནད་སྡུད་ ; ཨཱལ་ཕ།)"
@@ -41634,7 +39228,6 @@ msgstr "TRIMMEAN(གནད་སྡུད་ ; ཨཱལ་ཕ།)"
msgctxt ""
"04060182.xhp\n"
"par_id3155834\n"
-"98\n"
"help.text"
msgid "<emph>Data</emph> is the array of data in the sample."
msgstr "<emph>Data</emph> འདི་དཔེ་ཚད་ནང་གནད་སྡུད་ཀྱི་ཨེ་རེ་ཨིན།"
@@ -41643,7 +39236,6 @@ msgstr "<emph>Data</emph> འདི་དཔེ་ཚད་ནང་གནད་
msgctxt ""
"04060182.xhp\n"
"par_id3156304\n"
-"99\n"
"help.text"
msgid "<emph>Alpha</emph> is the percentage of the marginal data that will not be taken into consideration."
msgstr "<emph> ཨཱལ་ཕ་དེ་ </emph> ཆ་འཇོག་འབད་ནི་ཨིན་པའི་གནད་སྡུད་མཐའ་སྟོང་གི་བརྒྱ་ཆ་ཨིན།"
@@ -41652,7 +39244,6 @@ msgstr "<emph> ཨཱལ་ཕ་དེ་ </emph> ཆ་འཇོག་འབ
msgctxt ""
"04060182.xhp\n"
"hd_id3151180\n"
-"100\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -41661,7 +39252,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id3156130\n"
-"101\n"
"help.text"
msgid "<item type=\"input\">=TRIMMEAN(A1:A50; 0.1)</item> calculates the mean value of numbers in A1:A50, without taking into consideration the 5 percent of the values representing the highest values and the 5 percent of the values representing the lowest ones. The percentage numbers refer to the amount of the untrimmed mean value, not to the number of summands."
msgstr "=TRIMMEAN(A1:A50; 0.1) གནས་གོང་མཐོ་ཤོས་ཚུ་ཁྱད་ཚབ་འབད་བའི་ གནས་གོང་གི་བརྒྱ་ཆ་ ༥ དང་ གནས་གོང་དམའ་ཤོས་ཚུ་ཁྱད་ཚབ་འབད་བའི་གནས་གོང་གི་བརྒྱ་ཆ་ ༥ དེ་གཉིས་ བརྩི་འཇོག་མ་འབད་བར་ A1:A50 ནང་ ཨང་གྲངས་ཚུའི་མཱིན་གནས་གོང་རྩིས་སྟོནམ་ཨིན། བརྒྱ་ཆའི་གྱངས་ཁ་དེ་ སཱ་མེནཌིསི་གི་གྱངས་ཁ་ལུ་མེན་པར་ མ་སྙོམས་པའི་མཱིན་གནས་གོང་ལུ་གཞི་བསྟུན་འབདཝ་ཨིན།"
@@ -41678,7 +39268,6 @@ msgstr "<bookmark_value>ZTEST ལས་འགན།</bookmark_value>"
msgctxt ""
"04060182.xhp\n"
"hd_id3153216\n"
-"103\n"
"help.text"
msgid "ZTEST"
msgstr "ZTEST"
@@ -41687,7 +39276,6 @@ msgstr "ZTEST"
msgctxt ""
"04060182.xhp\n"
"par_id3150758\n"
-"104\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GTEST\">Calculates the probability of observing a z-statistic greater than the one computed based on a sample.</ahelp>"
msgstr ""
@@ -41696,7 +39284,6 @@ msgstr ""
msgctxt ""
"04060182.xhp\n"
"hd_id3150872\n"
-"105\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -41705,7 +39292,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060182.xhp\n"
"par_id3153274\n"
-"106\n"
"help.text"
msgid "ZTEST(Data; mu; Sigma)"
msgstr "ZTEST(གནད་སྡུད་ ; ཨང་ ; སིག་མ།)"
@@ -41714,7 +39300,6 @@ msgstr "ZTEST(གནད་སྡུད་ ; ཨང་ ; སིག་མ།)"
msgctxt ""
"04060182.xhp\n"
"par_id3156109\n"
-"107\n"
"help.text"
msgid "<emph>Data</emph> is the given sample, drawn from a normally distributed population."
msgstr ""
@@ -41723,7 +39308,6 @@ msgstr ""
msgctxt ""
"04060182.xhp\n"
"par_id3149977\n"
-"108\n"
"help.text"
msgid "<emph>mu</emph> is the known mean of the population."
msgstr ""
@@ -41732,7 +39316,6 @@ msgstr ""
msgctxt ""
"04060182.xhp\n"
"par_id3154740\n"
-"109\n"
"help.text"
msgid "<emph>Sigma</emph> (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
msgstr ""
@@ -41746,7 +39329,6 @@ msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentatio
msgstr ""
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id2953216\n"
@@ -41755,11 +39337,9 @@ msgid "<bookmark_value>Z.TEST function</bookmark_value>"
msgstr "<bookmark_value>ZTEST ལས་འགན།</bookmark_value>"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"hd_id2953216\n"
-"103\n"
"help.text"
msgid "Z.TEST"
msgstr "ZTEST"
@@ -41768,7 +39348,6 @@ msgstr "ZTEST"
msgctxt ""
"04060182.xhp\n"
"par_id2950758\n"
-"104\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_Z_TEST_MS\">Calculates the probability of observing a z-statistic greater than the one computed based on a sample.</ahelp>"
msgstr ""
@@ -41777,17 +39356,14 @@ msgstr ""
msgctxt ""
"04060182.xhp\n"
"hd_id2950872\n"
-"105\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2953274\n"
-"106\n"
"help.text"
msgid "Z.TEST(Data; mu; Sigma)"
msgstr "ZTEST(གནད་སྡུད་ ; ཨང་ ; སིག་མ།)"
@@ -41796,7 +39372,6 @@ msgstr "ZTEST(གནད་སྡུད་ ; ཨང་ ; སིག་མ།)"
msgctxt ""
"04060182.xhp\n"
"par_id2956109\n"
-"107\n"
"help.text"
msgid "<emph>Data</emph> is the given sample, drawn from a normally distributed population."
msgstr ""
@@ -41805,7 +39380,6 @@ msgstr ""
msgctxt ""
"04060182.xhp\n"
"par_id2949977\n"
-"108\n"
"help.text"
msgid "<emph>mu</emph> is the known mean of the population."
msgstr ""
@@ -41814,7 +39388,6 @@ msgstr ""
msgctxt ""
"04060182.xhp\n"
"par_id2954740\n"
-"109\n"
"help.text"
msgid "<emph>Sigma</emph> (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
msgstr ""
@@ -41823,7 +39396,6 @@ msgstr ""
msgctxt ""
"04060182.xhp\n"
"hd_id2949539\n"
-"58\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -41832,7 +39404,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id2948770\n"
-"59\n"
"help.text"
msgid "<item type=\"input\">=Z.TEST(A2:A20; 9; 2)</item> returns the result of a z-test on a sample A2:A20 drawn from a population with known mean 9 and known standard deviation 2."
msgstr ""
@@ -41849,7 +39420,6 @@ msgstr "<bookmark_value>HARMEAN ལས་འགན་</bookmark_value><bookmark_
msgctxt ""
"04060182.xhp\n"
"hd_id3153623\n"
-"113\n"
"help.text"
msgid "HARMEAN"
msgstr "HARMEAN"
@@ -41858,7 +39428,6 @@ msgstr "HARMEAN"
msgctxt ""
"04060182.xhp\n"
"par_id3155102\n"
-"114\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_HARMITTEL\">Returns the harmonic mean of a data set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_HARMITTEL\"> གནད་སྡུད་ཆ་ཚན་གྱི་ ཧར་མོ་ནིཀི་མཱིན་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -41867,7 +39436,6 @@ msgstr "<ahelp hid=\"HID_FUNC_HARMITTEL\"> གནད་སྡུད་ཆ་ཚ
msgctxt ""
"04060182.xhp\n"
"hd_id3146900\n"
-"115\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -41876,7 +39444,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060182.xhp\n"
"par_id3149287\n"
-"116\n"
"help.text"
msgid "HARMEAN(Number1; Number2; ...Number30)"
msgstr "HARMEAN(ཨང་ ༡ ; ཨང་ ༢ ; ...ཨང་ ༣༠)"
@@ -41885,7 +39452,6 @@ msgstr "HARMEAN(ཨང་ ༡ ; ཨང་ ༢ ; ...ཨང་ ༣༠)"
msgctxt ""
"04060182.xhp\n"
"par_id3154303\n"
-"117\n"
"help.text"
msgid "<emph>Number1,Number2,...Number30</emph> are up to 30 values or ranges, that can be used to calculate the harmonic mean."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢,... ཨང་གྲངས་ ༣༠ ཚུ་ ཧར་མོ་ནིཀི་མཱིན་རྩིས་སྟོན་འབད་ནིའི་དོན་ལུ་ ལག་ལེན་འཐབ་བཏུབ་པའི་ </emph> ༣༠ ཚུན་གྱི་ གནས་གོང་ཡང་ན་ཁྱབ་ཚད་ཚུ་ཨིན།"
@@ -41894,7 +39460,6 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢,... ཨ
msgctxt ""
"04060182.xhp\n"
"hd_id3159179\n"
-"118\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -41903,7 +39468,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id3146093\n"
-"120\n"
"help.text"
msgid "<item type=\"input\">=HARMEAN(23;46;69)</item> = 37.64. The harmonic mean of this random sample is thus 37.64"
msgstr "GEOMEAN(23; 46; 69) = ༤༡་༧༩ ཨིན། དེ་འབདཝ་ལས་ འ་ནི་དཔེ་ཚད་ཀྱི་ ཐིག་རྩིས་མཱིན་གནས་གོང་དེ་ ༤༡་༧༩ ཨིན།"
@@ -41920,7 +39484,6 @@ msgstr "<bookmark_value>HYPGEOMDIST ལས་འགན་</bookmark_value><bookm
msgctxt ""
"04060182.xhp\n"
"hd_id3152801\n"
-"122\n"
"help.text"
msgid "HYPGEOMDIST"
msgstr "HYPGEOMDIST"
@@ -41929,7 +39492,6 @@ msgstr "HYPGEOMDIST"
msgctxt ""
"04060182.xhp\n"
"par_id3159341\n"
-"123\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Returns the hypergeometric distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\"> ཚད་བརྒལ་ཐིག་རྩིས་ཀྱི་བགོ་བཀྲམ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -41938,7 +39500,6 @@ msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\"> ཚད་བརྒལ་ཐིག
msgctxt ""
"04060182.xhp\n"
"hd_id3154697\n"
-"124\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -41947,7 +39508,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060182.xhp\n"
"par_id3155388\n"
-"125\n"
"help.text"
msgid "HYPGEOMDIST(X; NSample; Successes; NPopulation)"
msgstr "HYPGEOMDIST(X; N_sample; Successes; N_population)"
@@ -41956,7 +39516,6 @@ msgstr "HYPGEOMDIST(X; N_sample; Successes; N_population)"
msgctxt ""
"04060182.xhp\n"
"par_id3154933\n"
-"126\n"
"help.text"
msgid "<emph>X</emph> is the number of results achieved in the random sample."
msgstr "<emph> ཨེགསི་ </emph> དེ་ དཔེ་ཚད་གང་འབྱུང་ནང་ ཐོབ་ཡོད་པའི་གྲུབ་འབྲས་ཚུའི་གྱངས་ཁ་ཨིན།"
@@ -41965,7 +39524,6 @@ msgstr "<emph> ཨེགསི་ </emph> དེ་ དཔེ་ཚད་གང
msgctxt ""
"04060182.xhp\n"
"par_id3153106\n"
-"127\n"
"help.text"
msgid "<emph>NSample</emph> is the size of the random sample."
msgstr "<emph>N_sample</emph> དེ་ དཔེ་ཚད་གང་འབྱུང་གི་ཚད་ཨིན།"
@@ -41974,7 +39532,6 @@ msgstr "<emph>N_sample</emph> དེ་ དཔེ་ཚད་གང་འབྱ
msgctxt ""
"04060182.xhp\n"
"par_id3146992\n"
-"128\n"
"help.text"
msgid "<emph>Successes</emph> is the number of possible results in the total population."
msgstr "<emph> མཐར་འཁྱོལ་ཚུ་ </emph> མི་རློབས་བསྡོམས་ནང་ འབྱུང་སྲིད་པའི་གྲུབ་འབྲས་ཚུའི་གྱངས་ཁ་ཨིན།"
@@ -41983,7 +39540,6 @@ msgstr "<emph> མཐར་འཁྱོལ་ཚུ་ </emph> མི་རླ
msgctxt ""
"04060182.xhp\n"
"par_id3148826\n"
-"129\n"
"help.text"
msgid "<emph>NPopulation </emph>is the size of the total population."
msgstr "<emph>N_population </emph> དེ་ མི་རློབས་བསྡོམས་ཀྱི་ཚད་ཨིན།"
@@ -41992,7 +39548,6 @@ msgstr "<emph>N_population </emph> དེ་ མི་རློབས་བས
msgctxt ""
"04060182.xhp\n"
"hd_id3150529\n"
-"130\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -42001,13 +39556,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060182.xhp\n"
"par_id3154904\n"
-"131\n"
"help.text"
msgid "<item type=\"input\">=HYPGEOMDIST(2;2;90;100)</item> yields 0.81. If 90 out of 100 pieces of buttered toast fall from the table and hit the floor with the buttered side first, then if 2 pieces of buttered toast are dropped from the table, the probability is 81%, that both will strike buttered side first."
msgstr "=HYPGEOMDIST(2; 2; 90; 100) གིས་ ཐོན་བསྐྱེད་ ༠་༨༡ འབྱུངམ་ཨིན། འབྲི་ཁྲི་གུ་ལས་ མར་དབུར་དབུར་བའི་བམ་རོ་ཊི་ ༡༠༠ ཡོད་ས་ལས་ ༩༠ འབུད་དེ་ དང་པ་རང་མར་དབུར་དབུར་བའི་ཕྱོགས་ལས་མར་ས་ཁར་ལུ་རེག་སྟེ་ འབྲི་ཁྲི་གུ་ལས་ མར་དབུར་དབུར་བའི་བམ་རོ་ཊི་གཉིས་ མར་བཀོ་བ་ཅིན་ འབྱུང་འགྱུར་དེ་ ༨༡% ཨིནམ་མ་ཚད་ བམ་རོ་ཊི་གཉིས་ཆ་རང་གིས་ དང་པ་རང་ མར་དབུར་དབུར་བའི་ཕྱོགས་ལུ་ཕོགཔ་ཨིན།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"bm_id2952801\n"
@@ -42016,21 +39569,17 @@ msgid "<bookmark_value>HYPGEOM.DIST function</bookmark_value> <bookmark_v
msgstr "<bookmark_value>HYPGEOMDIST ལས་འགན་</bookmark_value><bookmark_value>ཙབ་མ་བཙུགས་པར་དཔེ་ཚད་བཟོ་དོ་</bookmark_value>"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"hd_id2952801\n"
-"122\n"
"help.text"
msgid "HYPGEOM.DIST"
msgstr "HYPGEOMDIST"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2959341\n"
-"123\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_HYP_GEOM_DIST_MS\">Returns the hypergeometric distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\"> ཚད་བརྒལ་ཐིག་རྩིས་ཀྱི་བགོ་བཀྲམ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -42039,17 +39588,14 @@ msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\"> ཚད་བརྒལ་ཐིག
msgctxt ""
"04060182.xhp\n"
"hd_id2954697\n"
-"124\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2955388\n"
-"125\n"
"help.text"
msgid "HYPGEOM.DIST(X; NSample; Successes; NPopulation; Cumulative)"
msgstr "HYPGEOMDIST(X; N_sample; Successes; N_population)"
@@ -42058,7 +39604,6 @@ msgstr "HYPGEOMDIST(X; N_sample; Successes; N_population)"
msgctxt ""
"04060182.xhp\n"
"par_id2954933\n"
-"126\n"
"help.text"
msgid "<emph>X</emph> is the number of results achieved in the random sample."
msgstr "<emph> ཨེགསི་ </emph> དེ་ དཔེ་ཚད་གང་འབྱུང་ནང་ ཐོབ་ཡོད་པའི་གྲུབ་འབྲས་ཚུའི་གྱངས་ཁ་ཨིན།"
@@ -42067,17 +39612,14 @@ msgstr "<emph> ཨེགསི་ </emph> དེ་ དཔེ་ཚད་གང
msgctxt ""
"04060182.xhp\n"
"par_id2953106\n"
-"127\n"
"help.text"
msgid "<emph>NSample</emph> is the size of the random sample."
msgstr "<emph>N_sample</emph> དེ་ དཔེ་ཚད་གང་འབྱུང་གི་ཚད་ཨིན།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2946992\n"
-"128\n"
"help.text"
msgid "<emph>Successes</emph> is the number of possible results in the total population."
msgstr "<emph> མཐར་འཁྱོལ་ཚུ་ </emph> མི་རློབས་བསྡོམས་ནང་ འབྱུང་སྲིད་པའི་གྲུབ་འབྲས་ཚུའི་གྱངས་ཁ་ཨིན།"
@@ -42086,7 +39628,6 @@ msgstr "<emph> མཐར་འཁྱོལ་ཚུ་ </emph> མི་རླ
msgctxt ""
"04060182.xhp\n"
"par_id2948826\n"
-"129\n"
"help.text"
msgid "<emph>NPopulation </emph>is the size of the total population."
msgstr "<emph>N_population </emph> དེ་ མི་རློབས་བསྡོམས་ཀྱི་ཚད་ཨིན།"
@@ -42095,7 +39636,6 @@ msgstr "<emph>N_population </emph> དེ་ མི་རློབས་བས
msgctxt ""
"04060182.xhp\n"
"par_id2948827\n"
-"129\n"
"help.text"
msgid "<emph>Cumulative </emph>: 0 or False calculates the probability density function. Other values or True calculates the cumulative distribution function."
msgstr ""
@@ -42104,17 +39644,14 @@ msgstr ""
msgctxt ""
"04060182.xhp\n"
"hd_id2950529\n"
-"130\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2954904\n"
-"131\n"
"help.text"
msgid "<item type=\"input\">=HYPGEOM.DIST(2;2;90;100;0)</item> yields 0.8090909091. If 90 out of 100 pieces of buttered toast fall from the table and hit the floor with the buttered side first, then if 2 pieces of buttered toast are dropped from the table, the probability is 81%, that both will strike buttered side first."
msgstr "=HYPGEOMDIST(2; 2; 90; 100) གིས་ ཐོན་བསྐྱེད་ ༠་༨༡ འབྱུངམ་ཨིན། འབྲི་ཁྲི་གུ་ལས་ མར་དབུར་དབུར་བའི་བམ་རོ་ཊི་ ༡༠༠ ཡོད་ས་ལས་ ༩༠ འབུད་དེ་ དང་པ་རང་མར་དབུར་དབུར་བའི་ཕྱོགས་ལས་མར་ས་ཁར་ལུ་རེག་སྟེ་ འབྲི་ཁྲི་གུ་ལས་ མར་དབུར་དབུར་བའི་བམ་རོ་ཊི་གཉིས་ མར་བཀོ་བ་ཅིན་ འབྱུང་འགྱུར་དེ་ ༨༡% ཨིནམ་མ་ཚད་ བམ་རོ་ཊི་གཉིས་ཆ་རང་གིས་ དང་པ་རང་ མར་དབུར་དབུར་བའི་ཕྱོགས་ལུ་ཕོགཔ་ཨིན།"
@@ -42123,7 +39660,6 @@ msgstr "=HYPGEOMDIST(2; 2; 90; 100) གིས་ ཐོན་བསྐྱེད
msgctxt ""
"04060182.xhp\n"
"par_id2954905\n"
-"131\n"
"help.text"
msgid "<item type=\"input\">=HYPGEOM.DIST(2;2;90;100;1)</item> yields 1."
msgstr ""
@@ -42140,7 +39676,6 @@ msgstr "གྲངས་ཀྱི་ལས་འགན་ཚུའི་ ཡན
msgctxt ""
"04060183.xhp\n"
"hd_id3166425\n"
-"1\n"
"help.text"
msgid "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\">Statistical Functions Part Three</link></variable>"
msgstr "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\"> གྲངས་ཀྱི་ལས་འགན་ཚུའི་ ཡན་ལག་གསུམ་པ། </link></variable>"
@@ -42157,7 +39692,6 @@ msgstr "<bookmark_value>LARGE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id3149530\n"
-"2\n"
"help.text"
msgid "LARGE"
msgstr "LARGE"
@@ -42166,7 +39700,6 @@ msgstr "LARGE"
msgctxt ""
"04060183.xhp\n"
"par_id3150518\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KGROESSTE\">Returns the Rank_c-th largest value in a data set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KGROESSTE\"> གནད་སྡུད་ཆ་ཚན་ནང་ལུ་ གནས་གོང་སྦོམ་ཤོས་ Rank_c-th སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -42175,7 +39708,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KGROESSTE\"> གནད་སྡུད་ཆ་ཚ
msgctxt ""
"04060183.xhp\n"
"hd_id3152990\n"
-"4\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -42184,7 +39716,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060183.xhp\n"
"par_id3154372\n"
-"5\n"
"help.text"
msgid "LARGE(Data; RankC)"
msgstr "LARGE(Data; Rank_c)"
@@ -42193,7 +39724,6 @@ msgstr "LARGE(Data; Rank_c)"
msgctxt ""
"04060183.xhp\n"
"par_id3152986\n"
-"6\n"
"help.text"
msgid "<emph>Data</emph> is the cell range of data."
msgstr "<emph> གནད་སྡུད་ </emph> འདི་གནད་སྡུད་ཀྱི་ནང་ཐིག་ཁྱབ་ཚད་ཨིན།"
@@ -42202,7 +39732,6 @@ msgstr "<emph> གནད་སྡུད་ </emph> འདི་གནད་ས
msgctxt ""
"04060183.xhp\n"
"par_id3156448\n"
-"7\n"
"help.text"
msgid "<emph>RankC</emph> is the ranking of the value."
msgstr "<emph>Rank_c</emph> དེ་ གནས་གོང་གི་ གོ་རིམ་བསྒྲིག་ནི་ཨིན།"
@@ -42211,7 +39740,6 @@ msgstr "<emph>Rank_c</emph> དེ་ གནས་གོང་གི་ གོ
msgctxt ""
"04060183.xhp\n"
"hd_id3152889\n"
-"8\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -42220,7 +39748,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060183.xhp\n"
"par_id3148702\n"
-"9\n"
"help.text"
msgid "<item type=\"input\">=LARGE(A1:C50;2)</item> gives the second largest value in A1:C50."
msgstr ""
@@ -42237,7 +39764,6 @@ msgstr "<bookmark_value>SMALL ལས་འགན།</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id3154532\n"
-"11\n"
"help.text"
msgid "SMALL"
msgstr "SMALL"
@@ -42246,7 +39772,6 @@ msgstr "SMALL"
msgctxt ""
"04060183.xhp\n"
"par_id3157981\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KKLEINSTE\">Returns the Rank_c-th smallest value in a data set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KKLEINSTE\"> གནད་སྡུད་ཆ་ཚན་ནང་ལུ་ Rank_c-th གནས་གོང་ཆུང་ཤོས་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -42255,7 +39780,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KKLEINSTE\"> གནད་སྡུད་ཆ་ཚ
msgctxt ""
"04060183.xhp\n"
"hd_id3154957\n"
-"13\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -42264,7 +39788,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060183.xhp\n"
"par_id3153974\n"
-"14\n"
"help.text"
msgid "SMALL(Data; RankC)"
msgstr "SMALL(Data; Rank_c)"
@@ -42273,7 +39796,6 @@ msgstr "SMALL(Data; Rank_c)"
msgctxt ""
"04060183.xhp\n"
"par_id3154540\n"
-"15\n"
"help.text"
msgid "<emph>Data</emph> is the cell range of data."
msgstr "<emph> གནད་སྡུད་ </emph> འདི་གནད་སྡུད་ཀྱི་ནང་ཐིག་ཁྱབ་ཚད་ཨིན།"
@@ -42282,7 +39804,6 @@ msgstr "<emph> གནད་སྡུད་ </emph> འདི་གནད་ས
msgctxt ""
"04060183.xhp\n"
"par_id3155094\n"
-"16\n"
"help.text"
msgid "<emph>RankC</emph> is the rank of the value."
msgstr "<emph>Rank_c</emph> དེ་གནས་གོང་གི་ གོ་གནས་ཨིན།"
@@ -42291,7 +39812,6 @@ msgstr "<emph>Rank_c</emph> དེ་གནས་གོང་གི་ གོ་
msgctxt ""
"04060183.xhp\n"
"hd_id3153247\n"
-"17\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -42300,7 +39820,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060183.xhp\n"
"par_id3149897\n"
-"18\n"
"help.text"
msgid "<item type=\"input\">=SMALL(A1:C50;2)</item> gives the second smallest value in A1:C50."
msgstr ""
@@ -42317,7 +39836,6 @@ msgstr "<bookmark_value>CONFIDENCE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id3153559\n"
-"20\n"
"help.text"
msgid "CONFIDENCE"
msgstr "CONFIDENCE"
@@ -42326,7 +39844,6 @@ msgstr "CONFIDENCE"
msgctxt ""
"04060183.xhp\n"
"par_id3153814\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Returns the (1-alpha) confidence interval for a normal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\"> སྤྱིར་བཏང་བགོ་བཀྲམ་དོན་ལུ་ (༡-ཨཱལ་ཕ་) བློ་གཏད་བར་མཚམས་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -42335,7 +39852,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\"> སྤྱིར་བཏང་བག
msgctxt ""
"04060183.xhp\n"
"hd_id3149315\n"
-"22\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -42344,7 +39860,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060183.xhp\n"
"par_id3147501\n"
-"23\n"
"help.text"
msgid "CONFIDENCE(Alpha; StDev; Size)"
msgstr "CONFIDENCE(ཨཱལ་ཕ། ཨེསི་ཊི་ཌི་ཨི་ཝི། ཚད།)"
@@ -42353,7 +39868,6 @@ msgstr "CONFIDENCE(ཨཱལ་ཕ། ཨེསི་ཊི་ཌི་ཨི་
msgctxt ""
"04060183.xhp\n"
"par_id3149872\n"
-"24\n"
"help.text"
msgid "<emph>Alpha</emph> is the level of the confidence interval."
msgstr "<emph> ཨཱལ་ཕ་ </emph> དེ་ is the level of the confidence interval."
@@ -42362,7 +39876,6 @@ msgstr "<emph> ཨཱལ་ཕ་ </emph> དེ་ is the level of the confiden
msgctxt ""
"04060183.xhp\n"
"par_id3145324\n"
-"25\n"
"help.text"
msgid "<emph>StDev</emph> is the standard deviation for the total population."
msgstr "<emph> ཨེསི་ཊི་ཌི་ཨི་ཝི་ </emph> དེ་ མི་རློབས་བསྡོམས་ལུ་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་ཨིན།"
@@ -42371,7 +39884,6 @@ msgstr "<emph> ཨེསི་ཊི་ཌི་ཨི་ཝི་ </emph> ད
msgctxt ""
"04060183.xhp\n"
"par_id3153075\n"
-"26\n"
"help.text"
msgid "<emph>Size</emph> is the size of the total population."
msgstr "<emph> ཚད་དེ་ </emph> མི་རློབས་བསྡོམས་ཀྱི་ཚད་ཨིན།"
@@ -42380,7 +39892,6 @@ msgstr "<emph> ཚད་དེ་ </emph> མི་རློབས་བསྡ
msgctxt ""
"04060183.xhp\n"
"hd_id3150435\n"
-"27\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -42389,13 +39900,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060183.xhp\n"
"par_id3153335\n"
-"28\n"
"help.text"
msgid "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> gives 0.29."
msgstr ""
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"bm_id2953559\n"
@@ -42404,21 +39913,17 @@ msgid "<bookmark_value>CONFIDENCE.T function</bookmark_value>"
msgstr "<bookmark_value>CONFIDENCE ལས་འགན།</bookmark_value>"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"hd_id2953559\n"
-"20\n"
"help.text"
msgid "CONFIDENCE.T"
msgstr "CONFIDENCE"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2953814\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_CONFIDENCE_T\">Returns the (1-alpha) confidence interval for a Student's t distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\"> སྤྱིར་བཏང་བགོ་བཀྲམ་དོན་ལུ་ (༡-ཨཱལ་ཕ་) བློ་གཏད་བར་མཚམས་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -42427,17 +39932,14 @@ msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\"> སྤྱིར་བཏང་བག
msgctxt ""
"04060183.xhp\n"
"hd_id2949315\n"
-"22\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2947501\n"
-"23\n"
"help.text"
msgid "CONFIDENCE.T(Alpha; StDev; Size)"
msgstr "CONFIDENCE(ཨཱལ་ཕ། ཨེསི་ཊི་ཌི་ཨི་ཝི། ཚད།)"
@@ -42446,7 +39948,6 @@ msgstr "CONFIDENCE(ཨཱལ་ཕ། ཨེསི་ཊི་ཌི་ཨི་
msgctxt ""
"04060183.xhp\n"
"par_id2949872\n"
-"24\n"
"help.text"
msgid "<emph>Alpha</emph> is the level of the confidence interval."
msgstr "<emph> ཨཱལ་ཕ་ </emph> དེ་ is the level of the confidence interval."
@@ -42455,7 +39956,6 @@ msgstr "<emph> ཨཱལ་ཕ་ </emph> དེ་ is the level of the confiden
msgctxt ""
"04060183.xhp\n"
"par_id2945324\n"
-"25\n"
"help.text"
msgid "<emph>StDev</emph> is the standard deviation for the total population."
msgstr "<emph> ཨེསི་ཊི་ཌི་ཨི་ཝི་ </emph> དེ་ མི་རློབས་བསྡོམས་ལུ་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་ཨིན།"
@@ -42464,7 +39964,6 @@ msgstr "<emph> ཨེསི་ཊི་ཌི་ཨི་ཝི་ </emph> ད
msgctxt ""
"04060183.xhp\n"
"par_id2953075\n"
-"26\n"
"help.text"
msgid "<emph>Size</emph> is the size of the total population."
msgstr "<emph> ཚད་དེ་ </emph> མི་རློབས་བསྡོམས་ཀྱི་ཚད་ཨིན།"
@@ -42473,7 +39972,6 @@ msgstr "<emph> ཚད་དེ་ </emph> མི་རློབས་བསྡ
msgctxt ""
"04060183.xhp\n"
"hd_id2950435\n"
-"27\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -42482,13 +39980,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060183.xhp\n"
"par_id2953335\n"
-"28\n"
"help.text"
msgid "<item type=\"input\">=CONFIDENCE.T(0.05;1.5;100)</item> gives 0.2976325427."
msgstr ""
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"bm_id2853559\n"
@@ -42500,17 +39996,14 @@ msgstr "<bookmark_value>CONFIDENCE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id2853559\n"
-"20\n"
"help.text"
msgid "CONFIDENCE.NORM"
msgstr ""
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2853814\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_CONFIDENCE_N\">Returns the (1-alpha) confidence interval for a normal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\"> སྤྱིར་བཏང་བགོ་བཀྲམ་དོན་ལུ་ (༡-ཨཱལ་ཕ་) བློ་གཏད་བར་མཚམས་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -42519,17 +40012,14 @@ msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\"> སྤྱིར་བཏང་བག
msgctxt ""
"04060183.xhp\n"
"hd_id2849315\n"
-"22\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2847501\n"
-"23\n"
"help.text"
msgid "CONFIDENCE.NORM(Alpha; StDev; Size)"
msgstr "CONFIDENCE(ཨཱལ་ཕ། ཨེསི་ཊི་ཌི་ཨི་ཝི། ཚད།)"
@@ -42538,7 +40028,6 @@ msgstr "CONFIDENCE(ཨཱལ་ཕ། ཨེསི་ཊི་ཌི་ཨི་
msgctxt ""
"04060183.xhp\n"
"par_id2849872\n"
-"24\n"
"help.text"
msgid "<emph>Alpha</emph> is the level of the confidence interval."
msgstr "<emph> ཨཱལ་ཕ་ </emph> དེ་ is the level of the confidence interval."
@@ -42547,7 +40036,6 @@ msgstr "<emph> ཨཱལ་ཕ་ </emph> དེ་ is the level of the confiden
msgctxt ""
"04060183.xhp\n"
"par_id2845324\n"
-"25\n"
"help.text"
msgid "<emph>StDev</emph> is the standard deviation for the total population."
msgstr "<emph> ཨེསི་ཊི་ཌི་ཨི་ཝི་ </emph> དེ་ མི་རློབས་བསྡོམས་ལུ་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་ཨིན།"
@@ -42556,7 +40044,6 @@ msgstr "<emph> ཨེསི་ཊི་ཌི་ཨི་ཝི་ </emph> ད
msgctxt ""
"04060183.xhp\n"
"par_id2853075\n"
-"26\n"
"help.text"
msgid "<emph>Size</emph> is the size of the total population."
msgstr "<emph> ཚད་དེ་ </emph> མི་རློབས་བསྡོམས་ཀྱི་ཚད་ཨིན།"
@@ -42565,7 +40052,6 @@ msgstr "<emph> ཚད་དེ་ </emph> མི་རློབས་བསྡ
msgctxt ""
"04060183.xhp\n"
"hd_id2850435\n"
-"27\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -42574,7 +40060,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060183.xhp\n"
"par_id2853335\n"
-"28\n"
"help.text"
msgid "<item type=\"input\">=CONFIDENCE.NORM(0.05;1.5;100)</item> gives 0.2939945977."
msgstr ""
@@ -42591,7 +40076,6 @@ msgstr "<bookmark_value>CORREL ལས་འགན་</bookmark_value><bookmark_v
msgctxt ""
"04060183.xhp\n"
"hd_id3148746\n"
-"30\n"
"help.text"
msgid "CORREL"
msgstr "CORREL"
@@ -42600,7 +40084,6 @@ msgstr "CORREL"
msgctxt ""
"04060183.xhp\n"
"par_id3147299\n"
-"31\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KORREL\">Returns the correlation coefficient between two data sets.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KORREL\"> གནད་སྡུད་ཆ་ཚན་གཉིས་ཀྱི་བར་ན་མཐུན་མོས་ཀྱི་འབྲེལ་བའི་གྲངས་རྟགས་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -42609,7 +40092,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KORREL\"> གནད་སྡུད་ཆ་ཚན
msgctxt ""
"04060183.xhp\n"
"hd_id3156397\n"
-"32\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -42618,7 +40100,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060183.xhp\n"
"par_id3153023\n"
-"33\n"
"help.text"
msgid "CORREL(Data1; Data2)"
msgstr "CORREL(Data_1; Data_2)"
@@ -42627,7 +40108,6 @@ msgstr "CORREL(Data_1; Data_2)"
msgctxt ""
"04060183.xhp\n"
"par_id3150036\n"
-"34\n"
"help.text"
msgid "<emph>Data1</emph> is the first data set."
msgstr "<emph>Data_1</emph> འདི་ གནད་སྡུད་ཆ་ཚང་དང་པམ་ཨིན། is the first data set."
@@ -42636,7 +40116,6 @@ msgstr "<emph>Data_1</emph> འདི་ གནད་སྡུད་ཆ་ཚང
msgctxt ""
"04060183.xhp\n"
"par_id3153021\n"
-"35\n"
"help.text"
msgid "<emph>Data2</emph> is the second data set."
msgstr "<emph>Data_2</emph> འདི་གནད་སྡུད་ཆ་ཚང་གཉིས་པམ་ཨིན།"
@@ -42645,7 +40124,6 @@ msgstr "<emph>Data_2</emph> འདི་གནད་སྡུད་ཆ་ཚང
msgctxt ""
"04060183.xhp\n"
"hd_id3149720\n"
-"36\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -42654,7 +40132,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060183.xhp\n"
"par_id3149941\n"
-"37\n"
"help.text"
msgid "<item type=\"input\">=CORREL(A1:A50;B1:B50)</item> calculates the correlation coefficient as a measure of the linear correlation of the two data sets."
msgstr "=CORREL(A1:A50; B1:B50) གིས་ གནད་སྡུད་ཆ་ཚན་གཉིས་ཀྱི་ ཐིག་གི་མཐུན་མོས་འབྲེལ་བའི་ཚད་འཇལ་སྦེ་ མཐུན་མོས་ཀྱི་འབྲེལ་བའི་གྲངས་རྟགས་རྩིས་སྟོནམ་ཨིན།"
@@ -42671,7 +40148,6 @@ msgstr "<bookmark_value>COVAR ལས་འགན།</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id3150652\n"
-"39\n"
"help.text"
msgid "COVAR"
msgstr "COVAR"
@@ -42680,7 +40156,6 @@ msgstr "COVAR"
msgctxt ""
"04060183.xhp\n"
"par_id3146875\n"
-"40\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KOVAR\">Returns the covariance of the product of paired deviations.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KOVAR\"> གཉིས་མཐུད་ཡོད་པའི་ཁ་བསྒྱུར་བ་ཚུའི་ཐོན་སྐྱེད་ཀྱི་ ཁྱད་པར་གྱི་ཚིག་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -42689,7 +40164,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KOVAR\"> གཉིས་མཐུད་ཡོད
msgctxt ""
"04060183.xhp\n"
"hd_id3149013\n"
-"41\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -42698,7 +40172,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060183.xhp\n"
"par_id3150740\n"
-"42\n"
"help.text"
msgid "COVAR(Data1; Data2)"
msgstr "COVAR(Data_1; Data_2)"
@@ -42707,7 +40180,6 @@ msgstr "COVAR(Data_1; Data_2)"
msgctxt ""
"04060183.xhp\n"
"par_id3145827\n"
-"43\n"
"help.text"
msgid "<emph>Data1</emph> is the first data set."
msgstr "<emph>Data_1</emph> འདི་ གནད་སྡུད་ཆ་ཚང་དང་པམ་ཨིན། is the first data set."
@@ -42716,7 +40188,6 @@ msgstr "<emph>Data_1</emph> འདི་ གནད་སྡུད་ཆ་ཚང
msgctxt ""
"04060183.xhp\n"
"par_id3150465\n"
-"44\n"
"help.text"
msgid "<emph>Data2</emph> is the second data set."
msgstr "<emph>Data_2</emph> འདི་གནད་སྡུད་ཆ་ཚང་གཉིས་པམ་ཨིན།"
@@ -42725,7 +40196,6 @@ msgstr "<emph>Data_2</emph> འདི་གནད་སྡུད་ཆ་ཚང
msgctxt ""
"04060183.xhp\n"
"hd_id3154677\n"
-"45\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -42734,13 +40204,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060183.xhp\n"
"par_id3144748\n"
-"46\n"
"help.text"
msgid "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
msgstr ""
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"bm_id2950652\n"
@@ -42752,7 +40220,6 @@ msgstr "<bookmark_value>COVAR ལས་འགན།</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id2950652\n"
-"39\n"
"help.text"
msgid "COVARIANCE.P"
msgstr ""
@@ -42761,7 +40228,6 @@ msgstr ""
msgctxt ""
"04060183.xhp\n"
"par_id2946875\n"
-"40\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_COVARIANCE_P\">Returns the covariance of the product of paired deviations, for the entire population.</ahelp>"
msgstr ""
@@ -42770,7 +40236,6 @@ msgstr ""
msgctxt ""
"04060183.xhp\n"
"hd_id2949013\n"
-"41\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -42779,7 +40244,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060183.xhp\n"
"par_id2950740\n"
-"42\n"
"help.text"
msgid "COVARIANCE.P(Data1; Data2)"
msgstr ""
@@ -42788,7 +40252,6 @@ msgstr ""
msgctxt ""
"04060183.xhp\n"
"par_id2945827\n"
-"43\n"
"help.text"
msgid "<emph>Data1</emph> is the first data set."
msgstr "<emph>Data_1</emph> འདི་ གནད་སྡུད་ཆ་ཚང་དང་པམ་ཨིན། is the first data set."
@@ -42797,7 +40260,6 @@ msgstr "<emph>Data_1</emph> འདི་ གནད་སྡུད་ཆ་ཚང
msgctxt ""
"04060183.xhp\n"
"par_id2950465\n"
-"44\n"
"help.text"
msgid "<emph>Data2</emph> is the second data set."
msgstr "<emph>Data_2</emph> འདི་གནད་སྡུད་ཆ་ཚང་གཉིས་པམ་ཨིན།"
@@ -42806,7 +40268,6 @@ msgstr "<emph>Data_2</emph> འདི་གནད་སྡུད་ཆ་ཚང
msgctxt ""
"04060183.xhp\n"
"hd_id2954677\n"
-"45\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -42815,13 +40276,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060183.xhp\n"
"par_id2944748\n"
-"46\n"
"help.text"
msgid "<item type=\"input\">=COVARIANCE.P(A1:A30;B1:B30)</item>"
msgstr ""
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"bm_id280652\n"
@@ -42833,7 +40292,6 @@ msgstr "<bookmark_value>COVAR ལས་འགན།</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id2850652\n"
-"39\n"
"help.text"
msgid "COVARIANCE.S"
msgstr ""
@@ -42842,7 +40300,6 @@ msgstr ""
msgctxt ""
"04060183.xhp\n"
"par_id2846875\n"
-"40\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_COVARIANCE_S\">Returns the covariance of the product of paired deviations, for a sample of the population.</ahelp>"
msgstr ""
@@ -42851,7 +40308,6 @@ msgstr ""
msgctxt ""
"04060183.xhp\n"
"hd_id2849013\n"
-"41\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -42860,7 +40316,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060183.xhp\n"
"par_id2850740\n"
-"42\n"
"help.text"
msgid "COVARIANCE.S(Data1; Data2)"
msgstr ""
@@ -42869,7 +40324,6 @@ msgstr ""
msgctxt ""
"04060183.xhp\n"
"par_id2845827\n"
-"43\n"
"help.text"
msgid "<emph>Data1</emph> is the first data set."
msgstr "<emph>Data_1</emph> འདི་ གནད་སྡུད་ཆ་ཚང་དང་པམ་ཨིན། is the first data set."
@@ -42878,7 +40332,6 @@ msgstr "<emph>Data_1</emph> འདི་ གནད་སྡུད་ཆ་ཚང
msgctxt ""
"04060183.xhp\n"
"par_id2850465\n"
-"44\n"
"help.text"
msgid "<emph>Data2</emph> is the second data set."
msgstr "<emph>Data_2</emph> འདི་གནད་སྡུད་ཆ་ཚང་གཉིས་པམ་ཨིན།"
@@ -42887,7 +40340,6 @@ msgstr "<emph>Data_2</emph> འདི་གནད་སྡུད་ཆ་ཚང
msgctxt ""
"04060183.xhp\n"
"hd_id284677\n"
-"45\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -42896,7 +40348,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060183.xhp\n"
"par_id2844748\n"
-"46\n"
"help.text"
msgid "<item type=\"input\">=COVARIANCE.S(A1:A30;B1:B30)</item>"
msgstr ""
@@ -42913,7 +40364,6 @@ msgstr "<bookmark_value>CRITBINOM ལས་འགན།</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id3147472\n"
-"48\n"
"help.text"
msgid "CRITBINOM"
msgstr "CRITBINOM"
@@ -42922,7 +40372,6 @@ msgstr "CRITBINOM"
msgctxt ""
"04060183.xhp\n"
"par_id3149254\n"
-"49\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KRITBINOM\">Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value.</ahelp>"
msgstr ""
@@ -42931,7 +40380,6 @@ msgstr ""
msgctxt ""
"04060183.xhp\n"
"hd_id3153930\n"
-"50\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -42940,7 +40388,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060183.xhp\n"
"par_id3148586\n"
-"51\n"
"help.text"
msgid "CRITBINOM(Trials; SP; Alpha)"
msgstr "CRITBINOM(སྔོན་རྟགས་ཚུ། ཨེསི་པི། ཨཱལ་ཕ།)"
@@ -42949,7 +40396,6 @@ msgstr "CRITBINOM(སྔོན་རྟགས་ཚུ། ཨེསི་པི
msgctxt ""
"04060183.xhp\n"
"par_id3145593\n"
-"52\n"
"help.text"
msgid "<emph>Trials</emph> is the total number of trials."
msgstr "<emph> སྔོན་བརྟག་ </emph> འདི་སྔོན་རྟགས་ཚུའི་གྱངས་ཁ་བསྡོམས་ཨིན།"
@@ -42958,7 +40404,6 @@ msgstr "<emph> སྔོན་བརྟག་ </emph> འདི་སྔོན
msgctxt ""
"04060183.xhp\n"
"par_id3153084\n"
-"53\n"
"help.text"
msgid "<emph>SP</emph> is the probability of success for one trial."
msgstr "<emph> ཨེསི་པི་ </emph> དེ་ དོ་འགྲན་གཅིག་དོན་ལུ་ མཐར་འཁྱོལ་གྱི་འབྱུང་ངེས་ཨིན།"
@@ -42967,7 +40412,6 @@ msgstr "<emph> ཨེསི་པི་ </emph> དེ་ དོ་འགྲན
msgctxt ""
"04060183.xhp\n"
"par_id3149726\n"
-"54\n"
"help.text"
msgid "<emph>Alpha</emph> is the threshold probability to be reached or exceeded."
msgstr "<emph> ཨཱལ་ཕ་དེ་ </emph> ལྷོད་ནིའམ་ལྷག་ནི་ཨིན་པའི་འབྱུང་འགྱུར་འབྱུང་དུས་ཨིན།"
@@ -42976,7 +40420,6 @@ msgstr "<emph> ཨཱལ་ཕ་དེ་ </emph> ལྷོད་ནིའམ
msgctxt ""
"04060183.xhp\n"
"hd_id3148752\n"
-"55\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -42985,7 +40428,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060183.xhp\n"
"par_id3148740\n"
-"56\n"
"help.text"
msgid "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> yields 44."
msgstr ""
@@ -43002,7 +40444,6 @@ msgstr "<bookmark_value>KURT ལས་འགན།</bookmark_value>"
msgctxt ""
"04060183.xhp\n"
"hd_id3155956\n"
-"58\n"
"help.text"
msgid "KURT"
msgstr "KURT"
@@ -43011,7 +40452,6 @@ msgstr "KURT"
msgctxt ""
"04060183.xhp\n"
"par_id3153108\n"
-"59\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KURT\">Returns the kurtosis of a data set (at least 4 values required).</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KURT\"> གནད་སྡུད་ཆ་ཚན་གྱི་ ཀུར་ཊོ་སིསི་སླར་ལོག་འབདཝ་ཨིན། (ཉུང་མཐའ་རང་ གནས་གོང་ ༤ དགོས་མཁོ་ཡོདཔ) ། </ahelp>"
@@ -43020,7 +40460,6 @@ msgstr "<ahelp hid=\"HID_FUNC_KURT\"> གནད་སྡུད་ཆ་ཚན་
msgctxt ""
"04060183.xhp\n"
"hd_id3150334\n"
-"60\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -43029,7 +40468,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060183.xhp\n"
"par_id3154508\n"
-"61\n"
"help.text"
msgid "KURT(Number1; Number2; ...Number30)"
msgstr "KURT(ཨང་ ༡; ཨང་ ༢ ; ...ཨང་ ༣༠)"
@@ -43038,7 +40476,6 @@ msgstr "KURT(ཨང་ ༡; ཨང་ ༢ ; ...ཨང་ ༣༠)"
msgctxt ""
"04060183.xhp\n"
"par_id3145167\n"
-"62\n"
"help.text"
msgid "<emph>Number1,Number2,...Number30</emph> are numeric arguments or ranges representing a random sample of distribution."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢,... ཨང་གྲངས་ ༣༠ </emph> ཚུ་ བགོ་བཀྲམ་གྱི་གང་འབྱུང་དཔེ་ཚད་ཁྱད་ཚབ་འབད་བའི་ཁྱབ་ཚད་ཚུའམ་ཨང་གྲངས་ཀྱི་སྒྲུབ་རྟགས་ཚུ་ཨིན།"
@@ -43047,7 +40484,6 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢,... ཨ
msgctxt ""
"04060183.xhp\n"
"hd_id3158000\n"
-"63\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -43056,7 +40492,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060183.xhp\n"
"par_id3150016\n"
-"64\n"
"help.text"
msgid "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
msgstr ""
@@ -43073,7 +40508,6 @@ msgstr "<bookmark_value>LOGINV ལས་འགན་</bookmark_value><bookmark_v
msgctxt ""
"04060183.xhp\n"
"hd_id3150928\n"
-"66\n"
"help.text"
msgid "LOGINV"
msgstr "LOGINV"
@@ -43082,7 +40516,6 @@ msgstr "LOGINV"
msgctxt ""
"04060183.xhp\n"
"par_id3145297\n"
-"67\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LOGINV\">Returns the inverse of the lognormal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LOGINV\"> ལཱོག་ནོར་མཱལ་བགོ་བཀྲམ་གྱི་ལུག་ལྡོག་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -43091,7 +40524,6 @@ msgstr "<ahelp hid=\"HID_FUNC_LOGINV\"> ལཱོག་ནོར་མཱལ་
msgctxt ""
"04060183.xhp\n"
"hd_id3151016\n"
-"68\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -43100,7 +40532,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060183.xhp\n"
"par_id3153049\n"
-"69\n"
"help.text"
msgid "LOGINV(Number; Mean; StDev)"
msgstr "LOGINV(ཨང་གྲངས། མཱིན། ཨེསི་ཊི་ཌི་ཨི་ཝི།)"
@@ -43109,7 +40540,6 @@ msgstr "LOGINV(ཨང་གྲངས། མཱིན། ཨེསི་ཊི་
msgctxt ""
"04060183.xhp\n"
"par_id3148390\n"
-"70\n"
"help.text"
msgid "<emph>Number</emph> is the probability value for which the inverse standard logarithmic distribution is to be calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཚད་ལྡན་ལུག་ལྡོག་མཉམ་གྲངས་བགོ་བཀྲམ་དེ་རྩིས་བརྐྱབ་ནི་ཨིན་པའི་ འབྱུང་འགྱུར་གནས་གོང་ཨིན།"
@@ -43118,7 +40548,6 @@ msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཚད་ལྡན་
msgctxt ""
"04060183.xhp\n"
"par_id3149538\n"
-"71\n"
"help.text"
msgid "<emph>Mean</emph> is the arithmetic mean of the standard logarithmic distribution."
msgstr "<emph> མཱིན་ </emph> དེ་ ཚད་ལྡན་མཉམ་གྲངས་བགོ་བཀྲམ་འབད་ནི་གི་ ཨང་རྩིས་མཱིན་ཨིན།"
@@ -43127,7 +40556,6 @@ msgstr "<emph> མཱིན་ </emph> དེ་ ཚད་ལྡན་མཉམ
msgctxt ""
"04060183.xhp\n"
"par_id3145355\n"
-"72\n"
"help.text"
msgid "<emph>StDev</emph> is the standard deviation of the standard logarithmic distribution."
msgstr "<emph> ཨེསི་ཊི་ཌི་ཨི་ཝི་ </emph> དེ་ ཚད་ལྡན་མཉམ་གྲངས་བགོ་བཀྲམ་འབད་ནི་གི་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་ཨིན།"
@@ -43136,7 +40564,6 @@ msgstr "<emph> ཨེསི་ཊི་ཌི་ཨི་ཝི་ </emph> ད
msgctxt ""
"04060183.xhp\n"
"hd_id3148768\n"
-"73\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -43145,13 +40572,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060183.xhp\n"
"par_id3155623\n"
-"74\n"
"help.text"
msgid "<item type=\"input\">=LOGINV(0.05;0;1)</item> returns 0.1930408167."
msgstr ""
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"bm_id2901928\n"
@@ -43160,21 +40585,17 @@ msgid "<bookmark_value>LOGNORM.INV function</bookmark_value><bookmark_value>inve
msgstr "<bookmark_value>LOGINV ལས་འགན་</bookmark_value><bookmark_value>ལོག་སྤྱིར་བཏང་བགོ་བཀྲམ་གྱི་ལུགས་ལྡོག་</bookmark_value>"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"hd_id2901928\n"
-"66\n"
"help.text"
msgid "LOGNORM.INV"
msgstr "LOGNORMDIST"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2901297\n"
-"67\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LOGINV_MS\">Returns the inverse of the lognormal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LOGINV\"> ལཱོག་ནོར་མཱལ་བགོ་བཀྲམ་གྱི་ལུག་ལྡོག་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -43191,47 +40612,38 @@ msgstr ""
msgctxt ""
"04060183.xhp\n"
"hd_id2901016\n"
-"68\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2901049\n"
-"69\n"
"help.text"
msgid "LOGNORM.INV(Number; Mean; StDev)"
msgstr "NORMINV(ཨང་གྲངས། མཱིན། ཨེསི་ཊི་ཌི་ཨི་ཝི།)"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2901390\n"
-"70\n"
"help.text"
msgid "<emph>Number</emph> (required) is the probability value for which the inverse standard logarithmic distribution is to be calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཚད་ལྡན་ལུག་ལྡོག་མཉམ་གྲངས་བགོ་བཀྲམ་དེ་རྩིས་བརྐྱབ་ནི་ཨིན་པའི་ འབྱུང་འགྱུར་གནས་གོང་ཨིན།"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2901538\n"
-"71\n"
"help.text"
msgid "<emph>Mean</emph> (required) is the arithmetic mean of the standard logarithmic distribution."
msgstr "<emph> མཱིན་ </emph> དེ་ ཚད་ལྡན་མཉམ་གྲངས་བགོ་བཀྲམ་འབད་ནི་གི་ ཨང་རྩིས་མཱིན་ཨིན།"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2901355\n"
-"72\n"
"help.text"
msgid "<emph>StDev</emph> (required) is the standard deviation of the standard logarithmic distribution."
msgstr "<emph> ཨེསི་ཊི་ཌི་ཨི་ཝི་ </emph> དེ་ ཚད་ལྡན་མཉམ་གྲངས་བགོ་བཀྲམ་འབད་ནི་གི་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་ཨིན།"
@@ -43240,7 +40652,6 @@ msgstr "<emph> ཨེསི་ཊི་ཌི་ཨི་ཝི་ </emph> ད
msgctxt ""
"04060183.xhp\n"
"hd_id2901768\n"
-"73\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -43249,13 +40660,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060183.xhp\n"
"par_id2901623\n"
-"74\n"
"help.text"
msgid "<item type=\"input\">=LOGNORM.INV(0.05;0;1)</item> returns 0.1930408167."
msgstr ""
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"bm_id3158417\n"
@@ -43267,17 +40676,14 @@ msgstr "<bookmark_value>NEGBINOMDIST ལས་འགན་</bookmark_value><book
msgctxt ""
"04060183.xhp\n"
"hd_id3158417\n"
-"76\n"
"help.text"
msgid "LOGNORMDIST"
msgstr "LOGNORMDIST"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id3154953\n"
-"77\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Returns the values of a lognormal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\"> གམ་མ་བགོ་བཀྲམ་གྱི་ གནས་གོང་ཚུ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -43286,7 +40692,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\"> གམ་མ་བགོ་བཀྲ
msgctxt ""
"04060183.xhp\n"
"hd_id3150474\n"
-"78\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -43295,7 +40700,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060183.xhp\n"
"par_id3150686\n"
-"79\n"
"help.text"
msgid "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
msgstr ""
@@ -43304,7 +40708,6 @@ msgstr ""
msgctxt ""
"04060183.xhp\n"
"par_id3154871\n"
-"80\n"
"help.text"
msgid "<emph>Number</emph> is the probability value for which the standard logarithmic distribution is to be calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཚད་ལྡན་མཉམ་གྲངས་བགོ་བཀྲམ་རྩིས་བརྐྱབ་ནི་ཨིན་པའི་ འབྱུང་འགྱུར་གནས་གོང་ཨིན།"
@@ -43313,7 +40716,6 @@ msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཚད་ལྡན་
msgctxt ""
"04060183.xhp\n"
"par_id3155820\n"
-"81\n"
"help.text"
msgid "<emph>Mean</emph> (optional) is the mean value of the standard logarithmic distribution."
msgstr "<emph> མཱིན་དེ་ </emph> མཉམ་གྲངས་བགོ་བཀྲམ་ཚད་ལྡན་གྱི་ མཱིན་གནས་གོང་ཨིན།"
@@ -43322,13 +40724,11 @@ msgstr "<emph> མཱིན་དེ་ </emph> མཉམ་གྲངས་བ
msgctxt ""
"04060183.xhp\n"
"par_id3155991\n"
-"82\n"
"help.text"
msgid "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution."
msgstr "<emph> ཨེསི་ཊི་ཌི་ཨི་ཝི་ </emph> དེ་ ཚད་ལྡན་མཉམ་གྲངས་བགོ་བཀྲམ་འབད་ནི་གི་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་ཨིན།"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id3155992\n"
@@ -43340,7 +40740,6 @@ msgstr "<emph> སི་ </emph> = ༠ གིས་ སྟུག་ཚད་ལ
msgctxt ""
"04060183.xhp\n"
"hd_id3153178\n"
-"83\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -43349,13 +40748,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060183.xhp\n"
"par_id3149778\n"
-"84\n"
"help.text"
msgid "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> returns 0.01."
msgstr ""
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"bm_id2901417\n"
@@ -43364,21 +40761,17 @@ msgid "<bookmark_value>LOGNORM.DIST function</bookmark_value><bookmark_value>log
msgstr "<bookmark_value>NEGBINOMDIST ལས་འགན་</bookmark_value><bookmark_value>མེད་ཆ་མིང་ཚིག་གཉིས་ལྡན་གྱི་བགོ་བཀྲམ་</bookmark_value>"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"hd_id2908417\n"
-"76\n"
"help.text"
msgid "LOGNORM.DIST"
msgstr "LOGNORMDIST"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2904953\n"
-"77\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LOGNORMDIST_MS\">Returns the values of a lognormal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\"> གམ་མ་བགོ་བཀྲམ་གྱི་ གནས་གོང་ཚུ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -43387,7 +40780,6 @@ msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\"> གམ་མ་བགོ་བཀྲ
msgctxt ""
"04060183.xhp\n"
"hd_id2900474\n"
-"78\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -43396,43 +40788,35 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060183.xhp\n"
"par_id2900686\n"
-"79\n"
"help.text"
msgid "LOGNORM.DIST(Number; Mean; StDev; Cumulative)"
msgstr ""
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2904871\n"
-"80\n"
"help.text"
msgid "<emph>Number</emph> (required) is the probability value for which the standard logarithmic distribution is to be calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཚད་ལྡན་མཉམ་གྲངས་བགོ་བཀྲམ་རྩིས་བརྐྱབ་ནི་ཨིན་པའི་ འབྱུང་འགྱུར་གནས་གོང་ཨིན།"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2905820\n"
-"81\n"
"help.text"
msgid "<emph>Mean</emph> (required) is the mean value of the standard logarithmic distribution."
msgstr "<emph> མཱིན་དེ་ </emph> མཉམ་གྲངས་བགོ་བཀྲམ་ཚད་ལྡན་གྱི་ མཱིན་གནས་གོང་ཨིན།"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2905991\n"
-"82\n"
"help.text"
msgid "<emph>StDev</emph> (required) is the standard deviation of the standard logarithmic distribution."
msgstr "<emph> ཨེསི་ཊི་ཌི་ཨི་ཝི་ </emph> དེ་ ཚད་ལྡན་མཉམ་གྲངས་བགོ་བཀྲམ་འབད་ནི་གི་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་ཨིན།"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2905992\n"
@@ -43444,7 +40828,6 @@ msgstr "<emph> སི་ </emph> = ༠ གིས་ སྟུག་ཚད་ལ
msgctxt ""
"04060183.xhp\n"
"hd_id2903178\n"
-"83\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -43453,7 +40836,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060183.xhp\n"
"par_id2909778\n"
-"84\n"
"help.text"
msgid "<item type=\"input\">=LOGNORM.DIST(0.1;0;1;1)</item> returns 0.0106510993."
msgstr ""
@@ -43470,7 +40852,6 @@ msgstr "གྲངས་ཀྱི་ལས་འགན་ཡན་ལག་བཞ
msgctxt ""
"04060184.xhp\n"
"hd_id3153415\n"
-"1\n"
"help.text"
msgid "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Statistical Functions Part Four\">Statistical Functions Part Four</link></variable>"
msgstr "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Statistical Functions Part Four\"> གྲངས་ཀྱི་ལས་འགན་ ཡན་ལག་བཞི་པ། </link></variable>"
@@ -43487,7 +40868,6 @@ msgstr "<bookmark_value>MAX ལས་འགན།</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3154511\n"
-"2\n"
"help.text"
msgid "MAX"
msgstr "MAX"
@@ -43496,7 +40876,6 @@ msgstr "MAX"
msgctxt ""
"04060184.xhp\n"
"par_id3153709\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MAX\">Returns the maximum value in a list of arguments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MAX\"> སྒྲུབ་རྟགས་ཚུའི་ཐོ་ཡིག་ནང་ གནས་གོང་མང་མཐའ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -43513,7 +40892,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id3154256\n"
-"4\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -43522,7 +40900,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id3147340\n"
-"5\n"
"help.text"
msgid "MAX(Number1; Number2; ...Number30)"
msgstr "MAX(ཨང་ ༡ ; ཨང་ ༢ ; ...ཨང་ ༣༠)"
@@ -43531,7 +40908,6 @@ msgstr "MAX(ཨང་ ༡ ; ཨང་ ༢ ; ...ཨང་ ༣༠)"
msgctxt ""
"04060184.xhp\n"
"par_id3149568\n"
-"6\n"
"help.text"
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨང་གྲངས་ ༣༠ </emph> ཚུ་ ཨང་གྲངས་ཀྱི་གནས་གོང་ངམ་ཁྱབ་ཚད་ཚུ་ཨིན།"
@@ -43540,7 +40916,6 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨ
msgctxt ""
"04060184.xhp\n"
"hd_id3153963\n"
-"7\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -43549,7 +40924,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id3147343\n"
-"8\n"
"help.text"
msgid "<item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> returns the largest value from the list."
msgstr ""
@@ -43558,7 +40932,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id3148485\n"
-"9\n"
"help.text"
msgid "<item type=\"input\">=MAX(A1:B100)</item> returns the largest value from the list."
msgstr ""
@@ -43575,7 +40948,6 @@ msgstr "<bookmark_value>MAXA ལས་འགན།</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3166426\n"
-"139\n"
"help.text"
msgid "MAXA"
msgstr "MAXA"
@@ -43584,7 +40956,6 @@ msgstr "MAXA"
msgctxt ""
"04060184.xhp\n"
"par_id3150363\n"
-"140\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MAXA\">Returns the maximum value in a list of arguments. In opposite to MAX, here you can enter text. The value of the text is 0.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MAXA\"> སྒྲུབ་རྟགས་ཚུའི་ཐོ་ཡིག་ནང་ གནས་གོང་མང་མཐའ་སླར་ལོག་འབདཝ་ཨིན། མང་མཐའ་ལས་འགལ་བ་ཨིན་པ་ཅིན་ ཁྱོད་ཀྱིས་ ཚིག་ཡིག་བཙུགས་བཏུབ་ཨིན། ཚིག་ཡིག་གི་གནས་གོང་དེ་ ༠ ཨིན། </ahelp>"
@@ -43601,7 +40972,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id3150516\n"
-"141\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -43610,7 +40980,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id3166431\n"
-"142\n"
"help.text"
msgid "MAXA(Value1; Value2; ... Value30)"
msgstr "MAXA(གནས་གོང་ ༡ ; གནས་གོང་ ༢ ; ... གནས་གོང་ ༣༠)"
@@ -43619,7 +40988,6 @@ msgstr "MAXA(གནས་གོང་ ༡ ; གནས་གོང་ ༢ ; ...
msgctxt ""
"04060184.xhp\n"
"par_id3150202\n"
-"143\n"
"help.text"
msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
msgstr "<emph> གནས་གོང་ ༡། གནས་གོང་ ༢།... གནས་གོང་ ༣༠ ། </emph> ཚུ་གནས་གོང་ངམ་ཁྱབ་ཚད་ཚུ་ཨིན། ཚིག་ཡིག་ལུ་ ༠ གི་གནས་གོང་ཡོད།"
@@ -43628,7 +40996,6 @@ msgstr "<emph> གནས་གོང་ ༡། གནས་གོང་ ༢།..
msgctxt ""
"04060184.xhp\n"
"hd_id3156290\n"
-"144\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -43637,7 +41004,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id3156446\n"
-"145\n"
"help.text"
msgid "<item type=\"input\">=MAXA(A1;A2;A3;50;100;200;\"Text\")</item> returns the largest value from the list."
msgstr ""
@@ -43646,7 +41012,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id3149404\n"
-"146\n"
"help.text"
msgid "<item type=\"input\">=MAXA(A1:B100)</item> returns the largest value from the list."
msgstr ""
@@ -43663,7 +41028,6 @@ msgstr "<bookmark_value>MEDIAN ལས་འགན།</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3153820\n"
-"11\n"
"help.text"
msgid "MEDIAN"
msgstr "MEDIAN"
@@ -43672,7 +41036,6 @@ msgstr "MEDIAN"
msgctxt ""
"04060184.xhp\n"
"par_id3151241\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MEDIAN\">Returns the median of a set of numbers. In a set containing an uneven number of values, the median will be the number in the middle of the set and in a set containing an even number of values, it will be the mean of the two values in the middle of the set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MEDIAN\"> ཨང་གྲངས་ཚུའི་ཆ་ཚན་གཅིག་གི་གུང་ཐིག་སླར་ལོག་འབདཝ་ཨིན། གནས་གོང་ཚུའི་ ཨང་གྲངས་ཡ་ཅན་ཤོམ་ཏེ་ཡོད་པའི་ཆ་ཚན་གཅིག་ནང་ལུ་ གུང་ཐིག་དེ་ ཆ་ཚན་གི་སྦུག་གི་ཨང་གྲངས་འོང་ནི་དང་ གནས་གོང་ཚུའི་ཨང་གྲངས་ཡ་ཅན་ཤོམ་ཏེ་ཡོད་པའི་ཆ་ཚན་གཅིག་ནང་ གནས་གོང་གཉིས་ཀྱི་མཱིན་དེ་ ཆ་ཚན་གྱི་སྦུག་ལུ་འོང་ནི་ཨིན། </ahelp>"
@@ -43681,7 +41044,6 @@ msgstr "<ahelp hid=\"HID_FUNC_MEDIAN\"> ཨང་གྲངས་ཚུའི་
msgctxt ""
"04060184.xhp\n"
"hd_id3148871\n"
-"13\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -43690,7 +41052,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id3155264\n"
-"14\n"
"help.text"
msgid "MEDIAN(Number1; Number2; ...Number30)"
msgstr "MEDIAN(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།... ཨང་གྲངས་ ༣༠།)"
@@ -43699,7 +41060,6 @@ msgstr "MEDIAN(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།..
msgctxt ""
"04060184.xhp\n"
"par_id3150109\n"
-"15\n"
"help.text"
msgid "<emph>Number1; Number2;...Number30</emph> are values or ranges, which represent a sample. Each number can also be replaced by a reference."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ,... ཨང་གྲངས་ ༣༠ </emph> ཚུ་ དཔེ་ཚད་ཁྱད་ཚབ་འབད་བའི་གནས་གོང་ངམ་ཁྱབ་ཚད་ཚུ་ཨིན། ཨང་གྲངས་རེ་རེ་ཚུ་ གཞི་བསྟུན་གྱིས་ཡང་ཚབ་བཙུགས་བཏུབ་ཨིན།"
@@ -43708,7 +41068,6 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ,... ཨང
msgctxt ""
"04060184.xhp\n"
"hd_id3144506\n"
-"16\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -43717,7 +41076,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id3145078\n"
-"17\n"
"help.text"
msgid "for an odd number: <item type=\"input\">=MEDIAN(1;5;9;20;21)</item> returns 9 as the median value."
msgstr ""
@@ -43726,7 +41084,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id3149126\n"
-"165\n"
"help.text"
msgid "for an even number: <item type=\"input\">=MEDIAN(1;5;9;20)</item> returns the average of the two middle values 5 and 9, thus 7."
msgstr "ཨང་གྲངས་ཆ་ཅན་གཅིག་གི་དོན་ལུ་ : =MEDIAN(1; 5; 9; 20) གིས་ བར་གྱི་གནས་གོང་ ༥ དང་ ༨ གི་ ཆ་སྙོམས་སླར་ལོག་འབདཝ་ཨིནམ་ལས་ ༧ ཨིན།"
@@ -43743,7 +41100,6 @@ msgstr "<bookmark_value>MIN ལས་འགན།</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3154541\n"
-"19\n"
"help.text"
msgid "MIN"
msgstr "MIN"
@@ -43752,7 +41108,6 @@ msgstr "MIN"
msgctxt ""
"04060184.xhp\n"
"par_id3143222\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MIN\">Returns the minimum value in a list of arguments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MIN\"> སྒྲུབ་རྟགས་ཚུའི་ཐོ་ཡིག་ནང་ གནས་གོང་ཉུང་མཐའ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -43769,7 +41124,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id3154651\n"
-"21\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -43778,7 +41132,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id3146964\n"
-"22\n"
"help.text"
msgid "MIN(Number1; Number2; ...Number30)"
msgstr "MIN(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།... ཨང་གྲངས་ ༣༠།)"
@@ -43787,7 +41140,6 @@ msgstr "MIN(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།...
msgctxt ""
"04060184.xhp\n"
"par_id3153486\n"
-"23\n"
"help.text"
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨང་གྲངས་ ༣༠ </emph> ཚུ་ ཨང་གྲངས་ཀྱི་གནས་གོང་ངམ་ཁྱབ་ཚད་ཚུ་ཨིན།"
@@ -43796,7 +41148,6 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨ
msgctxt ""
"04060184.xhp\n"
"hd_id3155523\n"
-"24\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -43805,7 +41156,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id3154734\n"
-"25\n"
"help.text"
msgid "<item type=\"input\">=MIN(A1:B100)</item> returns the smallest value in the list."
msgstr ""
@@ -43822,7 +41172,6 @@ msgstr "<bookmark_value>MINA ལས་འགན།</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3147504\n"
-"148\n"
"help.text"
msgid "MINA"
msgstr "MINA"
@@ -43831,7 +41180,6 @@ msgstr "MINA"
msgctxt ""
"04060184.xhp\n"
"par_id3147249\n"
-"149\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MINA\">Returns the minimum value in a list of arguments. Here you can also enter text. The value of the text is 0.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MINA\"> སྒྲུབ་རྟགས་ཚུའི་ཐོ་ཡིག་ནང་ གསན་གོང་ཉུང་མཐའ་སླར་ལོག་འབདཝ་ཨིན། ནཱ་ལུ་ ཁྱོད་ཀྱིས་ ཚིག་ཡིག་ཡང་བཙུགས་བཏུབ་ཨིན། ཚིག་ཡིག་གི་གནས་གོང་དེ་ ༠ ཨིན། </ahelp>"
@@ -43848,7 +41196,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id3150435\n"
-"150\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -43857,7 +41204,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id3153336\n"
-"151\n"
"help.text"
msgid "MINA(Value1; Value2; ... Value30)"
msgstr "MINA(གནས་གོང་ ༡ ; གནས་གོང་ ༢ ; ... གནས་གོང་ ༣༠)"
@@ -43866,7 +41212,6 @@ msgstr "MINA(གནས་གོང་ ༡ ; གནས་གོང་ ༢ ; ...
msgctxt ""
"04060184.xhp\n"
"par_id3146098\n"
-"152\n"
"help.text"
msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
msgstr "<emph> གནས་གོང་ ༡། གནས་གོང་ ༢།... གནས་གོང་ ༣༠ ། </emph> ཚུ་གནས་གོང་ངམ་ཁྱབ་ཚད་ཚུ་ཨིན། ཚིག་ཡིག་ལུ་ ༠ གི་གནས་གོང་ཡོད།"
@@ -43875,7 +41220,6 @@ msgstr "<emph> གནས་གོང་ ༡། གནས་གོང་ ༢།..
msgctxt ""
"04060184.xhp\n"
"hd_id3148743\n"
-"153\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -43884,7 +41228,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id3147401\n"
-"154\n"
"help.text"
msgid "<item type=\"input\">=MINA(1;\"Text\";20)</item> returns 0."
msgstr ""
@@ -43893,7 +41236,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id3147295\n"
-"155\n"
"help.text"
msgid "<item type=\"input\">=MINA(A1:B100)</item> returns the smallest value in the list."
msgstr ""
@@ -43910,7 +41252,6 @@ msgstr "<bookmark_value>AVEDEV ལས་འགན་</bookmark_value><bookmark_v
msgctxt ""
"04060184.xhp\n"
"hd_id3166465\n"
-"27\n"
"help.text"
msgid "AVEDEV"
msgstr "AVEDEV"
@@ -43919,7 +41260,6 @@ msgstr "AVEDEV"
msgctxt ""
"04060184.xhp\n"
"par_id3150373\n"
-"28\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MITTELABW\">Returns the average of the absolute deviations of data points from their mean.</ahelp> Displays the diffusion in a data set."
msgstr "<ahelp hid=\"HID_FUNC_MITTELABW\"> ཁོང་རའི་མཱིན་ལས་ གནད་སྡུད་ས་ཚིགས་ཚུའི་སྤྱི་དང་མི་མཐུན་པའི་ཡང་དག་ཚུའི་ཆ་སྙོམས་སླར་ལོག་འབདཝ་ཨིན། </ahelp> གནད་སྡུད་ཆ་ཚན་ནང་ལུ་ ཀུན་ཁྱབ་བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -43928,7 +41268,6 @@ msgstr "<ahelp hid=\"HID_FUNC_MITTELABW\"> ཁོང་རའི་མཱིན
msgctxt ""
"04060184.xhp\n"
"hd_id3150038\n"
-"29\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -43937,7 +41276,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id3145636\n"
-"30\n"
"help.text"
msgid "AVEDEV(Number1; Number2; ...Number30)"
msgstr "AVEDEV(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།... ཨང་གྲངས་ ༣༠།)"
@@ -43946,7 +41284,6 @@ msgstr "AVEDEV(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།..
msgctxt ""
"04060184.xhp\n"
"par_id3157871\n"
-"31\n"
"help.text"
msgid "<emph>Number1, Number2,...Number30</emph> are values or ranges that represent a sample. Each number can also be replaced by a reference."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢... ཨང་གྲངས་ ༣༠ </emph> ཚུ་ དཔེ་ཚད་ཁྱད་ཚབ་འབད་བའི་ གནས་གོང་ཚུའམ་ཁྱབ་ཚད་ཚུ་ཨིན། ཨང་གྲངས་རེ་རེ་དེ་ གཞི་བསྟུན་གྱིས་ཡང་ ཚབ་བཙུགས་འབད་ཚུགསཔ་ཨིན།"
@@ -43955,7 +41292,6 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢... ཨ
msgctxt ""
"04060184.xhp\n"
"hd_id3149725\n"
-"32\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -43964,7 +41300,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id3153122\n"
-"33\n"
"help.text"
msgid "<item type=\"input\">=AVEDEV(A1:A50)</item>"
msgstr ""
@@ -43981,7 +41316,6 @@ msgstr "<bookmark_value>AVERAGE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3145824\n"
-"35\n"
"help.text"
msgid "AVERAGE"
msgstr "ཆ་སྙོམས།"
@@ -43990,7 +41324,6 @@ msgstr "ཆ་སྙོམས།"
msgctxt ""
"04060184.xhp\n"
"par_id3150482\n"
-"36\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MITTELWERT\">Returns the average of the arguments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MITTELWERT\"> སྒྲུབ་རྟགས་ཚུའི་ ཆ་སྙོམས་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -43999,7 +41332,6 @@ msgstr "<ahelp hid=\"HID_FUNC_MITTELWERT\"> སྒྲུབ་རྟགས་ཚ
msgctxt ""
"04060184.xhp\n"
"hd_id3146943\n"
-"37\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -44008,7 +41340,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id3154679\n"
-"38\n"
"help.text"
msgid "AVERAGE(Number1; Number2; ...Number30)"
msgstr "AVERAGE(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།... ཨང་གྲངས་ ༣༠།)"
@@ -44017,7 +41348,6 @@ msgstr "AVERAGE(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།.
msgctxt ""
"04060184.xhp\n"
"par_id3150741\n"
-"39\n"
"help.text"
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr ""
@@ -44026,7 +41356,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id3153039\n"
-"40\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -44035,7 +41364,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id3151232\n"
-"41\n"
"help.text"
msgid "<item type=\"input\">=AVERAGE(A1:A50)</item>"
msgstr ""
@@ -44052,7 +41380,6 @@ msgstr "<bookmark_value>AVERAGEA ལས་འགན།</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3148754\n"
-"157\n"
"help.text"
msgid "AVERAGEA"
msgstr "AVERAGEA"
@@ -44061,7 +41388,6 @@ msgstr "AVERAGEA"
msgctxt ""
"04060184.xhp\n"
"par_id3145138\n"
-"158\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MITTELWERTA\">Returns the average of the arguments. The value of a text is 0.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MITTELWERTA\"> སྒྲུབ་རྟགས་ཚུའི་ཆ་སྙོམས་སླར་ལོག་འབདཝ་ཨིན། ཚིག་ཡིག་གི་གནས་གོང་དེ་ ༠ ཨིན། </ahelp>"
@@ -44070,7 +41396,6 @@ msgstr "<ahelp hid=\"HID_FUNC_MITTELWERTA\"> སྒྲུབ་རྟགས་
msgctxt ""
"04060184.xhp\n"
"hd_id3153326\n"
-"159\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -44079,7 +41404,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id3149734\n"
-"160\n"
"help.text"
msgid "AVERAGEA(Value1; Value2; ... Value30)"
msgstr "AVERAGEA(གནས་གོང་ ༡། གནས་གོང་ ༢།... གནས་གོང་ ༣༠།)"
@@ -44088,7 +41412,6 @@ msgstr "AVERAGEA(གནས་གོང་ ༡། གནས་གོང་ ༢།
msgctxt ""
"04060184.xhp\n"
"par_id3155260\n"
-"161\n"
"help.text"
msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
msgstr "<emph> གནས་གོང་ ༡། གནས་གོང་ ༢།... གནས་གོང་ ༣༠ ། </emph> ཚུ་གནས་གོང་ངམ་ཁྱབ་ཚད་ཚུ་ཨིན། ཚིག་ཡིག་ལུ་ ༠ གི་གནས་གོང་ཡོད།"
@@ -44097,7 +41420,6 @@ msgstr "<emph> གནས་གོང་ ༡། གནས་གོང་ ༢།..
msgctxt ""
"04060184.xhp\n"
"hd_id3149504\n"
-"162\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -44106,7 +41428,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id3150864\n"
-"163\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
msgstr ""
@@ -44123,7 +41444,6 @@ msgstr "<bookmark_value>MODE ལས་འགན་</bookmark_value><bookmark_val
msgctxt ""
"04060184.xhp\n"
"hd_id3153933\n"
-"43\n"
"help.text"
msgid "MODE"
msgstr "MODE"
@@ -44132,7 +41452,6 @@ msgstr "MODE"
msgctxt ""
"04060184.xhp\n"
"par_id3153085\n"
-"44\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MODALWERT\">Returns the most common value in a data set.</ahelp> If there are several values with the same frequency, it returns the smallest value. An error occurs when a value doesn't appear twice."
msgstr "<ahelp hid=\"HID_FUNC_MODALWERT\"> གནད་སྡུད་ཆ་ཚན་ནང་ གནས་གོང་མཐུན་མོང་ཆེ་ཤོས་སླར་་ལོག་འབདཝ་ཨིན། </ahelp> ཕི་ནང་ལུ་ འབྱུང་ཐེངས་གཅིག་པ་སྦེ་གནས་གོང་ཚུ་ལེ་ཤ་ཡོད་པ་ཅིན་ དེ་གིས་གནས་གོང་ཆུང་ཤོས་སླར་ལོག་འབདཝ་ཨིན། གནས་གོང་དེ་ཚར་གཉིས་མ་འབྱུང་པ་ཅིན་འཛོལ་བ་གཅིག་འབྱུངམ་ཨིན།"
@@ -44141,7 +41460,6 @@ msgstr "<ahelp hid=\"HID_FUNC_MODALWERT\"> གནད་སྡུད་ཆ་ཚ
msgctxt ""
"04060184.xhp\n"
"hd_id3153003\n"
-"45\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -44150,7 +41468,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id3155950\n"
-"46\n"
"help.text"
msgid "MODE(Number1; Number2; ...Number30)"
msgstr "MODE(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།... ཨང་གྲངས་ ༣༠།)"
@@ -44159,7 +41476,6 @@ msgstr "MODE(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།...
msgctxt ""
"04060184.xhp\n"
"par_id3150337\n"
-"47\n"
"help.text"
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨང་གྲངས་ ༣༠ </emph> ཚུ་ ཨང་གྲངས་ཀྱི་གནས་གོང་ངམ་ཁྱབ་ཚད་ཚུ་ཨིན།"
@@ -44168,7 +41484,6 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨ
msgctxt ""
"04060184.xhp\n"
"hd_id3153571\n"
-"48\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -44177,13 +41492,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id3153733\n"
-"49\n"
"help.text"
msgid "<item type=\"input\">=MODE(A1:A50)</item>"
msgstr ""
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2953933\n"
@@ -44195,17 +41508,14 @@ msgstr "<bookmark_value>MODE ལས་འགན་</bookmark_value><bookmark_val
msgctxt ""
"04060184.xhp\n"
"hd_id2953933\n"
-"43\n"
"help.text"
msgid "MODE.SNGL"
msgstr ""
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2953085\n"
-"44\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MODAL_VALUE_MS\">Returns the most frequently occurring, or repetitive, value in an array or range of data.</ahelp> If there are several values with the same frequency, it returns the smallest value. An error occurs when a value doesn't appear twice."
msgstr "<ahelp hid=\"HID_FUNC_MODALWERT\"> གནད་སྡུད་ཆ་ཚན་ནང་ གནས་གོང་མཐུན་མོང་ཆེ་ཤོས་སླར་་ལོག་འབདཝ་ཨིན། </ahelp> ཕི་ནང་ལུ་ འབྱུང་ཐེངས་གཅིག་པ་སྦེ་གནས་གོང་ཚུ་ལེ་ཤ་ཡོད་པ་ཅིན་ དེ་གིས་གནས་གོང་ཆུང་ཤོས་སླར་ལོག་འབདཝ་ཨིན། གནས་གོང་དེ་ཚར་གཉིས་མ་འབྱུང་པ་ཅིན་འཛོལ་བ་གཅིག་འབྱུངམ་ཨིན།"
@@ -44214,27 +41524,22 @@ msgstr "<ahelp hid=\"HID_FUNC_MODALWERT\"> གནད་སྡུད་ཆ་ཚ
msgctxt ""
"04060184.xhp\n"
"hd_id2953003\n"
-"45\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2955950\n"
-"46\n"
"help.text"
msgid "MODE.SNGL(Number1; Number2; ...Number30)"
msgstr "MODE(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།... ཨང་གྲངས་ ༣༠།)"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2950337\n"
-"47\n"
"help.text"
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨང་གྲངས་ ༣༠ </emph> ཚུ་ ཨང་གྲངས་ཀྱི་གནས་གོང་ངམ་ཁྱབ་ཚད་ཚུ་ཨིན།"
@@ -44243,7 +41548,6 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨ
msgctxt ""
"04060184.xhp\n"
"par_id2963792\n"
-"629\n"
"help.text"
msgid "If the data set contains no duplicate data points, MODE.SNGL returns the #VALUE! error value."
msgstr ""
@@ -44252,7 +41556,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2953571\n"
-"48\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -44261,13 +41564,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id2953733\n"
-"49\n"
"help.text"
msgid "<item type=\"input\">=MODE.SNGL(A1:A50)</item>"
msgstr ""
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2853933\n"
@@ -44279,7 +41580,6 @@ msgstr "<bookmark_value>MODE ལས་འགན་</bookmark_value><bookmark_val
msgctxt ""
"04060184.xhp\n"
"hd_id2853933\n"
-"43\n"
"help.text"
msgid "MODE.MULT"
msgstr ""
@@ -44288,7 +41588,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2853085\n"
-"44\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MODAL_VALUE_MULTI\">Returns a vertical array of the statistical modes (the most frequently occurring values) within a list of supplied numbers.</ahelp>"
msgstr ""
@@ -44297,27 +41596,22 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2853003\n"
-"45\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2855950\n"
-"46\n"
"help.text"
msgid "MODE.MULT(Number1; Number2; ...Number30)"
msgstr "MODE(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།... ཨང་གྲངས་ ༣༠།)"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2850337\n"
-"47\n"
"help.text"
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨང་གྲངས་ ༣༠ </emph> ཚུ་ ཨང་གྲངས་ཀྱི་གནས་གོང་ངམ་ཁྱབ་ཚད་ཚུ་ཨིན།"
@@ -44326,7 +41620,6 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨ
msgctxt ""
"04060184.xhp\n"
"par_id2863792\n"
-"629\n"
"help.text"
msgid "As the MODE.MULT function returns an array of values, it must be entered as an array formula. If the function is not entered as an array formula, only the first mode is returned, which is the same as using the MODE.SNGL function."
msgstr ""
@@ -44335,7 +41628,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2853571\n"
-"48\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -44344,7 +41636,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id2853733\n"
-"49\n"
"help.text"
msgid "<item type=\"input\">=MODE.MULT(A1:A50)</item>"
msgstr ""
@@ -44361,7 +41652,6 @@ msgstr "<bookmark_value>NEGBINOMDIST ལས་འགན་</bookmark_value><book
msgctxt ""
"04060184.xhp\n"
"hd_id3149879\n"
-"51\n"
"help.text"
msgid "NEGBINOMDIST"
msgstr "NEGBINOMDIST"
@@ -44370,7 +41660,6 @@ msgstr "NEGBINOMDIST"
msgctxt ""
"04060184.xhp\n"
"par_id3155437\n"
-"52\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Returns the negative binomial distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\"> བགོ་བཀྲམ་མིང་ཚིག་གཉིས་ལྡན་མེད་ཆ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -44379,7 +41668,6 @@ msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\"> བགོ་བཀྲམ་མི
msgctxt ""
"04060184.xhp\n"
"hd_id3145351\n"
-"53\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -44388,7 +41676,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id3150935\n"
-"54\n"
"help.text"
msgid "NEGBINOMDIST(X; R; SP)"
msgstr "NEGBINOMDIST(X; R; SP)"
@@ -44397,7 +41684,6 @@ msgstr "NEGBINOMDIST(X; R; SP)"
msgctxt ""
"04060184.xhp\n"
"par_id3153044\n"
-"55\n"
"help.text"
msgid "<emph>X</emph> represents the value returned for unsuccessful tests."
msgstr "<emph>X</emph> གིས་ མཐར་མ་འཁྱོལ་བའི་བརྟག་ཞིབ་ཚུའི་དོན་ལུ་ སླར་ལོག་འབད་ཡོད་པའི་གནས་གོང་ཁྱབ་ཚབ་འབདཝ་ཨིན།"
@@ -44406,7 +41692,6 @@ msgstr "<emph>X</emph> གིས་ མཐར་མ་འཁྱོལ་བའ
msgctxt ""
"04060184.xhp\n"
"par_id3151018\n"
-"56\n"
"help.text"
msgid "<emph>R</emph> represents the value returned for successful tests."
msgstr "<emph> ཨར་ </emph> གིས་ མཐར་འཁྱོལ་བའི་བརྟག་ཞིབ་ཚུ་ལུ་སླར་ལོག་འབད་ཡོད་པའི་གནས་གོང་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -44415,7 +41700,6 @@ msgstr "<emph> ཨར་ </emph> གིས་ མཐར་འཁྱོལ་བ
msgctxt ""
"04060184.xhp\n"
"par_id3148878\n"
-"57\n"
"help.text"
msgid "<emph>SP</emph> is the probability of the success of an attempt."
msgstr "<emph> ཨེསི་པི་ </emph> དེ་ དཔའ་བཅམ་གྱི་མཐར་འཁྱོལ་བའི་འབྱུང་ངེས་ཨིན།"
@@ -44424,7 +41708,6 @@ msgstr "<emph> ཨེསི་པི་ </emph> དེ་ དཔའ་བཅམ
msgctxt ""
"04060184.xhp\n"
"hd_id3149539\n"
-"58\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -44433,13 +41716,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id3148770\n"
-"59\n"
"help.text"
msgid "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> returns 0.25."
msgstr ""
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2949879\n"
@@ -44448,21 +41729,17 @@ msgid "<bookmark_value>NEGBINOM.DIST function</bookmark_value><bookmark_value>ne
msgstr "<bookmark_value>NEGBINOMDIST ལས་འགན་</bookmark_value><bookmark_value>མེད་ཆ་མིང་ཚིག་གཉིས་ལྡན་གྱི་བགོ་བཀྲམ་</bookmark_value>"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"hd_id2949879\n"
-"51\n"
"help.text"
msgid "NEGBINOM.DIST"
msgstr "NEGBINOMDIST"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2955437\n"
-"52\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NEGBINOMDIST_MS\">Returns the negative binomial density or distribution function.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\"> བགོ་བཀྲམ་མིང་ཚིག་གཉིས་ལྡན་མེད་ཆ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -44471,7 +41748,6 @@ msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\"> བགོ་བཀྲམ་མི
msgctxt ""
"04060184.xhp\n"
"hd_id2945351\n"
-"53\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -44480,7 +41756,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id2950935\n"
-"54\n"
"help.text"
msgid "NEGBINOM.DIST(X; R; SP; Cumulative)"
msgstr ""
@@ -44489,7 +41764,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2953044\n"
-"55\n"
"help.text"
msgid "<emph>X</emph> represents the value returned for unsuccessful tests."
msgstr "<emph>X</emph> གིས་ མཐར་མ་འཁྱོལ་བའི་བརྟག་ཞིབ་ཚུའི་དོན་ལུ་ སླར་ལོག་འབད་ཡོད་པའི་གནས་གོང་ཁྱབ་ཚབ་འབདཝ་ཨིན།"
@@ -44498,7 +41772,6 @@ msgstr "<emph>X</emph> གིས་ མཐར་མ་འཁྱོལ་བའ
msgctxt ""
"04060184.xhp\n"
"par_id2951018\n"
-"56\n"
"help.text"
msgid "<emph>R</emph> represents the value returned for successful tests."
msgstr "<emph> ཨར་ </emph> གིས་ མཐར་འཁྱོལ་བའི་བརྟག་ཞིབ་ཚུ་ལུ་སླར་ལོག་འབད་ཡོད་པའི་གནས་གོང་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -44507,17 +41780,14 @@ msgstr "<emph> ཨར་ </emph> གིས་ མཐར་འཁྱོལ་བ
msgctxt ""
"04060184.xhp\n"
"par_id2948878\n"
-"57\n"
"help.text"
msgid "<emph>SP</emph> is the probability of the success of an attempt."
msgstr "<emph> ཨེསི་པི་ </emph> དེ་ དཔའ་བཅམ་གྱི་མཐར་འཁྱོལ་བའི་འབྱུང་ངེས་ཨིན།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2948879\n"
-"57\n"
"help.text"
msgid "<emph>Cumulative</emph> = 0 calculates the density function, <emph>Cumulative</emph> = 1 calculates the distribution."
msgstr "<emph> སི་ </emph> = ༠ གིས་ སྟུག་ཚད་ལས་འགན་རྩིས་སྟོནམ་ཨིན། <emph> སི་ </emph> = ༡ གིས་ བགོ་བཀྲམ་འབད་ནི་དེ་རྩིས་སྟོནམ་ཨིན།"
@@ -44526,7 +41796,6 @@ msgstr "<emph> སི་ </emph> = ༠ གིས་ སྟུག་ཚད་ལ
msgctxt ""
"04060184.xhp\n"
"hd_id2949539\n"
-"58\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -44535,7 +41804,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id2948770\n"
-"59\n"
"help.text"
msgid "<item type=\"input\">=NEGBINOM.DIST(1;1;0.5;0)</item> returns 0.25."
msgstr ""
@@ -44544,7 +41812,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2948771\n"
-"59\n"
"help.text"
msgid "<item type=\"input\">=NEGBINOM.DIST(1;1;0.5;1)</item> returns 0.75."
msgstr ""
@@ -44561,7 +41828,6 @@ msgstr "<bookmark_value>NORMINV ལས་འགན་</bookmark_value><bookmark_
msgctxt ""
"04060184.xhp\n"
"hd_id3155516\n"
-"61\n"
"help.text"
msgid "NORMINV"
msgstr "NORMINV"
@@ -44570,7 +41836,6 @@ msgstr "NORMINV"
msgctxt ""
"04060184.xhp\n"
"par_id3154634\n"
-"62\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NORMINV\">Returns the inverse of the normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NORMINV\"> སྤྱིར་བཏང་བསྡུ་གསོག་བགོ་བཀྲམ་འབད་ནིའི་ ལུགས་ལྡོག་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -44579,7 +41844,6 @@ msgstr "<ahelp hid=\"HID_FUNC_NORMINV\"> སྤྱིར་བཏང་བསྡ
msgctxt ""
"04060184.xhp\n"
"hd_id3153227\n"
-"63\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -44588,7 +41852,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id3147534\n"
-"64\n"
"help.text"
msgid "NORMINV(Number; Mean; StDev)"
msgstr "NORMINV(ཨང་གྲངས། མཱིན། ཨེསི་ཊི་ཌི་ཨི་ཝི།)"
@@ -44597,7 +41860,6 @@ msgstr "NORMINV(ཨང་གྲངས། མཱིན། ཨེསི་ཊི
msgctxt ""
"04060184.xhp\n"
"par_id3154950\n"
-"65\n"
"help.text"
msgid "<emph>Number</emph> represents the probability value used to determine the inverse normal distribution."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> སྤྱིར་བཏང་བགོ་བཀྲམ་འབད་ནི་ལུག་ལྡོག་གཏན་འབེབ་བཟོ་ནིའི་དོན་ལུ་ལག་ལེན་འཐབ་ཡོད་པའི་ འབྱུང་ངེས་གནས་གོང་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -44606,7 +41868,6 @@ msgstr "<emph> ཨང་གྲངས་དེ་ </emph> སྤྱིར་བ
msgctxt ""
"04060184.xhp\n"
"par_id3150690\n"
-"66\n"
"help.text"
msgid "<emph>Mean</emph> represents the mean value in the normal distribution."
msgstr "<emph> མཱིན་ </emph> གིས་ སྤྱིར་བཏང་བགོ་བཀྲམ་འབད་ནི་ནང་ མཱིན་གནས་གོང་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -44615,7 +41876,6 @@ msgstr "<emph> མཱིན་ </emph> གིས་ སྤྱིར་བཏང
msgctxt ""
"04060184.xhp\n"
"par_id3148594\n"
-"67\n"
"help.text"
msgid "<emph>StDev</emph> represents the standard deviation of the normal distribution."
msgstr "<emph> ཨེསི་ཊི་ཌི་ཨིི་ཝི་ </emph> གིས་ སྤྱིར་བཏང་བགོ་བཀྲམ་འབད་ནི་གི་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་ཁྱབ་ཚབ་འབདཝ་ཨིན།"
@@ -44624,7 +41884,6 @@ msgstr "<emph> ཨེསི་ཊི་ཌི་ཨིི་ཝི་ </emph>
msgctxt ""
"04060184.xhp\n"
"hd_id3155822\n"
-"68\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -44633,13 +41892,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id3153921\n"
-"69\n"
"help.text"
msgid "<item type=\"input\">=NORMINV(0.9;63;5)</item> returns 69.41. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams."
msgstr "=NORMINV(0.9; 63; 5) གིས་ ༦༩་༤༡ སླར་ལོག་འབདཝ་ཨིན། ཆ་སྙོམས་གོང་རྡོ་གཅིག་ ཚད་ལྡན་སྤྱི་དང་མི་མཐུན་པ་ ༥ དང་བཅས་ཏེ་ ལྗིད་ཚད་ ༦༣ ག་རམསི་ འཇལ་བ་ཅིན་ གོང་རྡོ་དེ་ ༦༩་༤༡ཇི་ ག་རམསི་ལས་ལྗིད་ལྕི་འབྱུང་སྲིད་པ་དེ་ ༩༠% འོང་ནི་ཨིན།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2955516\n"
@@ -44648,21 +41905,17 @@ msgid "<bookmark_value>NORM.INV function</bookmark_value><bookmark_value>normal
msgstr "<bookmark_value>NORMINV ལས་འགན་</bookmark_value><bookmark_value>སྤྱི་བཏང་བགོ་བཀྲམ་ ལུགས་ལྡོག་</bookmark_value>"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"hd_id2955516\n"
-"61\n"
"help.text"
msgid "NORM.INV"
msgstr "NORMINV"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2954634\n"
-"62\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NORMINV_MS\">Returns the inverse of the normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NORMINV\"> སྤྱིར་བཏང་བསྡུ་གསོག་བགོ་བཀྲམ་འབད་ནིའི་ ལུགས་ལྡོག་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -44671,47 +41924,38 @@ msgstr "<ahelp hid=\"HID_FUNC_NORMINV\"> སྤྱིར་བཏང་བསྡ
msgctxt ""
"04060184.xhp\n"
"hd_id2953227\n"
-"63\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2947534\n"
-"64\n"
"help.text"
msgid "NORM.INV(Number; Mean; StDev)"
msgstr "NORMINV(ཨང་གྲངས། མཱིན། ཨེསི་ཊི་ཌི་ཨི་ཝི།)"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2954950\n"
-"65\n"
"help.text"
msgid "<emph>Number</emph> represents the probability value used to determine the inverse normal distribution."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> སྤྱིར་བཏང་བགོ་བཀྲམ་འབད་ནི་ལུག་ལྡོག་གཏན་འབེབ་བཟོ་ནིའི་དོན་ལུ་ལག་ལེན་འཐབ་ཡོད་པའི་ འབྱུང་ངེས་གནས་གོང་ཁྱད་ཚབ་འབདཝ་ཨིན།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2950690\n"
-"66\n"
"help.text"
msgid "<emph>Mean</emph> represents the mean value in the normal distribution."
msgstr "<emph> མཱིན་ </emph> གིས་ སྤྱིར་བཏང་བགོ་བཀྲམ་འབད་ནི་ནང་ མཱིན་གནས་གོང་ཁྱད་ཚབ་འབདཝ་ཨིན།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2948594\n"
-"67\n"
"help.text"
msgid "<emph>StDev</emph> represents the standard deviation of the normal distribution."
msgstr "<emph> ཨེསི་ཊི་ཌི་ཨིི་ཝི་ </emph> གིས་ སྤྱིར་བཏང་བགོ་བཀྲམ་འབད་ནི་གི་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་ཁྱབ་ཚབ་འབདཝ་ཨིན།"
@@ -44720,17 +41964,14 @@ msgstr "<emph> ཨེསི་ཊི་ཌི་ཨིི་ཝི་ </emph>
msgctxt ""
"04060184.xhp\n"
"hd_id2955822\n"
-"68\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2953921\n"
-"69\n"
"help.text"
msgid "<item type=\"input\">=NORM.INV(0.9;63;5)</item> returns 69.4077578277. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams."
msgstr "=NORMINV(0.9; 63; 5) གིས་ ༦༩་༤༡ སླར་ལོག་འབདཝ་ཨིན། ཆ་སྙོམས་གོང་རྡོ་གཅིག་ ཚད་ལྡན་སྤྱི་དང་མི་མཐུན་པ་ ༥ དང་བཅས་ཏེ་ ལྗིད་ཚད་ ༦༣ ག་རམསི་ འཇལ་བ་ཅིན་ གོང་རྡོ་དེ་ ༦༩་༤༡ཇི་ ག་རམསི་ལས་ལྗིད་ལྕི་འབྱུང་སྲིད་པ་དེ་ ༩༠% འོང་ནི་ཨིན།"
@@ -44747,7 +41988,6 @@ msgstr "<bookmark_value>NORMDIST ལས་འགན་</bookmark_value><bookmark
msgctxt ""
"04060184.xhp\n"
"hd_id3153722\n"
-"71\n"
"help.text"
msgid "NORMDIST"
msgstr "NORMDIST"
@@ -44756,7 +41996,6 @@ msgstr "NORMDIST"
msgctxt ""
"04060184.xhp\n"
"par_id3150386\n"
-"72\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NORMVERT\">Returns the density function or the normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">སྟུག་ཚད་ལས་འགན་ ཡང་ན་ སྤྱིར་བཏང་བསྡུ་གསོག་བགོ་བཀྲམ་འདི་སླར་ལོག་འབདཝ་ཨིན།</ahelp>"
@@ -44765,7 +42004,6 @@ msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">སྟུག་ཚད་ལས་འག
msgctxt ""
"04060184.xhp\n"
"hd_id3083282\n"
-"73\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -44774,7 +42012,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id3150613\n"
-"74\n"
"help.text"
msgid "NORMDIST(Number; Mean; StDev; C)"
msgstr "NORMDIST(ཨང་གྲངས། མཱིན། ཨེསི་ཊི་ཌི་ཨི་ཝི། སི།)"
@@ -44783,7 +42020,6 @@ msgstr "NORMDIST(ཨང་གྲངས། མཱིན། ཨེསི་ཊི
msgctxt ""
"04060184.xhp\n"
"par_id3149820\n"
-"75\n"
"help.text"
msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> དེ་ལུ་གཞི་བཞག་སྟེ་ སྤྱིར་བཏང་བགོ་བཀྲམ་དེ་རྩིས་བརྐྱབ་ནི་ཨིན་པའི་བགོ་བཀྲམ་གྱི་གནས་གོང་ཨིན།"
@@ -44792,7 +42028,6 @@ msgstr "<emph> ཨང་གྲངས་དེ་ </emph> དེ་ལུ་ག
msgctxt ""
"04060184.xhp\n"
"par_id3146063\n"
-"76\n"
"help.text"
msgid "<emph>Mean</emph> is the mean value of the distribution."
msgstr "<emph> མཱིན་དེ་ </emph> བགོ་བཀྲམ་འབད་ནི་གི་ མཱིན་གནས་གོང་ཨིན།"
@@ -44801,7 +42036,6 @@ msgstr "<emph> མཱིན་དེ་ </emph> བགོ་བཀྲམ་འ
msgctxt ""
"04060184.xhp\n"
"par_id3156295\n"
-"77\n"
"help.text"
msgid "<emph>StDev</emph> is the standard deviation of the distribution."
msgstr "<emph> ཨེསི་ཊི་ཌི་ཨི་ཝི་ </emph> དེ་ བགོ་བཀྲམ་འབད་ནི་གི་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་ཨིན།"
@@ -44810,7 +42044,6 @@ msgstr "<emph> ཨེསི་ཊི་ཌི་ཨི་ཝི་ </emph> ད
msgctxt ""
"04060184.xhp\n"
"par_id3145080\n"
-"78\n"
"help.text"
msgid "<emph>C</emph> is optional. <emph>C</emph> = 0 calculates the density function, <emph>C</emph> = 1 calculates the distribution."
msgstr "<emph> སི་ </emph> = ༠ གིས་ སྟུག་ཚད་ལས་འགན་རྩིས་སྟོནམ་ཨིན། <emph> སི་ </emph> = ༡ གིས་ བགོ་བཀྲམ་འབད་ནི་དེ་རྩིས་སྟོནམ་ཨིན།"
@@ -44819,7 +42052,6 @@ msgstr "<emph> སི་ </emph> = ༠ གིས་ སྟུག་ཚད་ལ
msgctxt ""
"04060184.xhp\n"
"hd_id3152972\n"
-"79\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -44828,7 +42060,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id3149283\n"
-"80\n"
"help.text"
msgid "<item type=\"input\">=NORMDIST(70;63;5;0)</item> returns 0.03."
msgstr ""
@@ -44837,13 +42068,11 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id3149448\n"
-"81\n"
"help.text"
msgid "<item type=\"input\">=NORMDIST(70;63;5;1)</item> returns 0.92."
msgstr ""
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2913722\n"
@@ -44852,21 +42081,17 @@ msgid "<bookmark_value>NORM.DIST function</bookmark_value><bookmark_value>densit
msgstr "<bookmark_value>NORMDIST ལས་འགན་</bookmark_value><bookmark_value>སྟུག་ཚད་ལས་འགན་</bookmark_value>"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"hd_id2913722\n"
-"71\n"
"help.text"
msgid "NORM.DIST"
msgstr "NORMDIST"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2910386\n"
-"72\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NORMDIST_MS\">Returns the density function or the normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">སྟུག་ཚད་ལས་འགན་ ཡང་ན་ སྤྱིར་བཏང་བསྡུ་གསོག་བགོ་བཀྲམ་འདི་སླར་ལོག་འབདཝ་ཨིན།</ahelp>"
@@ -44875,27 +42100,22 @@ msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">སྟུག་ཚད་ལས་འག
msgctxt ""
"04060184.xhp\n"
"hd_id2913282\n"
-"73\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2910613\n"
-"74\n"
"help.text"
msgid "NORM.DIST(Number; Mean; StDev; C)"
msgstr "NORMDIST(ཨང་གྲངས། མཱིན། ཨེསི་ཊི་ཌི་ཨི་ཝི། སི།)"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2919820\n"
-"75\n"
"help.text"
msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> དེ་ལུ་གཞི་བཞག་སྟེ་ སྤྱིར་བཏང་བགོ་བཀྲམ་དེ་རྩིས་བརྐྱབ་ནི་ཨིན་པའི་བགོ་བཀྲམ་གྱི་གནས་གོང་ཨིན།"
@@ -44904,7 +42124,6 @@ msgstr "<emph> ཨང་གྲངས་དེ་ </emph> དེ་ལུ་ག
msgctxt ""
"04060184.xhp\n"
"par_id2916063\n"
-"76\n"
"help.text"
msgid "<emph>Mean</emph> is the mean value of the distribution."
msgstr "<emph> མཱིན་དེ་ </emph> བགོ་བཀྲམ་འབད་ནི་གི་ མཱིན་གནས་གོང་ཨིན།"
@@ -44913,17 +42132,14 @@ msgstr "<emph> མཱིན་དེ་ </emph> བགོ་བཀྲམ་འ
msgctxt ""
"04060184.xhp\n"
"par_id2916295\n"
-"77\n"
"help.text"
msgid "<emph>StDev</emph> is the standard deviation of the distribution."
msgstr "<emph> ཨེསི་ཊི་ཌི་ཨི་ཝི་ </emph> དེ་ བགོ་བཀྲམ་འབད་ནི་གི་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་ཨིན།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2915080\n"
-"78\n"
"help.text"
msgid "<emph>C</emph> = 0 calculates the density function, <emph>C</emph> = 1 calculates the distribution."
msgstr "<emph> སི་ </emph> = ༠ གིས་ སྟུག་ཚད་ལས་འགན་རྩིས་སྟོནམ་ཨིན། <emph> སི་ </emph> = ༡ གིས་ བགོ་བཀྲམ་འབད་ནི་དེ་རྩིས་སྟོནམ་ཨིན།"
@@ -44932,7 +42148,6 @@ msgstr "<emph> སི་ </emph> = ༠ གིས་ སྟུག་ཚད་ལ
msgctxt ""
"04060184.xhp\n"
"hd_id2912972\n"
-"79\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -44941,7 +42156,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id2919283\n"
-"80\n"
"help.text"
msgid "<item type=\"input\">=NORM.DIST(70;63;5;0)</item> returns 0.029945493."
msgstr ""
@@ -44950,7 +42164,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2919448\n"
-"81\n"
"help.text"
msgid "<item type=\"input\">=NORM.DIST(70;63;5;1)</item> returns 0.9192433408."
msgstr ""
@@ -44967,7 +42180,6 @@ msgstr "<bookmark_value>PEARSON ལས་འགན།</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3152934\n"
-"83\n"
"help.text"
msgid "PEARSON"
msgstr "PEARSON"
@@ -44976,7 +42188,6 @@ msgstr "PEARSON"
msgctxt ""
"04060184.xhp\n"
"par_id3153216\n"
-"84\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_PEARSON\">Returns the Pearson product moment correlation coefficient r.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_PEARSON\"> པི་ཡར་སཱན་ཡུད་ཙམ་མཐུན་མོས་ཀྱི་འབྲེལ་བའི་གྲངས་རྟགས་ ཨར་ སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -44985,7 +42196,6 @@ msgstr "<ahelp hid=\"HID_FUNC_PEARSON\"> པི་ཡར་སཱན་ཡུད
msgctxt ""
"04060184.xhp\n"
"hd_id3147081\n"
-"85\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -44994,7 +42204,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id3156133\n"
-"86\n"
"help.text"
msgid "PEARSON(Data1; Data2)"
msgstr "PEARSON(Data_1; Data_2)"
@@ -45003,7 +42212,6 @@ msgstr "PEARSON(Data_1; Data_2)"
msgctxt ""
"04060184.xhp\n"
"par_id3151272\n"
-"87\n"
"help.text"
msgid "<emph>Data1</emph> represents the array of the first data set."
msgstr "<emph>Data_1</emph> གིས་ གནད་སྡུད་ཆ་ཚན་དང་པའི་ཨེ་རེ་ ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -45012,7 +42220,6 @@ msgstr "<emph>Data_1</emph> གིས་ གནད་སྡུད་ཆ་ཚན
msgctxt ""
"04060184.xhp\n"
"par_id3153279\n"
-"88\n"
"help.text"
msgid "<emph>Data2</emph> represents the array of the second data set."
msgstr "<emph>Data_2</emph> གིས་ གནད་སྡུད་ཆ་ཚན་གཉིས་པའི་ཨེ་རེ་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -45021,7 +42228,6 @@ msgstr "<emph>Data_2</emph> གིས་ གནད་སྡུད་ཆ་ཚན
msgctxt ""
"04060184.xhp\n"
"hd_id3147567\n"
-"89\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -45030,7 +42236,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id3151187\n"
-"90\n"
"help.text"
msgid "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> returns the Pearson correlation coefficient of both data sets."
msgstr "=PEARSON(A1:A30; B1:B30) གནད་སྡུད་ཆ་ཚན་གཉིས་ཆ་རའི་ པི་ཡར་སཱོན་མཐུན་མོས་ཀྱི་འབྲེལ་བའི་གྲངས་རྟགས་སླར་ལོག་འབདཝ་ཨིན།"
@@ -45047,7 +42252,6 @@ msgstr "<bookmark_value>PHI ལས་འགན།</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3152806\n"
-"92\n"
"help.text"
msgid "PHI"
msgstr "PHI"
@@ -45056,7 +42260,6 @@ msgstr "PHI"
msgctxt ""
"04060184.xhp\n"
"par_id3150254\n"
-"93\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_PHI\">Returns the values of the distribution function for a standard normal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_PHI\"> སྤྱིར་བཏང་ཚད་ལྡན་བགོ་བཀྲམ་དོན་ལུ་ བགོ་བཀྲམ་ལས་འགན་གྱི་གནས་གོང་ཚུ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -45065,7 +42268,6 @@ msgstr "<ahelp hid=\"HID_FUNC_PHI\"> སྤྱིར་བཏང་ཚད་ལ
msgctxt ""
"04060184.xhp\n"
"hd_id3154748\n"
-"94\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -45074,7 +42276,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id3149976\n"
-"95\n"
"help.text"
msgid "PHI(Number)"
msgstr "PHI(ཨང་།)"
@@ -45083,7 +42284,6 @@ msgstr "PHI(ཨང་།)"
msgctxt ""
"04060184.xhp\n"
"par_id3156108\n"
-"96\n"
"help.text"
msgid "<emph>Number</emph> represents the value based on which the standard normal distribution is calculated."
msgstr "<emph>ཨང་གིས་</emph> སྤྱིར་བཏང་ཚད་ལྡན་བགོ་བཀྲམ་འབད་རྩིས་སྟོན་ཡོད་མི་གུ་གནས་གོང་གཞི་རྟེན་འདི་ཁྱད་ཚབ་འབཝ་ཨིན།"
@@ -45092,7 +42292,6 @@ msgstr "<emph>ཨང་གིས་</emph> སྤྱིར་བཏང་ཚད
msgctxt ""
"04060184.xhp\n"
"hd_id3153621\n"
-"97\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -45101,7 +42300,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id3155849\n"
-"98\n"
"help.text"
msgid "<item type=\"input\">=PHI(2.25) </item>= 0.03"
msgstr ""
@@ -45110,7 +42308,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id3143236\n"
-"99\n"
"help.text"
msgid "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
msgstr ""
@@ -45119,7 +42316,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id3149286\n"
-"100\n"
"help.text"
msgid "<item type=\"input\">=PHI(0)</item> = 0.4"
msgstr ""
@@ -45136,7 +42332,6 @@ msgstr "<bookmark_value>POISSON ལས་འགན།</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3153985\n"
-"102\n"
"help.text"
msgid "POISSON"
msgstr "POISSON"
@@ -45145,7 +42340,6 @@ msgstr "POISSON"
msgctxt ""
"04060184.xhp\n"
"par_id3154298\n"
-"103\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_POISSON\">Returns the Poisson distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_POISSON\"> པོའི་སཱོན་བགོ་བཀྲམ་འབད་ནི་ སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -45154,7 +42348,6 @@ msgstr "<ahelp hid=\"HID_FUNC_POISSON\"> པོའི་སཱོན་བགོ
msgctxt ""
"04060184.xhp\n"
"hd_id3159183\n"
-"104\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -45163,7 +42356,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id3146093\n"
-"105\n"
"help.text"
msgid "POISSON(Number; Mean; C)"
msgstr "POISSON(ཨང་། ཐབས་ལམ། སི།)"
@@ -45172,7 +42364,6 @@ msgstr "POISSON(ཨང་། ཐབས་ལམ། སི།)"
msgctxt ""
"04060184.xhp\n"
"par_id3147253\n"
-"106\n"
"help.text"
msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
msgstr "<emph>ཨང་གིས་</emph> པོའི་སོན་བགོ་བཀྲམ་འབད་རྩིས་སྟོན་ཡོད་མི་གུ་གནས་གོང་གཞི་རྟེན་འདི་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -45181,7 +42372,6 @@ msgstr "<emph>ཨང་གིས་</emph> པོའི་སོན་བགོ
msgctxt ""
"04060184.xhp\n"
"par_id3151177\n"
-"107\n"
"help.text"
msgid "<emph>Mean</emph> represents the middle value of the Poisson distribution."
msgstr "<emph>བར་མའི་ཆ་གྲངས་ཀྱིས་</emph> པོའི་སོན་བགོ་བཀྲམ་བཏོན་གྱི་གནས་གོང་བར་མ་འདི་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -45190,7 +42380,6 @@ msgstr "<emph>བར་མའི་ཆ་གྲངས་ཀྱིས་</emph>
msgctxt ""
"04060184.xhp\n"
"par_id3149200\n"
-"108\n"
"help.text"
msgid "<emph>C</emph> (optional) = 0 or False calculates the density function; <emph>C</emph> = 1 or True calculates the distribution. When omitted, the default value True is inserted when you save the document, for best compatibility with other programs and older versions of %PRODUCTNAME."
msgstr ""
@@ -45199,7 +42388,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id3159347\n"
-"109\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -45208,13 +42396,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id3150113\n"
-"110\n"
"help.text"
msgid "<item type=\"input\">=POISSON(60;50;1)</item> returns 0.93."
msgstr ""
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2953985\n"
@@ -45226,17 +42412,14 @@ msgstr "<bookmark_value>POISSON ལས་འགན།</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id2953985\n"
-"102\n"
"help.text"
msgid "POISSON.DIST"
msgstr ""
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2954298\n"
-"103\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_POISSON_DIST_MS\">Returns the Poisson distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_POISSON\"> པོའི་སཱོན་བགོ་བཀྲམ་འབད་ནི་ སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -45245,37 +42428,30 @@ msgstr "<ahelp hid=\"HID_FUNC_POISSON\"> པོའི་སཱོན་བགོ
msgctxt ""
"04060184.xhp\n"
"hd_id2959183\n"
-"104\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2946093\n"
-"105\n"
"help.text"
msgid "POISSON.DIST(Number; Mean; C)"
msgstr "POISSON(ཨང་། ཐབས་ལམ། སི།)"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2947253\n"
-"106\n"
"help.text"
msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
msgstr "<emph>ཨང་གིས་</emph> པོའི་སོན་བགོ་བཀྲམ་འབད་རྩིས་སྟོན་ཡོད་མི་གུ་གནས་གོང་གཞི་རྟེན་འདི་ཁྱད་ཚབ་འབདཝ་ཨིན།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2951177\n"
-"107\n"
"help.text"
msgid "<emph>Mean</emph> represents the middle value of the Poisson distribution."
msgstr "<emph>བར་མའི་ཆ་གྲངས་ཀྱིས་</emph> པོའི་སོན་བགོ་བཀྲམ་བཏོན་གྱི་གནས་གོང་བར་མ་འདི་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -45284,7 +42460,6 @@ msgstr "<emph>བར་མའི་ཆ་གྲངས་ཀྱིས་</emph>
msgctxt ""
"04060184.xhp\n"
"par_id2949200\n"
-"108\n"
"help.text"
msgid "<emph>C</emph> (optional) = 0 or False calculates the density function; <emph>C</emph> = 1 or True calculates the distribution. When omitted, the default value True is inserted when you save the document, for best compatibility with other programs and older versions of %PRODUCTNAME."
msgstr ""
@@ -45293,7 +42468,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2959347\n"
-"109\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -45302,7 +42476,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id2950113\n"
-"110\n"
"help.text"
msgid "<item type=\"input\">=POISSON.DIST(60;50;1)</item> returns 0.9278398202."
msgstr ""
@@ -45319,7 +42492,6 @@ msgstr "<bookmark_value>PERCENTILE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3153100\n"
-"112\n"
"help.text"
msgid "PERCENTILE"
msgstr "PERCENTILE"
@@ -45328,7 +42500,6 @@ msgstr "PERCENTILE"
msgctxt ""
"04060184.xhp\n"
"par_id3154940\n"
-"113\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_QUANTIL\">Returns the alpha-percentile of data values in an array.</ahelp> A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (alpha=1) of a data series. For <item type=\"literal\">Alpha</item> = 25%, the percentile means the first quartile; <item type=\"literal\">Alpha</item> = 50% is the MEDIAN."
msgstr "<ahelp hid=\"HID_FUNC_QUANTIL\">ཨེ་རེ་གཅིག་ནང་ གནད་སྡུད་གནས་གོང་ཚུའི་ཨཱལ་ཕ་བརྒྱ་ཚག་སླར་ལོག་འབདཝ་ཨིན། </ahelp> བརྒྱ་ཚག་གིས་ གནད་སྡུད་རྒྱུན་རིམ་གྱི་གནས་གོང་ཆུང་ཤོས་ལས་སྦོམ་ཤོས་ཚུན་འགྱོ་བའི་ (ཨཱལ་ཕ་= ༠) གནད་སྡུད་རྒྱུན་རིམ་དོན་ལུ་ (ཨཱལ་ཕ་= ༡) གནས་སྡུད་ཆ་ཚད་སླར་ལོག་འབདཝ་ཨིན། <emph> ཨཱལ་ཕ་ </emph> = 25% དོན་ལུ་ བརྒྱ་ཚག་དེ་ གྲུ་བཞི་བཟོ་ནི་དང་པམ་ལུ་གོ་ནི་དང་ <emph> ཨཱལ་ཕ་ </emph> = 50% དེ་ MEDIAN ལུ་གོ་ནི་ཨིན།"
@@ -45337,7 +42508,6 @@ msgstr "<ahelp hid=\"HID_FUNC_QUANTIL\">ཨེ་རེ་གཅིག་ནང
msgctxt ""
"04060184.xhp\n"
"hd_id3150531\n"
-"114\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -45346,7 +42516,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id3148813\n"
-"115\n"
"help.text"
msgid "PERCENTILE(Data; Alpha)"
msgstr "PERCENTILE(གནད་སྡུད། ཨཱལ་ཕ།)"
@@ -45355,7 +42524,6 @@ msgstr "PERCENTILE(གནད་སྡུད། ཨཱལ་ཕ།)"
msgctxt ""
"04060184.xhp\n"
"par_id3153054\n"
-"116\n"
"help.text"
msgid "<emph>Data</emph> represents the array of data."
msgstr "<emph> གནད་སྡུད་ཀྱིས་ </emph> གནད་སྡུད་ཀྱི་ཨེ་རེ་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -45364,7 +42532,6 @@ msgstr "<emph> གནད་སྡུད་ཀྱིས་ </emph> གནད་
msgctxt ""
"04060184.xhp\n"
"par_id3154212\n"
-"117\n"
"help.text"
msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
msgstr "<emph> ཨཱལ་ཕ་ </emph> གིས་ འཇལ་ཚད་ ༠ དང་ ༡ བར་གྱི་ བརྒྱ་ཆ་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -45373,7 +42540,6 @@ msgstr "<emph> ཨཱལ་ཕ་ </emph> གིས་ འཇལ་ཚད་ ༠
msgctxt ""
"04060184.xhp\n"
"hd_id3154290\n"
-"118\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -45382,13 +42548,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id3159147\n"
-"119\n"
"help.text"
msgid "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> represents the value in the data set, which equals 10% of the total data scale in A1:A50."
msgstr "=PERCENTILE(A1:A50; 0.1) གིས་ A1:A50 ནང་ གནད་སྡུད་ཆ་ཚད་བསྡོམས་ཀྱི་ ༡༠% དང་མཉམ་མི་ གནད་སྡུད་ཆ་ཚན་ནང་གནས་གོང་ཁྱད་ཚབ་འབདཝ་ཨིན།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2853100\n"
@@ -45400,7 +42564,6 @@ msgstr "<bookmark_value>PERCENTILE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id2853100\n"
-"112\n"
"help.text"
msgid "PERCENTILE.EXC"
msgstr ""
@@ -45409,7 +42572,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2854940\n"
-"113\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_PERCENTILE_EXC\">Returns the <item type=\"literal\">Alpha</item>'th percentile of a supplied range of values for a given value of <item type=\"literal\">Alpha</item>, within the range 0 to 1 (exclusive).</ahelp> A percentile returns the scale value for a data series which goes from the smallest (<item type=\"literal\">Alpha=0</item>) to the largest value (<item type=\"literal\">Alpha=1</item>) of a data series. For <item type=\"literal\">Alpha</item> = 25%, the percentile means the first quartile; <item type=\"literal\">Alpha</item> = 50% is the MEDIAN."
msgstr ""
@@ -45418,7 +42580,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2754940\n"
-"113\n"
"help.text"
msgid "If <item type=\"literal\">Alpha</item> is not a multiple of <item type=\"literal\">1/(n+1)</item>, (where n is the number of values in the supplied array), the function interpolates between the values in the supplied array, to calculate the percentile value. However, if <item type=\"literal\">Alpha</item> is less than <item type=\"literal\">1/(n+1)</item> or <item type=\"literal\">Alpha</item> is greater than <item type=\"literal\">n/(n+1)</item>, the function is unable to interpolate, and so returns an error."
msgstr ""
@@ -45435,17 +42596,14 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2850531\n"
-"114\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2848813\n"
-"115\n"
"help.text"
msgid "PERCENTILE.EXC(Data; Alpha)"
msgstr "PERCENTILE(གནད་སྡུད། ཨཱལ་ཕ།)"
@@ -45454,17 +42612,14 @@ msgstr "PERCENTILE(གནད་སྡུད། ཨཱལ་ཕ།)"
msgctxt ""
"04060184.xhp\n"
"par_id2853054\n"
-"116\n"
"help.text"
msgid "<emph>Data</emph> represents the array of data."
msgstr "<emph> གནད་སྡུད་ཀྱིས་ </emph> གནད་སྡུད་ཀྱི་ཨེ་རེ་ཁྱད་ཚབ་འབདཝ་ཨིན།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2854212\n"
-"117\n"
"help.text"
msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
msgstr "<emph> ཨཱལ་ཕ་ </emph> གིས་ འཇལ་ཚད་ ༠ དང་ ༡ བར་གྱི་ བརྒྱ་ཆ་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -45473,23 +42628,19 @@ msgstr "<emph> ཨཱལ་ཕ་ </emph> གིས་ འཇལ་ཚད་ ༠
msgctxt ""
"04060184.xhp\n"
"hd_id2854290\n"
-"118\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2859147\n"
-"119\n"
"help.text"
msgid "<item type=\"input\">=PERCENTILE.EXC(A1:A50;10%)</item> represents the value in the data set, which equals 10% of the total data scale in A1:A50."
msgstr "=PERCENTILE(A1:A50; 0.1) གིས་ A1:A50 ནང་ གནད་སྡུད་ཆ་ཚད་བསྡོམས་ཀྱི་ ༡༠% དང་མཉམ་མི་ གནད་སྡུད་ཆ་ཚན་ནང་གནས་གོང་ཁྱད་ཚབ་འབདཝ་ཨིན།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2953100\n"
@@ -45501,17 +42652,14 @@ msgstr "<bookmark_value>PERCENTILE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id2953100\n"
-"112\n"
"help.text"
msgid "PERCENTILE.INC"
msgstr ""
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2954940\n"
-"113\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_PERCENTILE_INC\">Returns the alpha-percentile of data values in an array.</ahelp> A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (alpha=1) of a data series. For <item type=\"literal\">Alpha</item> = 25%, the percentile means the first quartile; <item type=\"literal\">Alpha</item> = 50% is the MEDIAN."
msgstr "<ahelp hid=\"HID_FUNC_QUANTIL\">ཨེ་རེ་གཅིག་ནང་ གནད་སྡུད་གནས་གོང་ཚུའི་ཨཱལ་ཕ་བརྒྱ་ཚག་སླར་ལོག་འབདཝ་ཨིན། </ahelp> བརྒྱ་ཚག་གིས་ གནད་སྡུད་རྒྱུན་རིམ་གྱི་གནས་གོང་ཆུང་ཤོས་ལས་སྦོམ་ཤོས་ཚུན་འགྱོ་བའི་ (ཨཱལ་ཕ་= ༠) གནད་སྡུད་རྒྱུན་རིམ་དོན་ལུ་ (ཨཱལ་ཕ་= ༡) གནས་སྡུད་ཆ་ཚད་སླར་ལོག་འབདཝ་ཨིན། <emph> ཨཱལ་ཕ་ </emph> = 25% དོན་ལུ་ བརྒྱ་ཚག་དེ་ གྲུ་བཞི་བཟོ་ནི་དང་པམ་ལུ་གོ་ནི་དང་ <emph> ཨཱལ་ཕ་ </emph> = 50% དེ་ MEDIAN ལུ་གོ་ནི་ཨིན།"
@@ -45528,17 +42676,14 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2950531\n"
-"114\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2948813\n"
-"115\n"
"help.text"
msgid "PERCENTILE.INC(Data; Alpha)"
msgstr "PERCENTILE(གནད་སྡུད། ཨཱལ་ཕ།)"
@@ -45547,17 +42692,14 @@ msgstr "PERCENTILE(གནད་སྡུད། ཨཱལ་ཕ།)"
msgctxt ""
"04060184.xhp\n"
"par_id2953054\n"
-"116\n"
"help.text"
msgid "<emph>Data</emph> represents the array of data."
msgstr "<emph> གནད་སྡུད་ཀྱིས་ </emph> གནད་སྡུད་ཀྱི་ཨེ་རེ་ཁྱད་ཚབ་འབདཝ་ཨིན།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2954212\n"
-"117\n"
"help.text"
msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
msgstr "<emph> ཨཱལ་ཕ་ </emph> གིས་ འཇལ་ཚད་ ༠ དང་ ༡ བར་གྱི་ བརྒྱ་ཆ་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -45566,17 +42708,14 @@ msgstr "<emph> ཨཱལ་ཕ་ </emph> གིས་ འཇལ་ཚད་ ༠
msgctxt ""
"04060184.xhp\n"
"hd_id2954290\n"
-"118\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2959147\n"
-"119\n"
"help.text"
msgid "<item type=\"input\">=PERCENTILE.INC(A1:A50;0.1)</item> represents the value in the data set, which equals 10% of the total data scale in A1:A50."
msgstr "=PERCENTILE(A1:A50; 0.1) གིས་ A1:A50 ནང་ གནད་སྡུད་ཆ་ཚད་བསྡོམས་ཀྱི་ ༡༠% དང་མཉམ་མི་ གནད་སྡུད་ཆ་ཚན་ནང་གནས་གོང་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -45593,7 +42732,6 @@ msgstr "<bookmark_value>PERCENTRANK ལས་འགན།</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3148807\n"
-"121\n"
"help.text"
msgid "PERCENTRANK"
msgstr "PERCENTRANK"
@@ -45602,7 +42740,6 @@ msgstr "PERCENTRANK"
msgctxt ""
"04060184.xhp\n"
"par_id3153573\n"
-"122\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">Returns the percentage rank of a value in a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_QUANTILSRANG\"> དཔེ་ཚད་ནང་ལུ་ གནས་གོང་གི་བརྒྱ་ཆའི་གོ་གནས་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -45611,7 +42748,6 @@ msgstr "<ahelp hid=\"HID_FUNC_QUANTILSRANG\"> དཔེ་ཚད་ནང་ལ
msgctxt ""
"04060184.xhp\n"
"hd_id3147512\n"
-"123\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -45620,16 +42756,14 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id3147238\n"
-"124\n"
"help.text"
-msgid "PERCENTRANK(Data; Value)"
-msgstr "PERCENTRANK(གནད་སྡུད་ ; གནས་གོང་།)"
+msgid "PERCENTRANK(Data; Value; Significance)"
+msgstr ""
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
"par_id3154266\n"
-"125\n"
"help.text"
msgid "<emph>Data</emph> represents the array of data in the sample."
msgstr "<emph> གནད་སྡུད་ཀྱིས་ </emph> དཔེ་ཚད་ནང་ལུ་ གནད་སྡུད་ཀྱི་ཨེ་རེ་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -45638,7 +42772,6 @@ msgstr "<emph> གནད་སྡུད་ཀྱིས་ </emph> དཔེ་
msgctxt ""
"04060184.xhp\n"
"par_id3148475\n"
-"126\n"
"help.text"
msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
msgstr "<emph> གནས་གོང་གིས་ </emph> བརྒྱ་ཚག་གོ་གནས་གཏན་འབེབས་བཟོ་དགོ་པའི་གནས་གོང་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -45646,8 +42779,15 @@ msgstr "<emph> གནས་གོང་གིས་ </emph> བརྒྱ་ཚ
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
+"par_id2748477\n"
+"help.text"
+msgid "<emph>Significance</emph> An optional argument that specifies the number of significant digits that the returned percentage value is rounded to. If omitted, a value of 3 is used."
+msgstr ""
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
"hd_id3155364\n"
-"127\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -45656,13 +42796,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id3149163\n"
-"128\n"
"help.text"
msgid "<item type=\"input\">=PERCENTRANK(A1:A50;50)</item> returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear."
msgstr "=PERCENTRANK(A1:A50; 50) གིས་ A1:A50 ནང་ཐོབ་པའི་ གནས་གོང་ཚུ་ཆ་མཉམ་གྱི་ཁྱབ་ཚད་བསྡོམས་ལས་ གནས་གོང་ ༥༠ གི་ བརྒྱ་ཆའི་གོ་གནས་སླར་ལོག་འབདཝ་ཨིན། ༥༠ དེ་ ཁྱབ་ཚད་བསྡོམས་ཀྱི་ཕྱི་ཁར་ཕོག་པ་ཅིན་ འཕྲིན་དོན་འཛོལ་འབྱུང་ནི་ཨིན།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2848807\n"
@@ -45674,7 +42812,6 @@ msgstr "<bookmark_value>PERCENTRANK ལས་འགན།</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id2848807\n"
-"121\n"
"help.text"
msgid "PERCENTRANK.EXC"
msgstr ""
@@ -45683,7 +42820,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2853573\n"
-"122\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_PERCENTRANK_EXC\"> Returns the relative position, between 0 and 1 (exclusive), of a specified value within a supplied array.</ahelp>"
msgstr ""
@@ -45700,7 +42836,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2847512\n"
-"123\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -45709,7 +42844,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id2847238\n"
-"124\n"
"help.text"
msgid "PERCENTRANK.EXC(Data; Value; Significance)"
msgstr ""
@@ -45718,17 +42852,14 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2854266\n"
-"125\n"
"help.text"
msgid "<emph>Data</emph> represents the array of data in the sample."
msgstr "<emph> གནད་སྡུད་ཀྱིས་ </emph> དཔེ་ཚད་ནང་ལུ་ གནད་སྡུད་ཀྱི་ཨེ་རེ་ཁྱད་ཚབ་འབདཝ་ཨིན།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2848475\n"
-"126\n"
"help.text"
msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
msgstr "<emph> གནས་གོང་གིས་ </emph> བརྒྱ་ཚག་གོ་གནས་གཏན་འབེབས་བཟོ་དགོ་པའི་གནས་གོང་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -45737,7 +42868,6 @@ msgstr "<emph> གནས་གོང་གིས་ </emph> བརྒྱ་ཚ
msgctxt ""
"04060184.xhp\n"
"par_id2748475\n"
-"126\n"
"help.text"
msgid "<emph>Significance</emph> An optional argument that specifies the number of significant digits that the returned percentage value is rounded to."
msgstr ""
@@ -45746,23 +42876,19 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2855364\n"
-"127\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2849163\n"
-"128\n"
"help.text"
msgid "<item type=\"input\">=PERCENTRANK.EXC(A1:A50;50)</item> returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear."
msgstr "=PERCENTRANK(A1:A50; 50) གིས་ A1:A50 ནང་ཐོབ་པའི་ གནས་གོང་ཚུ་ཆ་མཉམ་གྱི་ཁྱབ་ཚད་བསྡོམས་ལས་ གནས་གོང་ ༥༠ གི་ བརྒྱ་ཆའི་གོ་གནས་སླར་ལོག་འབདཝ་ཨིན། ༥༠ དེ་ ཁྱབ་ཚད་བསྡོམས་ཀྱི་ཕྱི་ཁར་ཕོག་པ་ཅིན་ འཕྲིན་དོན་འཛོལ་འབྱུང་ནི་ཨིན།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2948807\n"
@@ -45774,7 +42900,6 @@ msgstr "<bookmark_value>PERCENTRANK ལས་འགན།</bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id2948807\n"
-"121\n"
"help.text"
msgid "PERCENTRANK.INC"
msgstr ""
@@ -45783,7 +42908,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2953573\n"
-"122\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_PERCENTRANK_INC\">Returns the relative position, between 0 and 1 (inclusive), of a specified value within a supplied array.</ahelp>"
msgstr ""
@@ -45800,7 +42924,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2947512\n"
-"123\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -45809,7 +42932,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id2947238\n"
-"124\n"
"help.text"
msgid "PERCENTRANK.INC(Data; Value; Significance)"
msgstr ""
@@ -45818,17 +42940,14 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2954266\n"
-"125\n"
"help.text"
msgid "<emph>Data</emph> represents the array of data in the sample."
msgstr "<emph> གནད་སྡུད་ཀྱིས་ </emph> དཔེ་ཚད་ནང་ལུ་ གནད་སྡུད་ཀྱི་ཨེ་རེ་ཁྱད་ཚབ་འབདཝ་ཨིན།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2948475\n"
-"126\n"
"help.text"
msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
msgstr "<emph> གནས་གོང་གིས་ </emph> བརྒྱ་ཚག་གོ་གནས་གཏན་འབེབས་བཟོ་དགོ་པའི་གནས་གོང་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -45837,7 +42956,6 @@ msgstr "<emph> གནས་གོང་གིས་ </emph> བརྒྱ་ཚ
msgctxt ""
"04060184.xhp\n"
"par_id2648475\n"
-"126\n"
"help.text"
msgid "<emph>Significance</emph> An optional argument that specifies the number of significant digits that the returned percentage value is rounded to."
msgstr ""
@@ -45846,17 +42964,14 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2955364\n"
-"127\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2949163\n"
-"128\n"
"help.text"
msgid "<item type=\"input\">=PERCENTRANK.INC(A1:A50;50)</item> returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear."
msgstr "=PERCENTRANK(A1:A50; 50) གིས་ A1:A50 ནང་ཐོབ་པའི་ གནས་གོང་ཚུ་ཆ་མཉམ་གྱི་ཁྱབ་ཚད་བསྡོམས་ལས་ གནས་གོང་ ༥༠ གི་ བརྒྱ་ཆའི་གོ་གནས་སླར་ལོག་འབདཝ་ཨིན། ༥༠ དེ་ ཁྱབ་ཚད་བསྡོམས་ཀྱི་ཕྱི་ཁར་ཕོག་པ་ཅིན་ འཕྲིན་དོན་འཛོལ་འབྱུང་ནི་ཨིན།"
@@ -45873,7 +42988,6 @@ msgstr "<bookmark_value>QUARTILE ལས་འགན། </bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id3166442\n"
-"130\n"
"help.text"
msgid "QUARTILE"
msgstr "QUARTILE"
@@ -45882,7 +42996,6 @@ msgstr "QUARTILE"
msgctxt ""
"04060184.xhp\n"
"par_id3146958\n"
-"131\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_QUARTILE\">Returns the quartile of a data set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\"> གནད་སྡུད་ཆ་ཚན་གྱི་གྲུ་བཞི་བཟོ་ནི་དེ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -45891,7 +43004,6 @@ msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\"> གནད་སྡུད་ཆ་ཚ
msgctxt ""
"04060184.xhp\n"
"hd_id3152942\n"
-"132\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -45900,7 +43012,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060184.xhp\n"
"par_id3153684\n"
-"133\n"
"help.text"
msgid "QUARTILE(Data; Type)"
msgstr "QUARTILE(གནད་སྡུད་།དབྱེ་བ།)"
@@ -45909,7 +43020,6 @@ msgstr "QUARTILE(གནད་སྡུད་།དབྱེ་བ།)"
msgctxt ""
"04060184.xhp\n"
"par_id3153387\n"
-"134\n"
"help.text"
msgid "<emph>Data</emph> represents the array of data in the sample."
msgstr "<emph> གནད་སྡུད་ཀྱིས་ </emph> དཔེ་ཚད་ནང་ལུ་ གནད་སྡུད་ཀྱི་ཨེ་རེ་ཁྱད་ཚབ་འབདཝ་ཨིན།"
@@ -45918,7 +43028,6 @@ msgstr "<emph> གནད་སྡུད་ཀྱིས་ </emph> དཔེ་
msgctxt ""
"04060184.xhp\n"
"par_id3155589\n"
-"135\n"
"help.text"
msgid "<emph>Type</emph> represents the type of quartile. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
msgstr "<emph> དབྱེ་བ་གིས་ </emph> གྲུ་བཞི་བཟོ་ནི་གི་དབྱེ་བ་ཁྱད་ཚབ་འབདཝ་ཨིན། (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% དང་ 4 = MAX.)"
@@ -45927,7 +43036,6 @@ msgstr "<emph> དབྱེ་བ་གིས་ </emph> གྲུ་བཞི
msgctxt ""
"04060184.xhp\n"
"hd_id3149103\n"
-"136\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -45936,13 +43044,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060184.xhp\n"
"par_id3159276\n"
-"137\n"
"help.text"
msgid "<item type=\"input\">=QUARTILE(A1:A50;2)</item> returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50."
msgstr "=QUARTILE(A1:A50; 2) གིས་ ཁྱབ་ཚད་ A1:A50 འདི་ནང་ལུ་ དམའ་ཤོས་ལས་མཐོ་ཤོས་གནས་གོང་ལུ་ ཆ་མཉམ་མི་ཆ་ཚད་འདི་གི་ ༥༠% གི་གནས་གོང་འདི་སླར་ལོག་འབདཝ་ཨིན།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2866442\n"
@@ -45954,7 +43060,6 @@ msgstr "<bookmark_value>QUARTILE ལས་འགན། </bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id2866442\n"
-"130\n"
"help.text"
msgid "QUARTILE.EXC"
msgstr ""
@@ -45963,7 +43068,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2846958\n"
-"131\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_QUARTILE_EXC\">Returns a requested quartile of a supplied range of values, based on a percentile range of 0 to 1 exclusive.</ahelp>"
msgstr ""
@@ -45980,17 +43084,14 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2852942\n"
-"132\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2853684\n"
-"133\n"
"help.text"
msgid "QUARTILE.EXC(Data; Type)"
msgstr "QUARTILE(གནད་སྡུད་།དབྱེ་བ།)"
@@ -45999,7 +43100,6 @@ msgstr "QUARTILE(གནད་སྡུད་།དབྱེ་བ།)"
msgctxt ""
"04060184.xhp\n"
"par_id2853387\n"
-"134\n"
"help.text"
msgid "<emph>Data</emph> represents the range of data values for which you want to calculate the specified quartile."
msgstr ""
@@ -46008,7 +43108,6 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"par_id2855589\n"
-"135\n"
"help.text"
msgid "<emph>Type</emph> An integer between 1 and 3, representing the required quartile. (if type = 1 or 3, the supplied array must contain more than 2 values)"
msgstr ""
@@ -46017,23 +43116,19 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2849103\n"
-"136\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2859276\n"
-"137\n"
"help.text"
msgid "<item type=\"input\">=QUARTILE.EXC(A1:A50;2)</item> returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50."
msgstr "=QUARTILE(A1:A50; 2) གིས་ ཁྱབ་ཚད་ A1:A50 འདི་ནང་ལུ་ དམའ་ཤོས་ལས་མཐོ་ཤོས་གནས་གོང་ལུ་ ཆ་མཉམ་མི་ཆ་ཚད་འདི་གི་ ༥༠% གི་གནས་གོང་འདི་སླར་ལོག་འབདཝ་ཨིན།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2966442\n"
@@ -46045,17 +43140,14 @@ msgstr "<bookmark_value>QUARTILE ལས་འགན། </bookmark_value>"
msgctxt ""
"04060184.xhp\n"
"hd_id2966442\n"
-"130\n"
"help.text"
msgid "QUARTILE.INC"
msgstr ""
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2946958\n"
-"131\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_QUARTILE_INC\">Returns the quartile of a data set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\"> གནད་སྡུད་ཆ་ཚན་གྱི་གྲུ་བཞི་བཟོ་ནི་དེ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -46072,17 +43164,14 @@ msgstr ""
msgctxt ""
"04060184.xhp\n"
"hd_id2952942\n"
-"132\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2953684\n"
-"133\n"
"help.text"
msgid "QUARTILE.INC(Data; Type)"
msgstr "QUARTILE(གནད་སྡུད་།དབྱེ་བ།)"
@@ -46091,17 +43180,14 @@ msgstr "QUARTILE(གནད་སྡུད་།དབྱེ་བ།)"
msgctxt ""
"04060184.xhp\n"
"par_id2953387\n"
-"134\n"
"help.text"
msgid "<emph>Data</emph> represents the array of data in the sample."
msgstr "<emph> གནད་སྡུད་ཀྱིས་ </emph> དཔེ་ཚད་ནང་ལུ་ གནད་སྡུད་ཀྱི་ཨེ་རེ་ཁྱད་ཚབ་འབདཝ་ཨིན།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2955589\n"
-"135\n"
"help.text"
msgid "<emph>Type</emph> represents the type of quartile. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
msgstr "<emph> དབྱེ་བ་གིས་ </emph> གྲུ་བཞི་བཟོ་ནི་གི་དབྱེ་བ་ཁྱད་ཚབ་འབདཝ་ཨིན། (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% དང་ 4 = MAX.)"
@@ -46110,17 +43196,14 @@ msgstr "<emph> དབྱེ་བ་གིས་ </emph> གྲུ་བཞི
msgctxt ""
"04060184.xhp\n"
"hd_id2949103\n"
-"136\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2959276\n"
-"137\n"
"help.text"
msgid "<item type=\"input\">=QUARTILE.INC(A1:A50;2)</item> returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50."
msgstr "=QUARTILE(A1:A50; 2) གིས་ ཁྱབ་ཚད་ A1:A50 འདི་ནང་ལུ་ དམའ་ཤོས་ལས་མཐོ་ཤོས་གནས་གོང་ལུ་ ཆ་མཉམ་མི་ཆ་ཚད་འདི་གི་ ༥༠% གི་གནས་གོང་འདི་སླར་ལོག་འབདཝ་ཨིན།"
@@ -46137,7 +43220,6 @@ msgstr "གྲངས་ཀྱི་ལས་འགན་ཡན་ལག་ལྔ
msgctxt ""
"04060185.xhp\n"
"hd_id3147072\n"
-"1\n"
"help.text"
msgid "<variable id=\"rz\"><link href=\"text/scalc/01/04060185.xhp\" name=\"Statistical Functions Part Five\">Statistical Functions Part Five</link></variable>"
msgstr "<variable id=\"rz\"><link href=\"text/scalc/01/04060185.xhp\" name=\"Statistical Functions Part Five\"> གྲངས་ཀྱི་ ལས་འགན་ ཡན་ལག་ལྔ་པ། </link></variable>"
@@ -46154,7 +43236,6 @@ msgstr "<bookmark_value>RANK ལས་འགན་</bookmark_value><bookmark_val
msgctxt ""
"04060185.xhp\n"
"hd_id3155071\n"
-"2\n"
"help.text"
msgid "RANK"
msgstr "RANK"
@@ -46163,7 +43244,6 @@ msgstr "RANK"
msgctxt ""
"04060185.xhp\n"
"par_id3153976\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_RANG\">Returns the rank of a number in a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_RANG\"> དཔེ་ཚད་ནང་ལུ་ གྲལ་རིམ་གྱི་གྱངས་ཁ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -46172,7 +43252,6 @@ msgstr "<ahelp hid=\"HID_FUNC_RANG\"> དཔེ་ཚད་ནང་ལུ་
msgctxt ""
"04060185.xhp\n"
"hd_id3159206\n"
-"4\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -46181,7 +43260,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3153250\n"
-"5\n"
"help.text"
msgid "RANK(Value; Data; Type)"
msgstr "RANK(གནད་གོང་། གནད་སྡུད། དབྱེ་བ།)"
@@ -46190,7 +43268,6 @@ msgstr "RANK(གནད་གོང་། གནད་སྡུད། དབྱ
msgctxt ""
"04060185.xhp\n"
"par_id3154543\n"
-"6\n"
"help.text"
msgid "<emph>Value</emph> is the value, whose rank is to be determined."
msgstr "<emph> གནས་གོང་འདི་ </emph> རེནཀི་ གཏན་འབེབས་བཟོ་ནི་ཨིན་པའི་གནས་གོང་ཨིན།"
@@ -46199,7 +43276,6 @@ msgstr "<emph> གནས་གོང་འདི་ </emph> རེནཀི་
msgctxt ""
"04060185.xhp\n"
"par_id3149130\n"
-"7\n"
"help.text"
msgid "<emph>Data</emph> is the array or range of data in the sample."
msgstr "<emph> གནད་སྡུད་ </emph> འདི་ དཔེ་ཚད་ནང་གི་ཨེ་རེ་ཡང་ན་ གནད་སྡུད་ཀྱི་ཁྱབ་ཚད་ཨིན།"
@@ -46208,7 +43284,6 @@ msgstr "<emph> གནད་སྡུད་ </emph> འདི་ དཔེ་ཚ
msgctxt ""
"04060185.xhp\n"
"par_id3150215\n"
-"8\n"
"help.text"
msgid "<emph>Type</emph> (optional) is the sequence order."
msgstr "<emph> དབྱེ་བ་ </emph> (གདམ་ཁ་ཅན།) འདི་འབྱུང་རིམ་ཨིན།"
@@ -46233,7 +43308,6 @@ msgstr "དབྱེ་བ་ = ༡ ཟེར་མི་དེ་ ཁྱབ་
msgctxt ""
"04060185.xhp\n"
"hd_id3143223\n"
-"9\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -46242,13 +43316,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3155919\n"
-"10\n"
"help.text"
msgid "<item type=\"input\">=RANK(A10;A1:A50)</item> returns the ranking of the value in A10 in value range A1:A50. If <item type=\"literal\">Value</item> does not exist within the range an error message is displayed."
msgstr "=RANK(A10; A1:A50) གིས་ A10 ནང་ གནས་གོང་ཁྱབ་ཚད་ A1:A50 ནང་ གནས་གོང་གི་གོ་རིམ་བསྒྲིག་ནི་སླར་ལོག་འབདཝ་ཨིན། གནས་གོང་དེ་ ཁྱབ་ཚད་ནང་འཁོད་ནང་མ་གནས་པ་ཅིན་ <emph> འཕྲིན་དོན་ </emph> འཛོལ་བ་གཅིག་བཀྲམ་སྟོན་འབད་ཡོདཔ་ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2955071\n"
@@ -46260,7 +43332,6 @@ msgstr "<bookmark_value>RANK ལས་འགན་</bookmark_value><bookmark_val
msgctxt ""
"04060185.xhp\n"
"hd_id2955071\n"
-"2\n"
"help.text"
msgid "RANK.AVG"
msgstr ""
@@ -46269,7 +43340,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"par_id2953976\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_RANK_AVG\">Returns the statistical rank of a given value, within a supplied array of values.</ahelp> If there are duplicate values in the list, the average rank is returned."
msgstr ""
@@ -46286,17 +43356,14 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"hd_id2959206\n"
-"4\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2953250\n"
-"5\n"
"help.text"
msgid "RANK.AVG(Value; Data; Type)"
msgstr "RANK(གནད་གོང་། གནད་སྡུད། དབྱེ་བ།)"
@@ -46305,7 +43372,6 @@ msgstr "RANK(གནད་གོང་། གནད་སྡུད། དབྱ
msgctxt ""
"04060185.xhp\n"
"par_id2954543\n"
-"6\n"
"help.text"
msgid "<emph>Value</emph> is the value, whose rank is to be determined."
msgstr "<emph> གནས་གོང་འདི་ </emph> རེནཀི་ གཏན་འབེབས་བཟོ་ནི་ཨིན་པའི་གནས་གོང་ཨིན།"
@@ -46314,7 +43380,6 @@ msgstr "<emph> གནས་གོང་འདི་ </emph> རེནཀི་
msgctxt ""
"04060185.xhp\n"
"par_id2949130\n"
-"7\n"
"help.text"
msgid "<emph>Data</emph> is the array or range of data in the sample."
msgstr "<emph> གནད་སྡུད་ </emph> འདི་ དཔེ་ཚད་ནང་གི་ཨེ་རེ་ཡང་ན་ གནད་སྡུད་ཀྱི་ཁྱབ་ཚད་ཨིན།"
@@ -46323,13 +43388,11 @@ msgstr "<emph> གནད་སྡུད་ </emph> འདི་ དཔེ་ཚ
msgctxt ""
"04060185.xhp\n"
"par_id2950215\n"
-"8\n"
"help.text"
msgid "<emph>Type</emph> (optional) is the sequence order."
msgstr "<emph> དབྱེ་བ་ </emph> (གདམ་ཁ་ཅན།) འདི་འབྱུང་རིམ་ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id0305398\n"
@@ -46349,23 +43412,19 @@ msgstr "དབྱེ་བ་ = ༡ ཟེར་མི་དེ་ ཁྱབ་
msgctxt ""
"04060185.xhp\n"
"hd_id2943223\n"
-"9\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2955919\n"
-"10\n"
"help.text"
msgid "<item type=\"input\">=RANK.AVG(A10;A1:A50)</item> returns the ranking of the value in A10 in value range A1:A50. If <item type=\"literal\">Value</item> does not exist within the range an error message is displayed."
msgstr "=RANK(A10; A1:A50) གིས་ A10 ནང་ གནས་གོང་ཁྱབ་ཚད་ A1:A50 ནང་ གནས་གོང་གི་གོ་རིམ་བསྒྲིག་ནི་སླར་ལོག་འབདཝ་ཨིན། གནས་གོང་དེ་ ཁྱབ་ཚད་ནང་འཁོད་ནང་མ་གནས་པ་ཅིན་ <emph> འཕྲིན་དོན་ </emph> འཛོལ་བ་གཅིག་བཀྲམ་སྟོན་འབད་ཡོདཔ་ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2855071\n"
@@ -46377,7 +43436,6 @@ msgstr "<bookmark_value>RANK ལས་འགན་</bookmark_value><bookmark_val
msgctxt ""
"04060185.xhp\n"
"hd_id2855071\n"
-"2\n"
"help.text"
msgid "RANK.EQ"
msgstr ""
@@ -46386,7 +43444,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"par_id2853976\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_RANK_EQ\">Returns the statistical rank of a given value, within a supplied array of values.</ahelp> If there are duplicate values in the list, these are given the same rank."
msgstr ""
@@ -46403,17 +43460,14 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"hd_id2859206\n"
-"4\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2853250\n"
-"5\n"
"help.text"
msgid "RANK.EQ(Value; Data; Type)"
msgstr "RANK(གནད་གོང་། གནད་སྡུད། དབྱེ་བ།)"
@@ -46422,7 +43476,6 @@ msgstr "RANK(གནད་གོང་། གནད་སྡུད། དབྱ
msgctxt ""
"04060185.xhp\n"
"par_id2854543\n"
-"6\n"
"help.text"
msgid "<emph>Value</emph> is the value, whose rank is to be determined."
msgstr "<emph> གནས་གོང་འདི་ </emph> རེནཀི་ གཏན་འབེབས་བཟོ་ནི་ཨིན་པའི་གནས་གོང་ཨིན།"
@@ -46431,7 +43484,6 @@ msgstr "<emph> གནས་གོང་འདི་ </emph> རེནཀི་
msgctxt ""
"04060185.xhp\n"
"par_id2849130\n"
-"7\n"
"help.text"
msgid "<emph>Data</emph> is the array or range of data in the sample."
msgstr "<emph> གནད་སྡུད་ </emph> འདི་ དཔེ་ཚད་ནང་གི་ཨེ་རེ་ཡང་ན་ གནད་སྡུད་ཀྱི་ཁྱབ་ཚད་ཨིན།"
@@ -46440,13 +43492,11 @@ msgstr "<emph> གནད་སྡུད་ </emph> འདི་ དཔེ་ཚ
msgctxt ""
"04060185.xhp\n"
"par_id2850215\n"
-"8\n"
"help.text"
msgid "<emph>Type</emph> (optional) is the sequence order."
msgstr "<emph> དབྱེ་བ་ </emph> (གདམ་ཁ་ཅན།) འདི་འབྱུང་རིམ་ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id89305398\n"
@@ -46466,17 +43516,14 @@ msgstr "དབྱེ་བ་ = ༡ ཟེར་མི་དེ་ ཁྱབ་
msgctxt ""
"04060185.xhp\n"
"hd_id2843223\n"
-"9\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2855919\n"
-"10\n"
"help.text"
msgid "<item type=\"input\">=RANK.EQ(A10;A1:A50)</item> returns the ranking of the value in A10 in value range A1:A50. If <item type=\"literal\">Value</item> does not exist within the range an error message is displayed."
msgstr "=RANK(A10; A1:A50) གིས་ A10 ནང་ གནས་གོང་ཁྱབ་ཚད་ A1:A50 ནང་ གནས་གོང་གི་གོ་རིམ་བསྒྲིག་ནི་སླར་ལོག་འབདཝ་ཨིན། གནས་གོང་དེ་ ཁྱབ་ཚད་ནང་འཁོད་ནང་མ་གནས་པ་ཅིན་ <emph> འཕྲིན་དོན་ </emph> འཛོལ་བ་གཅིག་བཀྲམ་སྟོན་འབད་ཡོདཔ་ཨིན།"
@@ -46493,7 +43540,6 @@ msgstr "<bookmark_value>SKEW ལས་འགན།</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3153556\n"
-"12\n"
"help.text"
msgid "SKEW"
msgstr "SKEW"
@@ -46502,7 +43548,6 @@ msgstr "SKEW"
msgctxt ""
"04060185.xhp\n"
"par_id3153485\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SCHIEFE\">Returns the skewness of a distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_SCHIEFE\"> བགོ་བཀྲམ་གྱི་གསེག་ལོག་ཅན་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -46511,7 +43556,6 @@ msgstr "<ahelp hid=\"HID_FUNC_SCHIEFE\"> བགོ་བཀྲམ་གྱི་
msgctxt ""
"04060185.xhp\n"
"hd_id3154733\n"
-"14\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -46520,7 +43564,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3151191\n"
-"15\n"
"help.text"
msgid "SKEW(Number1; Number2; ...Number30)"
msgstr "SKEW(ཨང་གྲངས་ ༡།ཨང་གྲངས་ ༢།... ཨང་གྲངས་ ༣༠།)"
@@ -46529,7 +43572,6 @@ msgstr "SKEW(ཨང་གྲངས་ ༡།ཨང་གྲངས་ ༢།...
msgctxt ""
"04060185.xhp\n"
"par_id3155757\n"
-"16\n"
"help.text"
msgid "<emph>Number1, Number2...Number30</emph> are numerical values or ranges."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨང་གྲངས་ ༣༠ </emph> ཚུ་ ཨང་གྲངས་ཀྱི་གནས་གོང་ངམ་ཁྱབ་ཚད་ཚུ་ཨིན།"
@@ -46538,7 +43580,6 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨ
msgctxt ""
"04060185.xhp\n"
"hd_id3153297\n"
-"17\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -46547,7 +43588,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3145118\n"
-"18\n"
"help.text"
msgid "<item type=\"input\">=SKEW(A1:A50)</item> calculates the value of skew for the data referenced."
msgstr ""
@@ -46564,7 +43604,6 @@ msgstr "<bookmark_value>རི་གེ་རེ་ཤཱན་གྲལ་ཐ
msgctxt ""
"04060185.xhp\n"
"hd_id3149051\n"
-"20\n"
"help.text"
msgid "FORECAST"
msgstr "FORECAST"
@@ -46573,7 +43612,6 @@ msgstr "FORECAST"
msgctxt ""
"04060185.xhp\n"
"par_id3153290\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SCHAETZER\">Extrapolates future values based on existing x and y values.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_SCHAETZER\"> གནས་བཞིན་ཡོད་པའི་ ཨེགསི་དང་ཝའི་གནས་གོང་ཚུ་གུ་ལུ་གཞི་བཞག་སྟེ་ མ་འོངས་པའི་གནས་གོང་ཚུ་ རིགས་འགྲེས་གཏངམ་ཨིན། </ahelp>"
@@ -46582,7 +43620,6 @@ msgstr "<ahelp hid=\"HID_FUNC_SCHAETZER\"> གནས་བཞིན་ཡོད
msgctxt ""
"04060185.xhp\n"
"hd_id3151343\n"
-"22\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -46591,7 +43628,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3147404\n"
-"23\n"
"help.text"
msgid "FORECAST(Value; DataY; DataX)"
msgstr "FORECAST(Value; data_Y; data_X)"
@@ -46600,7 +43636,6 @@ msgstr "FORECAST(Value; data_Y; data_X)"
msgctxt ""
"04060185.xhp\n"
"par_id3148743\n"
-"24\n"
"help.text"
msgid "<emph>Value</emph> is the x value, for which the y value on the linear regression is to be returned."
msgstr "<emph> གནས་གོང་དེ་ </emph> ཐིག་གི་རི་གེ་རེ་ཤཱན་གུ་ལུ་ ཝའི་གནས་གོང་དོན་ལུ་ སླར་ལོག་འབད་ནི་ཨིན་པའི་ ཨེགསི་གནས་གོང་ཨིན།"
@@ -46609,7 +43644,6 @@ msgstr "<emph> གནས་གོང་དེ་ </emph> ཐིག་གི་
msgctxt ""
"04060185.xhp\n"
"par_id3146325\n"
-"25\n"
"help.text"
msgid "<emph>DataY</emph> is the array or range of known y's."
msgstr "<emph>Data_Y</emph> འདི་ ཤེས་ཡོད་པའི་ཝའི་གི་ ཨེ་རེ་ཡང་ན་ ཁྱབ་ཚད་ཨིན།"
@@ -46618,7 +43652,6 @@ msgstr "<emph>Data_Y</emph> འདི་ ཤེས་ཡོད་པའི་ཝ
msgctxt ""
"04060185.xhp\n"
"par_id3150536\n"
-"26\n"
"help.text"
msgid "<emph>DataX</emph> is the array or range of known x's."
msgstr "<emph>Data_X</emph> འདི་ཤེས་ཡོད་པའི་ཨགསི་གི་ ཨེ་རེ་ཡང་ན་ཁྱབ་ཚད་ཨིན།"
@@ -46627,7 +43660,6 @@ msgstr "<emph>Data_X</emph> འདི་ཤེས་ཡོད་པའི་ཨ
msgctxt ""
"04060185.xhp\n"
"hd_id3147416\n"
-"27\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -46636,13 +43668,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3157874\n"
-"28\n"
"help.text"
msgid "<item type=\"input\">=FORECAST(50;A1:A50;B1;B50)</item> returns the Y value expected for the X value of 50 if the X and Y values in both references are linked by a linear trend."
msgstr "=FORECAST(50; A1:A50; B1;B50) གིས་ གཞི་བསྟུན་ཚུ་གཉིས་ཆ་ར་ནང་ ཨེགསི་དང་ཝའི་གནས་གོང་ཚུ་ཐིག་གི་ཁ་ཕྱོགས་ཀྱིས་འབྲེལ་མཐུད་དེ་ཡོད་པ་ཅིན་ ༥༠ གི་ གནས་གོང་ཨེགསི་དོན་ལུ་རེ་བ་བསྐྱེད་ཡོད་པའི་གནས་གོང་ཝའི་སླར་ལོག་འབདཝ་ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id3149052\n"
@@ -46659,21 +43689,17 @@ msgid "FORECAST.LINEAR"
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3153291\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SCHAETZER\">Extrapolates future values based on existing x and y values.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_SCHAETZER\"> གནས་བཞིན་ཡོད་པའི་ ཨེགསི་དང་ཝའི་གནས་གོང་ཚུ་གུ་ལུ་གཞི་བཞག་སྟེ་ མ་འོངས་པའི་གནས་གོང་ཚུ་ རིགས་འགྲེས་གཏངམ་ཨིན། </ahelp>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id3151344\n"
-"22\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -46687,51 +43713,41 @@ msgid "FORECAST.LINEAR(Value; DataY; DataX)"
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3148744\n"
-"24\n"
"help.text"
msgid "<emph>Value</emph> is the x value, for which the y value on the linear regression is to be returned."
msgstr "<emph> གནས་གོང་དེ་ </emph> ཐིག་གི་རི་གེ་རེ་ཤཱན་གུ་ལུ་ ཝའི་གནས་གོང་དོན་ལུ་ སླར་ལོག་འབད་ནི་ཨིན་པའི་ ཨེགསི་གནས་གོང་ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3146326\n"
-"25\n"
"help.text"
msgid "<emph>DataY</emph> is the array or range of known y's."
msgstr "<emph>Data_Y</emph> འདི་ ཤེས་ཡོད་པའི་ཝའི་གི་ ཨེ་རེ་ཡང་ན་ ཁྱབ་ཚད་ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3150537\n"
-"26\n"
"help.text"
msgid "<emph>DataX</emph> is the array or range of known x's."
msgstr "<emph>Data_X</emph> འདི་ཤེས་ཡོད་པའི་ཨགསི་གི་ ཨེ་རེ་ཡང་ན་ཁྱབ་ཚད་ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id3147417\n"
-"27\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3157875\n"
-"28\n"
"help.text"
msgid "<item type=\"input\">=FORECAST.LINEAR(50;A1:A50;B1;B50)</item> returns the Y value expected for the X value of 50 if the X and Y values in both references are linked by a linear trend."
msgstr "=FORECAST(50; A1:A50; B1;B50) གིས་ གཞི་བསྟུན་ཚུ་གཉིས་ཆ་ར་ནང་ ཨེགསི་དང་ཝའི་གནས་གོང་ཚུ་ཐིག་གི་ཁ་ཕྱོགས་ཀྱིས་འབྲེལ་མཐུད་དེ་ཡོད་པ་ཅིན་ ༥༠ གི་ གནས་གོང་ཨེགསི་དོན་ལུ་རེ་བ་བསྐྱེད་ཡོད་པའི་གནས་གོང་ཝའི་སླར་ལོག་འབདཝ་ཨིན།"
@@ -46748,7 +43764,6 @@ msgstr "<bookmark_value>STDEV ལས་འགན་</bookmark_value><bookmark_va
msgctxt ""
"04060185.xhp\n"
"hd_id3149143\n"
-"30\n"
"help.text"
msgid "STDEV"
msgstr "STDEV"
@@ -46757,7 +43772,6 @@ msgstr "STDEV"
msgctxt ""
"04060185.xhp\n"
"par_id3146888\n"
-"31\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STABW\">Estimates the standard deviation based on a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STABW\"> དཔེ་ཚད་གུ་ལུ་གཞི་བཞག་སྟེ་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་ཕོག་ཚོད་དཔགཔ་ཨིན། </ahelp>"
@@ -46766,7 +43780,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STABW\"> དཔེ་ཚད་གུ་ལུ་
msgctxt ""
"04060185.xhp\n"
"hd_id3146815\n"
-"32\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -46775,7 +43788,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3149946\n"
-"33\n"
"help.text"
msgid "STDEV(Number1; Number2; ...Number30)"
msgstr "AVEDEV(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།... ཨང་གྲངས་ ༣༠།)"
@@ -46784,7 +43796,6 @@ msgstr "AVEDEV(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།..
msgctxt ""
"04060185.xhp\n"
"par_id3157904\n"
-"34\n"
"help.text"
msgid "<emph>Number1, Number2, ... Number30</emph> are numerical values or ranges representing a sample based on an entire population."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢,...ཨང་གྲངས་ ༣༠ </emph> ཚུ་ ཨང་གྲངས་ཀྱི་གནས་གོང་ཚུའམ་ མི་རློབས་ཧྲིལ་བུ་གུ་ལུ་གཞི་བཞག་པའི་དཔེ་ཚད་ཁྱད་ཚབ་འབད་བའི་ཁྱབ་ཚད་ཚུ་ཨིན།"
@@ -46793,7 +43804,6 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢,...ཨ
msgctxt ""
"04060185.xhp\n"
"hd_id3150650\n"
-"35\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -46802,7 +43812,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3149434\n"
-"36\n"
"help.text"
msgid "<item type=\"input\">=STDEV(A1:A50)</item> returns the estimated standard deviation based on the data referenced."
msgstr "=STDEV(A1:A50) གིས་ གཞི་བསྟུན་འབད་ཡོད་པའི་གནད་སྡུད་ལུ་གཞི་བཞག་སྟེ་ ཕོག་ཚོད་དཔག་ཡོད་པའི་ཚད་ལྡན་ཁ་བསྒྱུར་བ་སླར་ལོག་འབདཝ་ཨིན།"
@@ -46819,7 +43828,6 @@ msgstr "<bookmark_value>STDEVA ལས་འགན།</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3144745\n"
-"186\n"
"help.text"
msgid "STDEVA"
msgstr "STDEVA"
@@ -46828,7 +43836,6 @@ msgstr "STDEVA"
msgctxt ""
"04060185.xhp\n"
"par_id3151234\n"
-"187\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STABWA\">Calculates the standard deviation of an estimation based on a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STABWA\"> དཔེ་ཚད་ལུ་གཞི་བཞག་སྟེ་ ཕོག་ཚོད་དཔག་ནི་གི་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -46837,7 +43844,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STABWA\"> དཔེ་ཚད་ལུ་གཞི
msgctxt ""
"04060185.xhp\n"
"hd_id3148884\n"
-"188\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -46846,7 +43852,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3147422\n"
-"189\n"
"help.text"
msgid "STDEVA(Value1;Value2;...Value30)"
msgstr "STDEVA(གནས་གོང་ ༡། གནས་གོང་ ༢།... གནས་གོང་ ༣༠།)"
@@ -46855,7 +43860,6 @@ msgstr "STDEVA(གནས་གོང་ ༡། གནས་གོང་ ༢།..
msgctxt ""
"04060185.xhp\n"
"par_id3154547\n"
-"190\n"
"help.text"
msgid "<emph>Value1, Value2, ...Value30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
msgstr "<emph> གནས་གོང་ ༡ གནས་གོང་ ༢ ... གནས་གོང་ ༣༠ </emph> ཚུ་ མི་རློབས་ཧྲིལ་བུ་ལས་བྱུང་ཡོད་པའི་དཔེ་ཚད་ཁྱད་ཚབ་འབད་བའི་ གནས་གོང་ངམ་ ཁྱབ་ཚད་ཚུ་ཨིན། ཚིག་ཡིག་ལུ་གནས་གོང་ ༠ ཡོད།"
@@ -46864,7 +43868,6 @@ msgstr "<emph> གནས་གོང་ ༡ གནས་གོང་ ༢ ... ག
msgctxt ""
"04060185.xhp\n"
"hd_id3155829\n"
-"191\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -46873,7 +43876,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3148581\n"
-"192\n"
"help.text"
msgid "<item type=\"input\">=STDEVA(A1:A50)</item> returns the estimated standard deviation based on the data referenced."
msgstr "=STDEVA(A1:A50) གིས་ གཞི་བསྟུན་འབད་ཡོད་པའི་གནད་སྡུད་གུ་ལུ་གཞི་བཞག་སྟེ་ཕོག་ཚོད་དཔག་ཡོད་པའི་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་སླར་ལོག་འབདཝ་ཨིན།"
@@ -46890,7 +43892,6 @@ msgstr "<bookmark_value>STDEVP ལས་འགན་</bookmark_value><bookmark_v
msgctxt ""
"04060185.xhp\n"
"hd_id3149734\n"
-"38\n"
"help.text"
msgid "STDEVP"
msgstr "STDEVP"
@@ -46899,7 +43900,6 @@ msgstr "STDEVP"
msgctxt ""
"04060185.xhp\n"
"par_id3149187\n"
-"39\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STABWN\">Calculates the standard deviation based on the entire population.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STABWN\"> མི་རློབས་ཧྲིལ་བུ་གུ་ལུ་གཞི་བཞག་སྟེ་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -46908,7 +43908,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STABWN\"> མི་རློབས་ཧྲིལ
msgctxt ""
"04060185.xhp\n"
"hd_id3154387\n"
-"40\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -46917,17 +43916,14 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3154392\n"
-"41\n"
"help.text"
msgid "STDEVP(Number1;Number2;...Number30)"
msgstr "STDEVP(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།... ཨང་གྲངས་ ༣༠།)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3155261\n"
-"42\n"
"help.text"
msgid "<emph>Number 1,Number 2,...Number 30</emph> are numerical values or ranges representing an entire population."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨང་གྲངས་ ༣༠ </emph> ཚུ་ མི་རློབས་ཧྲིལ་བུ་ཁྱད་ཚབ་འབད་བའི་ ཨང་གྲངས་ཀྱི་གནས་གོང་ཚུའམ་ ཁྱབ་ཚད་ཚུ་ཨིན།"
@@ -46936,7 +43932,6 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨ
msgctxt ""
"04060185.xhp\n"
"hd_id3145591\n"
-"43\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -46945,13 +43940,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3153933\n"
-"44\n"
"help.text"
msgid "<item type=\"input\">=STDEVP(A1:A50)</item> returns a standard deviation of the data referenced."
msgstr "=STDEVA(A1:A50) གིས་ གཞི་བསྟུན་འབད་ཡོད་པའི་གནད་སྡུད་གུ་ལུ་གཞི་བཞག་སྟེ་ཕོག་ཚོད་དཔག་ཡོད་པའི་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་སླར་ལོག་འབདཝ་ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2949734\n"
@@ -46960,21 +43953,17 @@ msgid "<bookmark_value>STDEV.P function</bookmark_value> <bookmark_value>
msgstr "<bookmark_value>STDEVP ལས་འགན་</bookmark_value><bookmark_value>ཚད་ལྡན་ཁ་བསྒྱུར་བ་འདི་ ཚད་རྩིས་ནང་ མི་འབོར་ལུ་གཞི་བཞག་སྟེ་</bookmark_value>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id2949734\n"
-"38\n"
"help.text"
msgid "STDEV.P"
msgstr "STDEVP"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2949187\n"
-"39\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ST_DEV_P_MS\">Calculates the standard deviation based on the entire population.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STABWN\"> མི་རློབས་ཧྲིལ་བུ་གུ་ལུ་གཞི་བཞག་སྟེ་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -46983,27 +43972,22 @@ msgstr "<ahelp hid=\"HID_FUNC_STABWN\"> མི་རློབས་ཧྲིལ
msgctxt ""
"04060185.xhp\n"
"hd_id2954387\n"
-"40\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2954392\n"
-"41\n"
"help.text"
msgid "STDEV.P(Number1;Number2;...Number30)"
msgstr "STDEVP(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།... ཨང་གྲངས་ ༣༠།)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2955261\n"
-"42\n"
"help.text"
msgid "<emph>Number 1,Number 2,...Number 30</emph> are numerical values or ranges representing an entire population."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨང་གྲངས་ ༣༠ </emph> ཚུ་ མི་རློབས་ཧྲིལ་བུ་ཁྱད་ཚབ་འབད་བའི་ ཨང་གྲངས་ཀྱི་གནས་གོང་ཚུའམ་ ཁྱབ་ཚད་ཚུ་ཨིན།"
@@ -47012,23 +43996,19 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨ
msgctxt ""
"04060185.xhp\n"
"hd_id2945591\n"
-"43\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2953933\n"
-"44\n"
"help.text"
msgid "<item type=\"input\">=STDEV.P(A1:A50)</item> returns a standard deviation of the data referenced."
msgstr "=STDEVA(A1:A50) གིས་ གཞི་བསྟུན་འབད་ཡོད་པའི་གནད་སྡུད་གུ་ལུ་གཞི་བཞག་སྟེ་ཕོག་ཚོད་དཔག་ཡོད་པའི་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་སླར་ལོག་འབདཝ་ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2849734\n"
@@ -47037,21 +44017,17 @@ msgid "<bookmark_value>STDEV.S function</bookmark_value> <bookmark_value>
msgstr "<bookmark_value>STDEV ལས་འགན་</bookmark_value><bookmark_value>ཚད་ལྡན་ཁ་བསྒྱུར་བ་འདི་ཚད་རྩིས་ནང་ དཔེ་ཚད་ལུ་གཞི་བཞག་སྟེ་</bookmark_value>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id2849734\n"
-"38\n"
"help.text"
msgid "STDEV.S"
msgstr "STDEVP"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2849187\n"
-"39\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ST_DEV_S\">Calculates the standard deviation based on sample of the population.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STABWN\"> མི་རློབས་ཧྲིལ་བུ་གུ་ལུ་གཞི་བཞག་སྟེ་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -47060,27 +44036,22 @@ msgstr "<ahelp hid=\"HID_FUNC_STABWN\"> མི་རློབས་ཧྲིལ
msgctxt ""
"04060185.xhp\n"
"hd_id2854387\n"
-"40\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2854392\n"
-"41\n"
"help.text"
msgid "STDEV.S(Number1;Number2;...Number30)"
msgstr "STDEVP(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།... ཨང་གྲངས་ ༣༠།)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2855261\n"
-"42\n"
"help.text"
msgid "<emph>Number 1,Number 2,...Number 30</emph> are numerical values or ranges representing a sample of the population."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨང་གྲངས་ ༣༠ </emph> ཚུ་ མི་རློབས་ཧྲིལ་བུ་ཁྱད་ཚབ་འབད་བའི་ ཨང་གྲངས་ཀྱི་གནས་གོང་ཚུའམ་ ཁྱབ་ཚད་ཚུ་ཨིན།"
@@ -47089,17 +44060,14 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨ
msgctxt ""
"04060185.xhp\n"
"hd_id2845591\n"
-"43\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2853933\n"
-"44\n"
"help.text"
msgid "<item type=\"input\">=STDEV.S(A1:A50)</item> returns a standard deviation of the data referenced."
msgstr "=STDEVA(A1:A50) གིས་ གཞི་བསྟུན་འབད་ཡོད་པའི་གནད་སྡུད་གུ་ལུ་གཞི་བཞག་སྟེ་ཕོག་ཚོད་དཔག་ཡོད་པའི་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་སླར་ལོག་འབདཝ་ཨིན།"
@@ -47116,7 +44084,6 @@ msgstr "<bookmark_value>STDEVPA ལས་འགན།</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3154522\n"
-"194\n"
"help.text"
msgid "STDEVPA"
msgstr "STDEVPA"
@@ -47125,7 +44092,6 @@ msgstr "STDEVPA"
msgctxt ""
"04060185.xhp\n"
"par_id3149549\n"
-"195\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STABWNA\">Calculates the standard deviation based on the entire population.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STABWNA\"> མི་རློབས་ཧྲིལ་བུ་གུ་ལུ་གཞི་བཞག་སྟེ་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -47134,7 +44100,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STABWNA\"> མི་རློབས་ཧྲིལ
msgctxt ""
"04060185.xhp\n"
"hd_id3155950\n"
-"196\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -47143,17 +44108,14 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3146851\n"
-"197\n"
"help.text"
msgid "STDEVPA(Value1;Value2;...Value30)"
msgstr "STDEVPA(གནས་གོང་ ༡། གནས་གོང་ ༢།... གནས་གོང་ ༣༠།)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3153109\n"
-"198\n"
"help.text"
msgid "<emph>Value1,value2,...value30</emph> are values or ranges representing an entire population. Text has the value 0."
msgstr "<emph> གནས་གོང་ ༡ གནས་གོང་ ༢ ... གནས་གོང་ ༣༠ </emph> ཚུ་ མི་རློབས་ཧྲིལ་བུ་ལས་བྱུང་ཡོད་པའི་དཔེ་ཚད་ཁྱད་ཚབ་འབད་བའི་ གནས་གོང་ངམ་ ཁྱབ་ཚད་ཚུ་ཨིན། ཚིག་ཡིག་ལུ་གནས་གོང་ ༠ ཡོད།"
@@ -47162,7 +44124,6 @@ msgstr "<emph> གནས་གོང་ ༡ གནས་གོང་ ༢ ... ག
msgctxt ""
"04060185.xhp\n"
"hd_id3154506\n"
-"199\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -47171,7 +44132,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3145163\n"
-"200\n"
"help.text"
msgid "<item type=\"input\">=STDEVPA(A1:A50)</item> returns the standard deviation of the data referenced."
msgstr "=STDEVA(A1:A50) གིས་ གཞི་བསྟུན་འབད་ཡོད་པའི་གནད་སྡུད་གུ་ལུ་གཞི་བཞག་སྟེ་ཕོག་ཚོད་དཔག་ཡོད་པའི་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་སླར་ལོག་འབདཝ་ཨིན།"
@@ -47188,7 +44148,6 @@ msgstr "<bookmark_value>STANDARDIZE ལས་འགན་</bookmark_value><bookm
msgctxt ""
"04060185.xhp\n"
"hd_id3155928\n"
-"46\n"
"help.text"
msgid "STANDARDIZE"
msgstr "STANDARDIZE"
@@ -47197,7 +44156,6 @@ msgstr "STANDARDIZE"
msgctxt ""
"04060185.xhp\n"
"par_id3149883\n"
-"47\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STANDARDISIERUNG\">Converts a random variable to a normalized value.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STANDARDISIERUNG\"> འགྱུར་ཅན་གང་འབྱུང་དེ་ སྤྱིར་བཏང་བཟོ་ཡོད་པའི་གནས་གོང་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན། </ahelp>"
@@ -47206,7 +44164,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STANDARDISIERUNG\"> འགྱུར་ཅན་ག
msgctxt ""
"04060185.xhp\n"
"hd_id3154330\n"
-"48\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -47215,7 +44172,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3150132\n"
-"49\n"
"help.text"
msgid "STANDARDIZE(Number; Mean; StDev)"
msgstr "STANDARDIZE(ཨང་གྲངས། མཱིན། ཨེསི་ཊི་ཌི་ཨི་ཝི།)"
@@ -47224,7 +44180,6 @@ msgstr "STANDARDIZE(ཨང་གྲངས། མཱིན། ཨེསི་ཊ
msgctxt ""
"04060185.xhp\n"
"par_id3159139\n"
-"50\n"
"help.text"
msgid "<emph>Number</emph> is the value to be standardized."
msgstr "<emph> ཨང་ </emph> འདི་ཚད་ལྡན་བཟོ་ནི་ཨིན་པའི་གནས་གོང་ཨིན།"
@@ -47233,7 +44188,6 @@ msgstr "<emph> ཨང་ </emph> འདི་ཚད་ལྡན་བཟོ་
msgctxt ""
"04060185.xhp\n"
"par_id3145241\n"
-"51\n"
"help.text"
msgid "<emph>Mean</emph> is the arithmetic mean of the distribution."
msgstr "<emph> མཱིན་ </emph> དེ་ བགོ་བཀྲམ་འབད་ནི་གི་ ཨང་རྩིས་མཱིན་ཨིན།"
@@ -47242,7 +44196,6 @@ msgstr "<emph> མཱིན་ </emph> དེ་ བགོ་བཀྲམ་འ
msgctxt ""
"04060185.xhp\n"
"par_id3148874\n"
-"52\n"
"help.text"
msgid "<emph>StDev</emph> is the standard deviation of the distribution."
msgstr "<emph> ཨེསི་ཊི་ཌི་ཨི་ཝི་ </emph> དེ་ བགོ་བཀྲམ་འབད་ནི་གི་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་ཨིན།"
@@ -47251,7 +44204,6 @@ msgstr "<emph> ཨེསི་ཊི་ཌི་ཨི་ཝི་ </emph> ད
msgctxt ""
"04060185.xhp\n"
"hd_id3145351\n"
-"53\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -47260,7 +44212,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3156067\n"
-"54\n"
"help.text"
msgid "<item type=\"input\">=STANDARDIZE(11;10;1)</item> returns 1. The value 11 in a normal distribution with a mean of 10 and a standard deviation of 1 is as much above the mean of 10, as the value 1 is above the mean of the standard normal distribution."
msgstr "=STANDARDIZE(11; 10; 1) གིས་ ༡ སླར་ལོག་འབདཝ་ཨིན། གནས་གོང་ ༡༡ དེ་ སྤྱིར་བཏང་ཚད་ལྡན་བགོ་བཀྲམ་མཱིན་གི་ལྟག་ལུ་ཡོདཔ་ལས་ སྤྱིར་བཏང་བགོ་བཀྲམ་ནང་ མཱིན་ ༡༠ དང་ ཚད་ལྡན་ཁ་བསྒྱུར་བ་ ༡ དང་བཅས་མི་དེ་ མཱིན་ ༡༠ གི་ལྟག་ལས་ཨིན།"
@@ -47277,7 +44228,6 @@ msgstr "<bookmark_value>NORMSINV ལས་འགན་</bookmark_value><bookmark
msgctxt ""
"04060185.xhp\n"
"hd_id3157986\n"
-"56\n"
"help.text"
msgid "NORMSINV"
msgstr "NORMSINV"
@@ -47286,7 +44236,6 @@ msgstr "NORMSINV"
msgctxt ""
"04060185.xhp\n"
"par_id3151282\n"
-"57\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STANDNORMINV\">Returns the inverse of the standard normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STANDNORMINV\"> སྤྱིར་བཏང་བསྡུ་གསོག་བགོ་བཀྲམ་འབད་ནི་ཚད་ལྡན་གྱི་ ལུགས་ལྡོག་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -47295,17 +44244,14 @@ msgstr "<ahelp hid=\"HID_FUNC_STANDNORMINV\"> སྤྱིར་བཏང་བ
msgctxt ""
"04060185.xhp\n"
"hd_id3153261\n"
-"58\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3154195\n"
-"59\n"
"help.text"
msgid "NORMSINV(Number)"
msgstr "NORMINV(ཨང་།)"
@@ -47314,7 +44260,6 @@ msgstr "NORMINV(ཨང་།)"
msgctxt ""
"04060185.xhp\n"
"par_id3148772\n"
-"60\n"
"help.text"
msgid "<emph>Number</emph> is the probability to which the inverse standard normal distribution is calculated."
msgstr "<emph> ཨང་གྲངས་ </emph> དེ་ སྤྱིར་བཏང་བགོ་བཀྲམ་ལུགས་ལྡོག་ཚད་ལྡན་རྩིས་སྟོན་འབད་ནི་ཨིན་པའི་ འབྱུང་ངེས་ཨིན།"
@@ -47323,7 +44268,6 @@ msgstr "<emph> ཨང་གྲངས་ </emph> དེ་ སྤྱིར་བ
msgctxt ""
"04060185.xhp\n"
"hd_id3150934\n"
-"61\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -47332,13 +44276,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3149030\n"
-"62\n"
"help.text"
msgid "<item type=\"input\">=NORMSINV(0.908789)</item> returns 1.3333."
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2957986\n"
@@ -47347,21 +44289,17 @@ msgid "<bookmark_value>NORM.S.INV function</bookmark_value> <bookmark_va
msgstr "<bookmark_value>NORMSINV ལས་འགན་</bookmark_value><bookmark_value>སྤཡི་བཏང་བགོ་བཀྲམ་ ཚད་ལྡན་གྱི་ལུགས་ལྡོག་</bookmark_value>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id2957986\n"
-"56\n"
"help.text"
msgid "NORM.S.INV"
msgstr "NORMSINV"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2951282\n"
-"57\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STD_NORMINV_MS\">Returns the inverse of the standard normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STANDNORMINV\"> སྤྱིར་བཏང་བསྡུ་གསོག་བགོ་བཀྲམ་འབད་ནི་ཚད་ལྡན་གྱི་ ལུགས་ལྡོག་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -47370,27 +44308,22 @@ msgstr "<ahelp hid=\"HID_FUNC_STANDNORMINV\"> སྤྱིར་བཏང་བ
msgctxt ""
"04060185.xhp\n"
"hd_id2953261\n"
-"58\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2954195\n"
-"59\n"
"help.text"
msgid "NORM.S.INV(Number)"
msgstr "NORMINV(ཨང་།)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2948772\n"
-"60\n"
"help.text"
msgid "<emph>Number</emph> is the probability to which the inverse standard normal distribution is calculated."
msgstr "<emph> ཨང་གྲངས་ </emph> དེ་ སྤྱིར་བཏང་བགོ་བཀྲམ་ལུགས་ལྡོག་ཚད་ལྡན་རྩིས་སྟོན་འབད་ནི་ཨིན་པའི་ འབྱུང་ངེས་ཨིན།"
@@ -47399,7 +44332,6 @@ msgstr "<emph> ཨང་གྲངས་ </emph> དེ་ སྤྱིར་བ
msgctxt ""
"04060185.xhp\n"
"hd_id2950934\n"
-"61\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -47408,7 +44340,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id2949030\n"
-"62\n"
"help.text"
msgid "<item type=\"input\">=NORM.S.INV(0.908789)</item> returns 1.333334673."
msgstr ""
@@ -47425,7 +44356,6 @@ msgstr "<bookmark_value>NORMSDIST ལསའ་གན་</bookmark_value><bookmar
msgctxt ""
"04060185.xhp\n"
"hd_id3147538\n"
-"64\n"
"help.text"
msgid "NORMSDIST"
msgstr "NORMSDIST"
@@ -47434,7 +44364,6 @@ msgstr "NORMSDIST"
msgctxt ""
"04060185.xhp\n"
"par_id3150474\n"
-"65\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STANDNORMVERT\">Returns the standard normal cumulative distribution function. The distribution has a mean of zero and a standard deviation of one.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STANDNORMVERT\">ཚད་ལྡན་སྤྱིར་བཏང་བསྡུ་གསོག་བགོ་བཀྲམ་ལས་འགན་འདི་སླར་ལོག་འབདཝ་ཨིན། བགོ་བཀྲམ་འདི་ ཀླད་ཀོར་གྱི་བར་མའི་ཆ་གྲངས་ཅིག་དང་ གཅིག་གི་ཚད་ལྡན་ཁ་བསྒྱུར་བ་ཅིག་ཡོད།</ahelp>"
@@ -47451,7 +44380,6 @@ msgstr "GAUSS(x)=NORMSDIST(x)-0.5 ཨིན།"
msgctxt ""
"04060185.xhp\n"
"hd_id3155083\n"
-"66\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -47460,7 +44388,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3158411\n"
-"67\n"
"help.text"
msgid "NORMSDIST(Number)"
msgstr "NORMSDIST(ཨང་།)"
@@ -47469,7 +44396,6 @@ msgstr "NORMSDIST(ཨང་།)"
msgctxt ""
"04060185.xhp\n"
"par_id3154950\n"
-"68\n"
"help.text"
msgid "<emph>Number</emph> is the value to which the standard normal cumulative distribution is calculated."
msgstr "<emph>ཨང་</emph> འདི་ ཚད་ལྡན་སྤྱིར་བཏང་བསྡུ་གསོག་བགོ་བཀྲམ་འདི་རྩིས་སྟོན་འབད་ཡོོད་གནས་གོང་འདི་ཨིན།"
@@ -47478,7 +44404,6 @@ msgstr "<emph>ཨང་</emph> འདི་ ཚད་ལྡན་སྤྱིར
msgctxt ""
"04060185.xhp\n"
"hd_id3153228\n"
-"69\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -47487,13 +44412,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3155984\n"
-"70\n"
"help.text"
msgid "<item type=\"input\">=NORMSDIST(1)</item> returns 0.84. The area below the standard normal distribution curve to the left of X value 1 is 84% of the total area."
msgstr "=NORMSDIST(1) གིས་ ༠་༨༤ སླར་ལོག་འབདཝ་ཨིན། གཡོན་ལུ་གུག་གུག་པའི་ སྤྱིར་བཏང་ཚད་ལྡན་བགོ་བཀྲམ་འོག་གི་ཨེགསི་གནས་གོང་ ༡ གི་ མངའ་ཁོངས་དེ་ མངའ་ཁོངས་བསྡོམས་ཀྱི་ ༨༤% ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2947538\n"
@@ -47502,21 +44425,17 @@ msgid "<bookmark_value>NORM.S.DIST function</bookmark_value> <bookmark_v
msgstr "<bookmark_value>NORMSDIST ལསའ་གན་</bookmark_value><bookmark_value>སྤྱིར་བཏང་བགོ་བཀྲམ་ ཚད་རྩིས་</bookmark_value>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id2947538\n"
-"64\n"
"help.text"
msgid "NORM.S.DIST"
msgstr "NORMSDIST"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2950474\n"
-"65\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STD_NORMDIST_MS\">Returns the standard normal cumulative distribution function. The distribution has a mean of zero and a standard deviation of one.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STANDNORMVERT\">ཚད་ལྡན་སྤྱིར་བཏང་བསྡུ་གསོག་བགོ་བཀྲམ་ལས་འགན་འདི་སླར་ལོག་འབདཝ་ཨིན། བགོ་བཀྲམ་འདི་ ཀླད་ཀོར་གྱི་བར་མའི་ཆ་གྲངས་ཅིག་དང་ གཅིག་གི་ཚད་ལྡན་ཁ་བསྒྱུར་བ་ཅིག་ཡོད།</ahelp>"
@@ -47525,7 +44444,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STANDNORMVERT\">ཚད་ལྡན་སྤྱི
msgctxt ""
"04060185.xhp\n"
"hd_id2955083\n"
-"66\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -47534,17 +44452,14 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id2958411\n"
-"67\n"
"help.text"
msgid "NORM.S.DIST(Number; Cumulative)"
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2954950\n"
-"68\n"
"help.text"
msgid "<emph>Number</emph> is the value to which the standard normal cumulative distribution is calculated."
msgstr "<emph>ཨང་</emph> འདི་ ཚད་ལྡན་སྤྱིར་བཏང་བསྡུ་གསོག་བགོ་བཀྲམ་འདི་རྩིས་སྟོན་འབད་ཡོོད་གནས་གོང་འདི་ཨིན།"
@@ -47553,7 +44468,6 @@ msgstr "<emph>ཨང་</emph> འདི་ ཚད་ལྡན་སྤྱིར
msgctxt ""
"04060185.xhp\n"
"par_id2954951\n"
-"68\n"
"help.text"
msgid "<emph>Cumulative</emph> 0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function."
msgstr ""
@@ -47562,7 +44476,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"hd_id2993228\n"
-"69\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
@@ -47571,17 +44484,14 @@ msgstr "དཔེར་བརྗོད་ཚུ།"
msgctxt ""
"04060185.xhp\n"
"par_id2955984\n"
-"70\n"
"help.text"
msgid "<item type=\"input\">=NORM.S.DIST(1;0)</item> returns 0.2419707245."
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2955985\n"
-"70\n"
"help.text"
msgid "<item type=\"input\">=NORM.S.DIST(1;1)</item> returns 0.8413447461. The area below the standard normal distribution curve to the left of X value 1 is 84% of the total area."
msgstr "=NORMSDIST(1) གིས་ ༠་༨༤ སླར་ལོག་འབདཝ་ཨིན། གཡོན་ལུ་གུག་གུག་པའི་ སྤྱིར་བཏང་ཚད་ལྡན་བགོ་བཀྲམ་འོག་གི་ཨེགསི་གནས་གོང་ ༡ གི་ མངའ་ཁོངས་དེ་ མངའ་ཁོངས་བསྡོམས་ཀྱི་ ༨༤% ཨིན།"
@@ -47598,7 +44508,6 @@ msgstr "<bookmark_value>SLOPE ལས་འགན།</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3152592\n"
-"72\n"
"help.text"
msgid "SLOPE"
msgstr "SLOPE"
@@ -47607,7 +44516,6 @@ msgstr "SLOPE"
msgctxt ""
"04060185.xhp\n"
"par_id3150386\n"
-"73\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STEIGUNG\">Returns the slope of the linear regression line.</ahelp> The slope is adapted to the data points set in the y and x values."
msgstr "<ahelp hid=\"HID_FUNC_STEIGUNG\"> ཐིག་གི་རི་གེ་རེ་ཤཱན་གྲལ་ཐིག་གི་ བྱི་བཞོལ་སླར་ལོག་འབདཝ་ཨིན། </ahelp> བྱི་གཞོལ་དེ་ ཝའི་དང་ ཨེགསི་གནས་གོང་ཚུ་ནང་གཞི་སྒྲིག་འབད་ཡོད་པའི་གནད་སྡུད་ས་ཚིགས་ལུ་མཐུན་འགྱུར་བཟོ་ཡོདཔ་ཨིན།"
@@ -47616,7 +44524,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STEIGUNG\"> ཐིག་གི་རི་གེ
msgctxt ""
"04060185.xhp\n"
"hd_id3154315\n"
-"74\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -47625,7 +44532,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3149819\n"
-"75\n"
"help.text"
msgid "SLOPE(DataY; DataX)"
msgstr "SLOPE(data_Y; data_X)"
@@ -47634,7 +44540,6 @@ msgstr "SLOPE(data_Y; data_X)"
msgctxt ""
"04060185.xhp\n"
"par_id3083446\n"
-"76\n"
"help.text"
msgid "<emph>DataY</emph> is the array or matrix of Y data."
msgstr "འདི་ཝའི་གནད་སྡུད་ཀྱི་ ཨེ་རེ་ཡང་ན་ མེ་ཊིགསི་ཨིན།"
@@ -47643,7 +44548,6 @@ msgstr "འདི་ཝའི་གནད་སྡུད་ཀྱི་ ཨེ
msgctxt ""
"04060185.xhp\n"
"par_id3152375\n"
-"77\n"
"help.text"
msgid "<emph>DataX</emph> is the array or matrix of X data."
msgstr "<emph>Data_X</emph> འདི་ཨེགསི་གནད་སྡུད་ཀྱི་ ཨེ་རེ་ཡང་ན་ མེ་ཊིགསི་ཨིན།"
@@ -47652,7 +44556,6 @@ msgstr "<emph>Data_X</emph> འདི་ཨེགསི་གནད་སྡུ
msgctxt ""
"04060185.xhp\n"
"hd_id3146061\n"
-"78\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -47661,7 +44564,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3152480\n"
-"79\n"
"help.text"
msgid "<item type=\"input\">=SLOPE(A1:A50;B1:B50)</item>"
msgstr ""
@@ -47678,7 +44580,6 @@ msgstr "<bookmark_value>STEYX ལཱ་འགན་</bookmark_value><bookmark_va
msgctxt ""
"04060185.xhp\n"
"hd_id3155836\n"
-"81\n"
"help.text"
msgid "STEYX"
msgstr "STEYX"
@@ -47687,7 +44588,6 @@ msgstr "STEYX"
msgctxt ""
"04060185.xhp\n"
"par_id3149446\n"
-"82\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STFEHLERYX\">Returns the standard error of the predicted y value for each x in the regression.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_STFEHLERYX\"> རི་གེ་རེ་ཤཱན་ནང་ ཨེགསི་རེ་རེའི་དོན་ལུ་ སྔོན་དཔག་ཡོད་པའི་གནས་གོང་ ཝའི་གི་ འཛོལ་བ་ཚད་ལྡན་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -47696,7 +44596,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STFEHLERYX\"> རི་གེ་རེ་ཤཱན
msgctxt ""
"04060185.xhp\n"
"hd_id3147562\n"
-"83\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -47705,7 +44604,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3151267\n"
-"84\n"
"help.text"
msgid "STEYX(DataY; DataX)"
msgstr "STEYX(data_Y; data_X)"
@@ -47714,7 +44612,6 @@ msgstr "STEYX(data_Y; data_X)"
msgctxt ""
"04060185.xhp\n"
"par_id3147313\n"
-"85\n"
"help.text"
msgid "<emph>DataY</emph> is the array or matrix of Y data."
msgstr "འདི་ཝའི་གནད་སྡུད་ཀྱི་ ཨེ་རེ་ཡང་ན་ མེ་ཊིགསི་ཨིན།"
@@ -47723,7 +44620,6 @@ msgstr "འདི་ཝའི་གནད་སྡུད་ཀྱི་ ཨེ
msgctxt ""
"04060185.xhp\n"
"par_id3156097\n"
-"86\n"
"help.text"
msgid "<emph>DataX</emph> is the array or matrix of X data."
msgstr "<emph>Data_X</emph> འདི་ཨེགསི་གནད་སྡུད་ཀྱི་ ཨེ་རེ་ཡང་ན་ མེ་ཊིགསི་ཨིན།"
@@ -47732,7 +44628,6 @@ msgstr "<emph>Data_X</emph> འདི་ཨེགསི་གནད་སྡུ
msgctxt ""
"04060185.xhp\n"
"hd_id3145204\n"
-"87\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -47741,7 +44636,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3156131\n"
-"88\n"
"help.text"
msgid "<item type=\"input\">=STEYX(A1:A50;B1:B50)</item>"
msgstr ""
@@ -47758,7 +44652,6 @@ msgstr "<bookmark_value>DEVSQ ལས་འགན་</bookmark_value><bookmark_va
msgctxt ""
"04060185.xhp\n"
"hd_id3150873\n"
-"90\n"
"help.text"
msgid "DEVSQ"
msgstr "DEVSQ"
@@ -47767,7 +44660,6 @@ msgstr "DEVSQ"
msgctxt ""
"04060185.xhp\n"
"par_id3154748\n"
-"91\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SUMQUADABW\">Returns the sum of squares of deviations based on a sample mean.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_SUMQUADABW\"> དཔེ་ཚད་མཱིན་གུ་ལུ་གཞི་བཞག་སྟེ་ ཁ་བསྒྱུར་བ་ཚུའི་གྲུ་བཞི་ཚུའི་གྱངས་ཁ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -47776,7 +44668,6 @@ msgstr "<ahelp hid=\"HID_FUNC_SUMQUADABW\"> དཔེ་ཚད་མཱིན་
msgctxt ""
"04060185.xhp\n"
"hd_id3156121\n"
-"92\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -47785,7 +44676,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3146790\n"
-"93\n"
"help.text"
msgid "DEVSQ(Number1; Number2; ...Number30)"
msgstr "DEVSQ(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།... ཨང་གྲངས་ ༣༠།)"
@@ -47794,7 +44684,6 @@ msgstr "DEVSQ(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།...
msgctxt ""
"04060185.xhp\n"
"par_id3155995\n"
-"94\n"
"help.text"
msgid "<emph>Number1, Number2, ...Number30</emph> numerical values or ranges representing a sample."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢... ཨང་གྲངས་ ༣༠ </emph> ཚུ་དཔེ་ཚད་ཁྱད་ཚབ་འབད་བའི་ ཨང་གྲངས་ཀྱི་གནས་གོང་ངམ་ ཁྱབ་ཚད་ཚུ་ཨིན།"
@@ -47803,7 +44692,6 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢... ཨ
msgctxt ""
"04060185.xhp\n"
"hd_id3150254\n"
-"95\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -47812,7 +44700,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3149136\n"
-"96\n"
"help.text"
msgid "<item type=\"input\">=DEVSQ(A1:A50)</item>"
msgstr ""
@@ -47829,7 +44716,6 @@ msgstr "<bookmark_value>TINV ལས་འགན་</bookmark_value><bookmark_val
msgctxt ""
"04060185.xhp\n"
"hd_id3149579\n"
-"98\n"
"help.text"
msgid "TINV"
msgstr "TINV"
@@ -47838,7 +44724,6 @@ msgstr "TINV"
msgctxt ""
"04060185.xhp\n"
"par_id3143232\n"
-"99\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TINV\">Returns the inverse of the t-distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TINV\"> t-distribution གི་ ལུགས་ལྡོག་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -47847,7 +44732,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TINV\"> t-distribution གི་ ལུགས་
msgctxt ""
"04060185.xhp\n"
"hd_id3155101\n"
-"100\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -47856,7 +44740,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3149289\n"
-"101\n"
"help.text"
msgid "TINV(Number; DegreesFreedom)"
msgstr "TINV(Number; degrees_freedom)"
@@ -47865,7 +44748,6 @@ msgstr "TINV(Number; degrees_freedom)"
msgctxt ""
"04060185.xhp\n"
"par_id3154070\n"
-"102\n"
"help.text"
msgid "<emph>Number</emph> is the probability associated with the two-tailed t-distribution."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཏིག་ཅུང་རྒྱབ་གཉིས་ལྡན་ ཊི་-བགོ་བཀྲམ་དང་གཅིག་ཁར་འབྲེལ་བའི་འབྱུང་འགྱུར་ཨིན།"
@@ -47874,7 +44756,6 @@ msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཏིག་ཅུང
msgctxt ""
"04060185.xhp\n"
"par_id3155315\n"
-"103\n"
"help.text"
msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
msgstr "<emph>Degrees_freedom</emph> དེ་ t- བགོ་བཀྲམ་དོན་ལུ་ རབ་དབང་གི་ དབྱེ་རིམ་གྱི་གྱངས་ཁ་ཨིན།"
@@ -47883,7 +44764,6 @@ msgstr "<emph>Degrees_freedom</emph> དེ་ t- བགོ་བཀྲམ་ད
msgctxt ""
"04060185.xhp\n"
"hd_id3153885\n"
-"104\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -47892,13 +44772,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3156010\n"
-"105\n"
"help.text"
msgid "<item type=\"input\">=TINV(0.1;6)</item> returns 1.94"
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2949579\n"
@@ -47907,21 +44785,17 @@ msgid "<bookmark_value>T.INV function</bookmark_value> <bookmark_value>on
msgstr "<bookmark_value>TINV ལས་འགན་</bookmark_value><bookmark_value>ཊི་- བགོ་བཀྲམ་གྱི་ལུགས་ལྡོག་</bookmark_value>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id2949579\n"
-"98\n"
"help.text"
msgid "T.INV"
msgstr "TINV"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2943232\n"
-"99\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TINV_MS\">Returns the one tailed inverse of the t-distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TINV\"> t-distribution གི་ ལུགས་ལྡོག་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -47930,37 +44804,30 @@ msgstr "<ahelp hid=\"HID_FUNC_TINV\"> t-distribution གི་ ལུགས་
msgctxt ""
"04060185.xhp\n"
"hd_id2955101\n"
-"100\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2949289\n"
-"101\n"
"help.text"
msgid "T.INV(Number; DegreesFreedom)"
msgstr "TINV(Number; degrees_freedom)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2954070\n"
-"102\n"
"help.text"
msgid "<emph>Number</emph> is the probability associated with the one-tailed t-distribution."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཏིག་ཅུང་རྒྱབ་གཉིས་ལྡན་ ཊི་-བགོ་བཀྲམ་དང་གཅིག་ཁར་འབྲེལ་བའི་འབྱུང་འགྱུར་ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2955315\n"
-"103\n"
"help.text"
msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
msgstr "<emph>Degrees_freedom</emph> དེ་ t- བགོ་བཀྲམ་དོན་ལུ་ རབ་དབང་གི་ དབྱེ་རིམ་གྱི་གྱངས་ཁ་ཨིན།"
@@ -47969,7 +44836,6 @@ msgstr "<emph>Degrees_freedom</emph> དེ་ t- བགོ་བཀྲམ་ད
msgctxt ""
"04060185.xhp\n"
"hd_id2953885\n"
-"104\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -47978,13 +44844,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id2956010\n"
-"105\n"
"help.text"
msgid "<item type=\"input\">=T.INV(0.1;6)</item> returns -1.4397557473."
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2849579\n"
@@ -47996,7 +44860,6 @@ msgstr "<bookmark_value>TINV ལས་འགན་</bookmark_value><bookmark_val
msgctxt ""
"04060185.xhp\n"
"hd_id2849579\n"
-"98\n"
"help.text"
msgid "T.INV.2T"
msgstr ""
@@ -48005,7 +44868,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"par_id2843232\n"
-"99\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TINV_2T\">Calculates the inverse of the two-tailed Student's T Distribution </ahelp>, which is a continuous probability distribution that is frequently used for testing hypotheses on small sample data sets."
msgstr ""
@@ -48014,37 +44876,30 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"hd_id2855101\n"
-"100\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2849289\n"
-"101\n"
"help.text"
msgid "T.INV.2T(Number; DegreesFreedom)"
msgstr "TINV(Number; degrees_freedom)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2854070\n"
-"102\n"
"help.text"
msgid "<emph>Number</emph> is the probability associated with the two-tailed t-distribution."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཏིག་ཅུང་རྒྱབ་གཉིས་ལྡན་ ཊི་-བགོ་བཀྲམ་དང་གཅིག་ཁར་འབྲེལ་བའི་འབྱུང་འགྱུར་ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2855315\n"
-"103\n"
"help.text"
msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
msgstr "<emph>Degrees_freedom</emph> དེ་ t- བགོ་བཀྲམ་དོན་ལུ་ རབ་དབང་གི་ དབྱེ་རིམ་གྱི་གྱངས་ཁ་ཨིན།"
@@ -48053,7 +44908,6 @@ msgstr "<emph>Degrees_freedom</emph> དེ་ t- བགོ་བཀྲམ་ད
msgctxt ""
"04060185.xhp\n"
"hd_id2853885\n"
-"104\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -48062,7 +44916,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id2856010\n"
-"105\n"
"help.text"
msgid "<item type=\"input\">=T.INV.2T(0.25; 10)</item> returns 1.221255395."
msgstr ""
@@ -48079,7 +44932,6 @@ msgstr "<bookmark_value>TTEST ལས་འགན།</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3154129\n"
-"107\n"
"help.text"
msgid "TTEST"
msgstr "TTEST"
@@ -48088,7 +44940,6 @@ msgstr "TTEST"
msgctxt ""
"04060185.xhp\n"
"par_id3159184\n"
-"108\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TTEST\">Returns the probability associated with a Student's t-Test.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TTEST\"> སློབ་ཕྲུག་ཚུའི་ ཊི་ བརྟག་ཞིབ་དང་འབྲེལ་བའི་ འབྱུང་ངེས་སླར་ལོག་འབདཝ་ཨིན། (-T)</ahelp>"
@@ -48097,7 +44948,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TTEST\"> སློབ་ཕྲུག་ཚུའ
msgctxt ""
"04060185.xhp\n"
"hd_id3147257\n"
-"109\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -48106,7 +44956,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3151175\n"
-"110\n"
"help.text"
msgid "TTEST(Data1; Data2; Mode; Type)"
msgstr "TTEST(Data_1; Data_2; Mode; Type)"
@@ -48115,7 +44964,6 @@ msgstr "TTEST(Data_1; Data_2; Mode; Type)"
msgctxt ""
"04060185.xhp\n"
"par_id3149202\n"
-"111\n"
"help.text"
msgid "<emph>Data1</emph> is the dependent array or range of data for the first record."
msgstr "<emph>Data_1</emph> དེ་ དྲན་ཐོ་དང་པམ་དོན་ལུ་ གནད་སྡུད་ཀྱི་ གཞན་རྟེན་ཨེ་རེའམ་ཁྱབ་ཚད་ཨིན།"
@@ -48124,7 +44972,6 @@ msgstr "<emph>Data_1</emph> དེ་ དྲན་ཐོ་དང་པམ་ད
msgctxt ""
"04060185.xhp\n"
"par_id3145666\n"
-"112\n"
"help.text"
msgid "<emph>Data2</emph> is the dependent array or range of data for the second record."
msgstr "<emph>Data_2</emph> དེ་ དྲན་ཐོ་གཉིས་པའི་དོན་ལུ་ གནད་སྡུད་ཀྱི་ གཞན་རྟེན་ཨེ་རེའམ་ཁྱབ་ཚད་ཨིན།"
@@ -48133,7 +44980,6 @@ msgstr "<emph>Data_2</emph> དེ་ དྲན་ཐོ་གཉིས་པའ
msgctxt ""
"04060185.xhp\n"
"par_id3153903\n"
-"113\n"
"help.text"
msgid "<emph>Mode</emph> = 1 calculates the one-tailed test, <emph>Mode</emph> = 2 the two- tailed test."
msgstr "<emph> ཐབས་ལམ་ </emph> = ༡ གིས་ བརྟག་ཞིབ་ཏིག་ཅུང་རྒྱབ་གཅིག་ལྡན་རྩིས་སྟོནམ་ཨིནམ་ད་ <emph> ཐབས་ལམ་ </emph> = ༢ གིས་ བརྟག་ཞིབ་ཏིག་ཅུང་རྒྱབ་གཉིས་ལྡན་རྩིས་སྟོནམ་ཨིན།"
@@ -48142,7 +44988,6 @@ msgstr "<emph> ཐབས་ལམ་ </emph> = ༡ གིས་ བརྟག་
msgctxt ""
"04060185.xhp\n"
"par_id3155327\n"
-"114\n"
"help.text"
msgid "<emph>Type</emph> is the kind of t-test to perform. Type 1 means paired. Type 2 means two samples, equal variance (homoscedastic). Type 3 means two samples, unequal variance (heteroscedastic)."
msgstr "<emph> དབྱེ་བ་དེ་ </emph> ལཱ་འགན་འགྲུབ་ནི་ཨིན་པའི་ ཊི- བརྟག་ཞིབ་ཀྱི་དབྱེ་བ་ཨིན། དབྱེ་བ་ ༡ གིས་གཉིས་མཐུད་ཡོད་མི་ལུ་གོཝ་ཨིན། དབྱེ་བ་ ༢ གིས་ མི་མཐུན་པ་མཉམ་པའི་དཔེ་ཚད་གཉིས་ལུ་གོཝ་ཨིན་(ཧོ་མོ་སིཀེ་ཌེསི་ཊིཀ)། དབྱེ་བ་ ༣ གིས་ མི་མཐུན་པ་མ་མཉམ་པའི་དཔེ་ཚད་གཉིས་ལུ་གོཝ་ཨིན་(ཧེ་ཊེ་རོསི་སེ་ཌེསི་ཊིཀ)།"
@@ -48151,7 +44996,6 @@ msgstr "<emph> དབྱེ་བ་དེ་ </emph> ལཱ་འགན་འ
msgctxt ""
"04060185.xhp\n"
"hd_id3159342\n"
-"115\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -48160,13 +45004,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3150119\n"
-"116\n"
"help.text"
msgid "<item type=\"input\">=TTEST(A1:A50;B1:B50;2;2)</item>"
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2954129\n"
@@ -48175,21 +45017,17 @@ msgid "<bookmark_value>T.TEST function</bookmark_value>"
msgstr "<bookmark_value>TTEST ལས་འགན།</bookmark_value>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id2954129\n"
-"107\n"
"help.text"
msgid "T.TEST"
msgstr "TTEST"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2959184\n"
-"108\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TTEST_MS\">Returns the probability associated with a Student's t-Test.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TTEST\"> སློབ་ཕྲུག་ཚུའི་ ཊི་ བརྟག་ཞིབ་དང་འབྲེལ་བའི་ འབྱུང་ངེས་སླར་ལོག་འབདཝ་ཨིན། (-T)</ahelp>"
@@ -48198,57 +45036,46 @@ msgstr "<ahelp hid=\"HID_FUNC_TTEST\"> སློབ་ཕྲུག་ཚུའ
msgctxt ""
"04060185.xhp\n"
"hd_id2947257\n"
-"109\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2951175\n"
-"110\n"
"help.text"
msgid "T.TEST(Data1; Data2; Mode; Type)"
msgstr "TTEST(Data_1; Data_2; Mode; Type)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2949202\n"
-"111\n"
"help.text"
msgid "<emph>Data1</emph> is the dependent array or range of data for the first record."
msgstr "<emph>Data_1</emph> དེ་ དྲན་ཐོ་དང་པམ་དོན་ལུ་ གནད་སྡུད་ཀྱི་ གཞན་རྟེན་ཨེ་རེའམ་ཁྱབ་ཚད་ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2945666\n"
-"112\n"
"help.text"
msgid "<emph>Data2</emph> is the dependent array or range of data for the second record."
msgstr "<emph>Data_2</emph> དེ་ དྲན་ཐོ་གཉིས་པའི་དོན་ལུ་ གནད་སྡུད་ཀྱི་ གཞན་རྟེན་ཨེ་རེའམ་ཁྱབ་ཚད་ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2953903\n"
-"113\n"
"help.text"
msgid "<emph>Mode</emph> = 1 calculates the one-tailed test, <emph>Mode</emph> = 2 the two- tailed test."
msgstr "<emph> ཐབས་ལམ་ </emph> = ༡ གིས་ བརྟག་ཞིབ་ཏིག་ཅུང་རྒྱབ་གཅིག་ལྡན་རྩིས་སྟོནམ་ཨིནམ་ད་ <emph> ཐབས་ལམ་ </emph> = ༢ གིས་ བརྟག་ཞིབ་ཏིག་ཅུང་རྒྱབ་གཉིས་ལྡན་རྩིས་སྟོནམ་ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2955327\n"
-"114\n"
"help.text"
msgid "<emph>Type</emph> is the kind of t-test to perform. Type 1 means paired. Type 2 means two samples, equal variance (homoscedastic). Type 3 means two samples, unequal variance (heteroscedastic)."
msgstr "<emph> དབྱེ་བ་དེ་ </emph> ལཱ་འགན་འགྲུབ་ནི་ཨིན་པའི་ ཊི- བརྟག་ཞིབ་ཀྱི་དབྱེ་བ་ཨིན། དབྱེ་བ་ ༡ གིས་གཉིས་མཐུད་ཡོད་མི་ལུ་གོཝ་ཨིན། དབྱེ་བ་ ༢ གིས་ མི་མཐུན་པ་མཉམ་པའི་དཔེ་ཚད་གཉིས་ལུ་གོཝ་ཨིན་(ཧོ་མོ་སིཀེ་ཌེསི་ཊིཀ)། དབྱེ་བ་ ༣ གིས་ མི་མཐུན་པ་མ་མཉམ་པའི་དཔེ་ཚད་གཉིས་ལུ་གོཝ་ཨིན་(ཧེ་ཊེ་རོསི་སེ་ཌེསི་ཊིཀ)།"
@@ -48257,7 +45084,6 @@ msgstr "<emph> དབྱེ་བ་དེ་ </emph> ལཱ་འགན་འ
msgctxt ""
"04060185.xhp\n"
"hd_id2959342\n"
-"115\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -48266,7 +45092,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id2950119\n"
-"116\n"
"help.text"
msgid "<item type=\"input\">=T.TEST(A1:A50;B1:B50;2;2)</item>"
msgstr ""
@@ -48283,7 +45108,6 @@ msgstr "<bookmark_value>TDIST ལས་འགན་</bookmark_value><bookmark_va
msgctxt ""
"04060185.xhp\n"
"hd_id3154930\n"
-"118\n"
"help.text"
msgid "TDIST"
msgstr "TDIST"
@@ -48292,7 +45116,6 @@ msgstr "TDIST"
msgctxt ""
"04060185.xhp\n"
"par_id3153372\n"
-"119\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TVERT\">Returns the t-distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TVERT\"> ཊི་བགོ་བཀྲམ་ སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -48301,7 +45124,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TVERT\"> ཊི་བགོ་བཀྲམ་ ས
msgctxt ""
"04060185.xhp\n"
"hd_id3149911\n"
-"120\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -48310,7 +45132,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3150521\n"
-"121\n"
"help.text"
msgid "TDIST(Number; DegreesFreedom; Mode)"
msgstr "TDIST(ཨང་གྲངས། Degrees_freedom; ཐབས་ལམ།)"
@@ -48319,7 +45140,6 @@ msgstr "TDIST(ཨང་གྲངས། Degrees_freedom; ཐབས་ལམ།)"
msgctxt ""
"04060185.xhp\n"
"par_id3146991\n"
-"122\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the t-distribution is calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཊི་བགོ་བཀྲམ་འབད་ནི་དེ་རྩིས་སྟོན་འབད་ཡོད་པའི་གནས་གོང་ཨིན།"
@@ -48328,7 +45148,6 @@ msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཊི་བགོ་
msgctxt ""
"04060185.xhp\n"
"par_id3148824\n"
-"123\n"
"help.text"
msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
msgstr "<emph>Degrees_freedom</emph> དེ་ t- བགོ་བཀྲམ་དོན་ལུ་ རབ་དབང་གི་ དབྱེ་རིམ་གྱི་གྱངས་ཁ་ཨིན།"
@@ -48337,7 +45156,6 @@ msgstr "<emph>Degrees_freedom</emph> དེ་ t- བགོ་བཀྲམ་ད
msgctxt ""
"04060185.xhp\n"
"par_id3149340\n"
-"124\n"
"help.text"
msgid "<emph>Mode</emph> = 1 returns the one-tailed test, <emph>Mode</emph> = 2 returns the two-tailed test."
msgstr "<emph> ཐབས་ལམ་ </emph> = ༡ གིས་ one-tailed བརྟག་ཞིབ་སླར་ལོག་འབདཝ་ཨིནམ་དང་ <emph> ཐབས་ལམ་ </emph> = ༢ གིས་ two-tailed བརྟག་ཞིབ་སླར་ལོག་འབདཝ་ཨིན།"
@@ -48346,7 +45164,6 @@ msgstr "<emph> ཐབས་ལམ་ </emph> = ༡ གིས་ one-tailed བ
msgctxt ""
"04060185.xhp\n"
"hd_id3159150\n"
-"125\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -48355,13 +45172,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3149773\n"
-"126\n"
"help.text"
msgid "<item type=\"input\">=TDIST(12;5;1)</item>"
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2954930\n"
@@ -48370,21 +45185,17 @@ msgid "<bookmark_value>T.DIST function</bookmark_value> <bookmark_value>t
msgstr "<bookmark_value>TDIST ལས་འགན་</bookmark_value><bookmark_value>ཊི་-བགོ་བཀྲམ་</bookmark_value>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id2954930\n"
-"118\n"
"help.text"
msgid "T.DIST"
msgstr "TDIST"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2953372\n"
-"119\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TDIST_MS\">Returns the t-distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TVERT\"> ཊི་བགོ་བཀྲམ་ སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -48393,37 +45204,30 @@ msgstr "<ahelp hid=\"HID_FUNC_TVERT\"> ཊི་བགོ་བཀྲམ་ ས
msgctxt ""
"04060185.xhp\n"
"hd_id2949911\n"
-"120\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2950521\n"
-"121\n"
"help.text"
msgid "T.DIST(Number; DegreesFreedom; Cumulative)"
msgstr "TDIST(ཨང་གྲངས། Degrees_freedom; ཐབས་ལམ།)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2946991\n"
-"122\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the t-distribution is calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཊི་བགོ་བཀྲམ་འབད་ནི་དེ་རྩིས་སྟོན་འབད་ཡོད་པའི་གནས་གོང་ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2948824\n"
-"123\n"
"help.text"
msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
msgstr "<emph>Degrees_freedom</emph> དེ་ t- བགོ་བཀྲམ་དོན་ལུ་ རབ་དབང་གི་ དབྱེ་རིམ་གྱི་གྱངས་ཁ་ཨིན།"
@@ -48432,7 +45236,6 @@ msgstr "<emph>Degrees_freedom</emph> དེ་ t- བགོ་བཀྲམ་ད
msgctxt ""
"04060185.xhp\n"
"par_id2949340\n"
-"124\n"
"help.text"
msgid "<emph>Cumulative</emph> = 0 or FALSE returns the probability density function, 1 or TRUE returns the cumulative distribution function."
msgstr ""
@@ -48441,7 +45244,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"hd_id2959150\n"
-"125\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -48450,13 +45252,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id2949773\n"
-"126\n"
"help.text"
msgid "<item type=\"input\">=T.DIST(1; 10; TRUE)</item> returns 0.8295534338"
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2854930\n"
@@ -48468,7 +45268,6 @@ msgstr "<bookmark_value>TDIST ལས་འགན་</bookmark_value><bookmark_va
msgctxt ""
"04060185.xhp\n"
"hd_id2854930\n"
-"118\n"
"help.text"
msgid "T.DIST.2T"
msgstr ""
@@ -48477,7 +45276,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"par_id2853372\n"
-"119\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TDIST_2T\">Calculates the two-tailed Student's T Distribution, which is a continuous probability distribution that is frequently used for testing hypotheses on small sample data sets.</ahelp>"
msgstr ""
@@ -48486,37 +45284,30 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"hd_id2849911\n"
-"120\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2850521\n"
-"121\n"
"help.text"
msgid "T.DIST.2T(Number; DegreesFreedom)"
msgstr "CHIDIST (Number; degrees_freedom)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2846991\n"
-"122\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the t-distribution is calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཊི་བགོ་བཀྲམ་འབད་ནི་དེ་རྩིས་སྟོན་འབད་ཡོད་པའི་གནས་གོང་ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2848824\n"
-"123\n"
"help.text"
msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
msgstr "<emph>Degrees_freedom</emph> དེ་ t- བགོ་བཀྲམ་དོན་ལུ་ རབ་དབང་གི་ དབྱེ་རིམ་གྱི་གྱངས་ཁ་ཨིན།"
@@ -48525,7 +45316,6 @@ msgstr "<emph>Degrees_freedom</emph> དེ་ t- བགོ་བཀྲམ་ད
msgctxt ""
"04060185.xhp\n"
"hd_id2859150\n"
-"125\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -48534,13 +45324,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id2849773\n"
-"126\n"
"help.text"
msgid "<item type=\"input\">=T.DIST.2T(1; 10)</item> returns 0.3408931323."
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id274930\n"
@@ -48552,7 +45340,6 @@ msgstr "<bookmark_value>TDIST ལས་འགན་</bookmark_value><bookmark_va
msgctxt ""
"04060185.xhp\n"
"hd_id274930\n"
-"118\n"
"help.text"
msgid "T.DIST.RT"
msgstr ""
@@ -48561,7 +45348,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"par_id2753372\n"
-"119\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TDIST_RT\">Calculates the right-tailed Student's T Distribution, which is a continuous probability distribution that is frequently used for testing hypotheses on small sample data sets.</ahelp>"
msgstr ""
@@ -48570,37 +45356,30 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"hd_id2749911\n"
-"120\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2750521\n"
-"121\n"
"help.text"
msgid "T.DIST.RT(Number; DegreesFreedom)"
msgstr "CHIDIST (Number; degrees_freedom)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2746991\n"
-"122\n"
"help.text"
msgid "<emph>Number</emph> is the value for which the t-distribution is calculated."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> ཊི་བགོ་བཀྲམ་འབད་ནི་དེ་རྩིས་སྟོན་འབད་ཡོད་པའི་གནས་གོང་ཨིན།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2748824\n"
-"123\n"
"help.text"
msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
msgstr "<emph>Degrees_freedom</emph> དེ་ t- བགོ་བཀྲམ་དོན་ལུ་ རབ་དབང་གི་ དབྱེ་རིམ་གྱི་གྱངས་ཁ་ཨིན།"
@@ -48609,7 +45388,6 @@ msgstr "<emph>Degrees_freedom</emph> དེ་ t- བགོ་བཀྲམ་ད
msgctxt ""
"04060185.xhp\n"
"hd_id2759150\n"
-"125\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -48618,7 +45396,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id2749773\n"
-"126\n"
"help.text"
msgid "<item type=\"input\">=T.DIST.RT(1; 10)</item> returns 0.1704465662."
msgstr ""
@@ -48635,7 +45412,6 @@ msgstr "<bookmark_value>VAR ལས་འགན་</bookmark_value><bookmark_valu
msgctxt ""
"04060185.xhp\n"
"hd_id3153828\n"
-"128\n"
"help.text"
msgid "VAR"
msgstr "VAR"
@@ -48644,7 +45420,6 @@ msgstr "VAR"
msgctxt ""
"04060185.xhp\n"
"par_id3159165\n"
-"129\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VARIANZ\">Estimates the variance based on a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VARIANZ\"> དཔེ་ཚད་ལུ་གཞི་བཞག་སྟེ་ མི་མཐུན་པ་ཕོག་ཚོད་དཔགཔ་ཨིན། </ahelp>"
@@ -48653,7 +45428,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VARIANZ\"> དཔེ་ཚད་ལུ་གཞི
msgctxt ""
"04060185.xhp\n"
"hd_id3154286\n"
-"130\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -48662,7 +45436,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3153054\n"
-"131\n"
"help.text"
msgid "VAR(Number1; Number2; ...Number30)"
msgstr "MAX(ཨང་ ༡ ; ཨང་ ༢ ; ...ཨང་ ༣༠)"
@@ -48671,7 +45444,6 @@ msgstr "MAX(ཨང་ ༡ ; ཨང་ ༢ ; ...ཨང་ ༣༠)"
msgctxt ""
"04060185.xhp\n"
"par_id3148938\n"
-"132\n"
"help.text"
msgid "<emph>Number1, Number2, ...Number30</emph> are numerical values or ranges representing a sample based on an entire population."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢,...ཨང་གྲངས་ ༣༠ </emph> ཚུ་ ཨང་གྲངས་ཀྱི་གནས་གོང་ཚུའམ་ མི་རློབས་ཧྲིལ་བུ་གུ་ལུ་གཞི་བཞག་པའི་དཔེ་ཚད་ཁྱད་ཚབ་འབད་བའི་ཁྱབ་ཚད་ཚུ་ཨིན།"
@@ -48680,7 +45452,6 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢,...ཨ
msgctxt ""
"04060185.xhp\n"
"hd_id3147233\n"
-"133\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -48689,13 +45460,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3153575\n"
-"134\n"
"help.text"
msgid "<item type=\"input\">=VAR(A1:A50)</item>"
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2953828\n"
@@ -48704,21 +45473,17 @@ msgid "<bookmark_value>VAR.S function</bookmark_value> <bookmark_value>va
msgstr "<bookmark_value>VAR ལས་འགན་</bookmark_value><bookmark_value>མི་མཐུན་པ་ཚུ་</bookmark_value>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id2953828\n"
-"128\n"
"help.text"
msgid "VAR.S"
msgstr "VARP"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2959165\n"
-"129\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VAR_S\">Estimates the variance based on a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VARIANZ\"> དཔེ་ཚད་ལུ་གཞི་བཞག་སྟེ་ མི་མཐུན་པ་ཕོག་ཚོད་དཔགཔ་ཨིན། </ahelp>"
@@ -48727,27 +45492,22 @@ msgstr "<ahelp hid=\"HID_FUNC_VARIANZ\"> དཔེ་ཚད་ལུ་གཞི
msgctxt ""
"04060185.xhp\n"
"hd_id2954286\n"
-"130\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2953054\n"
-"131\n"
"help.text"
msgid "VAR.S(Number1; Number2; ...Number30)"
msgstr "MAX(ཨང་ ༡ ; ཨང་ ༢ ; ...ཨང་ ༣༠)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2948938\n"
-"132\n"
"help.text"
msgid "<emph>Number1, Number2, ...Number30</emph> are numerical values or ranges representing a sample based on an entire population."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢,...ཨང་གྲངས་ ༣༠ </emph> ཚུ་ ཨང་གྲངས་ཀྱི་གནས་གོང་ཚུའམ་ མི་རློབས་ཧྲིལ་བུ་གུ་ལུ་གཞི་བཞག་པའི་དཔེ་ཚད་ཁྱད་ཚབ་འབད་བའི་ཁྱབ་ཚད་ཚུ་ཨིན།"
@@ -48756,7 +45516,6 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢,...ཨ
msgctxt ""
"04060185.xhp\n"
"hd_id2947233\n"
-"133\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -48765,7 +45524,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id2953575\n"
-"134\n"
"help.text"
msgid "<item type=\"input\">=VAR.S(A1:A50)</item>"
msgstr ""
@@ -48782,7 +45540,6 @@ msgstr "<bookmark_value>VARA ལས་འགན།</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3151045\n"
-"202\n"
"help.text"
msgid "VARA"
msgstr "VARA"
@@ -48791,7 +45548,6 @@ msgstr "VARA"
msgctxt ""
"04060185.xhp\n"
"par_id3155122\n"
-"203\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VARIANZA\">Estimates a variance based on a sample. The value of text is 0.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VARIANZA\"> དཔེ་ཚད་ལུ་གཞི་བཞག་སྟེ་ མི་མཐུན་པ་ཕོག་ཚོད་དཔགཔ་ཨིན། ཚིག་ཡིག་གི་གནས་གོང་དེ་ ༠ ཨིན། </ahelp>"
@@ -48800,7 +45556,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VARIANZA\"> དཔེ་ཚད་ལུ་གཞ
msgctxt ""
"04060185.xhp\n"
"hd_id3149176\n"
-"204\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -48809,7 +45564,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3149999\n"
-"205\n"
"help.text"
msgid "VARA(Value1; Value2; ...Value30)"
msgstr "VARA(གནས་གོང་ ༡། གནས་གོང་ ༢།...གནས་གོང་ ༣༠།)"
@@ -48818,7 +45572,6 @@ msgstr "VARA(གནས་གོང་ ༡། གནས་གོང་ ༢།...
msgctxt ""
"04060185.xhp\n"
"par_id3158421\n"
-"206\n"
"help.text"
msgid "<emph>Value1, Value2,...Value30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
msgstr "<emph> གནས་གོང་ ༡ གནས་གོང་ ༢ ... གནས་གོང་ ༣༠ </emph> ཚུ་ མི་རློབས་ཧྲིལ་བུ་ལས་བྱུང་ཡོད་པའི་དཔེ་ཚད་ཁྱད་ཚབ་འབད་བའི་ གནས་གོང་ངམ་ ཁྱབ་ཚད་ཚུ་ཨིན། ཚིག་ཡིག་ལུ་གནས་གོང་ ༠ ཡོད།"
@@ -48827,7 +45580,6 @@ msgstr "<emph> གནས་གོང་ ༡ གནས་གོང་ ༢ ... ག
msgctxt ""
"04060185.xhp\n"
"hd_id3149160\n"
-"207\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -48836,7 +45588,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3154279\n"
-"208\n"
"help.text"
msgid "<item type=\"input\">=VARA(A1:A50)</item>"
msgstr ""
@@ -48853,7 +45604,6 @@ msgstr "<bookmark_value>VARP ལས་འགན།</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3166441\n"
-"136\n"
"help.text"
msgid "VARP"
msgstr "VARP"
@@ -48862,7 +45612,6 @@ msgstr "VARP"
msgctxt ""
"04060185.xhp\n"
"par_id3159199\n"
-"137\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VARIANZEN\">Calculates a variance based on the entire population.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VARIANZEN\"> མི་རློབས་ཧྲིལ་བུ་གུ་ལུ་གཞི་བཞག་སྟེ་ མི་མཐུན་པ་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -48871,7 +45620,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VARIANZEN\"> མི་རློབས་ཧྲི
msgctxt ""
"04060185.xhp\n"
"hd_id3150706\n"
-"138\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -48880,7 +45628,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3147282\n"
-"139\n"
"help.text"
msgid "VARP(Number1; Number2; ...Number30)"
msgstr "VARP(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།... ཨང་གྲངས་ ༣༠།)"
@@ -48889,7 +45636,6 @@ msgstr "VARP(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།...
msgctxt ""
"04060185.xhp\n"
"par_id3149793\n"
-"140\n"
"help.text"
msgid "<emph>Number1, Number2, ...Number30</emph> are numerical values or ranges representing an entire population."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨང་གྲངས་ ༣༠ </emph> ཚུ་ མི་རློབས་ཧྲིལ་བུ་ཁྱད་ཚབ་འབད་བའི་ ཨང་གྲངས་ཀྱི་གནས་གོང་ཚུའམ་ ཁྱབ་ཚད་ཚུ་ཨིན།"
@@ -48898,7 +45644,6 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨ
msgctxt ""
"04060185.xhp\n"
"hd_id3152939\n"
-"141\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -48907,13 +45652,11 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3153385\n"
-"142\n"
"help.text"
msgid "<item type=\"input\">=VARP(A1:A50)</item>"
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2966441\n"
@@ -48922,21 +45665,17 @@ msgid "<bookmark_value>VAR.P function</bookmark_value>"
msgstr "<bookmark_value>VARP ལས་འགན།</bookmark_value>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id2966441\n"
-"136\n"
"help.text"
msgid "VAR.P"
msgstr "VARP"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2959199\n"
-"137\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VAR_P_MS\">Calculates a variance based on the entire population.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VARIANZEN\"> མི་རློབས་ཧྲིལ་བུ་གུ་ལུ་གཞི་བཞག་སྟེ་ མི་མཐུན་པ་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -48945,27 +45684,22 @@ msgstr "<ahelp hid=\"HID_FUNC_VARIANZEN\"> མི་རློབས་ཧྲི
msgctxt ""
"04060185.xhp\n"
"hd_id2950706\n"
-"138\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2947282\n"
-"139\n"
"help.text"
msgid "VAR.P(Number1; Number2; ...Number30)"
msgstr "VARP(ཨང་གྲངས་ ༡། ཨང་གྲངས་ ༢།... ཨང་གྲངས་ ༣༠།)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2949793\n"
-"140\n"
"help.text"
msgid "<emph>Number1, Number2, ...Number30</emph> are numerical values or ranges representing an entire population."
msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨང་གྲངས་ ༣༠ </emph> ཚུ་ མི་རློབས་ཧྲིལ་བུ་ཁྱད་ཚབ་འབད་བའི་ ཨང་གྲངས་ཀྱི་གནས་གོང་ཚུའམ་ ཁྱབ་ཚད་ཚུ་ཨིན།"
@@ -48974,7 +45708,6 @@ msgstr "<emph> ཨང་གྲངས་ ༡ ཨང་གྲངས་ ༢...ཨ
msgctxt ""
"04060185.xhp\n"
"hd_id2952939\n"
-"141\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -48983,7 +45716,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id2953385\n"
-"142\n"
"help.text"
msgid "<item type=\"input\">=VAR.P(A1:A50)</item>"
msgstr ""
@@ -49000,7 +45732,6 @@ msgstr "<bookmark_value>VARPA ལས་འགན།</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3153688\n"
-"210\n"
"help.text"
msgid "VARPA"
msgstr "VARPA"
@@ -49009,7 +45740,6 @@ msgstr "VARPA"
msgctxt ""
"04060185.xhp\n"
"par_id3149109\n"
-"211\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VARIANZENA\">Calculates the variance based on the entire population. The value of text is 0.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VARIANZENA\"> མི་རློབས་ཧྲིལ་བུ་གུ་ལུ་གཞི་བཞག་པའི་མི་མཐུན་པ་རྩིས་སྟོནམ་ཨིན། ཚིག་ཡིག་གི་གནས་གོང་དེ་ ༠ ཨིན། </ahelp>"
@@ -49018,7 +45748,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VARIANZENA\"> མི་རློབས་ཧྲི
msgctxt ""
"04060185.xhp\n"
"hd_id3152880\n"
-"212\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -49027,7 +45756,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3149967\n"
-"213\n"
"help.text"
msgid "VARPA(Value1; Value2; ...Value30)"
msgstr "VARA(གནས་གོང་ ༡། གནས་གོང་ ༢།...གནས་གོང་ ༣༠།)"
@@ -49036,7 +45764,6 @@ msgstr "VARA(གནས་གོང་ ༡། གནས་གོང་ ༢།...
msgctxt ""
"04060185.xhp\n"
"par_id3149920\n"
-"214\n"
"help.text"
msgid "<emph>Value1,value2,...Value30</emph> are values or ranges representing an entire population."
msgstr "<emph> གནས་གོང་ ༡ གནས་གོང་ ༢...གནས་གོང་ ༣༠ </emph> ཚུ་ མི་རློབས་ཧྲིལ་བུ་ ཁྱད་ཚབ་འབད་བའི་ གནས་གོང་ཚུའམ་ཁྱབ་ཚད་ཚུ་ཨིན།"
@@ -49045,7 +45772,6 @@ msgstr "<emph> གནས་གོང་ ༡ གནས་གོང་ ༢...ག
msgctxt ""
"04060185.xhp\n"
"hd_id3154862\n"
-"215\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -49054,7 +45780,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3156203\n"
-"216\n"
"help.text"
msgid "<item type=\"input\">=VARPA(A1:A50)</item>"
msgstr ""
@@ -49071,7 +45796,6 @@ msgstr "<bookmark_value>PERMUT ལས་འགན་</bookmark_value><bookmark_v
msgctxt ""
"04060185.xhp\n"
"hd_id3154599\n"
-"144\n"
"help.text"
msgid "PERMUT"
msgstr "PERMUT"
@@ -49080,7 +45804,6 @@ msgstr "PERMUT"
msgctxt ""
"04060185.xhp\n"
"par_id3154334\n"
-"145\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VARIATIONEN\">Returns the number of permutations for a given number of objects.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VARIATIONEN\"> གྲ་སྒྲིག་འབད་ཡོད་པའི་དངོས་པོ་ཚུའི་གྱངས་ཁའི་དོན་ལུ་ གོ་རིམ་བརྗེ་སྒྱུར་གྱི་ གྱངས་ཁ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -49089,7 +45812,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VARIATIONEN\"> གྲ་སྒྲིག་འབ
msgctxt ""
"04060185.xhp\n"
"hd_id3149422\n"
-"146\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -49098,7 +45820,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3148466\n"
-"147\n"
"help.text"
msgid "PERMUT(Count1; Count2)"
msgstr "PERMUT(Count_1; Count_2)"
@@ -49107,7 +45828,6 @@ msgstr "PERMUT(Count_1; Count_2)"
msgctxt ""
"04060185.xhp\n"
"par_id3148656\n"
-"148\n"
"help.text"
msgid "<emph>Count1</emph> is the total number of objects."
msgstr "<emph>Count_1</emph> འདི་ དངོས་པོ་ཚུའི་གྱངས་ཁ་བསྡོམས་ཨིན།"
@@ -49116,7 +45836,6 @@ msgstr "<emph>Count_1</emph> འདི་ དངོས་པོ་ཚུའི
msgctxt ""
"04060185.xhp\n"
"par_id3150826\n"
-"149\n"
"help.text"
msgid "<emph>Count2</emph> is the number of objects in each permutation."
msgstr "<emph>Count_2</emph> འདི་གོ་རིམ་བརྗ་སྒྱུར་རེ་རེ་ནང་གི་དངོས་པོ་ཚུའི་གྱངས་ཁ་ཨིན།"
@@ -49125,7 +45844,6 @@ msgstr "<emph>Count_2</emph> འདི་གོ་རིམ་བརྗ་སྒ
msgctxt ""
"04060185.xhp\n"
"hd_id3153351\n"
-"150\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -49134,7 +45852,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3150424\n"
-"151\n"
"help.text"
msgid "<item type=\"input\">=PERMUT(6;3)</item> returns 120. There are 120 different possibilities, to pick a sequence of 3 playing cards out of 6 playing cards."
msgstr "=PERMUT(6; 3) གིས་ ༡༢༠ སླར་ལོག་འབདཝ་ཨིན། ཏ་སི་ ༦ ལས་ ཏ་སི་ ༣ གི་འབྱུང་རིམ་འཐུ་ནིའི་དོན་ལུ་ གདམ་ཁ་སོ་སོར་ ༡༢༠ ཡོདཔ་ཨིན།"
@@ -49151,7 +45868,6 @@ msgstr "<bookmark_value>PERMUTATIONA ལས་འགན།</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3143276\n"
-"153\n"
"help.text"
msgid "PERMUTATIONA"
msgstr "PERMUTATIONA"
@@ -49160,7 +45876,6 @@ msgstr "PERMUTATIONA"
msgctxt ""
"04060185.xhp\n"
"par_id3144759\n"
-"154\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VARIATIONEN2\">Returns the number of permutations for a given number of objects (repetition allowed).</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VARIATIONEN2\"> གྲ་སྒྲིག་འབད་ཡོད་པའི་དངོས་པོ་ཚུའི་གྱངས་ཁའི་དོན་ལུ་ གོ་རིམ་བརྗེ་སྒྱུར་གྱི་གྱངས་ཁ་སླར་ལོག་འབདཝ་ཨིན་ (ཡང་བསྐྱར་འབད་ཆོགཔ)།</ahelp>"
@@ -49169,7 +45884,6 @@ msgstr "<ahelp hid=\"HID_FUNC_VARIATIONEN2\"> གྲ་སྒྲིག་འབ
msgctxt ""
"04060185.xhp\n"
"hd_id3145598\n"
-"155\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -49178,7 +45892,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3149298\n"
-"156\n"
"help.text"
msgid "PERMUTATIONA(Count1; Count2)"
msgstr "PERMUTATIONA(Count_1; Count_2)"
@@ -49187,7 +45900,6 @@ msgstr "PERMUTATIONA(Count_1; Count_2)"
msgctxt ""
"04060185.xhp\n"
"par_id3156139\n"
-"157\n"
"help.text"
msgid "<emph>Count1</emph> is the total number of objects."
msgstr "<emph>Count_1</emph> འདི་ དངོས་པོ་ཚུའི་གྱངས་ཁ་བསྡོམས་ཨིན།"
@@ -49196,7 +45908,6 @@ msgstr "<emph>Count_1</emph> འདི་ དངོས་པོ་ཚུའི
msgctxt ""
"04060185.xhp\n"
"par_id3149519\n"
-"158\n"
"help.text"
msgid "<emph>Count2</emph> is the number of objects in each permutation."
msgstr "<emph>Count_2</emph> འདི་གོ་རིམ་བརྗ་སྒྱུར་རེ་རེ་ནང་གི་དངོས་པོ་ཚུའི་གྱངས་ཁ་ཨིན།"
@@ -49205,7 +45916,6 @@ msgstr "<emph>Count_2</emph> འདི་གོ་རིམ་བརྗ་སྒ
msgctxt ""
"04060185.xhp\n"
"hd_id3151382\n"
-"159\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -49214,7 +45924,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3153949\n"
-"160\n"
"help.text"
msgid "How often can 2 objects be selected from a total of 11 objects?"
msgstr "བསྡོམས་ཀྱི་ དངོས་པོ་ ༡༢ ལས་ དངོས་པོ་ ༢ ཡང་བསྐྱར་དུ་སེལ་འཐུ་ག་དེ་འབད་ཚུགས་སྨོ?"
@@ -49223,7 +45932,6 @@ msgstr "བསྡོམས་ཀྱི་ དངོས་པོ་ ༡༢ ལས
msgctxt ""
"04060185.xhp\n"
"par_id3149233\n"
-"161\n"
"help.text"
msgid "<item type=\"input\">=PERMUTATIONA(11;2)</item> returns 121."
msgstr ""
@@ -49232,7 +45940,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"par_id3150622\n"
-"162\n"
"help.text"
msgid "<item type=\"input\">=PERMUTATIONA(6;3)</item> returns 216. There are 216 different possibilities to put a sequence of 3 playing cards together out of six playing cards if every card is returned before the next one is drawn."
msgstr "PERMUTATIONA(6; 3) གིས་ ༢༡༦ སླར་ལོག་འབདཝ་ཨིན། ཏ་སི་ཆ་མཉམ་རང་ ཤུལ་མམ་གྱི་ཏ་སི་མ་འཐེན་པའི་ཧེ་མ་སླར་ལོག་འབད་དེ་ཡོད་པ་ཅིན་ ཏ་སི་ དྲུག་ལས་ ཏ་སི་ གསུམ་གཅིག་ཁར་སྦེ་འབྱུང་རིམ་ནང་བཙུགས་ནིའི་དོན་ལས་ གདམ་ཁ་ ༢༡༦ ཡོདཔ་ཨིན།"
@@ -49249,7 +45956,6 @@ msgstr "<bookmark_value>PROB ལས་འགན།</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3152952\n"
-"164\n"
"help.text"
msgid "PROB"
msgstr "PROB"
@@ -49258,7 +45964,6 @@ msgstr "PROB"
msgctxt ""
"04060185.xhp\n"
"par_id3154110\n"
-"165\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WAHRSCHBEREICH\">Returns the probability that values in a range are between two limits.</ahelp> If there is no <item type=\"literal\">End</item> value, this function calculates the probability based on the principle that the Data values are equal to the value of <item type=\"literal\">Start</item>."
msgstr "<ahelp hid=\"HID_FUNC_WAHRSCHBEREICH\"> ཁྱབ་ཚད་ནང་ལུ་གནས་གོང་ཚུ་ བཅས་མཚམས་གཉིས་ཀྱི་བར་ཡོད་པའི་འབྱུང་འགྱུར་སླར་ལོག་འབདཝ་ཨིན། </ahelp> དེ་ཁར་ལུ་ གནས་གོང་མཇུག་མེད་པ་ཅིན་ <emph> འ་ནི་ལས་འགན་གྱིས་ </emph> གནད་སྡུད་གནས་གོང་ཚུ་ འགོ་བཙུགས་ཀྱི་གནས་གོང་དང་མཉམ་པའི་ རྣམ་གཞག་ལུ་གཞི་བཞག་སྟེ་ <emph> འབྱུང་འགྱུར་ </emph> རྩིས་སྟོནམ་ཨིན།"
@@ -49267,7 +45972,6 @@ msgstr "<ahelp hid=\"HID_FUNC_WAHRSCHBEREICH\"> ཁྱབ་ཚད་ནང་
msgctxt ""
"04060185.xhp\n"
"hd_id3146810\n"
-"166\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -49276,7 +45980,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3147330\n"
-"167\n"
"help.text"
msgid "PROB(Data; Probability; Start; End)"
msgstr "PROB(གནད་སྡུད། འབྱུང་ངེས། འགོ་བཙུགས། མཇུག)"
@@ -49285,7 +45988,6 @@ msgstr "PROB(གནད་སྡུད། འབྱུང་ངེས། འག
msgctxt ""
"04060185.xhp\n"
"par_id3154573\n"
-"168\n"
"help.text"
msgid "<emph>Data</emph> is the array or range of data in the sample."
msgstr "<emph> གནད་སྡུད་ </emph> འདི་ དཔེ་ཚད་ནང་གི་ཨེ་རེ་ཡང་ན་ གནད་སྡུད་ཀྱི་ཁྱབ་ཚད་ཨིན།"
@@ -49294,7 +45996,6 @@ msgstr "<emph> གནད་སྡུད་ </emph> འདི་ དཔེ་ཚ
msgctxt ""
"04060185.xhp\n"
"par_id3156334\n"
-"169\n"
"help.text"
msgid "<emph>Probability</emph> is the array or range of the corresponding probabilities."
msgstr "<emph> འབྱུང་འགྱུར་དེ་ </emph> ཆ་མཉམ་པའི་འབྱུང་འགྱུར་ཚུའི་ཨེ་རེའམ་ཁྱབ་ཚད་ཨིན།"
@@ -49303,7 +46004,6 @@ msgstr "<emph> འབྱུང་འགྱུར་དེ་ </emph> ཆ་མ
msgctxt ""
"04060185.xhp\n"
"par_id3151107\n"
-"170\n"
"help.text"
msgid "<emph>Start</emph> is the start value of the interval whose probabilities are to be summed."
msgstr "<emph> འགོ་བཙུགས་དེ་ </emph> དེའི་འབྱུང་འགྱུར་ཚུ་བཅུད་བསྡུ་བའི་བར་མཚམས་ཀྱི་ གནས་གོང་འགོ་བཙུགས་ཨིན།"
@@ -49312,7 +46012,6 @@ msgstr "<emph> འགོ་བཙུགས་དེ་ </emph> དེའི་
msgctxt ""
"04060185.xhp\n"
"par_id3153694\n"
-"171\n"
"help.text"
msgid "<emph>End</emph> (optional) is the end value of the interval whose probabilities are to be summed. If this parameter is missing, the probability for the <emph>Start </emph>value is calculated."
msgstr "<emph> མཇུག་ </emph> (གདམ་ཁ་ཅན་) དེ་ བར་མཚམས་ཀྱི་བཅུད་བསྡུ་ནི་ཨིན་པའི་འབྱུང་འགྱུར་ཚུའི་གནས་གོང་མཇུག་ཨིན། ཚད་བཟུང་དེ་བརླག་སྟོར་ཞུགས་ཏེ་ཡོད་པ་ཅིན་ <emph> གནས་གོང་འགོ་བཙུགས་ཀྱི་དོན་ལུ་ </emph> འབྱུང་འགྱུར་རྩིས་བརྐྱབ་ཡོདཔ་ཨིན།"
@@ -49321,7 +46020,6 @@ msgstr "<emph> མཇུག་ </emph> (གདམ་ཁ་ཅན་) དེ་
msgctxt ""
"04060185.xhp\n"
"hd_id3147574\n"
-"172\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -49330,7 +46028,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3153666\n"
-"173\n"
"help.text"
msgid "<item type=\"input\">=PROB(A1:A50;B1:B50;50;60)</item> returns the probability with which a value within the range of A1:A50 is also within the limits between 50 and 60. Every value within the range of A1:A50 has a probability within the range of B1:B50."
msgstr "=PROB(A1:A50; B1:B50; 50; 60) གིས་ A1:A50 གི་ཁྱབ་ཚད་ནང་འཁོད་ལུ་ཡོད་པའི་གནས་གོང་ཡང་ འབྱུང་འགྱུར་དང་གཅིག་ཁར་བཅད་མཚམས་ ༥༠ དང་ ༦༠ ནང་འཁོད་ཡོད་མི་དེ་ སླར་ལོག་འབདཝ་ཨིན། A1:A50 གི་ ནང་འཁོད་ཡོད་པའི་ གནས་གོང་ཆ་མཉམ་ལུ་ ཁྱབ་ཚད་ B1:B50 གི་ནང་འཁོད་ཡོདཔ་ཨིན།"
@@ -49347,7 +46044,6 @@ msgstr "<bookmark_value>WEIBULL ལས་འགན།</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id3150941\n"
-"175\n"
"help.text"
msgid "WEIBULL"
msgstr "WEIBULL"
@@ -49356,7 +46052,6 @@ msgstr "WEIBULL"
msgctxt ""
"04060185.xhp\n"
"par_id3154916\n"
-"176\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WEIBULL\">Returns the values of the Weibull distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_WEIBULL\"> ཝིའི་བཱུལ་བགོ་བཀྲམ་གྱི་ གནས་གོང་ཚུ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -49389,7 +46084,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"hd_id3159393\n"
-"177\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -49398,7 +46092,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"04060185.xhp\n"
"par_id3154478\n"
-"178\n"
"help.text"
msgid "WEIBULL(Number; Alpha; Beta; C)"
msgstr "WEIBULL(ཨང་། ཨཱལ་ཕ། སྔོན་དཔྱད། སི།)"
@@ -49407,7 +46100,6 @@ msgstr "WEIBULL(ཨང་། ཨཱལ་ཕ། སྔོན་དཔྱད།
msgctxt ""
"04060185.xhp\n"
"par_id3151317\n"
-"179\n"
"help.text"
msgid "<emph>Number</emph> is the value at which to calculate the Weibull distribution."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> དེའི་གུ་ལུ་ ཝིའི་བཱུལ་རྩིས་སྟོན་འབད་སའི་གནས་གོང་ཨིན།"
@@ -49416,7 +46108,6 @@ msgstr "<emph> ཨང་གྲངས་དེ་ </emph> དེའི་གུ
msgctxt ""
"04060185.xhp\n"
"par_id3158436\n"
-"180\n"
"help.text"
msgid "<emph>Alpha </emph>is the shape parameter of the Weibull distribution."
msgstr "<emph> ཨཱལ་ཕ་དེ་ </emph> ཝིའི་བཱུལ་བགོ་བཀྲམ་གྱི་ ཨཱལ་ཕ་ཚད་བཟུང་ཨིན།"
@@ -49425,7 +46116,6 @@ msgstr "<emph> ཨཱལ་ཕ་དེ་ </emph> ཝིའི་བཱུལ
msgctxt ""
"04060185.xhp\n"
"par_id3154668\n"
-"181\n"
"help.text"
msgid "<emph>Beta</emph> is the scale parameter of the Weibull distribution."
msgstr "<emph> སྔོན་དཔྱད་དེ་ </emph> ཝིའི་བཱུལ་བགོ་བཀྲམ་གྱི་ སྔོན་དཔྱད་ཚད་བཟུང་ཨིན།"
@@ -49434,7 +46124,6 @@ msgstr "<emph> སྔོན་དཔྱད་དེ་ </emph> ཝིའི་
msgctxt ""
"04060185.xhp\n"
"par_id3154825\n"
-"182\n"
"help.text"
msgid "<emph>C</emph> indicates the type of function."
msgstr ""
@@ -49443,7 +46132,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"hd_id3153794\n"
-"183\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -49452,7 +46140,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id3146077\n"
-"184\n"
"help.text"
msgid "<item type=\"input\">=WEIBULL(2;1;1;1)</item> returns 0.86."
msgstr ""
@@ -49466,7 +46153,6 @@ msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentatio
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id2950941\n"
@@ -49478,17 +46164,14 @@ msgstr "<bookmark_value>WEIBULL ལས་འགན།</bookmark_value>"
msgctxt ""
"04060185.xhp\n"
"hd_id2950941\n"
-"175\n"
"help.text"
msgid "WEIBULL.DIST"
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2954916\n"
-"176\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WEIBULL_DIST_MS\">Returns the values of the Weibull distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_WEIBULL\"> ཝིའི་བཱུལ་བགོ་བཀྲམ་གྱི་ གནས་གོང་ཚུ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -49521,27 +46204,22 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"hd_id2959393\n"
-"177\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2954478\n"
-"178\n"
"help.text"
msgid "WEIBULL.DIST(Number; Alpha; Beta; C)"
msgstr "WEIBULL(ཨང་། ཨཱལ་ཕ། སྔོན་དཔྱད། སི།)"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2951317\n"
-"179\n"
"help.text"
msgid "<emph>Number</emph> is the value at which to calculate the Weibull distribution."
msgstr "<emph> ཨང་གྲངས་དེ་ </emph> དེའི་གུ་ལུ་ ཝིའི་བཱུལ་རྩིས་སྟོན་འབད་སའི་གནས་གོང་ཨིན།"
@@ -49550,7 +46228,6 @@ msgstr "<emph> ཨང་གྲངས་དེ་ </emph> དེའི་གུ
msgctxt ""
"04060185.xhp\n"
"par_id2958436\n"
-"180\n"
"help.text"
msgid "<emph>Alpha </emph>is the shape parameter of the Weibull distribution."
msgstr "<emph> ཨཱལ་ཕ་དེ་ </emph> ཝིའི་བཱུལ་བགོ་བཀྲམ་གྱི་ ཨཱལ་ཕ་ཚད་བཟུང་ཨིན།"
@@ -49559,7 +46236,6 @@ msgstr "<emph> ཨཱལ་ཕ་དེ་ </emph> ཝིའི་བཱུལ
msgctxt ""
"04060185.xhp\n"
"par_id2954668\n"
-"181\n"
"help.text"
msgid "<emph>Beta</emph> is the scale parameter of the Weibull distribution."
msgstr "<emph> སྔོན་དཔྱད་དེ་ </emph> ཝིའི་བཱུལ་བགོ་བཀྲམ་གྱི་ སྔོན་དཔྱད་ཚད་བཟུང་ཨིན།"
@@ -49568,7 +46244,6 @@ msgstr "<emph> སྔོན་དཔྱད་དེ་ </emph> ཝིའི་
msgctxt ""
"04060185.xhp\n"
"par_id2954825\n"
-"182\n"
"help.text"
msgid "<emph>C</emph> indicates the type of function."
msgstr ""
@@ -49577,7 +46252,6 @@ msgstr ""
msgctxt ""
"04060185.xhp\n"
"hd_id2953794\n"
-"183\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -49586,7 +46260,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060185.xhp\n"
"par_id2946077\n"
-"184\n"
"help.text"
msgid "<item type=\"input\">=WEIBULL.DIST(2;1;1;1)</item> returns 0.8646647168."
msgstr ""
@@ -49619,7 +46292,6 @@ msgstr ""
msgctxt ""
"04060199.xhp\n"
"hd_id3156445\n"
-"1\n"
"help.text"
msgid "Operators in $[officename] Calc"
msgstr "$[officename] ཀེལ་སི་ ནང་ལུ་ བཀོལ་སྤྱོདཔ་ཚུ།"
@@ -49628,7 +46300,6 @@ msgstr "$[officename] ཀེལ་སི་ ནང་ལུ་ བཀོལ་
msgctxt ""
"04060199.xhp\n"
"par_id3155812\n"
-"2\n"
"help.text"
msgid "You can use the following operators in $[officename] Calc:"
msgstr "ཁྱོད་ཀྱིས་ འོག་ལུ་ཡོད་པའི་བཀོལ་སྤྱོདཔ་ཚུ་ $[officename] ཀེལ་སི་ནང་ལག་ལེན་འཐབ་བཏུབ་ཨིན།"
@@ -49637,7 +46308,6 @@ msgstr "ཁྱོད་ཀྱིས་ འོག་ལུ་ཡོད་པའ
msgctxt ""
"04060199.xhp\n"
"hd_id3153066\n"
-"3\n"
"help.text"
msgid "Arithmetical Operators"
msgstr "ཨང་རྩིས་བཀོལ་སྤྱོདཔ་ཚུ།"
@@ -49646,7 +46316,6 @@ msgstr "ཨང་རྩིས་བཀོལ་སྤྱོདཔ་ཚུ།"
msgctxt ""
"04060199.xhp\n"
"par_id3148601\n"
-"4\n"
"help.text"
msgid "These operators return numerical results."
msgstr "འ་ནི་བཀོལ་སྤྱོདཔ་ཚུ་གིས་ ཨང་གྲངས་ཀྱི་གྲུབ་འབྲས་ཚུ་སླར་ལོག་འབདཝ་ཨིན།"
@@ -49655,7 +46324,6 @@ msgstr "འ་ནི་བཀོལ་སྤྱོདཔ་ཚུ་གིས་
msgctxt ""
"04060199.xhp\n"
"par_id3144768\n"
-"5\n"
"help.text"
msgid "Operator"
msgstr "བཀོལ་སྤྱོདཔ།"
@@ -49664,7 +46332,6 @@ msgstr "བཀོལ་སྤྱོདཔ།"
msgctxt ""
"04060199.xhp\n"
"par_id3157982\n"
-"6\n"
"help.text"
msgid "Name"
msgstr "མིང་།"
@@ -49673,7 +46340,6 @@ msgstr "མིང་།"
msgctxt ""
"04060199.xhp\n"
"par_id3159096\n"
-"7\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -49682,7 +46348,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060199.xhp\n"
"par_id3149126\n"
-"8\n"
"help.text"
msgid "+ (Plus)"
msgstr "+ (བསྡོམས་རྟགས།)"
@@ -49691,7 +46356,6 @@ msgstr "+ (བསྡོམས་རྟགས།)"
msgctxt ""
"04060199.xhp\n"
"par_id3150892\n"
-"9\n"
"help.text"
msgid "Addition"
msgstr "ཁ་སྐོང་།"
@@ -49700,7 +46364,6 @@ msgstr "ཁ་སྐོང་།"
msgctxt ""
"04060199.xhp\n"
"par_id3153247\n"
-"10\n"
"help.text"
msgid "1+1"
msgstr "༡+༡"
@@ -49709,7 +46372,6 @@ msgstr "༡+༡"
msgctxt ""
"04060199.xhp\n"
"par_id3159204\n"
-"11\n"
"help.text"
msgid "- (Minus)"
msgstr "- (ཕབ་རྟགས།)"
@@ -49718,7 +46380,6 @@ msgstr "- (ཕབ་རྟགས།)"
msgctxt ""
"04060199.xhp\n"
"par_id3145362\n"
-"12\n"
"help.text"
msgid "Subtraction"
msgstr "ཕབ།"
@@ -49727,7 +46388,6 @@ msgstr "ཕབ།"
msgctxt ""
"04060199.xhp\n"
"par_id3153554\n"
-"13\n"
"help.text"
msgid "2-1"
msgstr "༢-༡"
@@ -49736,7 +46396,6 @@ msgstr "༢-༡"
msgctxt ""
"04060199.xhp\n"
"par_id3153808\n"
-"14\n"
"help.text"
msgid "- (Minus)"
msgstr "- (ཕབ་རྟགས།)"
@@ -49745,7 +46404,6 @@ msgstr "- (ཕབ་རྟགས།)"
msgctxt ""
"04060199.xhp\n"
"par_id3151193\n"
-"15\n"
"help.text"
msgid "Negation"
msgstr "བརྩི་མེད།"
@@ -49754,7 +46412,6 @@ msgstr "བརྩི་མེད།"
msgctxt ""
"04060199.xhp\n"
"par_id3154712\n"
-"16\n"
"help.text"
msgid "-5"
msgstr "-༥"
@@ -49763,7 +46420,6 @@ msgstr "-༥"
msgctxt ""
"04060199.xhp\n"
"par_id3149873\n"
-"17\n"
"help.text"
msgid "* (asterisk)"
msgstr "* (asterisk)"
@@ -49772,7 +46428,6 @@ msgstr "* (asterisk)"
msgctxt ""
"04060199.xhp\n"
"par_id3147504\n"
-"18\n"
"help.text"
msgid "Multiplication"
msgstr "དགུ་མཐའ།"
@@ -49781,7 +46436,6 @@ msgstr "དགུ་མཐའ།"
msgctxt ""
"04060199.xhp\n"
"par_id3149055\n"
-"19\n"
"help.text"
msgid "2*2"
msgstr "2*2"
@@ -49790,7 +46444,6 @@ msgstr "2*2"
msgctxt ""
"04060199.xhp\n"
"par_id3151341\n"
-"20\n"
"help.text"
msgid "/ (Slash)"
msgstr "/ (གཡོ་ཤད།)"
@@ -49799,7 +46452,6 @@ msgstr "/ (གཡོ་ཤད།)"
msgctxt ""
"04060199.xhp\n"
"par_id3159260\n"
-"21\n"
"help.text"
msgid "Division"
msgstr "སྡེ་ཚན།"
@@ -49808,7 +46460,6 @@ msgstr "སྡེ་ཚན།"
msgctxt ""
"04060199.xhp\n"
"par_id3153027\n"
-"22\n"
"help.text"
msgid "9/3"
msgstr "༩/༣"
@@ -49817,7 +46468,6 @@ msgstr "༩/༣"
msgctxt ""
"04060199.xhp\n"
"par_id3156396\n"
-"23\n"
"help.text"
msgid "% (Percent)"
msgstr "% (བརྒྱ་ཆ།)"
@@ -49826,7 +46476,6 @@ msgstr "% (བརྒྱ་ཆ།)"
msgctxt ""
"04060199.xhp\n"
"par_id3150372\n"
-"24\n"
"help.text"
msgid "Percent"
msgstr "བརྒྱ་ཆ།"
@@ -49835,7 +46484,6 @@ msgstr "བརྒྱ་ཆ།"
msgctxt ""
"04060199.xhp\n"
"par_id3145632\n"
-"25\n"
"help.text"
msgid "15%"
msgstr "༡༥%"
@@ -49844,7 +46492,6 @@ msgstr "༡༥%"
msgctxt ""
"04060199.xhp\n"
"par_id3149722\n"
-"26\n"
"help.text"
msgid "^ (Caret)"
msgstr "^ (ཀེ་རེཊི།)"
@@ -49853,7 +46500,6 @@ msgstr "^ (ཀེ་རེཊི།)"
msgctxt ""
"04060199.xhp\n"
"par_id3159127\n"
-"27\n"
"help.text"
msgid "Exponentiation"
msgstr "ཐོབ་གྲངས།"
@@ -49862,7 +46508,6 @@ msgstr "ཐོབ་གྲངས།"
msgctxt ""
"04060199.xhp\n"
"par_id3157873\n"
-"28\n"
"help.text"
msgid "3^2"
msgstr "3^2"
@@ -49871,7 +46516,6 @@ msgstr "3^2"
msgctxt ""
"04060199.xhp\n"
"hd_id3152981\n"
-"29\n"
"help.text"
msgid "Comparative operators"
msgstr "ག་བསྡུར་འབད་བཏུབ་པའི་བཀོལ་སྤྱོདཔ་ཚུ།"
@@ -49880,7 +46524,6 @@ msgstr "ག་བསྡུར་འབད་བཏུབ་པའི་བཀོ
msgctxt ""
"04060199.xhp\n"
"par_id3157902\n"
-"30\n"
"help.text"
msgid "These operators return either true or false."
msgstr "འ་ནི་བཀོལ་སྤྱོདཔ་ཚུ་གིས་ བདེན་པ་ཡང་ན་ རྫུན་མ་སླར་ལོག་འབདཝ་ཨིན།"
@@ -49889,7 +46532,6 @@ msgstr "འ་ནི་བཀོལ་སྤྱོདཔ་ཚུ་གིས་
msgctxt ""
"04060199.xhp\n"
"par_id3149889\n"
-"31\n"
"help.text"
msgid "Operator"
msgstr "བཀོལ་སྤྱོདཔ།"
@@ -49898,7 +46540,6 @@ msgstr "བཀོལ་སྤྱོདཔ།"
msgctxt ""
"04060199.xhp\n"
"par_id3150743\n"
-"32\n"
"help.text"
msgid "Name"
msgstr "མིང་།"
@@ -49907,7 +46548,6 @@ msgstr "མིང་།"
msgctxt ""
"04060199.xhp\n"
"par_id3146877\n"
-"33\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -49916,7 +46556,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060199.xhp\n"
"par_id3148888\n"
-"34\n"
"help.text"
msgid "= (equal sign)"
msgstr "= (མཉམ་རྟགས།)"
@@ -49925,7 +46564,6 @@ msgstr "= (མཉམ་རྟགས།)"
msgctxt ""
"04060199.xhp\n"
"par_id3154845\n"
-"35\n"
"help.text"
msgid "Equal"
msgstr "མཉམ་པ།"
@@ -49934,7 +46572,6 @@ msgstr "མཉམ་པ།"
msgctxt ""
"04060199.xhp\n"
"par_id3154546\n"
-"36\n"
"help.text"
msgid "A1=B1"
msgstr "A1=B1"
@@ -49943,7 +46580,6 @@ msgstr "A1=B1"
msgctxt ""
"04060199.xhp\n"
"par_id3154807\n"
-"37\n"
"help.text"
msgid "> (Greater than)"
msgstr "> (ལས་ སྦོམ་མི།)"
@@ -49952,7 +46588,6 @@ msgstr "> (ལས་ སྦོམ་མི།)"
msgctxt ""
"04060199.xhp\n"
"par_id3148580\n"
-"38\n"
"help.text"
msgid "Greater than"
msgstr "ལས་སྦོམ་མི།"
@@ -49961,7 +46596,6 @@ msgstr "ལས་སྦོམ་མི།"
msgctxt ""
"04060199.xhp\n"
"par_id3145138\n"
-"39\n"
"help.text"
msgid "A1>B1"
msgstr "A1>B1"
@@ -49970,7 +46604,6 @@ msgstr "A1>B1"
msgctxt ""
"04060199.xhp\n"
"par_id3149507\n"
-"40\n"
"help.text"
msgid "< (Less than)"
msgstr "< (ལས་ཉུངམ།)"
@@ -49979,7 +46612,6 @@ msgstr "< (ལས་ཉུངམ།)"
msgctxt ""
"04060199.xhp\n"
"par_id3150145\n"
-"41\n"
"help.text"
msgid "Less than"
msgstr "ལས་ ཉུངམ།"
@@ -49988,7 +46620,6 @@ msgstr "ལས་ ཉུངམ།"
msgctxt ""
"04060199.xhp\n"
"par_id3150901\n"
-"42\n"
"help.text"
msgid "A1<B1"
msgstr "A1<B1"
@@ -49997,7 +46628,6 @@ msgstr "A1<B1"
msgctxt ""
"04060199.xhp\n"
"par_id3153078\n"
-"43\n"
"help.text"
msgid ">= (Greater than or equal to)"
msgstr ">= (ལས་ སྦོམ་ཡང་ན་ ལུ་ མཉམ་པ།)"
@@ -50006,7 +46636,6 @@ msgstr ">= (ལས་ སྦོམ་ཡང་ན་ ལུ་ མཉམ་པ
msgctxt ""
"04060199.xhp\n"
"par_id3150866\n"
-"44\n"
"help.text"
msgid "Greater than or equal to"
msgstr "ལས་ སྦོམ་ཡང་ན་ ལུ་ མཉམ་པ།"
@@ -50015,7 +46644,6 @@ msgstr "ལས་ སྦོམ་ཡང་ན་ ལུ་ མཉམ་པ།"
msgctxt ""
"04060199.xhp\n"
"par_id3153111\n"
-"45\n"
"help.text"
msgid "A1>=B1"
msgstr "A1>=B1"
@@ -50024,7 +46652,6 @@ msgstr "A1>=B1"
msgctxt ""
"04060199.xhp\n"
"par_id3153004\n"
-"46\n"
"help.text"
msgid "<= (Less than or equal to)"
msgstr "<= (ལས་ཉུངམ་ཡང་ན་ མཉམ་པ།)"
@@ -50033,7 +46660,6 @@ msgstr "<= (ལས་ཉུངམ་ཡང་ན་ མཉམ་པ།)"
msgctxt ""
"04060199.xhp\n"
"par_id3150335\n"
-"47\n"
"help.text"
msgid "Less than or equal to"
msgstr "ཉུངམ་སྦེ་ཡང་ན་ མཉམ་པ།"
@@ -50042,7 +46668,6 @@ msgstr "ཉུངམ་སྦེ་ཡང་ན་ མཉམ་པ།"
msgctxt ""
"04060199.xhp\n"
"par_id3148760\n"
-"48\n"
"help.text"
msgid "A1<=B1"
msgstr "A1<=B1"
@@ -50051,7 +46676,6 @@ msgstr "A1<=B1"
msgctxt ""
"04060199.xhp\n"
"par_id3157994\n"
-"49\n"
"help.text"
msgid "<> (Inequality)"
msgstr "<> (མཉམ་ཆ་མེདམ།)"
@@ -50060,7 +46684,6 @@ msgstr "<> (མཉམ་ཆ་མེདམ།)"
msgctxt ""
"04060199.xhp\n"
"par_id3150019\n"
-"50\n"
"help.text"
msgid "Inequality"
msgstr "མཉམ་ཆ་མེདམ།"
@@ -50069,7 +46692,6 @@ msgstr "མཉམ་ཆ་མེདམ།"
msgctxt ""
"04060199.xhp\n"
"par_id3149878\n"
-"51\n"
"help.text"
msgid "A1<>B1"
msgstr "A1<>B1"
@@ -50078,7 +46700,6 @@ msgstr "A1<>B1"
msgctxt ""
"04060199.xhp\n"
"hd_id3145241\n"
-"52\n"
"help.text"
msgid "Text operators"
msgstr "ཚིག་ཡིག་བཀོལ་སྤྱོདཔ་ཚུ།"
@@ -50087,7 +46708,6 @@ msgstr "ཚིག་ཡིག་བཀོལ་སྤྱོདཔ་ཚུ།"
msgctxt ""
"04060199.xhp\n"
"par_id3155438\n"
-"53\n"
"help.text"
msgid "The operator combines separate texts into one text."
msgstr "བཀོལ་སྤྱོདཔ་གིས་ ཚིག་ཡིག་སོ་སོ་ཚུ་ ཚིག་ཡིག་གཅིག་ནང་ལུ་མཉམ་མཐུད་འབདཝ་ཨིན།"
@@ -50096,7 +46716,6 @@ msgstr "བཀོལ་སྤྱོདཔ་གིས་ ཚིག་ཡིག
msgctxt ""
"04060199.xhp\n"
"par_id3150566\n"
-"54\n"
"help.text"
msgid "Operator"
msgstr "བཀོལ་སྤྱོདཔ།"
@@ -50105,7 +46724,6 @@ msgstr "བཀོལ་སྤྱོདཔ།"
msgctxt ""
"04060199.xhp\n"
"par_id3153048\n"
-"55\n"
"help.text"
msgid "Name"
msgstr "མིང་།"
@@ -50114,7 +46732,6 @@ msgstr "མིང་།"
msgctxt ""
"04060199.xhp\n"
"par_id3149001\n"
-"56\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -50123,7 +46740,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060199.xhp\n"
"par_id3148769\n"
-"57\n"
"help.text"
msgid "& (And)"
msgstr "& (དང་།)"
@@ -50140,7 +46756,6 @@ msgstr "<bookmark_value> ཚིག་ཡིག་རྒྱུན་མཐུད
msgctxt ""
"04060199.xhp\n"
"par_id3157975\n"
-"58\n"
"help.text"
msgid "text concatenation AND"
msgstr "ཚིག་ཡིག་རྒྱུན་མཐུད་འབད་ནི་ AND"
@@ -50149,7 +46764,6 @@ msgstr "ཚིག་ཡིག་རྒྱུན་མཐུད་འབད་ན
msgctxt ""
"04060199.xhp\n"
"par_id3157993\n"
-"59\n"
"help.text"
msgid "\"Sun\" & \"day\" is \"Sunday\""
msgstr "\"Sun\" & \"day\" is \"Sunday\""
@@ -50158,7 +46772,6 @@ msgstr "\"Sun\" & \"day\" is \"Sunday\""
msgctxt ""
"04060199.xhp\n"
"hd_id3153550\n"
-"60\n"
"help.text"
msgid "Reference operators"
msgstr "གཞི་བསྟུན་བཀོལ་སྤྱོདཔ་ཚུ།"
@@ -50167,7 +46780,6 @@ msgstr "གཞི་བསྟུན་བཀོལ་སྤྱོདཔ་ཚུ
msgctxt ""
"04060199.xhp\n"
"par_id3149024\n"
-"61\n"
"help.text"
msgid "These operators return a cell range of zero, one or more cells."
msgstr ""
@@ -50184,7 +46796,6 @@ msgstr ""
msgctxt ""
"04060199.xhp\n"
"par_id3158416\n"
-"62\n"
"help.text"
msgid "Operator"
msgstr "བཀོལ་སྤྱོདཔ།"
@@ -50193,7 +46804,6 @@ msgstr "བཀོལ་སྤྱོདཔ།"
msgctxt ""
"04060199.xhp\n"
"par_id3152822\n"
-"63\n"
"help.text"
msgid "Name"
msgstr "མིང་།"
@@ -50202,7 +46812,6 @@ msgstr "མིང་།"
msgctxt ""
"04060199.xhp\n"
"par_id3154949\n"
-"64\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -50211,7 +46820,6 @@ msgstr "དཔེ།"
msgctxt ""
"04060199.xhp\n"
"par_id3156257\n"
-"65\n"
"help.text"
msgid ": (Colon)"
msgstr ": (ཀོ་ལཱོན།)"
@@ -50220,7 +46828,6 @@ msgstr ": (ཀོ་ལཱོན།)"
msgctxt ""
"04060199.xhp\n"
"par_id3153924\n"
-"66\n"
"help.text"
msgid "Range"
msgstr "ཁྱབ་ཚད།"
@@ -50229,7 +46836,6 @@ msgstr "ཁྱབ་ཚད།"
msgctxt ""
"04060199.xhp\n"
"par_id3148432\n"
-"67\n"
"help.text"
msgid "A1:C108"
msgstr "A1:C108"
@@ -50238,7 +46844,6 @@ msgstr "A1:C108"
msgctxt ""
"04060199.xhp\n"
"par_id3152592\n"
-"68\n"
"help.text"
msgid "! (Exclamation point)"
msgstr "! (ཚོར་སྒྲ་རྩེ།)"
@@ -50255,7 +46860,6 @@ msgstr "<bookmark_value> སྣོལ་འཇོག་སྣོལ་མཚམ
msgctxt ""
"04060199.xhp\n"
"par_id3150606\n"
-"69\n"
"help.text"
msgid "Intersection"
msgstr "སྣོལ་འཇོག་སྣོལ་མཚམས།"
@@ -50264,7 +46868,6 @@ msgstr "སྣོལ་འཇོག་སྣོལ་མཚམས།"
msgctxt ""
"04060199.xhp\n"
"par_id3083445\n"
-"70\n"
"help.text"
msgid "SUM(A1:B6!B5:C12)"
msgstr "SUM(A1:B6!B5:C12)"
@@ -50273,7 +46876,6 @@ msgstr "SUM(A1:B6!B5:C12)"
msgctxt ""
"04060199.xhp\n"
"par_id3150385\n"
-"71\n"
"help.text"
msgid "Calculates the sum of all cells in the intersection; in this example, the result yields the sum of cells B5 and B6."
msgstr "སྣོལ་འཇོག་སྣོལ་མཚམས་ནང་ ནང་ཐིག་ཚུའི་བསྡོམས་རྩིས་སྟོནམ་ཨིན་"
@@ -50322,7 +46924,6 @@ msgstr ""
msgctxt ""
"04070000.xhp\n"
"hd_id3153951\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
msgstr ""
@@ -50331,7 +46932,6 @@ msgstr ""
msgctxt ""
"04070000.xhp\n"
"par_id3145801\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to name the different sections of your spreadsheet document.</ahelp> By naming the different sections, you can easily <link href=\"text/scalc/01/02110000.xhp\" name=\"navigate\">navigate</link> through the spreadsheet documents and find specific information."
msgstr "<ahelp hid=\".\"> ཁྱོད་ལུ་ ཁྱོད་རའི་ ཤོག་ཁྲམ་ཡིག་ཆའི་ དབྱེ་ཚན་སོ་སོར་ཚུ་མིང་བཏགས་བཅུགཔ་ཨིན། </ahelp> དབྱེ་ཚན་སོ་སོར་ཚུ་མིང་བཏགས་ཐོག་ལས་ ཁྱོད་ཀྱིས་ <link href=\"text/scalc/01/02110000.xhp\" name=\"navigate\"> ཤོག་ཁྲམ་ཡིག་ཆ་ཚུ་བརྒྱུད་དེ་ </link> འགྲུལ་བསྐྱོད་འཇམ་ཏོང་ཏོ་སྦེ་འབད་དེ་ དམིགས་གསལ་བརྡ་དོན་འཐོབ་ཚུགསཔ་ཨིན།"
@@ -50340,7 +46940,6 @@ msgstr "<ahelp hid=\".\"> ཁྱོད་ལུ་ ཁྱོད་རའི་
msgctxt ""
"04070000.xhp\n"
"hd_id3153878\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Define</link>"
msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\"> ངེས་འཛིན་འབད། </link>"
@@ -50349,7 +46948,6 @@ msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\"> ངེས་
msgctxt ""
"04070000.xhp\n"
"hd_id3146969\n"
-"4\n"
"help.text"
msgid "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">Insert</link>"
msgstr "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\"> བཙུགས། </link>"
@@ -50358,7 +46956,6 @@ msgstr "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\"> བཙུག
msgctxt ""
"04070000.xhp\n"
"hd_id3155764\n"
-"5\n"
"help.text"
msgid "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Apply</link>"
msgstr "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\"> འཇུག་སྤྱོད་འབད། </link>"
@@ -50367,7 +46964,6 @@ msgstr "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\"> འཇུག
msgctxt ""
"04070000.xhp\n"
"hd_id3156382\n"
-"6\n"
"help.text"
msgid "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Labels</link>"
msgstr "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\"> ཁ་ཡིག་བཏགས་ནི་ཚུ། </link>"
@@ -50384,7 +46980,6 @@ msgstr "མིང་ཚུ་ངེས་འཛིན་འབད།"
msgctxt ""
"04070100.xhp\n"
"hd_id3156330\n"
-"1\n"
"help.text"
msgid "Define Names"
msgstr "མིང་ཚུ་ངེས་འཛིན་འབད།"
@@ -50393,7 +46988,6 @@ msgstr "མིང་ཚུ་ངེས་འཛིན་འབད།"
msgctxt ""
"04070100.xhp\n"
"par_id3154366\n"
-"2\n"
"help.text"
msgid "<variable id=\"namenfestlegentext\"><ahelp hid=\".uno:DefineName\">Opens a dialog where you can specify a name for a selected area or a name for a formula expression.</ahelp></variable>"
msgstr ""
@@ -50402,7 +46996,6 @@ msgstr ""
msgctxt ""
"04070100.xhp\n"
"par_id3154123\n"
-"31\n"
"help.text"
msgid "Use the mouse to define ranges or type the reference into the <emph>Define Name </emph>dialog fields."
msgstr "མིང་ངེས་འཛིན་ <emph> ཌའི་ལོག་ས་སྒོ་ཚུ་ནང་ལུ་ </emph> ཁྱབ་ཚད་ཚུའམ་གཞི་བསྟུན་དབྱེ་བ་ངེས་འཛིན་འབད་ནིའི་དོན་ལུ་ མཱའུསི་ལག་ལེན་འཐབ།"
@@ -50411,7 +47004,6 @@ msgstr "མིང་ངེས་འཛིན་ <emph> ཌའི་ལོག་
msgctxt ""
"04070100.xhp\n"
"par_id3155131\n"
-"30\n"
"help.text"
msgid "The <emph>Sheet Area</emph> box on the Formula bar contains a list of defined names for the ranges or formula expressions and their scope between parenthesis. Click a name from this box to highlight the corresponding reference on the spreadsheet. Names given formulas or parts of a formula are not listed here."
msgstr ""
@@ -50420,7 +47012,6 @@ msgstr ""
msgctxt ""
"04070100.xhp\n"
"hd_id3151118\n"
-"3\n"
"help.text"
msgid "Name"
msgstr "མིང་།"
@@ -50429,16 +47020,14 @@ msgstr "མིང་།"
msgctxt ""
"04070100.xhp\n"
"par_id3163712\n"
-"29\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/definename/edit\">Enter the name of the area for which you want to define a reference or a formula expression. All area names already defined in the spreadsheet are listed in the text field below.</ahelp> If you click a name on the list, the corresponding reference in the document will be shown with a blue frame. If multiple cell ranges belong to the same area name, they are displayed with different colored frames."
+msgid "<ahelp hid=\".\">Enter the name of the area for which you want to define a reference or a formula expression.</ahelp> All area names already defined in the spreadsheet are listed in the text field above. If you click a name on the list, the corresponding reference in the document will be shown with a blue frame. If multiple cell ranges belong to the same area name, they are displayed with different colored frames."
msgstr ""
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"hd_id3153728\n"
-"9\n"
"help.text"
msgid "Range or formula expression"
msgstr ""
@@ -50447,16 +47036,14 @@ msgstr ""
msgctxt ""
"04070100.xhp\n"
"par_id3147435\n"
-"10\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/definename/range\">The reference of the selected area name is shown here as an absolute value.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/definename/range\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་མངའ་ཁོངས་མིང་གི་གཞི་བསྟུན་ཚུ་ ནཱ་ལུ་ གནས་གོང་ཡང་དག་སྦེ་སྟོན་ཡོདཔ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\".\">The reference of the selected area name is shown here as an absolute value.</ahelp>"
+msgstr ""
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"par_id3146986\n"
-"12\n"
"help.text"
msgid "To insert a new area reference, place the cursor in this field and use your mouse to select the desired area in any sheet of your spreadsheet document. To insert a new named formula, type the formula expression."
msgstr ""
@@ -50465,7 +47052,6 @@ msgstr ""
msgctxt ""
"04070100.xhp\n"
"hd_id31547290\n"
-"13\n"
"help.text"
msgid "Scope"
msgstr ""
@@ -50474,16 +47060,14 @@ msgstr ""
msgctxt ""
"04070100.xhp\n"
"hd_id31547291\n"
-"13\n"
"help.text"
-msgid "Select the scope of the named range or named formula. Document(Global) means the name is valid for the whole document. Any other sheet name selected will restrict the scope of the named range or formula expression to that sheet."
+msgid "<ahelp hid=\".\">Select the scope of the named range or named formula. Document (Global) means the name is valid for the whole document.</ahelp> Any other sheet name selected will restrict the scope of the named range or formula expression to that sheet."
msgstr ""
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"hd_id3154729\n"
-"13\n"
"help.text"
msgid "Range options"
msgstr ""
@@ -50492,16 +47076,14 @@ msgstr ""
msgctxt ""
"04070100.xhp\n"
"par_id3149958\n"
-"14\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/definename/more\">Allows you to specify the <emph>Area type</emph> (optional) for the reference.</ahelp>"
+msgid "<ahelp hid=\".\">Allows you to specify the <emph>Area type</emph> (optional) for the reference.</ahelp>"
msgstr ""
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"par_id3155416\n"
-"16\n"
"help.text"
msgid "Defines additional options related to the type of reference area."
msgstr "གཞི་བསྟུན་མངའ་ཁོངས་ཀྱི་དབྱེ་བ་ལུ་འབྲེལ་བའི་ ཁ་སྐོང་གདམ་ཁ་ཚུ་ངེས་འཛིན་འབདཝ་ཨིན།"
@@ -50510,7 +47092,6 @@ msgstr "གཞི་བསྟུན་མངའ་ཁོངས་ཀྱི་ད
msgctxt ""
"04070100.xhp\n"
"hd_id3150716\n"
-"17\n"
"help.text"
msgid "Print range"
msgstr "ཁྱབ་ཚད་དཔར་བསྐྲུན་འབད།"
@@ -50519,16 +47100,14 @@ msgstr "ཁྱབ་ཚད་དཔར་བསྐྲུན་འབད།"
msgctxt ""
"04070100.xhp\n"
"par_id3150751\n"
-"18\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/definename/printarea\">Defines the area as a print range.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/definename/printarea\"> མངའ་ཁོངས་འདི་དཔར་བསྐྲུན་ཁྱབ་ཚད་སྦེ་ངེས་འཛིན་འབདཝ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\".\">Defines the area as a print range.</ahelp>"
+msgstr ""
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"hd_id3153764\n"
-"19\n"
"help.text"
msgid "Filter"
msgstr "ཚགས་མ།"
@@ -50537,16 +47116,14 @@ msgstr "ཚགས་མ།"
msgctxt ""
"04070100.xhp\n"
"par_id3155766\n"
-"20\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/definename/filter\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">advanced filter</link>.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/definename/filter\"> མཐོ་རིམ་ཚགས་མ་ནང་ལུ་ <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\"> ལག་ལེན་འཐབ་ནི་ཨིན་པའི་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་མངའ་ཁོངས་ངེས་འཛིན་འབདཝ་ཨིན། </link>.</ahelp>"
+msgid "<ahelp hid=\".\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">advanced filter</link>.</ahelp>"
+msgstr ""
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"hd_id3159267\n"
-"21\n"
"help.text"
msgid "Repeat column"
msgstr "ཀེར་ཐིག་ཡང་བསྐྱར་འབད།"
@@ -50555,16 +47132,14 @@ msgstr "ཀེར་ཐིག་ཡང་བསྐྱར་འབད།"
msgctxt ""
"04070100.xhp\n"
"par_id3149565\n"
-"22\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/definename/colheader\">Defines the area as a repeating column.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/definename/colheader\"> མངའ་ཁོངས་འདི་ཡང་བསྐྱར་འབད་བའི་ཀེར་ཐིག་སྦེ་ངེས་འཛིན་འབདཝ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\".\">Defines the area as a repeating column.</ahelp>"
+msgstr ""
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"hd_id3153966\n"
-"23\n"
"help.text"
msgid "Repeat row"
msgstr "གྲལ་ཐིག་ཡང་བསྐྱར་འབད།"
@@ -50573,59 +47148,62 @@ msgstr "གྲལ་ཐིག་ཡང་བསྐྱར་འབད།"
msgctxt ""
"04070100.xhp\n"
"par_id3150300\n"
-"24\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/definename/rowheader\">Defines the area as a repeating row.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/definename/rowheader\"> མའང་ཁོངས་འདི་ ཡང་བསྐྱར་འབད་བའི་གྲལ་ཐིག་སྦེ་ངེས་འཛིན་འབདཝ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\".\">Defines the area as a repeating row.</ahelp>"
+msgstr ""
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"hd_id3155112\n"
-"27\n"
"help.text"
-msgid "Add/Modify"
-msgstr "ཁ་སྐོང་/ལེགས་བཅོས་འབད།"
+msgid "Add"
+msgstr ""
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"par_id3159236\n"
-"28\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/managenamesdialog/add\">Click the <emph>Add</emph> button to add the defined name to the list. Click the <emph>Modify</emph> button to enter another name for an already existing name selected from the list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/managenamesdialog/add\"> ཐོ་ཡིག་ནང་ལུ་ <emph> ངེས་འཛིན་འབད་ཡོད་པའི་མིང་ </emph> ཁ་སྐོང་བརྐྱབ་ནིའི་དོན་ལུ་ ཁ་སྐོང་ཨེབ་རྟ་དེ་ཨེབ་གཏང་། ཐོ་ཡིག་ནང་ལས་ <emph> ཧེ་མ་ལས་རང་གནས་བཞིན་ཡོད་པའི་མིང་སེལ་འཐུ་གྲུབ་ཡོད་མི་ལུ་ མིང་གཞན་མི་གཅིག་བཙུགས་ནིའི་དོན་ལུ་ </emph> ལེགས་བཅོས་ཨེབ་རྟ་ ཨེབ་གཏང་། </ahelp>"
+msgid "<ahelp hid=\".\">Click the <emph>Add</emph> button to add a new defined name.</ahelp>"
+msgstr ""
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3150301\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/managenamesdialog/names\" visibility=\"hidden\">Select a named range or named formula from the list to modify its properties.</ahelp>"
+msgstr ""
#: 04070200.xhp
msgctxt ""
"04070200.xhp\n"
"tit\n"
"help.text"
-msgid "Insert Name"
-msgstr "མིང་བཙུགས།"
+msgid "Paste Names"
+msgstr ""
#: 04070200.xhp
msgctxt ""
"04070200.xhp\n"
"bm_id3153195\n"
"help.text"
-msgid "<bookmark_value>cell ranges; inserting named ranges</bookmark_value><bookmark_value>inserting; cell ranges</bookmark_value>"
-msgstr "<bookmark_value> ནང་ཐིག་ཁྱབ་ཚད་ཚུ། མིང་བཏགས་ཡོད་པའི་ཁྱབ་ཚད་ཚུ་བཙུགས་དོ། </bookmark_value><bookmark_value> བཙུགས་དོ། ནང་ཐིག་ཁྱབ་ཚད་ཚུ། </bookmark_value>"
+msgid "<bookmark_value>cell ranges; inserting named ranges</bookmark_value><bookmark_value>inserting; cell ranges</bookmark_value> <bookmark_value>pasting; cell ranges</bookmark_value>"
+msgstr ""
#: 04070200.xhp
msgctxt ""
"04070200.xhp\n"
"hd_id3153195\n"
-"1\n"
"help.text"
-msgid "Insert Name"
-msgstr "མིང་བཙུགས།"
+msgid "Paste Names"
+msgstr ""
#: 04070200.xhp
msgctxt ""
"04070200.xhp\n"
"par_id3150011\n"
-"2\n"
"help.text"
msgid "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\">Inserts a defined named cell range at the current cursor's position.</ahelp></variable>"
msgstr "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\"> ད་ལྟོའི་འོད་རྟགས་ཀྱི་གནས་ས་གུ་ལུ་ ངེས་འཛིན་འབད་ཡོདཔ་དང་མིང་བཏགས་བཏགསཔ་པའི་ནང་ཐིག་ཁྱབ་ཚད་བཙུགསཔ་ཨིན། </ahelp></variable>"
@@ -50634,7 +47212,6 @@ msgstr "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\"> ད
msgctxt ""
"04070200.xhp\n"
"par_id3149412\n"
-"7\n"
"help.text"
msgid "You can only insert a cell area after having defined a name for the area."
msgstr "ཁྱོད་ཀྱིས་ མངའ་ཁོངས་ལུ་མིང་གཅིག་ངེས་འཛིན་འབད་ཚར་བའི་ཤུལ་ལས་རྐྱངམ་ཅིག་ ནང་ཐིག་མངའ་ཁོངས་བཙུགས་ཚུགསཔ་ཨིན།"
@@ -50643,37 +47220,49 @@ msgstr "ཁྱོད་ཀྱིས་ མངའ་ཁོངས་ལུ་མ
msgctxt ""
"04070200.xhp\n"
"hd_id3153160\n"
-"3\n"
"help.text"
-msgid "Insert name"
-msgstr "མིང་བཙུགས།"
+msgid "Table area"
+msgstr ""
#: 04070200.xhp
msgctxt ""
"04070200.xhp\n"
"par_id3154944\n"
-"4\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">Lists all defined cell areas. Double-click an entry to insert the named area into the active sheet at the current cursor position.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\"> ངེས་འཛིན་འབད་དེ་ཡོད་པའི་ ནང་ཐིག་མངའ་ཁོངས་ཚུ་ཆ་མཉམ་རང་ ཐོ་བཀོད་འབདཝ་ཨིན། ད་ལྟོའི་འོད་རྟགས་གནས་ས་ལུ་ཤོག་ལེབ་ཤུགས་ལྡན་ནང་ན་ལུ་ མིང་བཏགས་ཡོད་པའི་མངའ་ཁོངས་བཙུགས་ནིའི་དོན་ལུ་ ཐོ་བཀོད་དེ་ལོག་བལྟབ་ཨེབ་གཏང་། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/insertname/ctrl\">Lists all defined cell areas. Double-click an entry to insert the named area into the active sheet at the current cursor position.</ahelp>"
+msgstr ""
#: 04070200.xhp
msgctxt ""
"04070200.xhp\n"
"hd_id3153418\n"
-"5\n"
"help.text"
-msgid "Insert All"
-msgstr "ཆ་མཉམ་རང་བཙུགས།"
+msgid "Paste All"
+msgstr ""
#: 04070200.xhp
msgctxt ""
"04070200.xhp\n"
"par_id3155066\n"
-"6\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES_PASTE:BTN_ADD\">Inserts a list of all named areas and the corresponding cell references at the current cursor position.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES_PASTE:BTN_ADD\"> ད་ལྟོའི་འོད་རྟགས་གནས་ས་ནང་ན་ལུ་ མིང་བཏགས་ཡོད་པའི་མངའ་ཁོངས་ཚུ་དང་ཆ་མཉམ་པའི་ནང་ཐིག་གཞི་བསྟུན་ཚུའི་ཐོ་ཡིག་བཙུགསཔ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/insertname/pasteall\">Inserts a list of all named areas and the corresponding cell references at the current cursor position.</ahelp>"
+msgstr ""
+
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"hd_id3153419\n"
+"help.text"
+msgid "Paste"
+msgstr ""
+
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"par_id3155067\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/insertname/paste\">Inserts the selected named area and the corresponding cell reference at the current cursor position.</ahelp>"
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -50695,7 +47284,6 @@ msgstr "<bookmark_value> ནང་ཐིག་ཁྱབ་ཚད་ཚུ།
msgctxt ""
"04070300.xhp\n"
"hd_id3147264\n"
-"1\n"
"help.text"
msgid "Creating Names"
msgstr "མིང་ཚུ་གསར་བསྐྲུན་འབད་དོ།"
@@ -50704,7 +47292,6 @@ msgstr "མིང་ཚུ་གསར་བསྐྲུན་འབད་དོ
msgctxt ""
"04070300.xhp\n"
"par_id3153969\n"
-"2\n"
"help.text"
msgid "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">Allows you to automatically name multiple cell ranges.</ahelp></variable>"
msgstr "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\"> ཁྱོད་ལུ་ རང་བཞིན་གྱིས་ ནང་ཐིག་ཁྱབ་ཚད་སྣ་མང་ཚུ་མིང་བཏགས་བཅུགཔ་ཨིན། </ahelp></variable>"
@@ -50713,7 +47300,6 @@ msgstr "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">
msgctxt ""
"04070300.xhp\n"
"par_id3156280\n"
-"13\n"
"help.text"
msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
msgstr ""
@@ -50722,7 +47308,6 @@ msgstr ""
msgctxt ""
"04070300.xhp\n"
"hd_id3151116\n"
-"3\n"
"help.text"
msgid "Create names from"
msgstr "ལས་ མིང་ཚུ་གསར་བསྐྲུན་འབད།"
@@ -50731,7 +47316,6 @@ msgstr "ལས་ མིང་ཚུ་གསར་བསྐྲུན་འབ
msgctxt ""
"04070300.xhp\n"
"par_id3152597\n"
-"4\n"
"help.text"
msgid "Defines which part of the spreadsheet is to be used for creating the name."
msgstr "མིང་གསར་བསྐྲུན་འད་ནིའི་དོན་ལུ་ ཤོག་ཁྲམ་གྱི་ཡན་ལག་ག་འདི་ལག་ལེན་འཐབ་ནི་ཨིན་ན་ངེས་འཛིན་འབདཝ་ཨིན།"
@@ -50740,7 +47324,6 @@ msgstr "མིང་གསར་བསྐྲུན་འད་ནིའི་ད
msgctxt ""
"04070300.xhp\n"
"hd_id3153729\n"
-"5\n"
"help.text"
msgid "Top row"
msgstr "སྤྱི་ཏོག་གི་གྲལ་ཐིག"
@@ -50749,7 +47332,6 @@ msgstr "སྤྱི་ཏོག་གི་གྲལ་ཐིག"
msgctxt ""
"04070300.xhp\n"
"par_id3149263\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/top\">Creates the range names from the header row of the selected range.</ahelp> Each column receives a separated name and cell reference."
msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/top\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཁྱབ་ཚད་ཀྱི་ མགོ་ཡིག་གྲལ་ཐིག་ལས་ ཁྱབ་ཚད་མིང་ཚུ་གསར་བསྐྲུན་འབདཝ་ཨིན། </ahelp> ཀེར་ཐིག་རེ་རེ་གི་ སོ་སོ་འཕྱེལ་འཕྱེལ་བའི་མིང་རེ་འཐོབ་ཨིན།"
@@ -50758,7 +47340,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/top\"> སེལ་འ
msgctxt ""
"04070300.xhp\n"
"hd_id3146984\n"
-"7\n"
"help.text"
msgid "Left Column"
msgstr "ཀེར་ཐིག་གཡོན།"
@@ -50767,7 +47348,6 @@ msgstr "ཀེར་ཐིག་གཡོན།"
msgctxt ""
"04070300.xhp\n"
"par_id3153190\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/left\">Creates the range names from the entries in the first column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/left\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཤོག་ལེབ་ཁྱབ་ཚད་ཀྱི་ ཀེར་ཐིག་དང་པམ་ནང་ཐོ་བཀོད་ཚུ་ལས་ མིང་ཁྱབ་ཚད་ཚུ་གསར་བསྐྲུན་འབདཝ་ཨིན། </ahelp> གྲལ་ཐིག་རེ་རེ་གི་ སོ་སོ་འཕྱེལ་འཕྱེལ་བའི་མིང་དང་ནང་ཐིག་གཞི་བསྟུན་འཐོབ་ཨིན།"
@@ -50776,7 +47356,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/left\"> སེལ་འ
msgctxt ""
"04070300.xhp\n"
"hd_id3156284\n"
-"9\n"
"help.text"
msgid "Bottom row"
msgstr "མཇུག་གི་གྲལ་ཐིག"
@@ -50785,7 +47364,6 @@ msgstr "མཇུག་གི་གྲལ་ཐིག"
msgctxt ""
"04070300.xhp\n"
"par_id3147124\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/bottom\">Creates the range names from the entries in the last row of the selected sheet range.</ahelp> Each column receives a separated name and cell reference."
msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/bottom\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཤོག་ལེབ་ཁྱབ་ཚད་ཀྱི་ མཇུག་གི་གྲལ་ཐིག་ནང་ ཐོ་བཀོད་ཚུ་ལས་ ཁྱབ་ཚད་མིང་ཚུ་གསར་བསྐྲུན་འབདཝ་ཨིན། </ahelp> ཀེར་ཐིག་རེ་རེ་གི་ སོ་སོ་འཕྱེལ་འཕྱེལ་བའི་ མིང་དང་ནང་ཐིག་གཞི་བསྟུན་འཐོབ་ཨིན།"
@@ -50794,7 +47372,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/bottom\"> སེལ་
msgctxt ""
"04070300.xhp\n"
"hd_id3154731\n"
-"11\n"
"help.text"
msgid "Right Column"
msgstr "ཀེར་ཐིག་གཡས།"
@@ -50803,7 +47380,6 @@ msgstr "ཀེར་ཐིག་གཡས།"
msgctxt ""
"04070300.xhp\n"
"par_id3153158\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/right\">Creates the range names from the entries in the last column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/right\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཤོག་ལེབ་ཁྱབ་ཚད་ཀྱི་ ཀེར་ཐིག་མཇུག་མམ་དེ་ནང་ ཐོ་བཀོད་ཚུ་ལས་ ཁྱབ་ཚད་མིང་ཚུ་གསར་བསྐྲུན་འབདཝ་ཨིན། </ahelp> གྲལ་ཐིག་རེ་རེ་གི་ སོ་སོ་འཕྱེལ་འཕྱེལ་བའི་མིང་དང་ ནང་ཐིག་གཞི་བསྟུན་འཐོབ་ཨིན།"
@@ -50828,7 +47404,6 @@ msgstr "<bookmark_value> ཤོག་ཁྲམ་ཚུ། ཁ་ཡིག་བ
msgctxt ""
"04070400.xhp\n"
"hd_id3150791\n"
-"1\n"
"help.text"
msgid "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">Define Label Range</link></variable>"
msgstr "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\"> ཁ་ཡིག་བཏགས་ནི་ཁྱབ་ཚད་ངེས་འཛིན་འབད། </link></variable>"
@@ -50837,7 +47412,6 @@ msgstr "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.
msgctxt ""
"04070400.xhp\n"
"par_id3150868\n"
-"2\n"
"help.text"
msgid "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">Opens a dialog in which you can define a label range.</ahelp></variable>"
msgstr "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\"> ཁྱོད་ཀྱིས་ ཁྱབ་ཚད་ཁ་ཡིག་བཏགས་ནི་ ངེས་འཛིན་འབད་བཏུབ་པའི་ ཌའི་ལོག་གཅིག་ཁ་ཕྱེཝ་ཨིན། </ahelp></variable>"
@@ -50846,7 +47420,6 @@ msgstr "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\"> ཁྱ
msgctxt ""
"04070400.xhp\n"
"par_id3155411\n"
-"13\n"
"help.text"
msgid "The cell contents of a label range can be used like names in formulas - $[officename] recognizes these names in the same manner that it does the predefined names of the weekdays and months. These names are automatically completed when typed into a formula. In addition, the names defined by label ranges will have priority over names defined by automatically generated ranges."
msgstr "ཁ་ཡིག་བཏགས་ནིའི་ཁྱབ་ཚད་ཀྱི་ནང་ཐིག་ནང་དོན་ཚུ་ མན་ངག་ཚུ་ནང་མིང་ཚུ་བཟུམ་སྦེ་ལག་ལེན་འཐབ་བཏུབ་ཨིན་ - $[officename] གིས་ བདུན་ཕྲག་ཉིནམ་ཚུ་དང་ཟླཝ་ཚུའི་མིང་ཚུ་སྔ་གོང་ངེས་འཛིན་འབད་ཡོད་པའི་ལམ་ལུགས་གཅིག་པ་ནང་ འ་ནི་མིང་ཚུ་ངོས་འཛིན་འབདཝ་ཨིན། འ་ནི་མིང་ཚུ་མན་ངག་ནང་ལུ་ཡིག་དཔར་བརྐྱབ་པའི་སྐབས་སུ་ རང་བཞིན་གྱིས་མཇུག་བསྡུ་སྟེ་འོངམ་ཨིན། ཁ་སྐོང་ལུ་ ཁ་ཡིག་བཏགས་ནིའི་ཁྱབ་ཚད་ཀྱིས་ངེས་འཛིན་འབད་ཡོད་པའི་མིང་གི་ རང་བཞིན་གྱིས་བཟོ་བཏོན་འབད་ཡོད་པའི་ཁྱབ་ཚད་ཚུ་གིས་ངེས་འཛིན་འབད་ཡོད་པའི་མིང་ཚུ་ལུ་ གཙོ་རིམ་འོང་ནི་ཨིན།"
@@ -50855,7 +47428,6 @@ msgstr "ཁ་ཡིག་བཏགས་ནིའི་ཁྱབ་ཚད་ཀ
msgctxt ""
"04070400.xhp\n"
"par_id3147435\n"
-"14\n"
"help.text"
msgid "You can set label ranges that contain the same labels on different sheets. $[officename] first searches the label ranges of the current sheet and, following a failed search, the ranges of other sheets."
msgstr "ཁྱོད་ཀྱིས་ ཤོག་ལེབ་ཚུ་སོ་སོའི་གུ་ལུ་ ཁ་ཡིག་བཏགས་ནི་ཚུ་གཅིག་པ་ཤོམ་ཏེ་ཡོད་པའི་ ཁ་ཡིག་བཏགས་ནི་ཁྱབ་ཚད་ཚུ་གཞི་སྒྲིག་འབད་བཏུབ་ཨིན། $[officename] གིས་ དང་པ་རང་ ད་ལྟོའི་ཤོག་ལེབ་ཀྱི་ཁ་ཡིག་བཏགས་ནི་ཁྱབ་ཚད་ཚུ་དང་ འཐུས་ཤོར་འཚོལ་ཞིབ་རྗེས་སུ་འབྲངས་ཏེ་ ཤོག་ལེབ་གཞན་མི་ཚུའི་ཁྱབ་ཚད་ཚུ་འཚོལ་ཞིབ་འབདཝ་ཨིན།"
@@ -50864,7 +47436,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཤོག་ལེབ་ཚུ་སོ
msgctxt ""
"04070400.xhp\n"
"hd_id3145801\n"
-"3\n"
"help.text"
msgid "Range"
msgstr "ཁྱབ་ཚད།"
@@ -50873,7 +47444,6 @@ msgstr "ཁྱབ་ཚད།"
msgctxt ""
"04070400.xhp\n"
"par_id3154731\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/namerangesdialog/edassign\">Displays the cell reference of each label range.</ahelp> In order to remove a label range from the list box, select it and then click <emph>Delete</emph>."
msgstr "<ahelp hid=\"modules/scalc/ui/namerangesdialog/edassign\"> ཁ་ཡིག་བཏགས་མི་ཁྱབ་ཚད་རེ་རེ་གི་ནང་ཐིག་གཞི་བསྟུན་བཀྲམ་སྟོན་འབདཝ་ཨིན། </ahelp> ཐོ་ཡིག་སྒྲོམ་ནང་ལས་ ཁ་ཡིག་བཏགས་ནི་ཁྱབ་ཚད་གཅིག་རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལས་ དེ་སེལ་འཐུ་འབད་བཞིནམ་ལས་ <emph> བཏོན་གཏང་ </emph> ཨེབ་གཏང་།"
@@ -50882,7 +47452,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/namerangesdialog/edassign\"> ཁ་ཡི
msgctxt ""
"04070400.xhp\n"
"hd_id3149121\n"
-"5\n"
"help.text"
msgid "Contains column labels"
msgstr "ནང་ན་ ཀེར་ཐིག་ཁ་ཡིག་བཏགས་ནི་ཚུ་ཤོམ་ཏེ་ཡོད།"
@@ -50891,7 +47460,6 @@ msgstr "ནང་ན་ ཀེར་ཐིག་ཁ་ཡིག་བཏགས
msgctxt ""
"04070400.xhp\n"
"par_id3150330\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/namerangesdialog/colhead\">Includes column labels in the current label range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/namerangesdialog/colhead\"> ད་ལྟོའི་ཁྱབ་ཚད་ཁ་ཡིག་བཏགས་ནི་ནང་ལུ་ ཀེར་ཐིག་ཁ་ཡིག་བཏགས་ནི་ཡང་གྲངས་སུ་བཙུགསཔ་ཨིན། </ahelp>"
@@ -50900,7 +47468,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/namerangesdialog/colhead\"> ད་ལྟ
msgctxt ""
"04070400.xhp\n"
"hd_id3149020\n"
-"7\n"
"help.text"
msgid "Contains row labels"
msgstr "ནང་ན་ གྲལ་ཐིག་ཁ་ཡིག་བཏགས་ནི་ཚུ་ཤོམ་ཨིན།"
@@ -50909,7 +47476,6 @@ msgstr "ནང་ན་ གྲལ་ཐིག་ཁ་ཡིག་བཏགས
msgctxt ""
"04070400.xhp\n"
"par_id3154754\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/namerangesdialog/rowhead\">Includes row labels in the current label range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/namerangesdialog/rowhead\">ད་ལྟོའི་ཁ་ཡིག་བཏགས་ནིའི་ཁྱབ་ཚད་ནང་ལུ་ གྲལ་ཐིག་ཁ་ཡིག་བཏགས་ནི་ གྲངས་སུ་བཙུགསཔ་ཨིན། </ahelp>"
@@ -50918,7 +47484,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/namerangesdialog/rowhead\">ད་ལྟོ
msgctxt ""
"04070400.xhp\n"
"hd_id3159264\n"
-"11\n"
"help.text"
msgid "For data range"
msgstr "གནད་སྡུད་ཁྱབ་ཚད་དོན་ལུ།"
@@ -50927,7 +47492,6 @@ msgstr "གནད་སྡུད་ཁྱབ་ཚད་དོན་ལུ།"
msgctxt ""
"04070400.xhp\n"
"par_id3154703\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/namerangesdialog/edassign2\">Sets the data range for which the selected label range is valid. To modify it, click in the sheet and select another range with the mouse.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/namerangesdialog/edassign2\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཁྱབ་ཚད་ཁ་ཡིག་བཏགས་ནི་དེ་ནུས་ཅན་ཨིན་པའི་ གནད་སྡུད་ཁྱབ་ཚད་གཞི་སྒྲིག་འབདཝ་ཨིན། དེ་ལེགས་བཅོས་འབད་ནིའི་དོན་ལུ་ ཤོག་ལེབ་ནང་ཨེབ་གཏང་བཞིནམ་ལས་ མཱའུསི་ཐོག་ལས་ཁྱབ་ཚད་གཞན་མི་ཅིག་སེལ་འཐུ་འབད། </ahelp>"
@@ -50936,7 +47500,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/namerangesdialog/edassign2\"> སེལ་
msgctxt ""
"04070400.xhp\n"
"hd_id3145789\n"
-"9\n"
"help.text"
msgid "Add"
msgstr "ཁ་སྐོང་།"
@@ -50945,7 +47508,6 @@ msgstr "ཁ་སྐོང་།"
msgctxt ""
"04070400.xhp\n"
"par_id3147005\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/namerangesdialog/add\">Adds the current label range to the list.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/namerangesdialog/add\"> ཐོ་ཡིག་ནང་ ད་ལྟོའི་ཁ་ཡིག་བཏགས་ནིའི་ཁྱབ་ཚད་ཁ་སྐོང་བརྐྱབ་ཨིན། </ahelp>"
@@ -50959,7 +47521,6 @@ msgid "Function List"
msgstr "ལས་འགན་ཐོ་བཀོད།"
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"bm_id3154126\n"
@@ -50976,7 +47537,6 @@ msgid "<variable id=\"function_list_title\"><link href=\"text/scalc/01/04080000.
msgstr ""
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"par_id3151118\n"
@@ -50985,7 +47545,6 @@ msgid "<variable id=\"function_list_text\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Op
msgstr "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\"> འ་ནི་བརྡ་བཀོད་ཀྱིས་ <emph> ཁྱོད་རའི་ཡིག་ཆ་ནང་བཙུགས་བཏུབ་པའི་ </emph> ལས་འགན་ཚུ་ཆ་མཉམ་རང་བཀྲམ་སྟོན་འབད་བའི་ ལས་འགན་ཐོ་ཡིག་སྒོ་སྒྲིག་ཁ་ཕྱེཝ་ཨིན། </ahelp></variable> ལས་འགན་ཐོ་ཡིག་སྒོ་སྒྲིག་དེ་ <emph> ལས་འགན་ཝི་ཛརཌི་གི་ </emph> ཤོག་ལེབ་ཨེབ་ལྡེ་ལས་འགན་་ <emph> ཚུ་དང </emph> ཆ་འདྲ་བ་སྦེ་ <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\"> ཡོདཔ་ </link> ཨིན། ལས་འགན་ཚུ་ཁྱོད་རང་གི་གནས་གོང་ཚུ་དང་གཅིག་ཁར་ཚབ་བཙུགས་འབད་ནིའི་དོན་ལུ་ས་གནས་འཛིན་མི་ཚུ་དང་མཉམ་གཅིག་བཙུགས་ཡོདཔ་ཨིན།"
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"par_id3152576\n"
@@ -50994,7 +47553,6 @@ msgid "The <emph>Function List</emph> window is a resizable <link href=\"text/sh
msgstr "ལས་འགན་ཐོ་ཡིག་ <emph> ཝིན་ཌོ་དེ་ </emph> ཚད་བསྐྱར་བཟོ་འབད་བཏུབ་མི་ <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\"> ཌོཀ་ཀེ་བཱལ་ </link> ཝིན་ཌོ་ཨིན། དེ་ ཤོག་ཁྲམ་ནང་ལུ་ ལས་འགན་ཚུ་ཚ་ངེར་བཏོན་ཏེ་ བཙུགས་ནིའི་དོན་ལུ་ལག་ལེན་འཐབ། ལས་འགན་ཐོ་ཡིག་ནང་ཐོ་བཀོད་དེ་ལོག་བལྟབ་ཨེབ་གཏང་ཐོག་ལས་ རང་སོའི་ལས་འགན་དེ་ ཚད་བཟུང་ཚུ་དང་གཅིག་ཁར་ཐད་ཀར་དུ་བཙུགས་ཡོདཔ་ཨིན།"
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"hd_id3145799\n"
@@ -51003,7 +47561,6 @@ msgid "Category List"
msgstr "དབྱེ་རིམ་ཐོ་ཡིག"
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"hd_id3153160\n"
@@ -51020,7 +47577,6 @@ msgid "<ahelp hid=\"modules/scalc/ui/functionpanel/funclist\">Displays the avail
msgstr ""
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"hd_id3146971\n"
@@ -51029,7 +47585,6 @@ msgid "Insert Function into calculation sheet"
msgstr "རྩིས་ལས་ཤོག་ཁྲམ་ནང་ལུ་ ལས་འགན་བཙུགས།"
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"par_id3150043\n"
@@ -51057,7 +47612,6 @@ msgstr "ཕྱིའི་གནད་སྡུད་ལུ་འབྲེལ་
msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\"> ནང་ན་གནད་སྡུད་ཤོམ་ཏེ་ཡོད་པའི་ ཁྱོད་ཀྱིས་ བཙུགས་དགོཔ་འདོད་པའི་ཡིག་སྣོད་ག་ཡོད་འཚོལ། </ahelp>"
@@ -51066,7 +47620,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\
msgctxt ""
"04090000.xhp\n"
"hd_id3145785\n"
-"3\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>"
@@ -51075,7 +47628,6 @@ msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\"> ཕྱ
msgctxt ""
"04090000.xhp\n"
"par_id3149262\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertExternalDataSourc\">Inserts data from an HTML, Calc, or Excel file into the current sheet as a link. The data must be located within a named range.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertExternalDataSourc\"> འབྲེལ་ལམ་སྦེ་ ད་ལྟོའི་ཤོག་ལེབ་ནང་ན་ལུ་ ཨེཆ་ཊི་ཨེམ་ཨེལ་ ཀེལ་སི་ ཡང་ན་ ཨེགསི་སེལ་ཡིག་སྣོད་ལས་གནད་སྡུད་བཙུགསཔ་ཨིན། གནད་སྡུད་དེ་ མིང་བཏགས་ཡོད་པའི་ ཁྱབ་ཚད་ནང་འཁོད་ནང་ ག་ཡོད་འཚོལ་ཡོད་དགོཔ་ཨིན། </ahelp>"
@@ -51084,7 +47636,6 @@ msgstr "<ahelp hid=\".uno:InsertExternalDataSourc\"> འབྲེལ་ལམ་
msgctxt ""
"04090000.xhp\n"
"hd_id3146984\n"
-"5\n"
"help.text"
msgid "URL of external data source."
msgstr "ཕྱིའི་གནད་སྡུད་འབྱུང་ཁུངས་ཀྱི་ ཡུ་ཨར་ཨེལ།"
@@ -51093,7 +47644,6 @@ msgstr "ཕྱིའི་གནད་སྡུད་འབྱུང་ཁུང
msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\"> གནད་སྡུད་ཤོམ་པའི་ཁྱོད་ཀྱིས་ བཙུགས་དགོ་འདོད་པའི་ཡིག་སྣོད་མིང་ངའམ་ ཡུ་ཨར་ཨེལ་བཙུགས་བཞིནམ་ལས་ <item type=\"keycode\"> ལོག་ལྡེ་ </item> ཨེབ་གཏང་། </ahelp>"
@@ -51102,7 +47652,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\"> གནད་སྡུ
msgctxt ""
"04090000.xhp\n"
"hd_id3145251\n"
-"7\n"
"help.text"
msgid "Available tables/ranges"
msgstr "འཐོབ་ཚུགས་པའི་ཐིག་ཁྲམ་/ཁྱབ་ཚད་ཚུ།"
@@ -51111,7 +47660,6 @@ msgstr "འཐོབ་ཚུགས་པའི་ཐིག་ཁྲམ་/ཁ
msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\"> ཁྱོད་ཀྱིས་བཙུགས་ནི་ཨིན་པའི་ ཐིག་ཁྲམ་ཡང་ན་གནད་སྡུད་ཁྱབ་ཚད་ངེས་འཛིན་འབད། </ahelp>"
@@ -51120,7 +47668,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\"> ཁྱོད་ཀ
msgctxt ""
"04090000.xhp\n"
"hd_id3154492\n"
-"9\n"
"help.text"
msgid "Update every"
msgstr "རེ་རེ་དུས་མཐུན་བཟོ།"
@@ -51129,7 +47676,6 @@ msgstr "རེ་རེ་དུས་མཐུན་བཟོ།"
msgctxt ""
"04090000.xhp\n"
"par_id3154017\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/externaldata/delay\">Enter the number of seconds to wait before the external data are reloaded into the current document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/delay\"> ཕྱིའི་གནད་སྡུད་དེ་ ད་ལྟོའི་ཡིག་ཆ་ནང་ལུ་ཡང་བསྐྱར་མངོན་གསལ་མ་འབད་བའི་ཧེ་མ་བསྒུག་དགོ་པའི་སྐར་མ་ཚུའི་གྱངས་ཁ་བཙུགས། </ahelp>"
@@ -51154,7 +47700,6 @@ msgstr "<bookmark_value>ནང་ཐིག་ཁྱད་ཆོས་ཚུ་</
msgctxt ""
"05020000.xhp\n"
"hd_id3148663\n"
-"1\n"
"help.text"
msgid "Format Cells"
msgstr "རྩ་སྒྲིག་ནང་ཐིག་ཚུ།"
@@ -51163,7 +47708,6 @@ msgstr "རྩ་སྒྲིག་ནང་ཐིག་ཚུ།"
msgctxt ""
"05020000.xhp\n"
"par_id3150448\n"
-"2\n"
"help.text"
msgid "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Allows you to specify a variety of formatting options and to apply attributes to the selected cells.</ahelp></variable>"
msgstr "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\"> ཁྱོད་ལུ་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཚུ་ནང་ རྩ་སྒྲིག་འབད་ནི་སྣ་ཁག་གསལ་བཀོད་འབད་བཅུགཔ་མ་ཚད་ ཁྱད་ཆོས་ཚུ་ འཇུག་སྤྱོད་ཡང་འབད་བཅུགཔ་ཨིན། </ahelp></variable>"
@@ -51172,7 +47716,6 @@ msgstr "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">
msgctxt ""
"05020000.xhp\n"
"hd_id3145785\n"
-"3\n"
"help.text"
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\"> ཨང་ཚུ། </link>"
@@ -51181,7 +47724,6 @@ msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\"> ཨང་
msgctxt ""
"05020000.xhp\n"
"hd_id3146119\n"
-"4\n"
"help.text"
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\"> ཡིག་གཟུགས། </link>"
@@ -51198,7 +47740,6 @@ msgstr "ནང་ཐིག་ཉེན་སྐྱོབ།"
msgctxt ""
"05020600.xhp\n"
"hd_id3145119\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cell Protection\">Cell Protection</link>"
msgstr "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cell Protection\"> ནང་ཐིག་ཉེན་སྐྱོབ། </link>"
@@ -51207,7 +47748,6 @@ msgstr "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cell Protection\"> ན
msgctxt ""
"05020600.xhp\n"
"par_id3150398\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/CellProtectionPage\">Defines protection options for selected cells.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/CellProtectionPage\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཚུ་གི་དོན་ལུ་ ཉེན་སྐྱོབ་འབད་ནིའི་གདམ་ཁ་ཚུ་ངེས་འཛིན་འབདཝ་ཨིན། </ahelp>"
@@ -51216,7 +47756,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/CellProtectionPage\">
msgctxt ""
"05020600.xhp\n"
"hd_id3150447\n"
-"3\n"
"help.text"
msgid "Protection"
msgstr "ཉེན་སྐྱོབ།"
@@ -51225,7 +47764,6 @@ msgstr "ཉེན་སྐྱོབ།"
msgctxt ""
"05020600.xhp\n"
"hd_id3125864\n"
-"9\n"
"help.text"
msgid "Hide all"
msgstr "ཆ་མཉམ་སྦ།"
@@ -51234,7 +47772,6 @@ msgstr "ཆ་མཉམ་སྦ།"
msgctxt ""
"05020600.xhp\n"
"par_id3153768\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideAll\">Hides formulas and contents of the selected cells.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideAll\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཚུ་གི་མན་ངག་དང་ནང་དོན་ཚུ་སྦ་བཞགཔ་ཨིན། </ahelp>"
@@ -51243,7 +47780,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideAll\"> སེ
msgctxt ""
"05020600.xhp\n"
"hd_id3153190\n"
-"5\n"
"help.text"
msgid "Protected"
msgstr "ཉེན་སྐྱོབ་འབད་ཡོདཔ།"
@@ -51252,7 +47788,6 @@ msgstr "ཉེན་སྐྱོབ་འབད་ཡོདཔ།"
msgctxt ""
"05020600.xhp\n"
"par_id3151119\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkProtected\">Prevents the selected cells from being modified.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkProtected\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཚུ་ ལེགས་བཅོས་འབད་ནི་ལས་སྔོན་བཀག་འབདཝ་ཨིན། </ahelp>"
@@ -51269,7 +47804,6 @@ msgstr ""
msgctxt ""
"05020600.xhp\n"
"hd_id3149377\n"
-"7\n"
"help.text"
msgid "Hide formula"
msgstr "མདན་ངག་སྦ།"
@@ -51278,7 +47812,6 @@ msgstr "མདན་ངག་སྦ།"
msgctxt ""
"05020600.xhp\n"
"par_id3154510\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideFormula\">Hides formulas in the selected cells.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideFormula\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཚུ་ནང་ མན་ངག་ཚུ་སྦ་བཞགཔ་ཨིན། </ahelp>"
@@ -51287,7 +47820,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideFormula\"> ས
msgctxt ""
"05020600.xhp\n"
"hd_id3155602\n"
-"11\n"
"help.text"
msgid "Print"
msgstr "དཔར་བསྐྲུན་འབད།"
@@ -51296,7 +47828,6 @@ msgstr "དཔར་བསྐྲུན་འབད།"
msgctxt ""
"05020600.xhp\n"
"par_id3153836\n"
-"12\n"
"help.text"
msgid "Defines print options for the sheet."
msgstr "ཤོག་ཁྲམ་ཚུ་ལུ་དཔར་བསྐྲུན་གདམ་ཁ་ཚུ་ངེས་འཛིན་འབདཝ་ཨིན།"
@@ -51305,7 +47836,6 @@ msgstr "ཤོག་ཁྲམ་ཚུ་ལུ་དཔར་བསྐྲུན
msgctxt ""
"05020600.xhp\n"
"hd_id3155065\n"
-"13\n"
"help.text"
msgid "Hide when printing"
msgstr "དཔར་བསྐྲུན་འབདཝ་ད་སྦ།"
@@ -51314,7 +47844,6 @@ msgstr "དཔར་བསྐྲུན་འབདཝ་ད་སྦ།"
msgctxt ""
"05020600.xhp\n"
"par_id3155443\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHidePrinting\">Keeps the selected cells from being printed.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHidePrinting\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཚུ་ དཔར་བསྐྲུན་འབད་ནི་ལས་ བཞགཔ་ཨིན། </ahelp>"
@@ -51331,7 +47860,6 @@ msgstr "གྲལ་ཐིག"
msgctxt ""
"05030000.xhp\n"
"hd_id3147228\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Row</link>"
msgstr "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\"> གྲལ་ཐིག </link>"
@@ -51340,7 +47868,6 @@ msgstr "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\"> གྲལ་ཐ
msgctxt ""
"05030000.xhp\n"
"par_id3154685\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the row height and hides or shows selected rows.</ahelp>"
msgstr "<ahelp hid=\".\"> གྲལ་ཐིག་མཐོ་ཚད་གཞི་སྒྲིག་འབདཝ་མ་ཚད་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་གྲལ་ཐིག་ཚུ་ སྟོན་ནམ་སྦ་བཞགཔ་ཨིན། </ahelp>"
@@ -51349,7 +47876,6 @@ msgstr "<ahelp hid=\".\"> གྲལ་ཐིག་མཐོ་ཚད་གཞི
msgctxt ""
"05030000.xhp\n"
"hd_id3155132\n"
-"3\n"
"help.text"
msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Height</link>"
msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\"> མཐོ་ཚད། </link>"
@@ -51358,7 +47884,6 @@ msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\"> མཐོ་
msgctxt ""
"05030000.xhp\n"
"hd_id3155854\n"
-"4\n"
"help.text"
msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal Height\">Optimal Height</link>"
msgstr "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal Height\"> མཐོ་ཚད་གང་དྲག </link>"
@@ -51383,7 +47908,6 @@ msgstr "<bookmark_value> ཤོག་ཁྲམ་ཚུ། གྲལ་ཐིག
msgctxt ""
"05030200.xhp\n"
"hd_id3148491\n"
-"1\n"
"help.text"
msgid "Optimal Row Heights"
msgstr "གྲལ་ཐིག་མཐོ་ཚད་གང་དྲག་ཚུ།"
@@ -51392,7 +47916,6 @@ msgstr "གྲལ་ཐིག་མཐོ་ཚད་གང་དྲག་ཚུ
msgctxt ""
"05030200.xhp\n"
"par_id3154758\n"
-"2\n"
"help.text"
msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Determines the optimal row height for the selected rows.</ahelp></variable> The optimal row height depends on the font size of the largest character in the row. You can use various <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"units of measure\">units of measure</link>."
msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ གྲལ་ཐིག་ཚུའི་དོན་ལུ་ གྲལ་ཐིག་གང་དྲག་གཏན་འབེབས་བཟོཝ་ཨིན། </ahelp></variable> གྲལ་ཐིག་མཐོ་ཚད་གང་དྲག་དེ་ གྲལ་ཐིག་ནང་གི་ཡིག་འབྲུ་སྦོམ་ཤོས་ཀྱི་ཚད་ལུ་ བརྟེནམ་ཨིན། ཁྱོད་ཀྱིས་ ཚད་འཇལ་གྱི་ཆ་ཕྲན་ཚུ་ <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"units of measure\"> འདྲ་མིན་སྣ་ཚོགས་ལག་ལེན་འཐབ་བཏུབ་ཨིན། </link>."
@@ -51401,7 +47924,6 @@ msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\"> ས
msgctxt ""
"05030200.xhp\n"
"hd_id3154908\n"
-"3\n"
"help.text"
msgid "Add"
msgstr "ཁ་སྐོང་།"
@@ -51410,7 +47932,6 @@ msgstr "ཁ་སྐོང་།"
msgctxt ""
"05030200.xhp\n"
"par_id3151044\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optimalrowheightdialog/value\">Sets additional spacing between the largest character in a row and the cell boundaries.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/optimalrowheightdialog/value\"> གྲལ་ཐིག་དང་ ནང་ཐིག་མཐའ་མཚམས་ཚུ་ནང་ ཡིག་འབྲུ་སྦོམ་ཤོས་ཀྱི་བར་ན་ བར་སྟོང་བཞག་ནི་ཁ་སྐོང་གཞི་སྒྲིག་འབདཝ་ཨིན། </ahelp>"
@@ -51419,7 +47940,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/optimalrowheightdialog/value\"> གྲལ
msgctxt ""
"05030200.xhp\n"
"hd_id3150439\n"
-"5\n"
"help.text"
msgid "Default value"
msgstr "སྔོན་སྒྲིག་གནས་གོང་།"
@@ -51428,7 +47948,6 @@ msgstr "སྔོན་སྒྲིག་གནས་གོང་།"
msgctxt ""
"05030200.xhp\n"
"par_id3146984\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optimalrowheightdialog/default\">Restores the default value for the optimal row height.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/optimalrowheightdialog/default\"> གྲལ་ཐིག་མཐོ་ཚད་གང་དྲག་གི་དོན་ལུ་ སྔོན་སྒྲིག་གནས་གོང་ སོར་ཆུད་འབདཝ་ཨིན། </ahelp>"
@@ -51453,7 +47972,6 @@ msgstr "<bookmark_value> ཤོག་ཁྲམ་ཚུ། ལས་འགན་
msgctxt ""
"05030300.xhp\n"
"hd_id3147265\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\">Hide</link>"
msgstr "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\"> སྦ། </link>"
@@ -51462,7 +47980,6 @@ msgstr "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\"> སྦ། </lin
msgctxt ""
"05030300.xhp\n"
"par_id3156281\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:Hide\">Hides selected rows, columns or individual sheets.</ahelp>"
msgstr "<ahelp hid=\".uno:Hide\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་གྲལ་ཐིག་ ཀེར་ཐིག་ཡང་ན་ ཤོག་ཁྲམ་ངོ་རྐྱང་ཚུ་སྦ་བཞགཔ་ཨིན། </ahelp>"
@@ -51471,7 +47988,6 @@ msgstr "<ahelp hid=\".uno:Hide\"> སེལ་འཐུ་གྲུབ་ཡོ
msgctxt ""
"05030300.xhp\n"
"par_id3148645\n"
-"3\n"
"help.text"
msgid "Select the rows or columns that you want to hide, and then choose <emph>Format - Row - Hide </emph>or<emph> Format - Column - Hide</emph>."
msgstr "ཁྱོད་ཀྱིས་ སྦ་དགོ་མནོ་མི་ གྲལ་ཐིག་ཚུའམ་ ཀེར་ཐིག་ཚུ་སེལ་འཐུ་འབད་ཞིནམ་ལས་ <emph> རྩ་སྒྲིག་ - གྲལ་ཐིག་ - སྦ་ </emph> ཡང་ན་ <emph> རྩ་སྒྲིག་ - ཀེར་ཐིག་ - སྦ་ </emph> ཚུ་གདམ།"
@@ -51480,7 +47996,6 @@ msgstr "ཁྱོད་ཀྱིས་ སྦ་དགོ་མནོ་མི
msgctxt ""
"05030300.xhp\n"
"par_id3147427\n"
-"6\n"
"help.text"
msgid "You can hide a sheet by selecting the sheet tab and then choosing <emph>Format - Sheet - Hide</emph>. Hidden sheets are not printed unless they occur within a <link href=\"text/scalc/01/05080000.xhp\" name=\"print range\">print range</link>."
msgstr "ཁྱོད་ཀྱིས་ ཤོག་ཁྲམ་མཆོང་ལྡེ་སེལ་འཐུ་དང་ <emph> རྩ་སྒྲིག་ - ཤོག་ཁྲམ་ - སྦ་ </emph> ཚུ་ གདམ་པའི་ཐོག་ལས་ཤོག་ཁྲམ་སྦ་ཚུགསཔ་ཨིན། སྦ་ཡོད་པའི་ཤོག་ཁྲམ་ཚུ་ <link href=\"text/scalc/01/05080000.xhp\" name=\"print range\"> ཁྱབ་ཚད་དཔར་བསྐྲུན་ </link> ནང་མ་འབྱུངམ་ཚུན་ དཔར་བསྐྲུན་འབད་དེ་མེདཔ་ཨིན།"
@@ -51489,7 +48004,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཤོག་ཁྲམ་མཆོང་
msgctxt ""
"05030300.xhp\n"
"par_id3153157\n"
-"5\n"
"help.text"
msgid "A break in the row or column header indicates whether the row or column is hidden."
msgstr "གྲལ་ཐིག་དང་ ཡང་ན་ ཀེ་ཐིག་མགོ་ཡིག་ནང་ མཚམས་ཀྱིས་ གྲལ་ཐིག་དང་ ཡང་ན་ ཀེར་ཐིག་དེ་ཚུ་ སྦ་ཡོད་མེད་སྐོར་བརྡ་སྟོནམ་ཨིན།"
@@ -51498,7 +48012,6 @@ msgstr "གྲལ་ཐིག་དང་ ཡང་ན་ ཀེ་ཐིག་
msgctxt ""
"05030300.xhp\n"
"par_id3145251\n"
-"4\n"
"help.text"
msgid "To display hidden rows, columns or sheets"
msgstr "སྦ་ཡོད་པའི་གྲལ་ཐིག་ ཀེར་ཐིག་ཡང་ན་ ཤོག་ཁྲམ་ཚུ་བཀྲམ་སྟོན་འབད་ནིའི་དོན་ལུ།"
@@ -51539,7 +48052,6 @@ msgstr "<bookmark_value> ཤོག་ཁྲམ་ཚུ་། ཀེར་ཐི
msgctxt ""
"05030400.xhp\n"
"hd_id3147264\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\">Show</link>"
msgstr "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\"> སྟོན། </link>"
@@ -51548,7 +48060,6 @@ msgstr "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\"> སྟོན།
msgctxt ""
"05030400.xhp\n"
"par_id3150447\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowColumn\">Choose this command to show previously hidden rows or columns.</ahelp>"
msgstr "<ahelp hid=\".uno:ShowColumn\"> ཧེ་མ་ལས་རང་ སྦ་ཡོད་པའི་ གྲལ་ཐིག་ཚུའམ་ ཀེར་ཐིག་ཚུ་ སྟོན་ནིའི་དོན་ལུ་ འ་ནི་ བརྡ་བཀོད་གདམ། </ahelp>"
@@ -51557,7 +48068,6 @@ msgstr "<ahelp hid=\".uno:ShowColumn\"> ཧེ་མ་ལས་རང་ སྦ
msgctxt ""
"05030400.xhp\n"
"par_id3155131\n"
-"3\n"
"help.text"
msgid "To show a column or row, select the range of rows or columns containing the hidden elements, then choose <emph>Format - Row - Show</emph> or <emph>Format - Column - Show</emph>."
msgstr "ཀེར་ཐིག་དང་ ཡང་ན་ གྲལ་ཐིག་སྟོན་ནིའི་དོན་ལུ་ ནང་ན་སྦ་ཡོད་པའི་ཆ་ཤས་ཚུ་ཤོམ་ཏེ་ཡོད་མི་ གྲལ་ཐིག་དང་ ཡང་ན་ ཀེར་ཐིག་གི་ཁྱབ་ཚད་སེལ་འཐུ་འབད་ཞིནམ་ལས་ <emph> རྩ་སྒྲིག་ - གྲལ་ཐིག་ - སྟོན་དང་ </emph> ཡང་ན་ <emph> རྩ་སྒྲིག་ - ཀེར་ཐིག་ - སྟོན་ </emph> ཚུ་གདམ།"
@@ -51566,7 +48076,6 @@ msgstr "ཀེར་ཐིག་དང་ ཡང་ན་ གྲལ་ཐིག
msgctxt ""
"05030400.xhp\n"
"par_id3155132\n"
-"4\n"
"help.text"
msgid "For example, to show the column B, click on the header of the column A, expand the selection to the column C, then chose <emph>Format - Column - Show</emph>. To show the column A previously hidden, click on the header of the column B, keep the mouse button pressed and drag on the left. The selected range displayed in the name area changes from B1:B1048576 to A1:B1048576. Choose <emph>Format - Column - Show</emph>. Proceed the same way with rows."
msgstr ""
@@ -51575,7 +48084,6 @@ msgstr ""
msgctxt ""
"05030400.xhp\n"
"par_id3145748\n"
-"5\n"
"help.text"
msgid "To show all hidden cells, first click in the field in the upper left corner. This selects all cells of the table."
msgstr ""
@@ -51592,7 +48100,6 @@ msgstr "ཀེར་ཐིག"
msgctxt ""
"05040000.xhp\n"
"hd_id3155628\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\">Column</link>"
msgstr "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\"> ཀེར་ཐིག </link>"
@@ -51601,7 +48108,6 @@ msgstr "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\"> ཀེར་
msgctxt ""
"05040000.xhp\n"
"par_id3148946\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the column width and hides or shows selected columns.</ahelp>"
msgstr "<ahelp hid=\".\"> ཀེར་ཐིག་རྒྱ་ཚད་གཞི་སྒྲིག་འབད་ཞིནམ་ལས་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ ཀེར་ཐིག་ཚུ་སྦ་ནིའམ་སྟོནམ་ཨིན། </ahelp>"
@@ -51610,7 +48116,6 @@ msgstr "<ahelp hid=\".\"> ཀེར་ཐིག་རྒྱ་ཚད་གཞི
msgctxt ""
"05040000.xhp\n"
"hd_id3150398\n"
-"3\n"
"help.text"
msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\">Width</link>"
msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\"> རྒྱ་ཚད། </link>"
@@ -51619,7 +48124,6 @@ msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\"> རྒྱ་
msgctxt ""
"05040000.xhp\n"
"hd_id3145171\n"
-"4\n"
"help.text"
msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal Width\">Optimal Width</link>"
msgstr "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal Width\"> རྒྱ་ཚད་གང་དྲག </link>"
@@ -51644,7 +48148,6 @@ msgstr "<bookmark_value> ཤོག་ཁྲམ་ཚུ། ཀེར་ཐིག
msgctxt ""
"05040200.xhp\n"
"hd_id3155628\n"
-"1\n"
"help.text"
msgid "Optimal Column Width"
msgstr "ཀེར་ཐིག་རྒྱ་ཚད་གང་དྲག"
@@ -51653,7 +48156,6 @@ msgstr "ཀེར་ཐིག་རྒྱ་ཚད་གང་དྲག"
msgctxt ""
"05040200.xhp\n"
"par_id3145068\n"
-"2\n"
"help.text"
msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Defines the optimal column width for selected columns.</ahelp></variable> The optimal column width depends on the longest entry within a column. You can choose from the available <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement units\">measurement units</link>."
msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ ཀེར་ཐིག་ཚུའི་དོན་ལུ་ ཀེར་ཐིག་རྒྱ་ཚད་གང་དྲག་ངེས་འཛིན་འབདཝ་ཨིན། </ahelp></variable> ཀེར་ཐིག་རྒྱ་ཚད་གང་དྲག་དེ་ ཀེར་ཐིག་ནང་འཁོད་ཀྱི་ ཐོ་བཀོད་རིང་ཤོས་ལུ་བརྟེནམ་ཨིན། ཁྱོད་ཀྱིས་ འཐོབ་ཚུགས་པའི་ <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement units\"> ཚད་འཇལ་ཆ་ཕྲན་ཚུ་ལས་ </link> གདམ་བཏུབ་ཨིན།"
@@ -51662,7 +48164,6 @@ msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">
msgctxt ""
"05040200.xhp\n"
"hd_id3150767\n"
-"3\n"
"help.text"
msgid "Add"
msgstr "ཁ་སྐོང་།"
@@ -51671,7 +48172,6 @@ msgstr "ཁ་སྐོང་།"
msgctxt ""
"05040200.xhp\n"
"par_id3150449\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/value\">Defines additional spacing between the longest entry in a column and the vertical column borders.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/value\"> ཀེར་ཐིག་དང་ ཀེར་ཕྲང་ཀེར་ཐིག་མཐའ་མཚམས་ཚུ་ནང་ ཐོ་བཀོད་རིང་ཤོས་ཀྱི་བར་ བར་སྟོང་བཞག་ནི་ཁ་སྐོང་ ངེས་འཛིན་འབདཝ་ཨིན། </ahelp>"
@@ -51680,7 +48180,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/value\"> ཀེར
msgctxt ""
"05040200.xhp\n"
"hd_id3145785\n"
-"5\n"
"help.text"
msgid "Default value"
msgstr "སྔོན་སྒྲིག་གནས་གོང་།"
@@ -51689,7 +48188,6 @@ msgstr "སྔོན་སྒྲིག་གནས་གོང་།"
msgctxt ""
"05040200.xhp\n"
"par_id3146120\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/default\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 0.1 in."
msgstr "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/default\"> ཀེར་ཐིག་གི་ ནང་དོན་ཧྲིལ་བུ་ཚུ་ བཀྲམ་སྟོན་འབད་ནིའི་དོན་ལུ་ ཀེར་ཐིག་རྒྱ་ཚད་གང་དྲག་ངེས་འཛིན་འབདཝ་ཨིན། </ahelp> ཀེར་ཐིག་རྒྱ་ཚད་གང་དྲག་གི་དོན་ལུ་ བར་སྟོང་བཞག་ནིའི་ ཁ་སྐོང་དེ་ ༠་༡ ནང་སྔར་སྒྲིག་འབད་ཡོདཔ་ཨིན།"
@@ -51714,7 +48212,6 @@ msgstr "<bookmark_value>སི་ཊི་ཨེལ་ ལེབ་གྲངས
msgctxt ""
"05050000.xhp\n"
"hd_id3155923\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\">Sheet</link>"
msgstr "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\"> ཤོག་ཁྲམ། </link>"
@@ -51723,7 +48220,6 @@ msgstr "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\"> ཤོག་
msgctxt ""
"05050000.xhp\n"
"par_id3154758\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the sheet name and hides or shows selected sheets.</ahelp>"
msgstr "<ahelp hid=\".\"> ཤོག་ཁྲམ་གྱི་མིང་གཞི་སྒྲིག་འབད་ཞིནམ་ལས་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཤོག་ཁྲམ་ཚུ་ སྦ་ནིའམ་སྟོནམ་ཨིན། </ahelp>"
@@ -51732,7 +48228,6 @@ msgstr "<ahelp hid=\".\"> ཤོག་ཁྲམ་གྱི་མིང་གཞ
msgctxt ""
"05050000.xhp\n"
"hd_id3156280\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">Rename</link>"
msgstr "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\"> བསྐྱར་མིང་བཏགས། </link>"
@@ -51741,7 +48236,6 @@ msgstr "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\"> བསྐྱ
msgctxt ""
"05050000.xhp\n"
"hd_id3145787\n"
-"4\n"
"help.text"
msgid "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show</link>"
msgstr "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\"> སྟོན། </link>"
@@ -51750,7 +48244,6 @@ msgstr "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\"> སྟོན།
msgctxt ""
"05050000.xhp\n"
"par_id3150542\n"
-"5\n"
"help.text"
msgid "If a sheet has been hidden, the Show Sheet dialog opens, which allows you to select a sheet to be shown again."
msgstr "ཤོག་ཁྲམ་དེ་སྦ་ཡོད་པ་ཅིན་ ཁྱོད་ལུ་ ལོག་སྟེ་རང་སྟོན་ནི་ཨིན་པའི་ ཤོག་ཁྲམ་གཅིག་སེལ་འཐུ་འབད་བཅུག་པའི་ ཤོག་ཁྲམ་སྟོན་ཌའི་ལོག་ཁ་ཕྱེཝ་ཨིན།"
@@ -51791,7 +48284,6 @@ msgstr "<bookmark_value> ལཱའི་ཤོག་ཁྲམ་མིང་ཚ
msgctxt ""
"05050100.xhp\n"
"hd_id3147336\n"
-"1\n"
"help.text"
msgid "Rename Sheet"
msgstr "ཤོག་ཁྲམ་བསྐྱར་མིང་བཏགས།"
@@ -51800,7 +48292,6 @@ msgstr "ཤོག་ཁྲམ་བསྐྱར་མིང་བཏགས།"
msgctxt ""
"05050100.xhp\n"
"par_id3150792\n"
-"2\n"
"help.text"
msgid "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">This command opens a dialog where you can assign a different name to the current sheet.</ahelp></variable>"
msgstr "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\"> འ་ནི་བརྡ་བཀོད་ཀྱིས་ ཁྱོད་ཀྱིས་ ད་ལྟོའི་ཤོག་ཁྲམ་ལུ་ མིང་སོ་སོར་གཅིག་འགན་སྤྲོད་འབད་ཚུགས་ནིའི་དོན་ལུ་ ཌའི་ལོག་གཅིག་ཁ་ཕྱེཝ་ཨིན། </ahelp></variable>"
@@ -51809,7 +48300,6 @@ msgstr "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\"> འ་
msgctxt ""
"05050100.xhp\n"
"hd_id3153968\n"
-"3\n"
"help.text"
msgid "Name"
msgstr "མིང་།"
@@ -51826,7 +48316,6 @@ msgstr ""
msgctxt ""
"05050100.xhp\n"
"par_id3153092\n"
-"5\n"
"help.text"
msgid "You can also open the<emph> Rename Sheet </emph>dialog through the context menu by positioning the mouse pointer over a sheet tab at the bottom of the window and <switchinline select=\"sys\"><caseinline select=\"MAC\">clicking while pressing Control</caseinline><defaultinline>clicking the right mouse button</defaultinline></switchinline>."
msgstr "ཁྱོད་ཀྱིས་ གཞན་ཡང་ <emph> Rename Sheet </emph> ཌའི་ལོག་འདི་ སྐབས་དོན་དཀར་ཆག་ལས་བརྒྱུད་དེ་ སྒོ་སྒྲིག་གི་མཇུག་ལུ་ཡོད་པའི་ ཤོག་ཁྲམ་མཆོང་ལྡེ་ཅིག་གུ་ མཱའུསི་འདི་དཔག་སྟེ་གནས་ས་བཞག་ནི་དང་ <switchinline select=\"sys\"><caseinline select=\"MAC\">ཚད་འཛིན་འདི་ཨེབ་གཏང་འབདཝ་ད་ ཨེབ་ནི་</caseinline><defaultinline>མཱའུསི་གཡས་འདི་ཨེབ་གཏང་འབད་ཐོག་ལས།</defaultinline></switchinline>"
@@ -51835,7 +48324,6 @@ msgstr "ཁྱོད་ཀྱིས་ གཞན་ཡང་ <emph> Rename Shee
msgctxt ""
"05050100.xhp\n"
"par_id3147396\n"
-"6\n"
"help.text"
msgid "Alternatively, click the sheet tab while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Alt</defaultinline></switchinline> key. Now you can change the name directly. <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
msgstr "བརྡ་བཀོད་ <switchinline select=\"sys\"><caseinline select=\"MAC\"> བསྒྱུར་ལྡེ་ </caseinline><defaultinline> ལྡེ་མིག་ཨེབ་པའི་སྐབས་སུ་ </defaultinline></switchinline> ཐབས་གཞན་ཐོག་ལས་ ཤོག་ཁྲམ་མཆོང་ལྡེ་ཨེབ་གཏང་། ད་ལྟོ་འབདན་ཁྱོད་ཀྱིས་ མིང་ཐད་ཀར་དུ་བསྒྱུར་བཅོས་འབད་ཚུགསཔ་ཨིན། <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
@@ -51860,13 +48348,11 @@ msgstr "<bookmark_value> ཤོག་ཁྲམ་ཚུ་ ; བཀྲམ་ས
msgctxt ""
"05050300.xhp\n"
"hd_id3148946\n"
-"1\n"
"help.text"
msgid "Show Sheet"
msgstr "ཤོག་ཁྲམ་སྟོན།"
#: 05050300.xhp
-#, fuzzy
msgctxt ""
"05050300.xhp\n"
"par_id3148799\n"
@@ -51878,7 +48364,6 @@ msgstr "<variable id=\"tabeintext\"><ahelp visibility=\"visible\" hid=\".uno:Sho
msgctxt ""
"05050300.xhp\n"
"hd_id3151112\n"
-"3\n"
"help.text"
msgid "Hidden sheets"
msgstr "གསང་བའི་ཤོག་ཁྲམ་ཚུ།"
@@ -51887,7 +48372,6 @@ msgstr "གསང་བའི་ཤོག་ཁྲམ་ཚུ།"
msgctxt ""
"05050300.xhp\n"
"par_id3145273\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/whowsheetdialog/ShowSheetDialog\" visibility=\"visible\">Displays a list of all hidden sheets in your spreadsheet document.</ahelp> To show a certain sheet, click the corresponding entry on the list and confirm with OK."
msgstr "<ahelp hid=\"modules/scalc/ui/whowsheetdialog/ShowSheetDialog\" visibility=\"visible\"> སྦ་ཡོད་པའི་ ཤོག་ཁྲམ་ཚུའི་ཐོ་ཡིག་གཅིག་ ཁྱོད་ཀྱི་ ལོག་ཁྲམ་ཡིག་ཆ་ནང་ བཀྲམ་སྟོན་འབདཝ་ཨིན། </ahelp> ཤོག་ཁྲམ་ལ་ལོག་ཅིག་སྟོན་ནིའི་དོན་ལུ་ ཐོ་ཡིག་གུ་ མཉམ་ཐོག་པའི་ཐོ་བཀོད་ཨེབ་གཏང་སྟེ་ བཏུབ་དང་བཅསཔ་སྦེ་ ངེས་དཔྱད་འབད།"
@@ -51904,7 +48388,6 @@ msgstr ""
msgctxt ""
"05060000.xhp\n"
"hd_id3149785\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05060000.xhp\" name=\"Merge and Center Cells\">Merge and Center Cells</link>"
msgstr ""
@@ -51913,7 +48396,6 @@ msgstr ""
msgctxt ""
"05060000.xhp\n"
"par_id3151246\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Combines the selected cells into a single cell or splits merged cells. Aligns cell content centered.</ahelp>"
msgstr ""
@@ -51922,7 +48404,6 @@ msgstr ""
msgctxt ""
"05060000.xhp\n"
"par_id3154020\n"
-"18\n"
"help.text"
msgid "Choose <emph>Format - Merge Cells - Merge and Center Cells</emph>"
msgstr ""
@@ -51931,7 +48412,6 @@ msgstr ""
msgctxt ""
"05060000.xhp\n"
"par_id3148552\n"
-"4\n"
"help.text"
msgid "The merged cell receives the name of the first cell of the original cell range. Merged cells cannot be merged a second time with other cells. The range must form a rectangle, multiple selection is not supported."
msgstr "མཉམ་བསྡོམས་འབད་ཡོད་པའི་ནང་ཐིག་ཚུ་གི་ནང་ཐིག་ཁྱབ་ཚད་ངོ་མ་གི་ ནང་ཐིག་དང་པའི་མིང་འཐོབ་ཨིན། མཉམ་བསྡོམས་འབད་ཡོད་པའི་ ནང་ཐིག་ཚུ་ ནང་ཐིག་སོ་སོར་ཚུ་དང་གཅིག་ཁར་ཐེངས་གཉིས་པ་མཉམ་བསྡོམས་འབད་མི་བཏུབ་ཨིན། ཁྱབ་ཚད་ཀྱིས་ གྲུ་བཞི་ནར་མོ་གཞི་སྒྲུབ་འབད་དགོཔ་མ་ཚད་ སེལ་འཐུ་སྣ་མང་དེ་རྒྱབ་སྐྱོར་འབད་དེ་མེདཔ་ཨིན།"
@@ -51940,7 +48420,6 @@ msgstr "མཉམ་བསྡོམས་འབད་ཡོད་པའི་ན
msgctxt ""
"05060000.xhp\n"
"par_id3149665\n"
-"3\n"
"help.text"
msgid "If the cells to be merged have any contents, a security dialog is shown."
msgstr "མཉམ་བསྡོམས་འབད་ནི་ཨིན་པའི་ ནི་ཐིག་ཚུ་ལུ་ ནང་དོན་གང་རུང་ཚུ་ཡོད་པ་ཅིན་ སྲུང་སྐྱོབ་ཌའི་ལོག་གཅིག་སྟོན་ཡོདཔ་ཨིན།"
@@ -51997,7 +48476,6 @@ msgstr "ཤོག་ལེབ་བཟོ་རྣམ།"
msgctxt ""
"05070000.xhp\n"
"hd_id3157910\n"
-"1\n"
"help.text"
msgid "Page Style"
msgstr "ཤོག་ལེབ་བཟོ་རྣམ།"
@@ -52006,7 +48484,6 @@ msgstr "ཤོག་ལེབ་བཟོ་རྣམ།"
msgctxt ""
"05070000.xhp\n"
"par_id3156023\n"
-"2\n"
"help.text"
msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\">Opens a dialog where you can define the appearance of all pages in your document.</ahelp></variable>"
msgstr "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\"> ཁྱོད་ཀྱིས་ ཁྱོད་རའི་ཡིག་ཆ་ནང་ ཤོག་ལེབ་ཚུའི་འབྱུང་སྣང་ངེས་འཛིན་འབད་ཚུགས་སའི་ ཌའི་ལོག་གཅིག་ཁ་ཕྱེཝ་ཨིན། </ahelp></variable>"
@@ -52031,7 +48508,6 @@ msgstr "<bookmark_value>ཤོག་ལེབ་ཚུ་ དཔར་བསྐ
msgctxt ""
"05070500.xhp\n"
"hd_id3156329\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\">Sheet</link>"
msgstr "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\"> ཤོག་ཁྲམ། </link>"
@@ -52040,7 +48516,6 @@ msgstr "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\"> ཤོག་
msgctxt ""
"05070500.xhp\n"
"par_id3151384\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/SheetPrintPage\">Specifies the elements to be included in the printout of all sheets with the current Page Style. Additionally, you can set the print order, the first page number, and the page scale.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/SheetPrintPage\"> ད་ལྟོའི་ཤོག་ལེབ་བཟོ་རྣམ་དང་གཅིག་ཁར་ཤོག་ལེབ་ཚུའི་དཔར་བསྐྲུན་ཡིག་ཆ་ནང་ ཁོངས་ཚུ་བསྡུ་ནི་ཨིན་པའི་ཆ་ཤས་ཚུ་གསལ་བཀོད་འབདཝ་ཨིན། ཁྱོད་ཀྱིས་ ཧེང་བཀལ་སྦེ་ དཔར་བསྐྲུན་རིམ་པ་དང་ ཤོག་ལེབ་ཨང་གྲངས་དང་པ་དང་དེ་ལས་ ཤོག་ལེབ་ཆ་ཚད་ཚུ་གཞི་སྒྲིག་འབད་ཚུགསཔ་ཨིན། </ahelp>"
@@ -52049,7 +48524,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/SheetPrintPage\"> ད་ལ
msgctxt ""
"05070500.xhp\n"
"hd_id3150542\n"
-"3\n"
"help.text"
msgid "Print"
msgstr "དཔར་བསྐྲུན་འབད།"
@@ -52058,7 +48532,6 @@ msgstr "དཔར་བསྐྲུན་འབད།"
msgctxt ""
"05070500.xhp\n"
"par_id3125863\n"
-"4\n"
"help.text"
msgid "Defines which elements of the spreadsheet are to be printed."
msgstr "ཤོག་ཁྲམ་གྱི་ ཆ་ཤས་ག་དང་ག་རང་དཔར་བསྐྲུན་འབད་ནི་ཨིན་ན་ ངེས་འཛིན་འབདཝ་ཨིན།"
@@ -52067,7 +48540,6 @@ msgstr "ཤོག་ཁྲམ་གྱི་ ཆ་ཤས་ག་དང་ག
msgctxt ""
"05070500.xhp\n"
"hd_id3151041\n"
-"5\n"
"help.text"
msgid "Column and row headers"
msgstr "ཀེར་ཐིག་དང་གྲལ་ཐིག་མགོ་ཡིག་ཚུ།"
@@ -52076,7 +48548,6 @@ msgstr "ཀེར་ཐིག་དང་གྲལ་ཐིག་མགོ་ཡ
msgctxt ""
"05070500.xhp\n"
"par_id3147228\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_HEADER\">Specifies whether you want the column and row headers to be printed.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_HEADER\"> ཁྱོད་ཀྱིས་ ཀེར་ཐིག་དང་ གྲལ་ཐིག་མགོ་ཡིག་ཚུ་དཔར་བསྐྲུན་འབད་ནི་ཨིན་མེན་ གསལ་བཀོད་འབདཝ་ཨིན། </ahelp>"
@@ -52085,7 +48556,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_HEADER\"> ཁྱ
msgctxt ""
"05070500.xhp\n"
"hd_id3150439\n"
-"7\n"
"help.text"
msgid "Grid"
msgstr "གིརིཌི།"
@@ -52094,7 +48564,6 @@ msgstr "གིརིཌི།"
msgctxt ""
"05070500.xhp\n"
"par_id3147436\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_GRID\">Prints out the borders of the individual cells as a grid.</ahelp> For the view on screen, make your choice under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"View\"><emph>View</emph></link> - <emph>Grid lines</emph>."
msgstr ""
@@ -52103,7 +48572,6 @@ msgstr ""
msgctxt ""
"05070500.xhp\n"
"hd_id3145750\n"
-"9\n"
"help.text"
msgid "Comments"
msgstr "བསམ་བཀོད།"
@@ -52112,7 +48580,6 @@ msgstr "བསམ་བཀོད།"
msgctxt ""
"05070500.xhp\n"
"par_id3150010\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NOTES\">Prints the comments defined in your spreadsheet.</ahelp> They will be printed on a separate page, along with the corresponding cell reference."
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NOTES\"> ཁྱོད་རའི་ཤོག་ཁྲམ་ནང་ལུ་ངེས་འཛིན་འབད་ཡོད་པའི་ དྲན་འཛིན་ཚུ་དཔར་བསྐྲུན་འབདཝ་ཨིན། </ahelp> དེ་ཚུ་ ཆ་མཉམ་པའི་ནང་ཐིག་གཞི་བསྟུན་དང་བཅསཔ་སྦེ་ ཤོག་ལེབ་སོ་སོར་གཅིག་ནང་དཔར་བསྐྲུན་འབད་ནི་ཨིན།"
@@ -52121,7 +48588,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NOTES\"> ཁྱོ
msgctxt ""
"05070500.xhp\n"
"hd_id3154944\n"
-"11\n"
"help.text"
msgid "Objects/images"
msgstr ""
@@ -52130,7 +48596,6 @@ msgstr ""
msgctxt ""
"05070500.xhp\n"
"par_id3149581\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_OBJECTS\">Includes all inserted objects (if printable) and graphics with the printed document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_OBJECTS\"> བཙུགས་ཏེ་ཡོད་པའི་དངོས་པོ་ཚུ་དང་ ཚད་རིས་ཚུ་ (དཔར་བསྐྲུན་འབད་བཏུབ་ཨིན་པ་ཅིན་)དཔར་བསྐྲུན་འབད་ཡོད་པའི་ཡིག་ཆ་དང་བཅསཔ་སྦེ་གྲངས་སུ་བཙུགསཔ་ཨིན། </ahelp>"
@@ -52139,7 +48604,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_OBJECTS\"> བཙ
msgctxt ""
"05070500.xhp\n"
"hd_id3149377\n"
-"13\n"
"help.text"
msgid "Charts"
msgstr "དཔེ་རིས་ཚུ།"
@@ -52148,7 +48612,6 @@ msgstr "དཔེ་རིས་ཚུ།"
msgctxt ""
"05070500.xhp\n"
"par_id3148455\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_CHARTS\">Prints the charts that have been inserted into your spreadsheet.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_CHARTS\"> ཁྱོད་ཀྱི་ ཤོག་ཁྲམ་ཚུ་ནང་བཙུགས་ཡོད་པའི་ དཔེ་རིས་ཚུ་དཔར་བསྐྲུན་འབདཝ་ཨིན། </ahelp>"
@@ -52157,7 +48620,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_CHARTS\"> ཁྱ
msgctxt ""
"05070500.xhp\n"
"hd_id3153418\n"
-"15\n"
"help.text"
msgid "Drawing Objects"
msgstr "པར་རིས་དངོས་པོ་ཚུ།"
@@ -52166,7 +48628,6 @@ msgstr "པར་རིས་དངོས་པོ་ཚུ།"
msgctxt ""
"05070500.xhp\n"
"par_id3149122\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_DRAWINGS\">Includes all drawing objects in the printed document.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_DRAWINGS\"> དཔར་བསྐྲུན་འབད་ཡོད་པའི་ཡིག་ཆ་ནང་ པར་རིས་དངོས་པོ་ཚུ་ཆ་མཉམ་རང་གྲངས་སུ་བཙུགསཔ་ཨིན། </ahelp>"
@@ -52175,7 +48636,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_DRAWINGS\"> དཔ
msgctxt ""
"05070500.xhp\n"
"hd_id3150330\n"
-"17\n"
"help.text"
msgid "Formulas"
msgstr "མན་ངག་ཚུ།"
@@ -52184,7 +48644,6 @@ msgstr "མན་ངག་ཚུ།"
msgctxt ""
"05070500.xhp\n"
"par_id3153715\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_FORMULAS\">Prints the formulas contained in the cells, instead of the results.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_FORMULAS\"> གྲུབ་འབྲས་ཚུའི་ཚབ་མ་ལུ་ ནང་ཐིག་ཚུ་ནང་ཤོམ་ཏེ་ཡོད་པའི་མན་ངག་ཚུ་དཔར་བསྐྲུན་འབདཝ་ཨིན། </ahelp>"
@@ -52193,7 +48652,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_FORMULAS\"> གྲ
msgctxt ""
"05070500.xhp\n"
"hd_id3156385\n"
-"19\n"
"help.text"
msgid "Zero Values"
msgstr "ཀླད་ཀོར་གནས་གོང་ཚུ།"
@@ -52202,7 +48660,6 @@ msgstr "ཀླད་ཀོར་གནས་གོང་ཚུ།"
msgctxt ""
"05070500.xhp\n"
"par_id3149258\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NULLVALS\">Specifies that cells with a zero value are printed.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NULLVALS\"> གནས་གོང་ཀླད་ཀོར་དང་གཅིག་ཁར་ཡོད་པའི་ནང་ཐིག་ཚུ་དཔར་བསྐྲུན་འབད་ཡོདཔ་སྦེ་གསལ་བཀོད་འབདཝ་ཨིན། </ahelp>"
@@ -52211,7 +48668,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NULLVALS\"> གན
msgctxt ""
"05070500.xhp\n"
"hd_id3154022\n"
-"21\n"
"help.text"
msgid "Page Order"
msgstr "ཤོག་ལེབ་གོ་རིམ།"
@@ -52220,7 +48676,6 @@ msgstr "ཤོག་ལེབ་གོ་རིམ།"
msgctxt ""
"05070500.xhp\n"
"par_id3166423\n"
-"22\n"
"help.text"
msgid "Defines the order in which data in a sheet is numbered and printed when it does not fit on one printed page."
msgstr "དཔར་བསྐྲུན་འབད་ཡོད་པའི་ཤོག་ལེབ་གཅིག་ནང་ཚུད་སྒྲིག་མ་འབད་བའི་སྐབས་སུ་ཤོག་ལེབ་ནང་ལུ་གནད་སྡུད་དེ་ཨང་བཏགས་པ་དང་དཔར་བསྐྲུན་འབད་ཡོད་པའི་གོ་རིམ་ངེས་འཛིན་འབདཝ་ཨིན།"
@@ -52229,7 +48684,6 @@ msgstr "དཔར་བསྐྲུན་འབད་ཡོད་པའི་ཤ
msgctxt ""
"05070500.xhp\n"
"hd_id3152580\n"
-"23\n"
"help.text"
msgid "Top to bottom, then right"
msgstr "མགུ་ལས་མཇུག་ དེ་ལས་ གཡས་ལུ།"
@@ -52238,7 +48692,6 @@ msgstr "མགུ་ལས་མཇུག་ དེ་ལས་ གཡས་ལ
msgctxt ""
"05070500.xhp\n"
"par_id3150205\n"
-"24\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_TOPDOWN\">Prints vertically from the left column to the bottom of the sheet.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_TOPDOWN\"> ཤོག་ལེབ་ཀྱི་ཀེར་ཐིག་གཡོན་ལས་མཇུག་ཚུན་ཀེར་ཕྲང་སྦེ་དཔར་བསྐྲུན་འབདཝ་ཨིན། </ahelp>"
@@ -52247,7 +48700,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_TOPDOWN\"> ཤོ
msgctxt ""
"05070500.xhp\n"
"hd_id3150786\n"
-"25\n"
"help.text"
msgid "Left to right, then down"
msgstr "གཡོན་ལས་གཡས་དེ་ལས་མར།"
@@ -52256,7 +48708,6 @@ msgstr "གཡོན་ལས་གཡས་དེ་ལས་མར།"
msgctxt ""
"05070500.xhp\n"
"par_id3154657\n"
-"26\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_LEFTRIGHT\">Prints horizontally from the top row of the sheet to the right column.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_LEFTRIGHT\"> ཤོག་ལེབ་ཀྱི་མགུའི་གྲལ་ཐིག་ལས་ ཀེར་ཐིག་གཡས་ཚུན་ ཐད་སྙོམས་སྦེ་དཔར་བསྐྲུན་འབདཝ་ཨིན། </ahelp>"
@@ -52265,7 +48716,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_LEFTRIGHT\"> ཤ
msgctxt ""
"05070500.xhp\n"
"hd_id3150887\n"
-"27\n"
"help.text"
msgid "First page number"
msgstr "ཤོག་ལེབ་ཨང་དང་པམ།"
@@ -52274,17 +48724,14 @@ msgstr "ཤོག་ལེབ་ཨང་དང་པམ།"
msgctxt ""
"05070500.xhp\n"
"par_id3155378\n"
-"28\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_PAGENO\">Select this option if you want the first page to start with a number other than 1.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_PAGENO\"> ཁྱོད་ཀྱིས་ ཤོག་ལེབ་དང་པམ་དེ་ ཨང་གྲངས་ ༡ མ་ཡིན་པ་དང་གཅིག་ཁར་འགོ་བཙུགས་དགོ་མནོ་བ་ཅིན་ འ་ནི་གདམ་ཁ་སེལ་འཐུ་འབད། </ahelp>"
#: 05070500.xhp
-#, fuzzy
msgctxt ""
"05070500.xhp\n"
"par_id3145389\n"
-"35\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_PAGENO\">Enter the number of the first page.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGENUM\">དཔར་བསྐྲུན་འབད་ནི་གི་ཤོག་ལེབ་ཀྱི་ མང་མཐའ་གྲངས་འདི་ཐོ་བཀོད་འབད།</ahelp>"
@@ -52293,7 +48740,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGENUM\">ད
msgctxt ""
"05070500.xhp\n"
"hd_id3146978\n"
-"29\n"
"help.text"
msgid "Scale"
msgstr "ཆ་ཚད།"
@@ -52302,7 +48748,6 @@ msgstr "ཆ་ཚད།"
msgctxt ""
"05070500.xhp\n"
"par_id3149408\n"
-"30\n"
"help.text"
msgid "Defines a page scale for the printed spreadsheet."
msgstr "དཔར་བསྐྲུན་འབད་ཡོད་པའི་ ཤོག་ཁྲམ་དོན་ལུ་ ཤོག་ལེབ་ཆ་ཚད་ངེས་འཛིན་འབདཝ་ཨིན།"
@@ -52320,14 +48765,13 @@ msgctxt ""
"05070500.xhp\n"
"par_idN10971\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/comboLB_SCALEMODE\">Select a scaling mode from the list box. Appropriate controls will be shown at the side of the list box.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/comboLB_SCALEMODE\"> ཐོ་ཡིག་སྒྲོམ་ནང་ལས་ ཚད་འཇལ་ནི་ཐབས་ལམ་སེལ་འཐུ་འབད། འོས་ལྡན་ཚད་འཛིན་ཚུ་ ཐོ་ཡིག་སྒྲོམ་གྱི་ཟུར་ཁ་ལུ་སྟོན་ཡོདཔ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/comboLB_SCALEMODE\">Select a scaling mode from the list box. Appropriate controls will be shown below the list box.</ahelp>"
+msgstr ""
#: 05070500.xhp
msgctxt ""
"05070500.xhp\n"
"hd_id3155089\n"
-"31\n"
"help.text"
msgid "Reduce/enlarge printout"
msgstr "དཔར་བསྐྲུན་ཆེར་བསྐྱེད་/མར་ཕབ་འབད།"
@@ -52336,7 +48780,6 @@ msgstr "དཔར་བསྐྲུན་ཆེར་བསྐྱེད་/མ
msgctxt ""
"05070500.xhp\n"
"par_id3159171\n"
-"32\n"
"help.text"
msgid "Specifies a scaling factor to scale all printed pages."
msgstr "དཔར་བསྐྲུན་འབད་ཡོད་པའི་ཤོག་ལེབ་ཚུ་ཚད་འཇལ་ནིའི་དོན་ལུ་ ཚད་འཇལ་ཆ་རྐྱེན་གསལ་བཀོདའབདཝ་ཨིན།"
@@ -52353,10 +48796,9 @@ msgstr "ཚད་འཇལ་ནིའི་ཆ་རྐྱེན།"
msgctxt ""
"05070500.xhp\n"
"par_id3152899\n"
-"36\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEALL\" visibility=\"hidden\">Enter a scaling factor. Factors less than 100 reduce the pages, higher factors enlarge the pages.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEALL\" visibility=\"hidden\"> ཚད་འཇལ་ནི་ཆ་རྐྱེན་བཙུགས། ༡༠༠ ལས་ཉུང་མི་ཆ་རྐྱེན་ཚུ་གིས་ ཤོག་ལེབ་ མར་ཕབ་འབདཡོདཔ་ད་ ཆ་རྐྱེན་མཐོ་བ་ཚུ་གིས་ ཤོག་ལེབ་ཚུ་ སྦོམ་བཟོཝ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEALL\">Enter a scaling factor. Factors less than 100 reduce the pages, higher factors enlarge the pages.</ahelp>"
+msgstr ""
#: 05070500.xhp
msgctxt ""
@@ -52434,7 +48876,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEHEIGHT\">
msgctxt ""
"05070500.xhp\n"
"hd_id3148868\n"
-"33\n"
"help.text"
msgid "Fit print range(s) on number of pages"
msgstr "ཤོག་ལེབ་ཚུའི་ཨང་གུ་ལུ་དཔར་བསྐྲུན་ཁྱབ་ཚད་ཚུ་ཚུད་སྒྲིག་འབདཝ་ཨིན།"
@@ -52443,7 +48884,6 @@ msgstr "ཤོག་ལེབ་ཚུའི་ཨང་གུ་ལུ་དཔ
msgctxt ""
"05070500.xhp\n"
"par_id3145074\n"
-"34\n"
"help.text"
msgid "Specifies the maximum number of pages on which every sheet with the current Page Style is to be printed. The scale will be reduced as necessary to fit the defined number of pages."
msgstr "ཤོག་ལེབ་ཆ་མཉམ་གུ་ལུ་ད་ལྟོའི་ཤོག་ལེབ་བཟོ་རྣམ་དང་གཅིག་ཁར་དཔར་བསྐྲུན་འབད་ནི་ཨིན་པའི་ཤོག་ལེབ་ཚུའི་གྱངས་ཁ་མང་མཐའ་གསལ་བཀོད་འབདཝ་ཨིན། དགོས་མཁོ་བ་ཅིན་ འཇལ་ཚད་དེ་ ངེས་འཛིན་འབད་ཡོད་པའི་ཤོག་ལེབ་ཚུ་ཚུད་སྒྲིག་འབད་ནིའི་དོན་ལུ་མར་ཕབ་ནི་ཨིན།"
@@ -52460,7 +48900,6 @@ msgstr "ཤོག་ལེབ་ཚུའི་གྱངས་ཁ།"
msgctxt ""
"05070500.xhp\n"
"par_id3144507\n"
-"37\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGENUM\">Enter the maximum number of pages to be printed.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGENUM\">དཔར་བསྐྲུན་འབད་ནི་གི་ཤོག་ལེབ་ཀྱི་ མང་མཐའ་གྲངས་འདི་ཐོ་བཀོད་འབད།</ahelp>"
@@ -52477,7 +48916,6 @@ msgstr "ཁྱབ་ཚད་ཚུ་དཔར་བསྐྲུན་འབད
msgctxt ""
"05080000.xhp\n"
"hd_id3154013\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05080000.xhp\" name=\"Print Ranges\">Print Ranges</link>"
msgstr "<link href=\"text/scalc/01/05080000.xhp\" name=\"Print Ranges\"> ཁྱབ་ཚད་ཚུ་དཔར་བསྐྲུན་འབད། </link>"
@@ -52486,7 +48924,6 @@ msgstr "<link href=\"text/scalc/01/05080000.xhp\" name=\"Print Ranges\"> ཁྱ
msgctxt ""
"05080000.xhp\n"
"par_id3155855\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Manages print ranges. Only cells within the print ranges will be printed.</ahelp>"
msgstr "<ahelp hid=\".\"> དཔར་བསྐྲུན་ཁྱབ་ཚད་ཚུ་འཛིན་སྐྱོང་འབདཝ་ཨིན། དཔར་བསྐྲུན་ཁྱབ་ཚད་ཚུའི་ནང་འཁོད་ནང་ཡོད་མི་ནང་ཐིག་ཚུ་རྐྱངམ་ཅིག་དཔར་བསྐྲུན་འབད་ནི་ཨིན། </ahelp>"
@@ -52495,7 +48932,6 @@ msgstr "<ahelp hid=\".\"> དཔར་བསྐྲུན་ཁྱབ་ཚད་
msgctxt ""
"05080000.xhp\n"
"par_id3146119\n"
-"4\n"
"help.text"
msgid "If you do not define any print range manually, Calc assigns an automatic print range to include all the cells that are not empty."
msgstr "ཁྱོད་ཀྱིས་ དཔར་བསྐྲུན་ཁྱབ་ཚད་གང་རུང་ཅིག་ལག་ཐོག་ལས་ངེས་འཛིན་མ་འབད་བ་ཅིན་ སྟོངམ་མ་ཡིན་པའི་ནང་ཐིག་ཚུ་གྲངས་སུ་རྩིས་ནིའི་དོན་ལུ་ ཀེལ་སི་གིས་ རང་བཞིན་གྱིས་དཔར་བསྐྲུན་ཁྱབ་ཚད་གཅིག་འགན་སྤྲོདཔ་ཨིན།"
@@ -52504,7 +48940,6 @@ msgstr "ཁྱོད་ཀྱིས་ དཔར་བསྐྲུན་ཁྱ
msgctxt ""
"05080000.xhp\n"
"hd_id3154729\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Edit\">Edit</link>"
msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Edit\"> ཞུན་དག་འབད། </link>"
@@ -52521,7 +48956,6 @@ msgstr "ངེས་འཛིན་འབད་ནི།"
msgctxt ""
"05080100.xhp\n"
"hd_id3145673\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Define</link>"
msgstr "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\"> ངེས་འཛིན་འབད། </link>"
@@ -52530,7 +48964,6 @@ msgstr "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\"> ངེས་
msgctxt ""
"05080100.xhp\n"
"par_id3153896\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DefinePrintArea\">Defines an active cell or selected cell area as the print range.</ahelp>"
msgstr "<ahelp hid=\".uno:DefinePrintArea\"> ཤུགས་ལྡན་ནང་ཐིག་ཡང་ན་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་མངའ་ཁོངས་འདི་དཔར་བསྐྲུན་ཁྱབ་ཚད་བཟུམ་སྦེ་ངེས་འཛིན་འབདཝ་ཨིན། </ahelp>"
@@ -52544,11 +48977,9 @@ msgid "Clear"
msgstr ""
#: 05080200.xhp
-#, fuzzy
msgctxt ""
"05080200.xhp\n"
"hd_id3153562\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05080200.xhp\" name=\"Clear\">Clear</link>"
msgstr "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\"> ཀེར་ཐིག </link>"
@@ -52557,7 +48988,6 @@ msgstr "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\"> ཀེར་
msgctxt ""
"05080200.xhp\n"
"par_id3148550\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DeletePrintArea\">Removes the defined print area.</ahelp>"
msgstr "<ahelp hid=\".uno:DeletePrintArea\"> ངེས་འཛིན་འབད་ཡོད་པའི་དཔར་བསྐྲུན་མངའ་ཁོངས་ངེས་འཛིན་འབདཝ་ཨིན། </ahelp>"
@@ -52574,7 +49004,6 @@ msgstr "དཔར་བསྐྲུན་ཁྱབ་ཚད་ཚུ་ཞུན
msgctxt ""
"05080300.xhp\n"
"hd_id3153088\n"
-"1\n"
"help.text"
msgid "Edit Print Ranges"
msgstr "དཔར་བསྐྲུན་ཁྱབ་ཚད་ཚུ་ཞུན་དག་འབད།"
@@ -52583,7 +49012,6 @@ msgstr "དཔར་བསྐྲུན་ཁྱབ་ཚད་ཚུ་ཞུན
msgctxt ""
"05080300.xhp\n"
"par_id3159488\n"
-"2\n"
"help.text"
msgid "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">Opens a dialog where you can specify the print range.</ahelp></variable> You can also set the rows or columns which are to be repeated in every page."
msgstr "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\"> ཁྱོད་ཀྱིས་དཔར་བསྐྲུན་ཁྱབ་ཚད་གསལ་བཀོད་འབད་བཏུབ་ས་ལུ་ཌའི་ལོག་གཅིག་ཁ་ཕྱེཝ་ཨིན། </ahelp></variable> ཁྱོད་ཀྱིས་ ཤོག་ལེབ་ག་ར་ནང་ཡང་བསྐྱར་འབད་ནི་ཨིན་པའི་ གྲལ་ཐིག་ཡང་ན་ཀེར་ཐིག་ཚུ་གཞི་སྒྲིག་འབད་ཚུགསཔ་ཨིན།"
@@ -52592,7 +49020,6 @@ msgstr "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">
msgctxt ""
"05080300.xhp\n"
"hd_id3156281\n"
-"3\n"
"help.text"
msgid "Print range"
msgstr "ཁྱབ་ཚད་དཔར་བསྐྲུན་འབད།"
@@ -52601,7 +49028,6 @@ msgstr "ཁྱབ་ཚད་དཔར་བསྐྲུན་འབད།"
msgctxt ""
"05080300.xhp\n"
"par_id3147228\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/printareasdialog/edprintarea\">Allows you to modify a defined print range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/printareasdialog/edprintarea\"> ཁྱོད་ལུ་ངེས་འཛིན་འབད་ཡོད་པའི་དཔར་བསྐྲུན་ཁྱབ་ཚད་ལེགས་བཅོས་འབད་བཅུགཔ་ཨིན། </ahelp>"
@@ -52610,7 +49036,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/printareasdialog/edprintarea\"> ཁྱོ
msgctxt ""
"05080300.xhp\n"
"par_id3145174\n"
-"5\n"
"help.text"
msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
msgstr ""
@@ -52619,7 +49044,6 @@ msgstr ""
msgctxt ""
"05080300.xhp\n"
"par_id3145272\n"
-"6\n"
"help.text"
msgid "In the right-hand text box, you can enter a print range by reference or by name. If the cursor is in the <emph>Print range</emph> text box, you can also select the print range in the spreadsheet with your mouse."
msgstr "གཡས་ཁ་ཐུག་གི་ཚིག་ཡིག་སྒྲོམ་ནང་ལུ་ ཁྱོད་ཀྱིས་ གཞི་བསྟུན་ནའམ་མིང་གི་ཐོག་ལས་དཔར་བསྐྲུན་ཁྱབ་ཚད་གཅིག་བཙུགས་ཚུགསཔ་ཨིན། འོད་རྟགས་དེ་ <emph> དཔར་བསྐྲུན་ཁྱབ་ཚད་ </emph> ཚིག་ཡིག་སྒྲོམ་ནང་ལུ་ཡོད་པ་ཅིན་ ཁྱོད་ཀྱིས་ ཁྱོད་རའི་མཱའུསི་དང་གཅིག་ཁར་ ཤོག་ཁྲམ་ནང་དཔར་བསྐྲུན་ཁྱབ་ཚད་སེལ་འཐུ་འབད་ཚུགསཔ་ཨིན།"
@@ -52628,7 +49052,6 @@ msgstr "གཡས་ཁ་ཐུག་གི་ཚིག་ཡིག་སྒྲ
msgctxt ""
"05080300.xhp\n"
"hd_id3149260\n"
-"7\n"
"help.text"
msgid "Rows to repeat"
msgstr "ཡང་བསྐྱར་འབད་ནི་ཨིན་པའི་གྲལ་ཐིག་ཚུ།"
@@ -52637,7 +49060,6 @@ msgstr "ཡང་བསྐྱར་འབད་ནི་ཨིན་པའི་
msgctxt ""
"05080300.xhp\n"
"par_id3147426\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatrow\">Choose one or more rows to print on every page. In the right text box enter the row reference, for example, \"1\" or \"$1\" or \"$2:$3\".</ahelp> The list box displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating row."
msgstr "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatrow\"> ཤོག་ལེབ་ཆ་མཉམ་ནང་དཔར་བསྐྲུན་འབད་ནིའི་དོན་ལུ་ གྲལ་ཐིག་གཅིག་ཡང་ན་མངམ་གདམ། གཡས་ཁ་ཐུག་གི་ཚིག་ཡིག་སྒྲོམ་ནང་ལུ་ གྲལ་ཐིག་གཞི་བསྟུན་བཙུགས་ དཔེ་འབད་བ་ཅིན་ \"1\" or $1\" ཡང་ན་ \"$2:$3\" བཟུམ། </ahelp> ཐོ་ཡིག་སྒྲོམ་གྱིས་ <emph>- ངེས་འཛིན་འབད་ཡོད་པའི་ལག་ལེན་པ་ -</emph> བཀྲམ་སྟོན་འབདཝ་ཨིན། ངེས་འཛིན་འབད་ཡོད་པའི་ཡང་བསྐྱར་གྲལ་ཐིག་རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་ ཁྱོད་ཀྱིས་ <emph>- ཅི་མེད་ -</emph> སེལ་འཐུ་འབད་བཏུབ་ཨིན།"
@@ -52646,7 +49068,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatrow\"> ཤོག
msgctxt ""
"05080300.xhp\n"
"par_id3155418\n"
-"9\n"
"help.text"
msgid "You can also define repeating rows by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Rows to repeat</emph> text field in the dialog."
msgstr "འོད་རྟགས་དེ་ <emph> ཌའི་ལོག་ནང་ཚིག་ཡིག་ས་སྒོ་ཡང་བསྐྱར་འབད་ནིའི་དོན་ལུ་གྲལ་ཐིག་ཚུ་ནང་ཡོད་པ་ཅིན་ </emph> ཁྱོད་ཀྱིས་ མཱའུསི་དེ་ཤོག་ཁྲམ་ནང་ལུ་འདྲུད་པའི་ཐོག་ལས་ ཡང་བསྐྱར་གྲལ་ཐིག་ཚུ་ངེས་འཛིན་འབད་ཚུགསཔ་ཨིན།"
@@ -52655,7 +49076,6 @@ msgstr "འོད་རྟགས་དེ་ <emph> ཌའི་ལོག་ན
msgctxt ""
"05080300.xhp\n"
"hd_id3149581\n"
-"10\n"
"help.text"
msgid "Columns to repeat"
msgstr "ཡང་བསྐྱར་འབད་ནི་ཨིན་པའི་ཀེར་ཐིག་ཚུ།"
@@ -52664,7 +49084,6 @@ msgstr "ཡང་བསྐྱར་འབད་ནི་ཨིན་པའི་
msgctxt ""
"05080300.xhp\n"
"par_id3155602\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatcol\">Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\".</ahelp> The list box then displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating column."
msgstr "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatcol\"> ཤོག་ལེབ་ཆ་མཉམ་ནང་ལུ་དཔར་བསྐྲུན་འབད་ནིའི་དོན་ལུ་ ཀེར་ཐིག་གཅིག་ཡང་ན་མངམ་གདམ། གཡས་ཁ་ཐུག་གི་ཚིག་ཡིག་སྒྲོམ་ནང་ ཀེར་ཐིག་གཞི་བསྟུན་ཚུ་བཙུགས་ དཔེ་འབད་བ་ཅིན་ \"A\" or \"AB\" ཡང་ན་ \"$C:$E\" བཟུམ། </ahelp> དེ་ལས་འབདན་ ཐོ་ཡིག་སྒྲོམ་གྱི་ <emph>- ངེས་འཛིན་འབད་ཡོད་པའི་ལག་ལེན་པ་ -</emph> བཀྲམ་སྟོན་འབདཝ་ཨིན། ཡང་བསྐྱར་ཀེར་ཐིག་ངེས་འཛིན་འབད་ཡོདཔ་དེ་རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་ ཁྱོད་ཀྱིས་ <emph>- ཅི་མེད་ -</emph> སེལ་འཐུ་འབད་བཏུབ་ཨིན།"
@@ -52673,7 +49092,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/printareasdialog/edrepeatcol\"> ཤོག
msgctxt ""
"05080300.xhp\n"
"par_id3150749\n"
-"12\n"
"help.text"
msgid "You can also define repeating columns by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Columns to repeat</emph> text field in the dialog."
msgstr "འོད་རྟགས་དེ་ <emph> ཌའི་ལོག་ནང་ ཚིག་ཡིག་ས་སྒོ་ཡང་བསྐྱར་འབད་ནིའི་དོན་ལུ་ཀེར་ཐིག་ནང་ན་ཡོད་པ་ཅིན་ </emph> ཁྱོད་ཀྱིས་ མཱའུསི་དེ་ཤོག་ཁྲམ་ནང་ལུ་འདྲུད་པའི་ཐོག་ལས་ ཡང་བསྐྱར་འབད་བའི་ཀེར་ཐིག་ཚུ་ངེས་འཛིན་འབད་ཚུགསཔ་ཨིན།"
@@ -52690,7 +49108,6 @@ msgstr "ཁ་སྐོང་།"
msgctxt ""
"05080400.xhp\n"
"hd_id3149457\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Add</link>"
msgstr "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\"> ཁ་སྐོང་། </link>"
@@ -52699,7 +49116,6 @@ msgstr "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\"> ཁ་སྐོ
msgctxt ""
"05080400.xhp\n"
"par_id3156423\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AddPrintArea\">Adds the current selection to the defined print areas.</ahelp>"
msgstr "<ahelp hid=\".uno:AddPrintArea\"> ད་ལྟོའི་སེལ་འཐུ་འདི་ངེས་འཛིན་འབད་ཡོད་པའི་དཔར་བསྐྲུན་མངའ་ཁོངས་ཚུ་ལུ་ཁ་སྐོང་འབདཝ་ཨིན། </ahelp>"
@@ -52713,7 +49129,6 @@ msgid "Styles and Formatting"
msgstr "བཟོ་རྣམ་ཚུ་དང་རྩ་སྒྲིག་འབད་ནི།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"bm_id3150447\n"
@@ -52722,7 +49137,6 @@ msgid "<bookmark_value>Stylist, see Styles and Formatting window</bookmark_value
msgstr "<bookmark_value> བཟོ་རྣམ་པ། བཟོ་རྣམ་ཚུ་དང་སྒོ་སྒྲིག་རྩ་སྒྲིག་འབད་ནི་དེ་བལྟ། </bookmark_value><bookmark_value> བཟོ་རྣམ་ཚུ་དང་ སྒོ་སྒྲིག་རྩ་སྒྲིག་འབད་ནི། </bookmark_value><bookmark_value> རྩ་སྒྲིག་ཚུ། བཟོ་རྣམ་ཚུ་དང་སྒོ་སྒྲིག་རྩ་སྒྲིག་འབད་ནི། </bookmark_value><bookmark_value> རྩ་སྒྲིག་འབད་ནི། བཟོ་རྣམ་ཚུ་དང་ སྒོ་སྒྲིག་རྩ་སྒྲིག་འབད་ནི། </bookmark_value><bookmark_value> བཟོ་རྣམ་ཚུ་འཇུག་སྤྱོད་འབད་ནིའི་དོན་ལུ་ ཚོན་སྤོག་ཏོ། </bookmark_value>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3150447\n"
@@ -52739,7 +49153,6 @@ msgid "Use the Styles and Formatting deck of the Sidebar to assign styles to cel
msgstr ""
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3149665\n"
@@ -52748,7 +49161,6 @@ msgid "The Styles and Formatting <link href=\"text/shared/00/00000005.xhp#andock
msgstr "ཡིག་ཆ་ཞུན་དག་འབད་བའི་སྐབས་སུ་ <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\"> བཟོ་རྣམ་ཚུ་དང་ རྩ་སྒྲིག་འབད་ནི་ </link> ཌོཀ་ཀེ་བཱལ་ཝིན་ཌོ་ཚུ་ ཁ་ཕྱེ་སྟེ་གནས་ཚུགསཔ་ཨིན།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3150012\n"
@@ -52757,7 +49169,6 @@ msgid "How to apply a cell style:"
msgstr "ནང་ཐིག་བཟོ་རྣམ་ག་དེ་སྦེ་འཇུག་སྤྱོད་འབད་ནི་ཨིནམ།:"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3159155\n"
@@ -52766,7 +49177,6 @@ msgid "Select the cell or cell range."
msgstr "ནང་ཐིག་ཡང་ན་ནང་ཐིག་ཁྱབ་ཚད་སེལ་འཐུ་འབད།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3145749\n"
@@ -52775,7 +49185,6 @@ msgid "Double-click the style in the Styles and Formatting window."
msgstr "བཟོ་རྣམ་ཚུ་དང་རྩ་སྒྲིག་འབད་ནི་སྒོ་སྒྲིག་ནང་ལུ་བཟོ་རྣམ་ལོག་བལྟབ་ཨེབ་གཏང་།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3153877\n"
@@ -52784,7 +49193,6 @@ msgid "Cell Styles"
msgstr "ནང་ཐིག་བཟོ་རྣམ་ཚུ།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3145801\n"
@@ -52793,7 +49201,6 @@ msgid "<ahelp hid=\".\">Displays the list of the available Cell Styles for <link
msgstr "<ahelp hid=\".uno:ParaStyle\"> ཐད་སྐོར་ནང་ཐིག་རྩ་སྒྲིག་འབད་ནི་དོན་ལུ་ <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"indirect cell formatting\"> འཐོབ་ཆོག་ཆོག་ཡོད་པའི་ ནང་ཐིག་བཟོ་རྣམ་ཚུའི་ཐོ་ཡིག་བཀྲམ་སྟོན་འབདཝ་ཨིན། </link>.</ahelp>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3150751\n"
@@ -52802,7 +49209,6 @@ msgid "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\"><alt id=\"alt_id31537
msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155754\"> ངོས་དཔར། </alt></image>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3154255\n"
@@ -52811,7 +49217,6 @@ msgid "Cell Styles"
msgstr "ནང་ཐིག་བཟོ་རྣམ་ཚུ།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3153963\n"
@@ -52820,7 +49225,6 @@ msgid "Page Styles"
msgstr "ཤོག་ལེབ་བཟོ་རྣམ་ཚུ།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3147003\n"
@@ -52829,16 +49233,14 @@ msgid "<ahelp hid=\".\">Displays the Page Styles available for indirect page for
msgstr "<ahelp hid=\".uno:PageStyle\"> ཐད་སྐོར་ཤོག་ལེབ་བཟོ་རྣམ་རྩ་སྒྲིག་འབད་ནི་གི་དོན་ལུ་ འཐོབ་ཆོག་ཆོག་ཡོད་པའི་ ཤོག་ལེབ་བཟོ་རྣམ་ཚུ་བཀྲམ་སྟོན་འབདཝ་ཨིན། </ahelp>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3159100\n"
"help.text"
-msgid "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\"><alt id=\"alt_id3149814\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155754\"> ངོས་དཔར། </alt></image>"
+msgid "<image id=\"img_id3149814\" src=\"sw/res/sf04.png\"><alt id=\"alt_id3149814\">Icon</alt></image>"
+msgstr ""
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3150361\n"
@@ -52847,7 +49249,6 @@ msgid "Page Styles"
msgstr "ཤོག་ལེབ་བཟོ་རྣམ་ཚུ།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3150202\n"
@@ -52856,16 +49257,14 @@ msgid "Fill Format Mode"
msgstr "རྩ་སྒྲིག་ཐབས་ལམ་བཀང་།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3155531\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\">Turns the Fill Format mode on and off. Use the paint can to assign the Style selected in the Styles and Formatting window.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\"> རྩ་སྒྲིག་བཀང་དེ་ ཨཱོན་དང་ ཨོཕ་བསྒྱིརཝ་ཨིན། བཟོ་རྣམ་ཚུ་དང་རྩ་སྒྲིག་འབད་ནི་ཝིན་ཌོ་ནང་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་བཟོ་རྣམ་སྤྲོད་ནིའི་དོན་ལུ་ཚོན་གཏང་ཚུགས་ལག་ལེན་འཐབ། </ahelp>"
+msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_WATERCAN\">Turns the Fill Format mode on and off. Use the paint can to assign the Style selected in the Styles and Formatting window.</ahelp>"
+msgstr ""
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3155087\n"
@@ -52874,7 +49273,6 @@ msgid "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\"><alt id=\"alt_id
msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155754\"> ངོས་དཔར། </alt></image>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3156198\n"
@@ -52883,7 +49281,6 @@ msgid "Fill Format Mode"
msgstr "རྩ་སྒྲིག་ཐབས་ལམ་བཀང་།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3148870\n"
@@ -52892,7 +49289,6 @@ msgid "How to apply a new style with the paint can:"
msgstr "ཚོན་གཏང་ནི་ཀེན་དང་ བཅསཔ་སྦེ་ བཟོ་རྣམ་གསརཔ་དེ་ག་དེ་སྦེ་ འཇུག་སྤྱོད་འབད་ནི་སྨོ།:"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3145078\n"
@@ -52901,7 +49297,6 @@ msgid "Select the desired style from the Styles and Formatting window."
msgstr "བཟོ་རྣམ་དང་ རྩ་སྒྲིག་འབད་ནིའི་སྒོ་སྒྲིག་ལས་ རེ་འདུན་བསྐྱེད་ཡོད་པའི་བཟོ་རྣམ་སེལ་འཐུ་འབད།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3159098\n"
@@ -52910,7 +49305,6 @@ msgid "Click the <emph>Fill Format Mode</emph> icon."
msgstr "<emph> རྩ་སྒྲིག་ཐབས་ལམ་བཀང་ </emph> ངོས་དཔར་ཨེབ་གཏང་།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3148609\n"
@@ -52919,7 +49313,6 @@ msgid "Click a cell to format it, or drag your mouse over a certain range to for
msgstr "འདི་རྩ་སྒྲིག་འབད་ནིའི་དོན་ལུ་ ནང་ཐིག་གཅིག་ཨེབ་གཏང་ ཡང་ན་ ཁྱབ་ཚད་ཧྲིལ་བུ་རྩ་སྒྲིག་འབད་ནིའི་དོན་ལུ་ མཱའུསི་དེ་ཁྱབ་ཚད་ལ་ལོ་ཅིག་གུ་ལུ་འདྲུད། འ་ནི་བྱ་བ་དེ་ གཞན་མི་ནང་ཐིག་ཚུ་དང་ ཁྱབ་ཚད་ཚུ་ལུ་ ཡང་བསྐྱར་འབད།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3149438\n"
@@ -52928,7 +49321,6 @@ msgid "Click the <emph>Fill Format Mode</emph> icon again to exit this mode."
msgstr "འ་ནི་ཐབས་ལམ་ཕྱིར་ཐོན་ནིའི་དོན་ལས་ <emph> རྩ་སྒྲིག་ཐབས་ལམ་བཀང་ </emph> ལོག་སྟེ་རང་ཨེབ་གཏང་།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3153975\n"
@@ -52937,16 +49329,14 @@ msgid "New Style from Selection"
msgstr "སེལ་འཐུ་ལས་བཟོ་རྣམ་གསརཔ།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3149499\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\">Creates a new style based on the formatting of a selected object.</ahelp> Assign a name for the style in the <link href=\"text/shared/01/05140100.xhp\" name=\"Create Style\">Create Style</link> dialog."
-msgstr "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་དངོས་ཀྱི་རྩ་སྒྲིག་འབད་ནི་གུ་ལུ་གཞི་བཞག་སྟེ་ བཟོ་རྣམ་གསརཔ་གཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན། </ahelp> བཟོ་རྣམ་གསར་བསྐྲུན་འབད་ <link href=\"text/shared/01/05140100.xhp\" name=\"Create Style\"> ཌིའི་ལོག་ནང་ལུ་ </link> བཟོ་རྣམ་གྱི་དོན་ལུ་ མིང་གཅིག་འགན་སྤྲོད་འབད།"
+msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_NEWBYEXAMPLE\">Creates a new style based on the formatting of a selected object.</ahelp> Assign a name for the style in the <link href=\"text/shared/01/05140100.xhp\" name=\"Create Style\">Create Style</link> dialog."
+msgstr ""
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3150050\n"
@@ -52955,7 +49345,6 @@ msgid "<image id=\"img_id3154649\" src=\"cmd/sc_stylenewbyexample.png\"><alt id=
msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155754\"> ངོས་དཔར། </alt></image>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3146963\n"
@@ -52964,7 +49353,6 @@ msgid "New Style from Selection"
msgstr "སེལ་འཐུ་ལས་བཟོ་རྣམ་གསརཔ།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3153813\n"
@@ -52973,16 +49361,14 @@ msgid "Update Style"
msgstr "བཟོ་རྣམ་དུས་མཐུན་མཟོ།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3154707\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles and Formatting window with the current formatting of the selected object.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ དངོས་པོའི་ ད་ལྟོའི་རྩ་སྒྲིག་འབད་ནི་དང་བཅསཔ་སྦེ་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་བཟོ་རྣམ་ཚུ་དང་ རྩ་སྒྲིག་འབད་ནིའི་སྒོ་སྒྲིག་ནང་ བཟོ་རྣམ་དུས་མཐུནམ་བཟོཝ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles and Formatting window with the current formatting of the selected object.</ahelp>"
+msgstr ""
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3145118\n"
@@ -52991,7 +49377,6 @@ msgid "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\"><alt
msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155754\"> ངོས་དཔར། </alt></image>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3147501\n"
@@ -53012,8 +49397,8 @@ msgctxt ""
"05100000.xhp\n"
"par_idN109C2\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLATE_FMT\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་དབྱེ་རིམ་བཟོ་རྣམ་ལས་ བཟོ་རྣམ་ཚུའི་ཐོ་ཡིག་བཀྲམ་སྟོན་འབདཝ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"SFX2_HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
+msgstr ""
#: 05100000.xhp
msgctxt ""
@@ -53024,7 +49409,6 @@ msgid "In the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"con
msgstr "སྐབས་དོན་ དཀར་ཆག་ནང་ལུ་ <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\"> ཁྱོད་ཀྱིས་ </link> བཟོ་རྣམ་གསརཔ་གཅིག་གསར་བསྐྲུན་འབད་ནིའི་དོན་ལུ་ བརྡ་བཀོད་ཚུ་གདམ་ནི་ ལག་ལེན་པའིས་ངེསའཛིན་འབད་ཡོད་པའི་བཟོ་རྣམ་བཏོན་གཏང་ནི་ ཡང་ན་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་བཟོ་རྣམ་བསྒྱུར་བཅོས་ཚུ་འབད་ཚུགསཔ་ཨིན།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3149053\n"
@@ -53033,13 +49417,12 @@ msgid "Style Groups"
msgstr "བཟོ་རྣམ་སྡེ་ཚན་ཚུ།"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3147299\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLATE_FILTER\"> འཐོབ་ཚུགས་པའི་བཟོ་རྣམ་སྡེ་ཚན་ཚུ་ཐོ་བཀོད་འབདཝ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"SFX2_HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
+msgstr ""
#: 05100100.xhp
msgctxt ""
@@ -53117,7 +49500,6 @@ msgstr "རང་བཞིན་རྩ་སྒྲིག"
msgctxt ""
"05110000.xhp\n"
"hd_id3149666\n"
-"1\n"
"help.text"
msgid "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link></variable>"
msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\"> རང་བཞིན་རྩ་སྒྲིག </link></variable>"
@@ -53126,7 +49508,6 @@ msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" na
msgctxt ""
"05110000.xhp\n"
"par_id3145367\n"
-"2\n"
"help.text"
msgid "<variable id=\"autoformattext\"><ahelp hid=\".\">Use this command to apply an AutoFormat to a selected sheet area or to define your own AutoFormats.</ahelp></variable>"
msgstr "<variable id=\"autoformattext\"><ahelp hid=\".\"> འ་ནི་བརྡ་བཀོད་དེ་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ ཤོག་ཁྲམ་མངའ་ཁོངས་ལུ་ རང་བཞིན་རྩ་སྒྲིག་འཇུག་སྤྱོད་འབད་ནིའི་དོན་ལུ་དང་ ཡང་ན་ ཁྱོད་རའི་རང་བཞིན་རྩ་སྒྲིག་ངེས་འཛིན་འབད་ནིའི་དོན་ལུ་ ལག་ལེན་འཐབ། </ahelp></variable>"
@@ -53135,7 +49516,6 @@ msgstr "<variable id=\"autoformattext\"><ahelp hid=\".\"> འ་ནི་བར
msgctxt ""
"05110000.xhp\n"
"hd_id3148455\n"
-"3\n"
"help.text"
msgid "Format"
msgstr "རྩ་སྒྲིག"
@@ -53144,7 +49524,6 @@ msgstr "རྩ་སྒྲིག"
msgctxt ""
"05110000.xhp\n"
"par_id3145799\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/formatlb\">Choose a predefined AutoFormat to apply to a selected area in your sheet.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/formatlb\"> ཁྱོད་རའི་ཤོག་ཁྲམ་ནང་སེལ་འཐུ་གྲུབ་ཡོད་པའི་མངའ་ཁོངས་ལུ་འཇུག་སྤྱོད་འབད་ནིའི་དོན་ལུ་ སྔ་གོང་ངེས་འཛིན་འབད་ཡོད་པའི་རང་བཞིན་རྩ་སྒྲིག་གདམ། </ahelp>"
@@ -53153,7 +49532,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/formatlb\"> ཁྱོད
msgctxt ""
"05110000.xhp\n"
"hd_id3149410\n"
-"5\n"
"help.text"
msgid "Add"
msgstr "ཁ་སྐོང་།"
@@ -53162,7 +49540,6 @@ msgstr "ཁ་སྐོང་།"
msgctxt ""
"05110000.xhp\n"
"par_id3154017\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/add\">Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats.</ahelp> The <link href=\"text/shared/01/05150101.xhp\" name=\"Add AutoFormat\">Add AutoFormat</link> dialog then appears."
msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/add\"> ཁྱོད་ལུ་ སྔ་གོང་ནས་ངེས་འཛིན་འབད་ཡོད་པའི་རང་བཞིན་རྩ་སྒྲིག་ཚུའི་ཐོ་ཡིག་ལུ་ ཉུང་མཐའ་ ༤ x ༤ ནང་ཐིག་ཚུའི་ ཁྱབ་ཚད་ཀྱི་ ད་ལྟོའི་རྩ་སྒྲིག་འབད་ནི་ཁ་སྐོང་བརྐྱབ་བཅུགཔ་ཨིན། </ahelp> དེ་ལས་ <link href=\"text/shared/01/05150101.xhp\" name=\"Add AutoFormat\"> རང་བཞིན་རྩ་སྒྲིག་ཁ་སྐོང་ཌའི་ལོག་ </link> འབྱུངམ་ཨིན།"
@@ -53171,7 +49548,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/add\"> ཁྱོད་ལ
msgctxt ""
"05110000.xhp\n"
"par_id3153708\n"
-"29\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">Enter a name and click <emph>OK</emph>. </ahelp>"
msgstr "<ahelp hid=\"HID_SC_AUTOFMT_NAME\"> མིང་གཅིག་བཙུགས་བཞིནམ་ལས་ <emph> བཏུབ </emph>ཨེབ་གཏང་། </ahelp>"
@@ -53180,7 +49556,6 @@ msgstr "<ahelp hid=\"HID_SC_AUTOFMT_NAME\"> མིང་གཅིག་བཙུ
msgctxt ""
"05110000.xhp\n"
"hd_id3155961\n"
-"9\n"
"help.text"
msgid "Formatting"
msgstr "རྩ་སྒྲིག་འབད་ནི།"
@@ -53189,7 +49564,6 @@ msgstr "རྩ་སྒྲིག་འབད་ནི།"
msgctxt ""
"05110000.xhp\n"
"par_id3153965\n"
-"10\n"
"help.text"
msgid "In this section you can select or deselect the available formatting options. If you want to keep any of the settings currently in your spreadsheet, deselect the corresponding option."
msgstr "འ་ནི་དབྱེ་ཚན་ནང་ལུ་ ཁྱོད་ཀྱིས་ འཐོབ་ཆོག་ཆོག་སྦེ་ཡོད་མི་རྩ་སྒྲིག་འབད་ནིའི་གདམ་ཁ་ཚུ་སེལ་འཐུ་ཡང་ན་སེལ་འཐུ་འབད་བཤོལ་ཚུགསཔ་ཨིན། ཁྱོད་ཀྱིས་ ད་ལྟོ་ཡོད་པའི་སྒྲིག་སྟངས་གང་རུང་ཚུ་ ཁྱོད་རའི་ཤོག་ཁྲམ་ནང་བཞག་དགོ་འདོད་པ་ཅིན་ ཆ་མཉམ་པའི་གདམ་ཁ་སེལ་འཐུ་བཤོལ།"
@@ -53198,7 +49572,6 @@ msgstr "འ་ནི་དབྱེ་ཚན་ནང་ལུ་ ཁྱོད
msgctxt ""
"05110000.xhp\n"
"hd_id3154021\n"
-"11\n"
"help.text"
msgid "Number format"
msgstr "ཨང་གྲངས་རྩ་སྒྲིག"
@@ -53207,7 +49580,6 @@ msgstr "ཨང་གྲངས་རྩ་སྒྲིག"
msgctxt ""
"05110000.xhp\n"
"par_id3159239\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/numformatcb\">When marked, specifies that you want to retain the number format of the selected format.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/numformatcb\"> རྟགས་བཀལཝ་ད་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་རྩ་སྒྲིག་གི་རྩ་སྒྲིག་ཨང་ཁྱོད་རང་ལུ་བཞག་དགོ་མནོ་མི་དེ་གསལ་བཀོད་འབདཝ་ཨིན། </ahelp>"
@@ -53216,7 +49588,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/numformatcb\"> རྟག
msgctxt ""
"05110000.xhp\n"
"hd_id3149530\n"
-"13\n"
"help.text"
msgid "Borders"
msgstr "མཐའ་མཚམས་ཚུ།"
@@ -53225,7 +49596,6 @@ msgstr "མཐའ་མཚམས་ཚུ།"
msgctxt ""
"05110000.xhp\n"
"par_id3145259\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/bordercb\">When marked, specifies that you want to retain the border of the selected format.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/bordercb\"> རྟགས་བཀལཝ་ད་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་རྩ་སྒྲིག་གི་ ཁྱོད་རང་ལུ་བཞག་དགོ་མནོ་མི་མཐའ་མཚམས་དེ་ གསལ་བཀོད་འབདཝ་ཨིན། </ahelp>"
@@ -53234,7 +49604,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/bordercb\"> རྟགས
msgctxt ""
"05110000.xhp\n"
"hd_id3154657\n"
-"15\n"
"help.text"
msgid "Font"
msgstr "ཡིག་གཟུགས།"
@@ -53243,7 +49612,6 @@ msgstr "ཡིག་གཟུགས།"
msgctxt ""
"05110000.xhp\n"
"par_id3152990\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/fontcb\">When marked, specifies that you want to retain the font of the selected format.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/fontcb\"> རྟགས་བཀལཝ་ད་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་རྩ་སྒྲིག་གི་ཡིག་གཟུགས་ ཁྱོད་རང་ལུ་བཞག་དགོ་མནོ་མི་དེ་ གསལ་བཀོད་འབདཝ་ཨིན། </ahelp>"
@@ -53252,7 +49620,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/fontcb\"> རྟགས་
msgctxt ""
"05110000.xhp\n"
"hd_id3155379\n"
-"17\n"
"help.text"
msgid "Pattern"
msgstr "དཔེ་གཞི།"
@@ -53261,7 +49628,6 @@ msgstr "དཔེ་གཞི།"
msgctxt ""
"05110000.xhp\n"
"par_id3150368\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/patterncb\">When marked, specifies that you want to retain the pattern of the selected format.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/patterncb\"> རྟགས་བཀལཝ་ད་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་རྩ་སྒྲིག་གི་ དཔེ་གཞི་ཁྱོད་རང་ལུ་བཞག་དགོ་མནོ་མི་དེ་གསལ་བཀོད་འབདཝ་ཨིན། </ahelp>"
@@ -53270,7 +49636,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/patterncb\"> རྟགས
msgctxt ""
"05110000.xhp\n"
"hd_id3146115\n"
-"19\n"
"help.text"
msgid "Alignment"
msgstr "ཕྲང་སྒྲིག"
@@ -53279,7 +49644,6 @@ msgstr "ཕྲང་སྒྲིག"
msgctxt ""
"05110000.xhp\n"
"par_id3156445\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/alignmentcb\">When marked, specifies that you want to retain the alignment of the selected format.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/alignmentcb\"> རྟགས་བཀལཝ་ད་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་རྩ་སྒྲིག་གི་ ཕྲང་སྒྲིག་ ཁྱོད་རང་ལུ་བཞག་དགོ་མནོ་མི་དེ་ གསལ་བཀོད་འབདཝ་ཨིན། </ahelp>"
@@ -53288,7 +49652,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/alignmentcb\"> རྟག
msgctxt ""
"05110000.xhp\n"
"hd_id3155811\n"
-"21\n"
"help.text"
msgid "AutoFit width and height"
msgstr "རང་བཞིན་ཚུད་སྒྲིག་རྒྱ་ཚད་དང་མཐོ་ཚད།"
@@ -53297,7 +49660,6 @@ msgstr "རང་བཞིན་ཚུད་སྒྲིག་རྒྱ་ཚད
msgctxt ""
"05110000.xhp\n"
"par_id3148703\n"
-"22\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/autofitcb\">When marked, specifies that you want to retain the width and height of the selected cells of the selected format.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/autofitcb\"> རྟགས་བཀལཝ་ད་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་རྩ་སྒྲིག་གི་ རྒྱ་ཚད་དང་མཐོ་ཚད་ ཁྱོད་རང་ལུ་བཞག་དགོ་མནོ་མི་དེ་གསལ་བཀོད་འབདཝ་ཨིན། </ahelp>"
@@ -53306,7 +49668,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/autofitcb\"> རྟགས
msgctxt ""
"05110000.xhp\n"
"hd_id3159223\n"
-"26\n"
"help.text"
msgid "Rename"
msgstr "བསྐྱར་མིང་བཏགས།"
@@ -53315,7 +49676,6 @@ msgstr "བསྐྱར་མིང་བཏགས།"
msgctxt ""
"05110000.xhp\n"
"par_id3153064\n"
-"27\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">Opens a dialog where you can change the specification of the selected AutoFormat.</ahelp> The button is only visible if you clicked the <emph>More</emph> button."
msgstr "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\"> ཁྱོད་ཀྱིས་ རང་བཞིན་རྩ་སྒྲིག་གི་གསལ་བཀོད་བསྒྱུར་བཅོས་འབད་ཚུགས་སའི་ཌའི་ལོག་ཁ་ཕྱེཝ་ཨིན། </ahelp> ཁྱོད་ཀྱིས་ ཨེབ་རྟ་ཧེང་བཀལ་ཨེབ་པ་ཅིན་ <emph> རྐྱངམ་ཅིག་ཨེབ་རྟ་དེ་ </emph> མཐོང་ཚུགསཔ་ཨིན།"
@@ -53324,7 +49684,6 @@ msgstr "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\"> ཁྱོད་ཀྱིས་ ར
msgctxt ""
"05110000.xhp\n"
"par_id3153912\n"
-"28\n"
"help.text"
msgid "The <emph>Rename AutoFormat</emph> dialog opens.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Enter the new name of the AutoFormat here.</ahelp>"
msgstr "<emph> རང་བཞིན་རྩ་སྒྲིག་བསྐྱར་མིང་བཏགས་ </emph> ཌའི་ལོག་ཁ་ཕྱེཝ་ཨིན། <ahelp hid=\"HID_SC_REN_AFMT_NAME\"> རང་བཞིན་རྩ་སྒྲིག་གི་མིང་གསརཔ་འདི་ནཱ་ལུ་བཙུགས། </ahelp>"
@@ -53333,7 +49692,6 @@ msgstr "<emph> རང་བཞིན་རྩ་སྒྲིག་བསྐྱ
msgctxt ""
"05110000.xhp\n"
"hd_id3155264\n"
-"23\n"
"help.text"
msgid "More"
msgstr "ཧེང་བཀལ།"
@@ -53342,7 +49700,6 @@ msgstr "ཧེང་བཀལ།"
msgctxt ""
"05110000.xhp\n"
"par_id3159094\n"
-"24\n"
"help.text"
msgid "Closes the <emph>Formatting</emph> options section, if it is currently open."
msgstr "རྩ་སྒྲིག་འབད་ནི་གདམ་ཁའི་དབྱེ་ཚན་ཚུ་ ད་ལྟོ་ <emph> ཁ་ཕྱེ་སྟེ་ </emph> ཡོད་པ་ཅིན་ ཁ་བསྡམས་ཨིན།"
@@ -53359,7 +49716,6 @@ msgstr "རྩ་སྒྲིག་འབད་ནི་གནས་སྟངས
msgctxt ""
"05120000.xhp\n"
"hd_id3155132\n"
-"1\n"
"help.text"
msgid "Conditional Formatting"
msgstr "རྩ་སྒྲིག་འབད་ནི་གནས་སྟངས་ཅན།"
@@ -53368,7 +49724,6 @@ msgstr "རྩ་སྒྲིག་འབད་ནི་གནས་སྟངས
msgctxt ""
"05120000.xhp\n"
"par_id3163710\n"
-"2\n"
"help.text"
msgid "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">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."
msgstr ""
@@ -53382,7 +49737,6 @@ msgid "You can enter several conditions that query the contents of cell values o
msgstr ""
#: 05120000.xhp
-#, fuzzy
msgctxt ""
"05120000.xhp\n"
"par_id2414014\n"
@@ -53623,7 +49977,6 @@ msgid "For a detailed explanation and examples, please visit <link href=\"http:/
msgstr ""
#: 05120000.xhp
-#, fuzzy
msgctxt ""
"05120000.xhp\n"
"hd_id3156384\n"
@@ -53664,7 +50017,6 @@ msgid "In the <emph>Range</emph> field, define the range of cells concerned by t
msgstr ""
#: 05120000.xhp
-#, fuzzy
msgctxt ""
"05120000.xhp\n"
"hd_id3153384\n"
@@ -53724,7 +50076,6 @@ msgstr "<bookmark_value>ཤོག་ཁྲམ་ཚུ་ནང་རག་བ
msgctxt ""
"06020000.xhp\n"
"hd_id3159399\n"
-"1\n"
"help.text"
msgid "Hyphenation"
msgstr "སྦྲེལ་རྟགས་བཀལ་བ།"
@@ -53733,7 +50084,6 @@ msgstr "སྦྲེལ་རྟགས་བཀལ་བ།"
msgctxt ""
"06020000.xhp\n"
"par_id3145068\n"
-"2\n"
"help.text"
msgid "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">The <emph>Hyphenation </emph>command calls the dialog for setting the hyphenation in $[officename] Calc.</ahelp></variable>"
msgstr "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\"> སྦྲེལ་རྟགས་བཀལ་ནིའི་བརྡ་བཀོད་ཀྱིས་ <emph> ཌའི་ལོག་དེ་ </emph> $[officename] ཀེལ་སི་ནང་ལུ་ སྦྲེལ་རྟགས་བཀལ་ནི་དེ་གཞི་སྒྲིག་འབད་ནིའི་དོན་ལུ་འབོཝ་ཨིན། </ahelp></variable>"
@@ -53742,7 +50092,6 @@ msgstr "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\"> སྦྲེལ
msgctxt ""
"06020000.xhp\n"
"par_id3154366\n"
-"3\n"
"help.text"
msgid "You can only turn on the automatic hyphenation in $[officename] Calc when the <link href=\"text/shared/01/05340300.xhp\" name=\"row break\">row break</link> feature is active."
msgstr "$[officename] ཀེལ་སི་ནང་ལུ་ <link href=\"text/shared/01/05340300.xhp\" name=\"row break\"> གྲལ་ཐིག་མཚམས་ཁྱད་རྣམ་དེ་ཤུགས་ལྡན་ཡོད་པའི་སྐབས་རྐྱངམ་ཅིག་ </link> ཁྱོད་ཀྱིས་ རང་བཞིན་གྱིས་སྦྲེལ་རྟགས་བཀལ་ནི་དེ་ཨཱོན་བསྒྱིར་བཏུབ་ཨིན།"
@@ -53751,7 +50100,6 @@ msgstr "$[officename] ཀེལ་སི་ནང་ལུ་ <link href=\"text/
msgctxt ""
"06020000.xhp\n"
"hd_id3153192\n"
-"4\n"
"help.text"
msgid "Hyphenation for selected cells."
msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཚུ་ལུ་ སྦྲེལ་རྟགས་བཀལ་བ།"
@@ -53760,7 +50108,6 @@ msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་
msgctxt ""
"06020000.xhp\n"
"par_id3150868\n"
-"5\n"
"help.text"
msgid "Select the cells for which you want to change the hyphenation."
msgstr "ཁྱོད་ཀྱིས་ སྦྲེལ་རྟགས་བཀལ་ནི་བསྒྱུར་བཅོས་འབད་དགོ་མནོ་མི་ནང་ཐིག་ཚུ་སེལ་འཐུ་འབད།"
@@ -53769,7 +50116,6 @@ msgstr "ཁྱོད་ཀྱིས་ སྦྲེལ་རྟགས་བཀ
msgctxt ""
"06020000.xhp\n"
"par_id3150440\n"
-"6\n"
"help.text"
msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
msgstr "<emph> ལག་ཆས་ - སྐད་ཡིག་ - སྦྲེལ་རྟགས་བཀལ་ནི་ཚུ་ </emph> གདམ།"
@@ -53778,7 +50124,6 @@ msgstr "<emph> ལག་ཆས་ - སྐད་ཡིག་ - སྦྲེལ
msgctxt ""
"06020000.xhp\n"
"par_id3156441\n"
-"7\n"
"help.text"
msgid "The <emph>Format Cells</emph> dialog appears with the <emph>Alignment</emph> tab page open."
msgstr "རྩ་སྒྲིག་ནང་ཐིག་ཚུའི་ <emph> ཌའི་ལོག་དེ་ </emph> ཕྲང་སྒྲིག་མཆོང་ལྡེ་ <emph> ཤོག་ལེབ་ཁ་ཕྱེ་དང་ </emph> གཅིག་ཁར་འབྱུངམ་ཨིན།"
@@ -53787,7 +50132,6 @@ msgstr "རྩ་སྒྲིག་ནང་ཐིག་ཚུའི་ <emph>
msgctxt ""
"06020000.xhp\n"
"par_id3149260\n"
-"12\n"
"help.text"
msgid "Mark the <emph>Wrap text automatically</emph> and <emph>Hyphenation active</emph> check boxes."
msgstr ""
@@ -53796,7 +50140,6 @@ msgstr ""
msgctxt ""
"06020000.xhp\n"
"hd_id3153094\n"
-"8\n"
"help.text"
msgid "Hyphenation for Drawing Objects"
msgstr "པར་རིས་དངོས་པོ་ཚུ་ལུ་ སྦྲེལ་རྟགས་བཀལ་བ།"
@@ -53805,7 +50148,6 @@ msgstr "པར་རིས་དངོས་པོ་ཚུ་ལུ་ སྦ
msgctxt ""
"06020000.xhp\n"
"par_id3148577\n"
-"9\n"
"help.text"
msgid "Select a drawing object."
msgstr "པར་རིས་དངོས་པོ་གཅིག་སེལ་འཐུ་འབད།"
@@ -53814,7 +50156,6 @@ msgstr "པར་རིས་དངོས་པོ་གཅིག་སེལ་
msgctxt ""
"06020000.xhp\n"
"par_id3156285\n"
-"10\n"
"help.text"
msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
msgstr "<emph> ལག་ཆས་ - སྐད་ཡིག་ - སྦྲེལ་རྟགས་བཀལ་ནི་ཚུ་ </emph> གདམ།"
@@ -53823,7 +50164,6 @@ msgstr "<emph> ལག་ཆས་ - སྐད་ཡིག་ - སྦྲེལ
msgctxt ""
"06020000.xhp\n"
"par_id3147394\n"
-"11\n"
"help.text"
msgid "Each time you call the command you turn the hyphenation for the drawing object on or off. A check mark shows the current status."
msgstr "ཁྱོད་ཀྱིས་ བརྡ་བཀོད་ཚར་རེ་རེ་འབོཝ་ད་ལུ་ ཁྱོད་ཀྱིས་ པར་རིས་དངོས་པོ་དོན་ལུ་ སྦྲེལ་རྟགས་བཀལ་བ་ ཨཱོན་དང་ཨོཔ་བསྒྱིརཝ་ཨིན། ཨིན་རྟགས་ཀྱིས་ ད་ལྟོའི་གནས་ཚད་སྟོནམ་ཨིན།"
@@ -53848,7 +50188,6 @@ msgstr ""
msgctxt ""
"06030000.xhp\n"
"hd_id3151245\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Detective</link>"
msgstr "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\"> སྐྱོན་ཅན། </link>"
@@ -53857,7 +50196,6 @@ msgstr "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\"> སྐྱ
msgctxt ""
"06030000.xhp\n"
"par_id3151211\n"
-"2\n"
"help.text"
msgid "This command activates the Spreadsheet Detective. With the Detective, you can trace the dependencies from the current formula cell to the cells in the spreadsheet."
msgstr "འ་ནི་བརྡ་བཀོད་ཀྱིས་ ཤོག་ཁྲམ་ནག་ཅན་ཞིབ་དཔྱོདཔ་ཤུགས་ལྡན་བཟོཝ་ཨིན། ནག་ཅན་ཞིབ་དཔྱོདཔ་དེ་དང་གཅིག་ཁར་ཁྱོད་ཀྱིས་ བརྟེན་སྡོད་གནས་སྟངས་ཚུ་ ད་ལྟོའི་མན་ངག་ནང་ཐིག་ལས་ ཤོག་ཁྲམ་ནང་གི་ནང་ཐིག་ཚུ་ནང་བཤུལ་འཚོལ་འབད་ཚུགསཔ་ཨིན།"
@@ -53866,7 +50204,6 @@ msgstr "འ་ནི་བརྡ་བཀོད་ཀྱིས་ ཤོག་
msgctxt ""
"06030000.xhp\n"
"par_id3150447\n"
-"3\n"
"help.text"
msgid "Once you have defined a trace, you can point with the mouse cursor to the trace. The mouse cursor will change its shape. Double-click the trace with this cursor to select the referenced cell at the end of the trace."
msgstr "ཁྱོད་ཀྱིས་རྗེས་འཚོལ་འབད་མི་དེ་ཚར་གཅིག་ ངེས་འཛིན་འབད་ཚར་བའི་ཤུལ་ལུ་ ཁྱོད་ཀྱིས་ མཱའུསི་འོད་རྟགས་དང་གཅིག་ཁར་ རྗེས་འཚོལ་འབད་མི་ལུ་དཔག་ཚུགསཔ་ཨིན། མཱའུསི་གིས་ཁོ་རའི་དབྱིབས་བསྒྱུར་བཅོས་འབདཝ་ཨིན། རྗེས་འཚོལ་འབད་ནིའི་མཇུག་ལུ་གཞི་བསྟུན་འབད་ཡོད་པའི་ནང་ཐིག་སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ འ་ནི་འོད་རྟགས་སྦྲགས་ཏེ་རྗས་འཚོལ་འབད་མི་དེ་ལོག་བལྟབ་ཨེབ་གཏང་།"
@@ -53891,7 +50228,6 @@ msgstr "<bookmark_value> ནང་ཐིག་ཚུ། མཚན་གཞི་
msgctxt ""
"06030100.xhp\n"
"hd_id3155628\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedents\">Trace Precedents</link>"
msgstr "<link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedents\"> མཚན་གཞི་ཚུ་བཤུལ་འཚོལ། </link>"
@@ -53900,7 +50236,6 @@ msgstr "<link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedents\"> མ
msgctxt ""
"06030100.xhp\n"
"par_id3153542\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowPrecedents\">This function shows the relationship between the current cell containing a formula and the cells used in the formula.</ahelp>"
msgstr "<ahelp hid=\".uno:ShowPrecedents\"> འ་ནི་ལས་འགན་གྱིས་ མན་ངག་ནང་ལུ་ལག་ལེན་འཐབ་ཡོད་པའི་ནང་ཐིག་ཚུ་དང་ ནང་ན་མན་ངག་ཤོམ་ཏེ་ཡོད་པའི་ད་ལྟོའི་ནང་ཐིག་གི་བར་མཐུན་ལམ་སྟོནམ་ཨིན། </ahelp>"
@@ -53909,7 +50244,6 @@ msgstr "<ahelp hid=\".uno:ShowPrecedents\"> འ་ནི་ལས་འགན་
msgctxt ""
"06030100.xhp\n"
"par_id3147265\n"
-"4\n"
"help.text"
msgid "Traces are displayed in the sheet with marking arrows. At the same time, the range of all the cells contained in the formula of the current cell is highlighted with a blue frame."
msgstr "རྗེས་འཚོལ་འབད་མི་ཚུ་ ཤོག་ལེབ་ནང་ལུ་ རྟགས་བཀལ་བའི་བརྡ་རྟགས་ཚུ་དང་གཅིག་ཁར་བཀྲམ་སྟོན་འབད་ཡོདཔ་ཨིན། དེ་དང་གཅིག་ཁར་ ད་ལྟོའི་ནང་ཐིག་གི་མན་ངག་ནང་ཤོམ་ཏེ་ཡོད་པའི་ནང་ཐིག་ཆ་མཉམ་ཚུའི་ཁྱབ་ཚད་དེ་ གཞི་ཁྲམ་ཧོནམ་དང་གཅིག་ཁར་གཙོ་རྟགས་བཀལ་ཡོདཔ་ཨིན།"
@@ -53918,7 +50252,6 @@ msgstr "རྗེས་འཚོལ་འབད་མི་ཚུ་ ཤོག
msgctxt ""
"06030100.xhp\n"
"par_id3154321\n"
-"3\n"
"help.text"
msgid "This function is based on a principle of layers. For example, if the precedent cell to a formula is already indicated with a tracer arrow, when you repeat this command, the tracer arrows are drawn to the precedent cells of this cell."
msgstr "འ་ནི་ལས་འགན་དེ་ བང་རིམ་ཚུའི་རྩ་དོན་གུ་ལུ་གཞི་བཞག་ཡོདཔ་ཨིན། དཔེ་འབད་བ་ཅིན་ མན་ངག་ནང་ལུ་སྔོན་བྱུང་ནང་ཐིག་གཅིག་ཧེ་མ་ལས་རང་ རྗེས་འཚོལ་འབད་བའི་བརྡ་རྟགས་དང་གཅིག་ཁར་བརྡ་སྟོན་ཏེ་ཡོད་པ་ཅིན་ ཁྱོད་ཀྱིས་ འ་ནི་བརྡ་བཀོད་དེ་ཡང་བསྐྱར་འབད་བའི་སྐབས་སུ་ རྗེས་འཚོལ་འབད་བའི་བརྡ་རྟགས་ཚུ་ འ་ནི་ནང་ཐིག་གི་སྔོན་བྱུང་ནང་ཐིག་ཚུ་ལུ་འབྲི་ཡོདཔ་ཨིན།"
@@ -53943,7 +50276,6 @@ msgstr "<bookmark_value>ནང་ཐིག་ཚུ་ སྔོན་དཔེ
msgctxt ""
"06030200.xhp\n"
"hd_id3155628\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030200.xhp\" name=\"Remove Precedents\">Remove Precedents</link>"
msgstr "<link href=\"text/scalc/01/06030200.xhp\" name=\"Remove Precedents\"> མཚན་གཞི་ཚུ་རྩ་བསྐྲད་གཏང་། </link>"
@@ -53952,7 +50284,6 @@ msgstr "<link href=\"text/scalc/01/06030200.xhp\" name=\"Remove Precedents\">
msgctxt ""
"06030200.xhp\n"
"par_id3149456\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ClearArrowPrecedents\">Deletes one level of the trace arrows that were inserted with the <emph>Trace Precedents</emph> command.</ahelp>"
msgstr "<ahelp hid=\".uno:ClearArrowPrecedents\"> མཚན་གཞི་བཤུལ་འཚོལ་བརྡ་བཀོད་དང་བཅསཔ་སྦེ་བཙུགས་ཡོད་པའི་བཤུལ་འཚོལ་བརྡ་རྟགས་ཚུ་གི་ <emph> གནས་རིམ་གཅིག་ </emph> བཏོན་གཏངམ་ཨིན། </ahelp>"
@@ -53977,7 +50308,6 @@ msgstr "<bookmark_value> ནང་ཐིག་ཚུ་ ; གཞན་རྟེ
msgctxt ""
"06030300.xhp\n"
"hd_id3153252\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\">Trace Dependents</link>"
msgstr "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\"> བཤུལ་འཚོལ་གཞན་རྟེན་པ་ཚུ། </link>"
@@ -53986,7 +50316,6 @@ msgstr "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\"> བ
msgctxt ""
"06030300.xhp\n"
"par_id3156024\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">Draws tracer arrows to the active cell from formulas that depend on values in the active cell.</ahelp>"
msgstr "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\"> ནང་ཐིག་ཤུགས་ལྡན་ནང་གནས་གོང་ཚུ་ལུ་བརྟེན་པའི་མན་ངག་ཚུ་ལས་ ནང་ཐིག་ཤུགས་ལྡན་ལུ་བརྡ་རྟགས་ཚུ་འབྲིཝ་ཨིན། </ahelp>"
@@ -53995,7 +50324,6 @@ msgstr "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\"> ནང་ཐ
msgctxt ""
"06030300.xhp\n"
"par_id3148948\n"
-"4\n"
"help.text"
msgid "The area of all cells that are used together with the active cell in a formula is highlighted by a blue frame."
msgstr "མན་ངག་ནང་ལུ་ ཤུགས་ལྡན་ནང་ཐིག་དང་གཅིག་ཁར་ལག་ལེན་འཐབ་ཡོད་པའི་ནང་ཐིག་ཆ་མཉམ་གྱི་མངའ་ཁོངས་དེ་ གཞི་ཁྲམ་ཧོནམ་གྱིས་གཙོ་རྟགས་བཀལ་ཏེ་ཡོདཔ་ཨིན།"
@@ -54004,7 +50332,6 @@ msgstr "མན་ངག་ནང་ལུ་ ཤུགས་ལྡན་ནང
msgctxt ""
"06030300.xhp\n"
"par_id3151112\n"
-"3\n"
"help.text"
msgid "This function works per level. For instance, if one level of traces has already been activated to show the precedents (or dependents), then you would see the next dependency level by activating the <emph>Trace</emph> function again."
msgstr "འ་ནི་ལས་འགན་དེ་ གནས་རིམ་རེ་རེ་འཁྲིལ་ཏེ་ལཱ་འབདཝ་ཨིན། དཔེར་ན་ རྗེས་འཚོལ་འབད་མི་ཚུའི་གནས་རིམ་གཅིག་ སྔོན་བྱུང་ཚུ་སྟོན་ནིའི་དོན་ལུ་ཧེ་མ་ལས་རང་ཤུགས་ལྡན་བཟོ་ཡོད་པ་ཅིན་འབདན་ (ཡང་ན་བརྟེན་མི་ཚུ་) ཁྱོད་ཀྱིས་ ཤུལ་མམ་གྱི་བརྟེན་སྡོད་གནས་སྟངས་གནས་རིམ་དེ་ <emph> རྗེས་འཚོལ་འབད་མི་ལས་འགན་དེ་ལོག་སྟེ་རང་ </emph> ཤུགས་ལྡན་བཟོ་ཐོག་ལས་མཐོང་ཚུགསཔ་ཨིན།"
@@ -54029,7 +50356,6 @@ msgstr "<bookmark_value> ནང་ཐིག་ཚུ་ ; གཞན་རྟེ
msgctxt ""
"06030400.xhp\n"
"hd_id3147335\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\">Remove Dependents</link>"
msgstr "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\"> གཞན་རྟེན་པ་ཚུ་རྩ་བསྐྲད་གཏང་། </link>"
@@ -54038,7 +50364,6 @@ msgstr "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\">
msgctxt ""
"06030400.xhp\n"
"par_id3148663\n"
-"2\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\">Deletes one level of tracer arrows created with <emph>Trace Dependents</emph>.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\"> བཤུལ་འཚོལ་རེ་མི་དང་གཅིག་ཁར་ གསར་བསྐྲུན་འབད་ཡོད་པའི་ <emph> བཤུལ་འཚོལ་མིའི་བརྡ་རྟགས་ཚུའི་ </emph> གནས་རིམ་གཅིག་བཏོན་གཏངམ་ཨིན། </ahelp>"
@@ -54063,7 +50388,6 @@ msgstr "<bookmark_value> ནང་ཐིག་ཚུ་ ; བཤུལ་ཚུ
msgctxt ""
"06030500.xhp\n"
"hd_id3153088\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030500.xhp\" name=\"Remove All Traces\">Remove All Traces</link>"
msgstr "<link href=\"text/scalc/01/06030500.xhp\" name=\"Remove All Traces\"> བཤུལ་ཚུ་ཆ་མཉམ་རང་རྩ་བསྐྲད་གཏངམ་ཨིན།</link>"
@@ -54072,7 +50396,6 @@ msgstr "<link href=\"text/scalc/01/06030500.xhp\" name=\"Remove All Traces\">
msgctxt ""
"06030500.xhp\n"
"par_id3151246\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Removes all tracer arrows from the spreadsheet.</ahelp>"
msgstr "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\"> ཤོག་ཁྲམ་ལས་ བཤུལ་འཚོལ་མིའི་བརྡ་རྟགས་ཚུ་ཆ་མཉམ་རང་ རྩ་བསྐྲད་གཏངམ་ཨིན། </ahelp>"
@@ -54097,7 +50420,6 @@ msgstr "<bookmark_value> ནང་ཐིག་ཚུ་ ; བཤུལ་ནི
msgctxt ""
"06030600.xhp\n"
"hd_id3153561\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\">Trace Error</link>"
msgstr "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\"> བཤུལ་འཛོལ་བ། </link>"
@@ -54106,7 +50428,6 @@ msgstr "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\"> བཤ
msgctxt ""
"06030600.xhp\n"
"par_id3148550\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowErrors\" visibility=\"visible\">Draws tracer arrows to all precedent cells which cause an error value in a selected cell.</ahelp>"
msgstr "<ahelp hid=\".uno:ShowErrors\" visibility=\"visible\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ནང་ན་ གནས་གོང་འཛོལ་བ་ ལུ་རྒྱུ་རྐྱེན་འབད་བའི་ ནང་ཐིག་སྔོན་འབྱུང་ཚུ་ལུ་ བཤུལ་འཚོལ་ནིའི་བརྡ་རྟགས་ཚུ་ འབྲིཝ་ཨིན། </ahelp>"
@@ -54131,7 +50452,6 @@ msgstr "<bookmark_value> ནང་ཐིག་ཚུ་ ; བཤུལ་འཚ
msgctxt ""
"06030700.xhp\n"
"hd_id3145119\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030700.xhp\" name=\"Fill Mode\">Fill Mode</link>"
msgstr "<link href=\"text/scalc/01/06030700.xhp\" name=\"Fill Mode\"> ཐབས་ལམ་བཀང་། </link>"
@@ -54140,7 +50460,6 @@ msgstr "<link href=\"text/scalc/01/06030700.xhp\" name=\"Fill Mode\"> ཐབས
msgctxt ""
"06030700.xhp\n"
"par_id3151246\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AuditingFillMode\">Activates the Fill Mode in the Detective. The mouse pointer changes to a special symbol, and you can click any cell to see a trace to the precedent cell.</ahelp> To exit this mode, press Escape or click the <emph>End Fill Mode</emph> command in the context menu."
msgstr "<ahelp hid=\".uno:AuditingFillMode\"> ནག་ཅན་ཞིབ་དཔྱོདཔ་ནང་ལུ་ ཐབས་ལམ་བཀང་ནི་དེ་ཤུགས་ལྡན་བཟོཝ་ཨིན། མཱའུསི་དཔག་བྱེད་དེ་དམིགས་བསལ་བརྡ་མཚོན་ལུ་བསྒྱུར་བཅོས་འབད་བཞིནམ་ལས་ སྔོན་བྱུང་ནང་ཐིག་ལུ་རྗེས་འཚོལ་འབད་མི་བལྟ་ནིའི་དོན་ལུ་ ཁྱོད་ཀྱིས་ ནང་ཐིག་གང་རུང་ཨེབ་གཏང་བཏུབ་ཨིན། </ahelp> འ་ནི་ཐབས་ལམ་དེ་ ཕྱིར་འཐོན་འབད་ནིའི་དོན་ལུ་ སྐབས་དོན་དཀར་ཆག་ནང་ལུ་ <emph> ཐབས་ལམ་བཀང་ནི་དེ་མཇུག་བསྡུ་ཟེར་བའི་བརྡ་བཀོད་དེ་ཨེབ་གཏང་ ཡང་ན་ </emph> ཐར་ཟེར་བའི་བརྡ་བཀོད་དེ་ ཨེབ།"
@@ -54149,7 +50468,6 @@ msgstr "<ahelp hid=\".uno:AuditingFillMode\"> ནག་ཅན་ཞིབ་ད
msgctxt ""
"06030700.xhp\n"
"par_id3151211\n"
-"3\n"
"help.text"
msgid "The <emph>Fill Mode</emph> function is identical to the <link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedent\">Trace Precedent</link> command if you call this mode for the first time. Use the context menu to select further options for the Fill Mode and to exit this mode."
msgstr "ཁྱོད་ཀྱིས་ <emph> འ་ནི་ཐབས་ལམ་དེ་འགོ་དང་པ་འབོཝ་ཨིན་པ་ཅིན་ </emph> འ་ནི་ ཐབས་ལམ་བཀང་ལས་འགན་དེ་ <link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedent\"> བཤུད་འཚོལ་མཚན་གཞི་བརྡ་བཀོད་ལུ་ དབྱེར་མེད་ཨིན། </link> ན་ལས་ཕར་་གདམ་ཁ་ཚུ་སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ཐབས་ལམ་བཀང་དང་འ་ནི་ཐབས་ལམ་ཕྱིར་ཐོན་ནི་ལུ་ སྐབས་དོན་དཀར་ཆག་ལག་ལེན་འཐབ།"
@@ -54174,7 +50492,6 @@ msgstr "<bookmark_value> ནང་ཐིག་ཚུ་ ; གནད་སྡུ
msgctxt ""
"06030800.xhp\n"
"hd_id3153821\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\">Mark Invalid Data</link>"
msgstr "<link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\"> ནུས་མེད་གནད་སྡུད་རྟགས་བཏལ། </link>"
@@ -54183,7 +50500,6 @@ msgstr "<link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\">
msgctxt ""
"06030800.xhp\n"
"par_id3147264\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">Marks all cells in the sheet that contain values outside the validation rules.</ahelp>"
msgstr "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\"> ནུས་ལྡན་བཟོ་ནིའི་ལམ་ལུགས་ཚུའི་ཕྱི་ཁར་གནས་གོང་ཤོམ་ཏེ་ཡོད་པའི་ཤོག་ལེབ་ནང་ནང་ཐིག་ཚུ་ཆ་མཉམ་རང་རྟགས་བཀལཝ་ཨིན། </ahelp>"
@@ -54192,7 +50508,6 @@ msgstr "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\"> ནུས་ལ
msgctxt ""
"06030800.xhp\n"
"par_id3151211\n"
-"3\n"
"help.text"
msgid "The <link href=\"text/scalc/01/12120000.xhp\" name=\"validity rules\">validity rules</link> restrict the input of numbers, dates, time values and text to certain values. However, it is possible to enter invalid values or copy invalid values into the cells if the <emph>Stop</emph> option is not selected. When you assign a validity rule, existing values in a cell will not be modified."
msgstr "ནུས་ལྡན་དུས་ཚོད་ལམ་ལུགས་ཀྱིས་ གནས་གོང་ལ་ལོ་ཅིག་ལུ་ <link href=\"text/scalc/01/12120000.xhp\" name=\"validity rules\"> ཨང་གྲངས་ ཚེས་གྲངས་ </link> དུས་ཚོད་གནས་གོང་དང་ཚིག་ཡིག་ཚུའི་ཨིན་པུཊི་བཀག་དམ་འབདཝ་ཨིན། ཨིན་དེ་འབད་རུང་ བཀག་ནིའི་གདམ་ཁ་དེ་ <emph> སེལ་འཐུ་འབད་དེ་མེད་པ་ཅིན་ </emph> ནང་ཐིག་ཚུ་ནང་ལུ་ ནུས་མེད་གནས་གོང་བཙུགས་ནི་དང་ཡང་ན་ ནུས་མེད་གནས་གོང་ཚུ་འདྲ་བཤུས་བརྐྱབ་ནི་ཚུ་སྲིད་པ་ཨིན། ཁྱོད་ཀྱིས་ ནུས་ལྡན་དུས་ཚོད་ལམ་ལུགས་འགན་སྤྲོད་པའི་སྐབས་ ནང་ཐིག་ནང་ལུ་གནས་བཞིན་ཡོད་པའི་གནས་གོང་ཚུ་ལེགས་བཅོས་མི་འབད་ནི་ཨིན།"
@@ -54217,7 +50532,6 @@ msgstr "<bookmark_value>ནང་ཐིག་ཚུ་ བཤུལ་ཚུ་
msgctxt ""
"06030900.xhp\n"
"hd_id3152349\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030900.xhp\" name=\"Refresh Traces\">Refresh Traces</link>"
msgstr "<link href=\"text/scalc/01/06030900.xhp\" name=\"Refresh Traces\"> བཤུལ་ཚུ་ཡང་སེལ་འབད། </link>"
@@ -54226,7 +50540,6 @@ msgstr "<link href=\"text/scalc/01/06030900.xhp\" name=\"Refresh Traces\"> བ
msgctxt ""
"06030900.xhp\n"
"par_id3148947\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:RefreshArrows\">Redraws all traces in the sheet. Formulas modified when traces are redrawn are taken into account.</ahelp>"
msgstr "<ahelp hid=\".uno:RefreshArrows\"> ཤོག་ལེབ་ནང་ལུ་བཤུད་ཚུ་ཆ་མཉམ་རང་ ལོག་འབྲིཝ་ཨིན། བཤུད་ཚུ་ལོག་འབྲི་ཡོད་པའི་སྐབས་སུ་ལེགས་བཅོས་འབད་ཡོད་པའི་མན་ངག་ཚུ་ རྩིས་ཐོ་ནང་བརྩི་འཇོག་འབད་ཡོདཔ་ཨིན། </ahelp>"
@@ -54235,7 +50548,6 @@ msgstr "<ahelp hid=\".uno:RefreshArrows\"> ཤོག་ལེབ་ནང་ལ
msgctxt ""
"06030900.xhp\n"
"par_id3148798\n"
-"3\n"
"help.text"
msgid "Detective arrows in the document are updated under the following circumstances:"
msgstr "ཡིག་ཆ་ནང་ལུ་སྐྱོན་ཅན་བརྡ་རྟགས་ཚུ་ འོག་ལུ་ཡོད་པའི་གནས་སྐབས་ཚུའི་འོག་ལུ་དུས་མཐུནམ་བཟོ་ཡོདཔ་ཨིན།"
@@ -54244,7 +50556,6 @@ msgstr "ཡིག་ཆ་ནང་ལུ་སྐྱོན་ཅན་བརྡ
msgctxt ""
"06030900.xhp\n"
"par_id3153192\n"
-"4\n"
"help.text"
msgid "Starting <emph>Tools - Detective - Update Refresh Traces</emph>"
msgstr "<emph> ལག་ཆས་ཚུ་ - སྐྱོན་ཅན་ - ཡང་སེལ་བཤུལ་འཚོལ་དུས་མཐུནམ་བཟོ་ཚུ་ འགོ་བཙུགས་དོ། </emph>"
@@ -54253,7 +50564,6 @@ msgstr "<emph> ལག་ཆས་ཚུ་ - སྐྱོན་ཅན་ - ཡ
msgctxt ""
"06030900.xhp\n"
"par_id3151041\n"
-"5\n"
"help.text"
msgid "If <emph>Tools - Detective - Update Automatically</emph> is turned on, every time formulas are changed in the document."
msgstr "<emph> ལག་ཆས་ཚུ་ - སྐྱོན་ཅན་ - རང་བཞིན་གྱིས་དུས་མཐུནམ་བཟོ་ཚུ་ </emph> ཊཱན་ཨོན་འབད་དེ་ཡོད་པ་ཅིན་ ཡིག་ཆ་ནང་མན་ངག་ཚུ་དུས་ཨ་རྟག་རང་བསྒྱུར་བཅོས་འབདཝ་ཨིན།"
@@ -54278,7 +50588,6 @@ msgstr "<bookmark_value> ནང་ཐིག་ཚུ། བཤུལ་འཚོ
msgctxt ""
"06031000.xhp\n"
"hd_id3154515\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\">AutoRefresh</link>"
msgstr "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\"> རང་བཞིན་ཡང་སེལ་འབད། </link>"
@@ -54287,7 +50596,6 @@ msgstr "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\"> རང
msgctxt ""
"06031000.xhp\n"
"par_id3147264\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">Automatically refreshes all the traces in the sheet whenever you modify a formula.</ahelp>"
msgstr "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\"> ཁྱོད་ཀྱིས་ ནམ་འདབ་རུང་ མན་ངག་ལེགས་བཅོས་འབདཝ་ད་ ཤོག་ཁྲམ་ནང་ལུ་ བཤུལ་འཚོལ་ཚུ་ཆ་མཉམ་རང་ རང་བཞིན་གྱིས་ ཡང་སེལ་འབདཝ་ཨིན། </ahelp>"
@@ -54304,7 +50612,6 @@ msgstr "དམིགས་གཏད་འཚོལ།"
msgctxt ""
"06040000.xhp\n"
"hd_id3155629\n"
-"1\n"
"help.text"
msgid "Goal Seek"
msgstr "དམིགས་གཏད་འཚོལ།"
@@ -54313,7 +50620,6 @@ msgstr "དམིགས་གཏད་འཚོལ།"
msgctxt ""
"06040000.xhp\n"
"par_id3145119\n"
-"2\n"
"help.text"
msgid "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">Opens a dialog where you can solve an equation with a variable.</ahelp></variable> After a successful search, a dialog with the results opens, allowing you to apply the result and the target value directly to the cell."
msgstr "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\"> ཁྱོད་ཀྱིས་ འགྱུར་ཅན་དང་གཅིག་ཁར་ སྙོམ་རྟགས་སེལ་ཚུགས་པའི་ཌའི་ལོག་ཁ་ཕྱེཝ་ཨིན། </ahelp></variable> འཚོལ་ཞིབ་མཐར་ཕྱིན་པའི་ཤུལ་ལུ་ ཁྱོད་ལུ་ ནང་ཐིག་ནང་ གྲུབ་འབྲས་དང་དམིགས་གཏད་གནས་གོང་ཐད་ཀར་དུ་འཇུག་སྤྱོད་འབད་བཅུག་པའི་ གྲུབ་འབྲས་ཚུ་དང་བཅས་པའི་ཌའི་ལོག་གཅིག་ ཁ་ཕྱེཝ་ཨིན།"
@@ -54322,7 +50628,6 @@ msgstr "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">
msgctxt ""
"06040000.xhp\n"
"hd_id3149656\n"
-"3\n"
"help.text"
msgid "Default"
msgstr "སྔོན་སྒྲིག"
@@ -54331,7 +50636,6 @@ msgstr "སྔོན་སྒྲིག"
msgctxt ""
"06040000.xhp\n"
"par_id3151211\n"
-"4\n"
"help.text"
msgid "In this section, you can define the variables in your formula."
msgstr "འ་ནི་དབྱེ་ཚན་ནང་ལུ་ ཁྱོད་ཀྱིས་ འགྱུར་ཅན་ཚུ་ངེས་འཛིན་འབད་ཚུགསཔ་ཨིན།"
@@ -54340,7 +50644,6 @@ msgstr "འ་ནི་དབྱེ་ཚན་ནང་ལུ་ ཁྱོད
msgctxt ""
"06040000.xhp\n"
"hd_id3150869\n"
-"5\n"
"help.text"
msgid "Formula cell"
msgstr "མན་ངག་ནང་ཐིག"
@@ -54349,7 +50652,6 @@ msgstr "མན་ངག་ནང་ཐིག"
msgctxt ""
"06040000.xhp\n"
"par_id3153194\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/goalseekdlg/formulaedit\">In the formula cell, enter the reference of the cell which contains the formula. It contains the current cell reference.</ahelp> Click another cell in the sheet to apply its reference to the text box."
msgstr "<ahelp hid=\"modules/scalc/ui/goalseekdlg/formulaedit\"> མན་ངག་ནང་ཐིག་ནང་ལུ་ ནང་ན་མན་ངག་ཤོམ་ཏེ་ཡོད་པའི་ནང་ཐིག་གི་གཞི་བསྟུན་བཙུགས། དེའི་ནང་ན་ ད་ལྟོའི་ནང་ཐིག་གཞི་བསྟུན་ཤོམ་ཏེ་ཡོདཔ་ཨིན། </ahelp> ཚིག་ཡིག་སྒྲོམ་ལུ་ དེའི་གཞི་བསྟུན་འཇུག་སྤྱོད་འབད་ནིའི་དོན་ལུ་ ཤོག་ལེབ་ནང་ལུ་ ནང་ཐིག་གཞན་མི་གཅིག་ཨེབ་གཏང་།"
@@ -54358,7 +50660,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/goalseekdlg/formulaedit\"> མན་ངག
msgctxt ""
"06040000.xhp\n"
"hd_id3154685\n"
-"7\n"
"help.text"
msgid "Target value"
msgstr "དམིགས་གཏད་གནས་གོང་།"
@@ -54367,7 +50668,6 @@ msgstr "དམིགས་གཏད་གནས་གོང་།"
msgctxt ""
"06040000.xhp\n"
"par_id3146984\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/goalseekdlg/target\">Specifies the value you want to achieve as a new result.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/goalseekdlg/target\"> ཁྱོད་ཀྱིས་ གྲུབ་འབྲས་གསརཔ་སྦེ་ ཐོབ་དགོ་མནོ་མི་གནས་གོང་དེ་གསལ་བཀོད་འབདཝ་ཨིན། </ahelp>"
@@ -54376,7 +50676,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/goalseekdlg/target\"> ཁྱོད་ཀ
msgctxt ""
"06040000.xhp\n"
"hd_id3150012\n"
-"9\n"
"help.text"
msgid "Variable cell"
msgstr "འགྱུར་ཅན་ནང་ཐིག"
@@ -54385,7 +50684,6 @@ msgstr "འགྱུར་ཅན་ནང་ཐིག"
msgctxt ""
"06040000.xhp\n"
"par_id3147427\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/goalseekdlg/varedit\">Specifies the reference for the cell that contains the value you want to adjust in order to reach the target.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/goalseekdlg/varedit\"> དམིགས་གཏད་ལུ་ལྷོད་ནིའི་དོན་ལུ་ཁྱོད་ཀྱིས་བདེ་སྒྲིག་འབད་དགོ་མནོ་མི་ ནང་ན་གནས་གོང་ཤོམ་ཏེ་ཡོད་པའི་ནང་ཐིག་དོན་ལུ་ གཞི་བསྟུན་གསལ་བཀོད་འབདཝ་ཨིན། </ahelp>"
@@ -54402,7 +50700,6 @@ msgstr "འཆར་བཤད་གསར་བསྐྲུན་འབད།"
msgctxt ""
"06050000.xhp\n"
"hd_id3156023\n"
-"1\n"
"help.text"
msgid "Create Scenario"
msgstr "འཆར་བཤད་གསར་བསྐྲུན་འབད།"
@@ -54411,7 +50708,6 @@ msgstr "འཆར་བཤད་གསར་བསྐྲུན་འབད།"
msgctxt ""
"06050000.xhp\n"
"par_id3150541\n"
-"2\n"
"help.text"
msgid "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">Defines a scenario for the selected sheet area.</ahelp></variable>"
msgstr "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཤོག་ཁྲམ་མངའ་ཁོངས་ཀྱི་དོན་ལུ་ འཆར་བཤད་གཅིག་ངེས་འཛིན་འབདཝ་ཨིན། </ahelp></variable>"
@@ -54420,7 +50716,6 @@ msgstr "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\"> ས
msgctxt ""
"06050000.xhp\n"
"hd_id3156280\n"
-"3\n"
"help.text"
msgid "Name of scenario"
msgstr "འཆར་བཤད་ཀྱི་མིང།"
@@ -54429,7 +50724,6 @@ msgstr "འཆར་བཤད་ཀྱི་མིང།"
msgctxt ""
"06050000.xhp\n"
"par_id3151041\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_SCENWIN_TOP\">Defines the name for the scenario. Use a clear and unique name so you can easily identify the scenario.</ahelp> You can also modify a scenario name in the Navigator through the <emph>Properties </emph>context menu command."
msgstr "<ahelp hid=\"HID_SC_SCENWIN_TOP\"> འཆར་བཤད་དོན་ལུ་ མིང་ངེས་འཛིན་འབདཝ་ཨིན། ཁྱོད་ཀྱིས་འཆར་བཤད་དེ་འཇམ་ཏོང་ཏོ་སྦེ་ ངོས་འཛིན་འབད་ནིའི་དོན་ལུ་ གསལ་ཏོག་ཏོ་དང་ གཞན་དང་མ་འདྲ་བའི་མིང་གཅིག་ལག་ལེན་འཐབ། </ahelp> ཁྱོད་ཀྱིས་ འགྲུལ་བསྐྱོདཔ་ནང་ལུ་ <emph> སྐབས་དོན་དཀར་ཆག་བརྡ་བཀོད་རྒྱུ་དངོས་ཚུ་བརྒྱུད་དེ་ </emph> འཆར་བཤད་མིང་གཅིག་ལེགས་བཅོས་འབད་ཚུགསཔ་ཨིན།"
@@ -54438,7 +50732,6 @@ msgstr "<ahelp hid=\"HID_SC_SCENWIN_TOP\"> འཆར་བཤད་དོན་
msgctxt ""
"06050000.xhp\n"
"hd_id3153954\n"
-"14\n"
"help.text"
msgid "Comment"
msgstr "བསམ་བཀོད།"
@@ -54447,7 +50740,6 @@ msgstr "བསམ་བཀོད།"
msgctxt ""
"06050000.xhp\n"
"par_id3155411\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Specifies additional information about the scenario. This information will be displayed in the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> when you click the <emph>Scenarios</emph> icon and select the desired scenario.</ahelp> You can also modify this information in the Navigator through the <emph>Properties </emph>context menu command."
msgstr "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\"> འཆར་བཤད་བསྐོར་ལས་ ཁ་སྐོང་བརྡ་དོན་གསལ་བཀོད་འབདཝ་ཨིན། འ་ནི་བརྡ་དོན་དེ་ཁྱོད་ཀྱིས་ <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\"> འཆར་བཤད་ཚུའི་ངོས་དཔར་ཨེབ་གཏང་སྟེ་ </link> འདོད་པའི་འཆར་བཤད་སེལ་འཐུ་འབད་ཚར་བའི་ཤུལ་ལས་ <emph>Scenarios</emph> འགྲུལ་བསྐྱོདཔ་ནང་ལུ་ བཀྲམ་སྟོན་འབད་ནི་ཨིན། </ahelp> ཁྱོད་ཀྱིས་ འ་ནི་བརྡ་དོན་དེ་ འགྲུལ་བསྐྱོདཔ་ནང་ <emph> རྒྱུ་དངོས་ཚུ་དང་ </emph> སྐབས་དོན་དཀར་ཆག་བརྡ་བཀོད་བརྒྱུད་དེ་ ལེགས་བཅོས་འབད་ཚུགསཔ་ཨིན།"
@@ -54456,7 +50748,6 @@ msgstr "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\"> འཆར་བཤད་བསྐ
msgctxt ""
"06050000.xhp\n"
"hd_id3145273\n"
-"16\n"
"help.text"
msgid "Settings"
msgstr "སྒྲིག་སྟངས་ཚུ།"
@@ -54465,7 +50756,6 @@ msgstr "སྒྲིག་སྟངས་ཚུ།"
msgctxt ""
"06050000.xhp\n"
"par_id3153364\n"
-"17\n"
"help.text"
msgid "This section is used to define some of the settings used in the scenario display."
msgstr "འ་ནི་དབྱེ་ཚན་དེ་ འཆར་བཤད་བཀྲམ་སྟོན་ནང་ལག་ལེན་འཐབ་ཡོད་པའི་སྒྲིག་སྟངས་ལ་ལོ་ཅིག་ངེས་འཛིན་འབད་ནིའི་དོན་ལུ་ལག་ལེན་འཐབ་སྟེ་ཡོདཔ་ཨིན།"
@@ -54474,7 +50764,6 @@ msgstr "འ་ནི་དབྱེ་ཚན་དེ་ འཆར་བཤད
msgctxt ""
"06050000.xhp\n"
"hd_id3145367\n"
-"18\n"
"help.text"
msgid "Display border"
msgstr "མཐའ་མཚམས་བཀྲམ་སྟོན་འབད།"
@@ -54483,7 +50772,6 @@ msgstr "མཐའ་མཚམས་བཀྲམ་སྟོན་འབད།"
msgctxt ""
"06050000.xhp\n"
"par_id3151073\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/scenariodialog/bordercolor\">Highlights the scenario in your table with a border. The color for the border is specified in the field to the right of this option.</ahelp> The border will have a title bar displaying the name of the last scenario. The button on the right of the scenario border offers you an overview of all the scenarios in this area, if several have been defined. You can choose any of the scenarios from this list without restrictions."
msgstr "<ahelp hid=\"modules/scalc/ui/scenariodialog/bordercolor\"> ཁྱོད་ཀྱི་ཐིག་ཁྲམ་ནང་ལུ་ མཐའ་མཚམས་དང་བཅས་ཏེ་ འཆར་བཤད་གཙོ་རྟགས་བཀལཝ་ཨིན། མཐའ་མཚམས་ལུ་ཚོས་གཞི་དེ་ འ་ནི་གདམ་ཁའི་གཡས་ཁ་ཐུག་ལུ་ས་སྒོ་ནང་ལུ་གསལ་བཀོད་འབད་དེ་ཡོད། </ahelp> མཐའ་མཚམས་ལུ་ འཆར་བཤད་མཇུག་གི་མིང་བཀྲམ་སྟོན་འབད་བའི་ གོ་མིང་ཕྲ་རིང་ཡོདཔ་ཨིན། འཆར་བཤད་མཐའ་མཚམས་གཡས་ཕྱོགས་ཀྱི་ཨེབ་རྟ་གིས་ ཁྱོད་ལུ་ འ་ནི་མངའ་ཁོངས་ནང་གི་འཆར་བཤད་ཚུའི་སྤྱི་མཐོང་གཅིག་བྱིནམ་ཨིན་དེ་ཡང་ ལེ་ཤ་ངེས་འཛིན་འབད་དེ་ཡོད་པ་ཅིན་རྐྱངམ་ཅིག་ཨིན། ཁྱོད་ཀྱིས་ ཐོ་ཡིག་ལས་འཆར་བཤད་གང་རུང་ ཚད་འཛིན་མེདཔ་སྦེ་ གདམ་ཚུགསཔ་ཨིན།"
@@ -54492,7 +50780,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/scenariodialog/bordercolor\"> ཁྱོད
msgctxt ""
"06050000.xhp\n"
"hd_id3149582\n"
-"20\n"
"help.text"
msgid "Copy back"
msgstr "ལོག་འདྲ་བཤུས་བརྐྱབ།"
@@ -54501,7 +50788,6 @@ msgstr "ལོག་འདྲ་བཤུས་བརྐྱབ།"
msgctxt ""
"06050000.xhp\n"
"par_id3154942\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/scenariodialog/copyback\">Copies the values of cells that you change into the active scenario. If you do not select this option, the scenario is not changed when you change cell values. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/scenariodialog/copyback\"> ཁྱོད་ཀྱིས་ འཆར་བཤད་ཤུགས་ལྡན་ནང་ བསྒྱུར་བཅོས་འབད་བའི་ནང་ཐིག་གི་གནས་གོང་ཚུ་འདྲ་བརྐྱབ་ཨིན། ཁྱོད་ཀྱིས་ འ་ནི་གདམ་ཁ་དེ་སེལ་འཐུ་མ་འབད་བ་ཅིན་ ཁྱོད་ཀྱིས་ ནང་ཐིག་གནས་གོང་ཚུ་བསྒྱུར་བཅོས་འབད་བའི་སྐབས་སུ་ འཆར་བཤད་དེ་བསྒྱུར་བཅོས་འབད་དེ་མེདཔ་ཨིན། <emph> ལོག་འདྲ་བཤུས་བརྐྱབ་སྒྲིག་སྟངས་ཀྱི་ངང་ཚུལ་དེ་ </emph> ནང་ཐིག་ཉེན་སྐྱོབ་ ཤོག་ལེབ་ཉེན་སྐྱོབ་ དང <emph> སྒྲིག་སྟངས་བསྒྱུར་བཅོས་སྔོན་བཀག་ཚུ་ལུ་ </emph> རག་ལསཔ་ཨིན། </ahelp>"
@@ -54510,7 +50796,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/scenariodialog/copyback\"> ཁྱོད་
msgctxt ""
"06050000.xhp\n"
"hd_id3149402\n"
-"22\n"
"help.text"
msgid "Copy entire sheet"
msgstr "ཤོག་ཁྲམ་ཧྲིལ་བུ་འདྲ་བཤུས་རྐྱབ།"
@@ -54519,7 +50804,6 @@ msgstr "ཤོག་ཁྲམ་ཧྲིལ་བུ་འདྲ་བཤུས
msgctxt ""
"06050000.xhp\n"
"par_id3146969\n"
-"23\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/scenariodialog/copysheet\">Copies the entire sheet into an additional scenario sheet. </ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/scenariodialog/copysheet\"> འཆར་བཤད་ཤོག་ཁྲམ་ཁ་སྐོང་ནང་ན་ ཤོག་ཁྲམ་ཧྲིལ་བུ་འདྲ་བཤུས་རྐྱབ་ཨིན། </ahelp>"
@@ -54576,7 +50860,6 @@ msgstr "ཡིག་ཆ་ཉེན་སྐྱོབ་འབད།"
msgctxt ""
"06060000.xhp\n"
"hd_id3148946\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06060000.xhp\" name=\"Protect Document\">Protect Document</link>"
msgstr "<link href=\"text/scalc/01/06060000.xhp\" name=\"Protect Document\"> ཡིག་ཆ་ཉེན་སྐྱོབ་འབད། </link>"
@@ -54593,7 +50876,6 @@ msgstr ""
msgctxt ""
"06060000.xhp\n"
"hd_id3147228\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\">Sheets</link>"
msgstr "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\"> ཤོག་ཁྲམ་ཚུ། </link>"
@@ -54602,7 +50884,6 @@ msgstr "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\"> ཤོག་
msgctxt ""
"06060000.xhp\n"
"hd_id3153768\n"
-"4\n"
"help.text"
msgid "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\">Documents</link>"
msgstr "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\"> ཡིག་ཆ་ཚུ། </link>"
@@ -54619,7 +50900,6 @@ msgstr "ཤོག་ཁྲམ་ཉེན་སྐྱོབ་འབད་དོ
msgctxt ""
"06060100.xhp\n"
"hd_id3153087\n"
-"1\n"
"help.text"
msgid "Protecting Sheet"
msgstr "ཤོག་ཁྲམ་ཉེན་སྐྱོབ་འབད་དོ།"
@@ -54636,7 +50916,6 @@ msgstr ""
msgctxt ""
"06060100.xhp\n"
"par_id3149664\n"
-"5\n"
"help.text"
msgid "To protect cells from further editing, the <emph>Protected</emph> check box must be checked on the <link href=\"text/scalc/01/05020600.xhp\" name=\"Format - Cells - Cell Protection\"><emph>Format - Cells - Cell Protection</emph></link> tab page or on the <emph>Format Cells</emph> context menu."
msgstr "ནང་ཐིག་ཚུ་ཧེང་སྐལ་ཞུན་དག་འབད་ནི་ལས་ཉེན་སྐྱོབ་འབད་ནིའི་དོན་ལུ་ <emph> རྩ་སྒྲིག་-ནང་ཐིག་ཚུ་- ནང་ཐིག་ཉེན་སྐྱོབ་ </emph> <link href=\"text/scalc/01/05020600.xhp\" name=\"Format - Cells - Cell Protection\"><emph> མཆོང་ལྡེ་ ཡང་ན་ </emph></link> རྩ་སྒྲིག་ནང་དིག་ཚུ་ <emph> སྐབས་དོན་དཀར་ཆག་གུ་ལུ་ </emph> ཉེན་སྐྱོབ་འབད་ཡོདཔ་པའི་ཞིབ་དཔྱད་སྒྲོམ་དེ་ཞིབ་དཔྱད་འབད་དགོཔ་ཨིན།"
@@ -54653,7 +50932,6 @@ msgstr ""
msgctxt ""
"06060100.xhp\n"
"par_id3149123\n"
-"16\n"
"help.text"
msgid "Select the cells that will be unprotected"
msgstr "ཉེན་སྐྱོབ་མི་འབད་ནི་ཨིན་པའི་ནང་ཐིག་ཚུ་སེལ་འཐུ་འབད།"
@@ -54662,7 +50940,6 @@ msgstr "ཉེན་སྐྱོབ་མི་འབད་ནི་ཨིན་
msgctxt ""
"06060100.xhp\n"
"par_id3150329\n"
-"17\n"
"help.text"
msgid "Select <emph>Format - Cells - Cell Protection</emph>. Unmark the <emph>Protected</emph> box and click <emph>OK</emph>."
msgstr "<emph> རྩ་སྒྲིག་ - ནང་ཐིག་ཚུ་ - ནང་ཐིག་ཉེན་སྐྱོབ་ </emph> སེལ་འཐུ་འབད། ཉེན་སྐྱོབ་འབད་ཡོད་པའི་སྒྲོམ་འདི་ <emph> རྟགས་བཀལ་བཤོལ་ཞིནམ་ལས་ </emph> བཏུབ་ <emph> ཨེབ་གཏང་། </emph>."
@@ -54687,7 +50964,6 @@ msgstr ""
msgctxt ""
"06060100.xhp\n"
"par_id3153964\n"
-"10\n"
"help.text"
msgid "Sheet protection also affects the context menu of the sheet tabs at the bottom of the screen. The <emph>Delete</emph> and <emph>Rename</emph> commands cannot be selected."
msgstr "ཤོག་ལེབ་ཉེན་སྐྱོབ་ཀྱིས་ གསལ་གཞིའི་མཇུག་ལུ་ ཤོག་ལེབ་མཆོང་ལྡེ་གི་སྐབས་དོན་དཀར་ཆག་ཡང་ གནོད་སྐྱོན་འབྱུངམ་ཨིན། <emph> བཏོན་གཏང་ </emph> དང་ <emph> སྤོ་/འདྲ་བཤུས་བརྐྱབ་བརྡ་བཀོད་ཚུ་ </emph> སེལ་འཐུ་འབད་མི་ཚུགསཔ་ཨིན།"
@@ -54696,7 +50972,6 @@ msgstr "ཤོག་ལེབ་ཉེན་སྐྱོབ་ཀྱིས་
msgctxt ""
"06060100.xhp\n"
"par_id3150301\n"
-"19\n"
"help.text"
msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles."
msgstr "ཤོག་ལེབ་དེ་ཉེན་སྐྱོབ་འབད་དེ་ཡོད་པ་ཅིན་ ཁྱོད་ཀྱིས་ ནང་ཐིག་གང་རུང་ཅིག་ ལེགས་བཅོས་དང་བཏོན་གཏང་ནི་ཚུ་འབད་མི་ཚུགསཔ་ཨིན།"
@@ -54713,7 +50988,6 @@ msgstr ""
msgctxt ""
"06060100.xhp\n"
"par_id3149815\n"
-"11\n"
"help.text"
msgid "Once saved, protected sheets can only be saved again by using the <emph>File - Save As</emph> command."
msgstr "ཉེན་སྐྱོབ་འབད་ཡོད་པའི་ཤོག་ལེབ་ཚུ་ཚར་གཅིག་སྲུང་བཞག་འབད་བཞིནམ་ལས་ ལོག་སྟེ་རང་སྲུང་དགོ་པ་ཅིན་ <emph> ཡིག་སྣོད་ - བརྡ་བཀོད་སྦེ་སྲུང་བཞག་ </emph> ལག་ལེན་ཐོག་ལས་རྐྱངམ་ཅིག་སྲུང་ཚུགསཔ་ཨིན།"
@@ -54722,19 +50996,17 @@ msgstr "ཉེན་སྐྱོབ་འབད་ཡོད་པའི་ཤོ
msgctxt ""
"06060100.xhp\n"
"hd_id3150206\n"
-"4\n"
"help.text"
-msgid "Password (optional)"
-msgstr "ཆོག་ཡིག(གདམ་ཁ་ཅན།)"
+msgid "<link href=\"text/shared/01/password_dlg.xhp\" name=\"Password\">Password (optional)</link>"
+msgstr ""
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3152990\n"
-"7\n"
"help.text"
-msgid "<ahelp hid=\".uno:Protect\">Allows you to enter a password to protect the sheet from unauthorized changes.</ahelp>"
-msgstr "<ahelp hid=\".uno:Protect\"> ཤོག་ལེབ་དེ་ གནང་བ་མེད་པའི་བསྒྱུར་བཅོས་ཚུ་ལས་ཉེན་སྐྱོབ་འབད་ནིའི་དོན་ལུ་ ཁྱོད་ལུ་ ཆོག་ཡིག་བཙུགས་བཅུགཔ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/protectsheetdlg/password1\">Allows you to enter a password to protect the sheet from unauthorized changes.</ahelp>"
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -54756,7 +51028,6 @@ msgstr "ཡིག་ཆ་ཉེན་སྐྱོབ་འབད་དོ།"
msgctxt ""
"06060200.xhp\n"
"hd_id3150541\n"
-"1\n"
"help.text"
msgid "Protecting document"
msgstr "ཡིག་ཆ་ཉེན་སྐྱོབ་འབད་དོ།"
@@ -54781,7 +51052,6 @@ msgstr ""
msgctxt ""
"06060200.xhp\n"
"par_id3145750\n"
-"7\n"
"help.text"
msgid "A protected document, once saved, can only be saved again with the <emph>File - Save As</emph> menu command."
msgstr "ཉེན་སྐྱོབ་འབད་ཡོད་པའི་ཡིག་ཆ་དེ་ཚར་གཅིག་སྲུང་བཞག་བཞིནམ་ལས་ ལོག་སྟེ་རང་སྲུང་དགོ་པ་ཅིན་ <emph> ཡག་སྣོད་ - བཟུམ་སྦེ་སྲུང་ </emph> བརྡ་བཀོད་དཀར་ཆག་དང་བཅས་ཏེ་རྐྱངམ་ཅིག་སྲུང་བཏུབ་ཨིན།"
@@ -54790,7 +51060,6 @@ msgstr "ཉེན་སྐྱོབ་འབད་ཡོད་པའི་ཡི
msgctxt ""
"06060200.xhp\n"
"hd_id3152596\n"
-"4\n"
"help.text"
msgid "Password (optional)"
msgstr "ཆོག་ཡིག(གདམ་ཁ་ཅན།)"
@@ -54799,10 +51068,17 @@ msgstr "ཆོག་ཡིག(གདམ་ཁ་ཅན།)"
msgctxt ""
"06060200.xhp\n"
"par_id3155412\n"
-"5\n"
"help.text"
-msgid "You can create a password to protect your document against unauthorized or accidental modifications."
-msgstr "ཁྱོད་རའི་ཡིག་ཆ་ གནང་བ་མེད་པའི་ཡང་ན་ གློ་བུར་གྱི་ལེགས་བཅོས་འབད་ནི་ལས་ཉེན་སྐྱོབ་འབད་ནིའི་དོན་ལུ་ ཁྱོད་ཀྱིས་ ཆོག་ཡིག་གཅིག་གསར་བསྐྲུན་འབད་ཚུགསཔ་ཨིན།"
+msgid "<ahelp hid=\"SC_HID_PASSWD_DOC\">You can create a password to protect your document against unauthorized or accidental modifications.</ahelp>"
+msgstr ""
+
+#: 06060200.xhp
+msgctxt ""
+"06060200.xhp\n"
+"par_id3155413\n"
+"help.text"
+msgid "<ahelp hid=\"SC_HID_PASSWD_DOC_CONFIRM\" visibility=\"hidden\">Re-enter the password.</ahelp>"
+msgstr ""
#: 06060200.xhp
msgctxt ""
@@ -54832,7 +51108,6 @@ msgstr "<bookmark_value>རྩིས་སྟོན་དོ་; རང་བཞ
msgctxt ""
"06070000.xhp\n"
"hd_id3145673\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\">AutoCalculate</link>"
msgstr "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\"> རང་བཞིན་རྩིས་སྟོན། </link>"
@@ -54841,7 +51116,6 @@ msgstr "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\"> རང
msgctxt ""
"06070000.xhp\n"
"par_id3148798\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AutomaticCalculation\">Automatically recalculates all formulas in the document.</ahelp>"
msgstr "<ahelp hid=\".uno:AutomaticCalculation\"> ཡིག་ཆ་ནང་ལུ་ མན་ངག་ཚུ་རང་བཞིན་གྱིས་ སླར་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -54850,7 +51124,6 @@ msgstr "<ahelp hid=\".uno:AutomaticCalculation\"> ཡིག་ཆ་ནང་ལ
msgctxt ""
"06070000.xhp\n"
"par_id3145173\n"
-"3\n"
"help.text"
msgid "All cells are recalculated after a sheet cell has been modified. Any charts in the sheet will also be refreshed."
msgstr "ཤོག་ལེབ་ནང་ཐིག་འད་ལེགས་བཅོས་འབད་ཚར་ཞིནམ་ལས་ ནང་ཐིག་ཚུ་ཆ་མཉམ་ལོག་རྩིས་སྟོན་ཏེ་ཡོད། ཤོག་ཁྲམ་ནང་དཔེ་རིས་ཚུ་གང་རུང་ཡང་སེལ་འབད་འོང་།"
@@ -54875,7 +51148,6 @@ msgstr "<bookmark_value>ལོག་རྩིས་སྟོན་འབད་
msgctxt ""
"06080000.xhp\n"
"hd_id3157909\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\">Recalculate</link>"
msgstr "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\"> སླར་རྩིས་བཏོན། </link>"
@@ -54884,7 +51156,6 @@ msgstr "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\"> སླ
msgctxt ""
"06080000.xhp\n"
"par_id3154758\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:Calculate\">Recalculates all changed formulas. If AutoCalculate is enabled, the Recalculate command applies only to formulas like RAND or NOW.</ahelp>"
msgstr ""
@@ -54901,7 +51172,6 @@ msgstr ""
msgctxt ""
"06080000.xhp\n"
"par_id3150793\n"
-"5\n"
"help.text"
msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
msgstr "ཡིག་ཆ་དེ་སླར་རྩིས་བཏོན་ཚར་བའི་ཤུལ་ལས་ བཀྲམ་སྟོན་དེ་ ཡང་སེལ་འབད་ཡོདཔ་ཨིན། ཤོག་ལེབ་ནང་ཤོམ་ཏེ་ཡོད་པའི་དཔེ་རིས་ཚུ་ཡང་ཡང་སེལ་འབད་ཡོདཔ་ཨིན།"
@@ -54934,7 +51204,6 @@ msgstr "<bookmark_value>རང་བཞིན་ཨིན་པུཊི་ལ
msgctxt ""
"06130000.xhp\n"
"hd_id3148492\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\">AutoInput</link>"
msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\"> རང་བཞིན་ཨིན་པུཊི། </link>"
@@ -54943,7 +51212,6 @@ msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\"> རང་
msgctxt ""
"06130000.xhp\n"
"par_id3150793\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AutoComplete\">Switches the AutoInput function on and off, which automatically completes entries, based on other entries in the same column.</ahelp> The column is scanned up to a maximum of 2000 cells or 200 different strings."
msgstr "<ahelp hid=\".uno:AutoComplete\"> ཀེར་ཐིག་གཅིག་པ་ནང་ ཐོ་བཀོད་གཞན་མི་ཚུ་གུ་ལུ་གཞི་བཞག་སྟེ་ཐོ་བཀོད་ཚུ་ རང་བཞིན་གྱིས་མཇུག་བསྡུ་བའི་ རང་བཞིན་ཨིན་པུཊི་ལས་འགན་ཨཱོན་དང་ཨོཕ་སོར་བསྒྱུར་འབདཝ་ཨིན། </ahelp> ཀེར་ཐིག་དེ་ མང་མཐའ་ནང་ཐིག་ ༢༠༠༠ ཡང་ན་ ཡིག་རྒྱུན་སོ་སོར་ ༢༠༠ དེ་ཅིག་ཞིབ་ལྟ་འབད་ཡོདཔ་ཨིན།"
@@ -54952,7 +51220,6 @@ msgstr "<ahelp hid=\".uno:AutoComplete\"> ཀེར་ཐིག་གཅིག
msgctxt ""
"06130000.xhp\n"
"par_id3156422\n"
-"8\n"
"help.text"
msgid "The completion text is highlighted."
msgstr "ཚིག་ཡིག་ཡོངས་རྫོགས་དེ་ གཙོ་དམིགས་འབད་ཡོདཔ་ཨིན།"
@@ -54993,7 +51260,6 @@ msgstr ""
msgctxt ""
"06130000.xhp\n"
"par_id3150439\n"
-"3\n"
"help.text"
msgid "When typing formulas using characters that match previous entries, a Help tip will appear listing the last ten functions used from <emph>Function Wizard</emph>, from all defined range names, from all database range names, and from the content of all label ranges."
msgstr "ཧེ་མ་གི་ཐོ་བཀོད་ཚུ་མཐུན་པའི་ཡིག་འབྲུ་ཚུ་ལག་ལེན་ཐོག་ལས་མན་ངག་ཚུ་ཡིག་དཔར་བརྐྱབ་པའི་སྐབས་ <emph> ལས་འགན་ཝི་ཛརཌི་ </emph> ལས་ ངེས་འཛིན་འབད་ཡོད་པའི་ཁྱབ་ཚད་མིང་ཚུ་ཆ་མཉམ་ལས་ གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་མིང་ཚུ་ཆ་མཉམ་ལས་ ཁ་ཡིག་བཏགས་ནིའི་ཁྱབ་ཚད་ཚུའི་ནང་དོན་ལས་ ལག་ལེན་འཐབ་ཡོད་པའི་ མཇུག་གི་ལས་འགན་བཅུ་ཐམ་ཚུ་ཐོ་བཀོད་འབད་ཐོག་ལས་ གྲོགས་རམ་ཕན་བསླབ་གཅིག་འབྱུངམ་ཨིན།"
@@ -55002,37 +51268,10 @@ msgstr "ཧེ་མ་གི་ཐོ་བཀོད་ཚུ་མཐུན་
msgctxt ""
"06130000.xhp\n"
"par_id3153363\n"
-"5\n"
"help.text"
msgid "AutoInput is case-sensitive. If, for example, you have written \"Total\" in a cell, you cannot enter \"total\" in another cell of the same column without first deactivating AutoInput."
msgstr "རང་བཞིན་ཨིན་པུཊི་དེ་ གནས་སྟངས་ཞིབ་རྟོགས་ཅན་ཨིན། དཔེ་འབད་བ་ཅིན་ ཁྱོད་ཀྱིས་ ནང་ཐིག་གཅིག་ནང་ \"Total\" འབྲི་ཡོད་པ་ཅིན་ ཁྱོད་ཀྱིས་ དང་པ་རང་རང་བཞིན་ཨིན་པུཊི་ཤུགས་མེད་མ་བཟོཝ་ལས་ ནང་ཐིག་གཞན་མི་གཅིག་ནང་ \"total\" དེ་བཙུགས་མི་ཚུགསཔ་ཨིན།"
-#: 06990000.xhp
-msgctxt ""
-"06990000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Cell Contents"
-msgstr "ནང་ཐིག་ནང་དོན་ཚུ།"
-
-#: 06990000.xhp
-msgctxt ""
-"06990000.xhp\n"
-"hd_id3153087\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06990000.xhp\" name=\"Cell Contents\">Cell Contents</link>"
-msgstr "<link href=\"text/scalc/01/06990000.xhp\" name=\"Cell Contents\"> ནང་ཐིག་ནང་དོན་ཚུ། </link>"
-
-#: 06990000.xhp
-msgctxt ""
-"06990000.xhp\n"
-"par_id3145674\n"
-"2\n"
-"help.text"
-msgid "Opens a submenu with commands to calculate tables and activate AutoInput."
-msgstr "ཐིག་ཁྲམ་ཚུ་རྩིས་སྟོན་ནི་དང་ རང་བཞིན་ཨིན་པུཊི་ཤུགས་ལྡན་བཟོ་ནིའི་དོན་ལུ་བརྡ་བཀོད་ཚུ་དང་བཅས་པའི་ཡན་ལག་དཀར་ཆག་གཅིག་ཁ་ཕྱེཝ་ཨིན།"
-
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
@@ -55042,7 +51281,6 @@ msgid "Split Window"
msgstr ""
#: 07080000.xhp
-#, fuzzy
msgctxt ""
"07080000.xhp\n"
"hd_id3163800\n"
@@ -55059,7 +51297,6 @@ msgid "<ahelp hid=\".\">Divides the current window at the top left corner of the
msgstr ""
#: 07080000.xhp
-#, fuzzy
msgctxt ""
"07080000.xhp\n"
"par_id3154910\n"
@@ -55068,7 +51305,6 @@ msgid "You can also use the mouse to split the window horizontally or vertically
msgstr "ཁྱོད་ཀྱིས་ མཱའུསི་དེ་ སྒོ་སྒྲིག་ཐད་སྙོམས་ཡང་ན་ཀེར་ཕྲང་སྦེ་གཤག་ནིའི་དོན་ལུ་་ཡང་ལག་ལེན་འཐབ་བཏུབ་ཨིན། འ་ནི་འབད་ནིའི་དོན་ལུ་ སྒོ་སྒྲིག་ནང་ལུ་ ཐད་ཀར་དུ་ཀེར་ཕྲང་བཤུད་ཕྲའི་ལྟག་ལུ་ཡང་ན་ ཐད་ཀར་དུ་ཐད་སྙོམས་བཤུད་ཕྲའི་གཡས་ཕྱོགས་ལུ་གནས་ཡོད་པའི་གྲལ་ཐིག་གནགཔོ་སྟུག་པག་པ་དེ་འདྲུད། གྲལ་ཐིག་གནགཔོ་སྟུག་པག་པ་གཅིག་གིས་ སྒོ་སྒྲིག་དེ་ག་སྟེ་གཤག་ཡོདཔ་ཨིན་ན་སྟོནམ་ཨིན།"
#: 07080000.xhp
-#, fuzzy
msgctxt ""
"07080000.xhp\n"
"par_id3149263\n"
@@ -55085,7 +51321,6 @@ msgid "Freeze Rows and Columns"
msgstr ""
#: 07090000.xhp
-#, fuzzy
msgctxt ""
"07090000.xhp\n"
"hd_id3150517\n"
@@ -55094,7 +51329,6 @@ msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Freeze Rows and
msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\"> ཐོགས་ནི། </link>"
#: 07090000.xhp
-#, fuzzy
msgctxt ""
"07090000.xhp\n"
"par_id3156289\n"
@@ -55114,7 +51348,6 @@ msgstr "གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད
msgctxt ""
"12010000.xhp\n"
"hd_id3157909\n"
-"1\n"
"help.text"
msgid "Define Database Range"
msgstr "གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་ངེས་འཛིན་འབད།"
@@ -55123,7 +51356,6 @@ msgstr "གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད
msgctxt ""
"12010000.xhp\n"
"par_id3155922\n"
-"2\n"
"help.text"
msgid "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\">Defines a database range based on the selected cells in your sheet.</ahelp></variable>"
msgstr "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\"> ཁྱོད་རའི་ཤོག་ལེབ་ནང་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཚུ་གུ་ལུ་གཞི་བཞག་པའི་ གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་ངེས་འཛིན་འབདཝ་ཨིན། </ahelp></variable>"
@@ -55132,7 +51364,6 @@ msgstr "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\"> ཁྱོ
msgctxt ""
"12010000.xhp\n"
"par_id3149456\n"
-"5\n"
"help.text"
msgid "You can only select a rectangular cell range."
msgstr "ཁྱོད་ཀྱིས་ནང་ཐིག་ཁྱབ་ཚད་གྲུ་བཞི་ནར་མོ་འབད་མི་རྐྱངམ་ཅིག་སེལ་འཐུ་འབད་ཚུགསཔ་ཨིན།"
@@ -55141,7 +51372,6 @@ msgstr "ཁྱོད་ཀྱིས་ནང་ཐིག་ཁྱབ་ཚད་
msgctxt ""
"12010000.xhp\n"
"hd_id3156422\n"
-"3\n"
"help.text"
msgid "Name"
msgstr "མིང་།"
@@ -55150,7 +51380,6 @@ msgstr "མིང་།"
msgctxt ""
"12010000.xhp\n"
"par_id3150770\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/entry\">Enter a name for the database range that you want to define, or select an existing name from the list.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/entry\"> ཁྱོད་ཀྱིས་ ངེས་འཛིན་འབད་དགོ་མནོ་མི་ གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་ལུ་ མིང་གཅིག་བཙུགས་སམ་ ཐོ་ཡིག་ལས་ ཡོད་བཞིན་པའི་མིང་གཅིག་སེལ་འཐུ་འབད། </ahelp>"
@@ -55159,7 +51388,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/entry\"> ཁྱ
msgctxt ""
"12010000.xhp\n"
"hd_id3147228\n"
-"6\n"
"help.text"
msgid "Range"
msgstr "ཁྱབ་ཚད།"
@@ -55168,7 +51396,6 @@ msgstr "ཁྱབ་ཚད།"
msgctxt ""
"12010000.xhp\n"
"par_id3150441\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/assign\">Displays the selected cell range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/assign\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཁྱབ་ཚད་བཀྲམ་སྟོན་འབདཝ་ཨིན། </ahelp>"
@@ -55177,7 +51404,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/assign\"> སེ
msgctxt ""
"12010000.xhp\n"
"hd_id3153188\n"
-"10\n"
"help.text"
msgid "Add/Modify"
msgstr "ཁ་སྐོང་/ལེགས་བཅོས་འབད།"
@@ -55186,7 +51412,6 @@ msgstr "ཁ་སྐོང་/ལེགས་བཅོས་འབད།"
msgctxt ""
"12010000.xhp\n"
"par_id3153726\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/add\">Adds the selected cell range to the database range list, or modifies an existing database range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/add\"> གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་འོ་ཡིག་ནང་ལུ་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ ནང་ཐིག་ཁྱབ་ཚད་ཁ་སྐོང་རྐྱབ་བམ་ ཡོད་བཞིན་པའི་གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་ལེགས་བཅོས་འབདཝ་ཨིན། </ahelp>"
@@ -55195,7 +51420,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/add\"> གནད
msgctxt ""
"12010000.xhp\n"
"hd_id3150010\n"
-"12\n"
"help.text"
msgid "More >>"
msgstr "ཧེང་བཀལ། >>"
@@ -55204,7 +51428,6 @@ msgstr "ཧེང་བཀལ། >>"
msgctxt ""
"12010000.xhp\n"
"par_id3153144\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/more\">Shows additional <link href=\"text/scalc/01/12010100.xhp\" name=\"options\">options</link>.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/more\"> གདམ་ཁ་ <link href=\"text/scalc/01/12010100.xhp\" name=\"options\"> ཁ་སྐོང་ཚུ་སྟོནམ་ཨིན། </link>.</ahelp>"
@@ -55221,7 +51444,6 @@ msgstr "གདམ་ཁ་ཚུ།"
msgctxt ""
"12010100.xhp\n"
"hd_id3154760\n"
-"1\n"
"help.text"
msgid "Options"
msgstr "གདམ་ཁ་ཚུ།"
@@ -55230,7 +51452,6 @@ msgstr "གདམ་ཁ་ཚུ།"
msgctxt ""
"12010100.xhp\n"
"hd_id3153379\n"
-"3\n"
"help.text"
msgid "Contains column labels"
msgstr "ནང་ན་ ཀེར་ཐིག་ཁ་ཡིག་བཏགས་ནི་ཚུ་ཤོམ་ཏེ་ཡོད།"
@@ -55239,7 +51460,6 @@ msgstr "ནང་ན་ ཀེར་ཐིག་ཁ་ཡིག་བཏགས
msgctxt ""
"12010100.xhp\n"
"par_id3148798\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/ContainsColumnLabels\" visibility=\"visible\">Selected cell ranges contains labels.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/ContainsColumnLabels\" visibility=\"visible\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཁྱབ་ཚད་ཚུ་གི་ནང་ན་ ཁ་ཡིག་བཏགས་ནི་ཚུ་ཤོམ་ཏེ་ཡོདཔ་ཨིན། </ahelp>"
@@ -55248,7 +51468,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/ContainsColumnLa
msgctxt ""
"12010100.xhp\n"
"hd_id3153970\n"
-"5\n"
"help.text"
msgid "Insert or delete cells"
msgstr "ནང་ཐིག་ཚུ་བཙུགས་ ཡང་ན་བཏོན་གཏང་།"
@@ -55257,7 +51476,6 @@ msgstr "ནང་ཐིག་ཚུ་བཙུགས་ ཡང་ན་བཏ
msgctxt ""
"12010100.xhp\n"
"par_id3154684\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/InsertOrDeleteCells\" visibility=\"visible\">Automatically inserts new rows and columns into the database range in your document when new records are added to the database.</ahelp> To manually update the database range, choose <emph>Data - Refresh</emph> <emph>Range</emph>."
msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/InsertOrDeleteCells\" visibility=\"visible\"> གནད་སྡུད་གཞི་རྟེན་ལུ་ དྲན་ཐོ་གསརཔ་ཚུ་ཁ་སྐོང་རྐྱབ་ཡོད་པའི་སྐབས་སུ་ ཁྱོད་རའི་ཡིག་ཆ་ནང་ གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་ནང་ན་ལུ་ གྲལ་ཐིག་དང་ཀེར་ཐིག་གསརཔ་ཚུ་རང་བཞིན་གྱིས་བཙུགསཔ་ཨིན། </ahelp> གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་ལག་ཐོག་ལས་ དུས་མཐུནམ་བཟོ་ནིའི་དོན་ལུ་ <emph> ཚེས་གྲངས་ - ཡང་སེལ་འབད་ </emph> <emph> ཁྱབ་ཚད་ </emph> གདམ།"
@@ -55266,7 +51484,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/InsertOrDeleteCe
msgctxt ""
"12010100.xhp\n"
"hd_id3153768\n"
-"7\n"
"help.text"
msgid "Keep formatting"
msgstr "རྩ་སྒྲིག་འབད་དེ་རང་བཞག"
@@ -55275,7 +51492,6 @@ msgstr "རྩ་སྒྲིག་འབད་དེ་རང་བཞག"
msgctxt ""
"12010100.xhp\n"
"par_id3147435\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/KeepFormatting\" visibility=\"visible\">Applies the existing cell format of headers and first data row to the whole database range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/KeepFormatting\" visibility=\"visible\"> གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་ཧྲིལ་བུ་ལུ་ གནས་ཞིན་ཡོད་པའི་ནང་ཐིག་རྩ་སྒྲིག་གི་ མགོ་ཡིག་ཚུ་དང་ གནད་སྡུད་གྲལ་ཐིག་དང་པ་འཇུག་སྤྱོད་འབདཝ་ཨིན། </ahelp>"
@@ -55284,7 +51500,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/KeepFormatting\"
msgctxt ""
"12010100.xhp\n"
"hd_id3155856\n"
-"9\n"
"help.text"
msgid "Don't save imported data"
msgstr "ནང་འདྲེན་འབད་ཡོད་པའི་གནད་སྡུད་སྲུང་མ་བཞག"
@@ -55293,7 +51508,6 @@ msgstr "ནང་འདྲེན་འབད་ཡོད་པའི་གནད
msgctxt ""
"12010100.xhp\n"
"par_id3153363\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/DontSaveImportedData\" visibility=\"visible\">Only saves a reference to the database, and not the contents of the cells.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/DontSaveImportedData\" visibility=\"visible\"> ནང་ཐིག་ཚུའི་ནང་དོན་ཚུ་མེན་པར་ གནད་སྡུད་གཞི་རྟེན་ལུ་གཞི་བསྟུན་རྐྱངམ་ཅིག་སྲུང་བཞག་འབདཝ་ཨིན། </ahelp>"
@@ -55302,7 +51516,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/DontSaveImported
msgctxt ""
"12010100.xhp\n"
"hd_id3147428\n"
-"11\n"
"help.text"
msgid "Source:"
msgstr "འབྱུང་ཁུངས།:"
@@ -55311,7 +51524,6 @@ msgstr "འབྱུང་ཁུངས།:"
msgctxt ""
"12010100.xhp\n"
"par_id3148576\n"
-"12\n"
"help.text"
msgid "Displays information about the current database source and any existing operators."
msgstr "ད་ལྟོའི་གནད་སྡུད་གཞི་རྟེན་འབྱུང་ཁུངས་དང་ གནས་ཞིན་ཡོད་པའི་བཀོལ་སྤྱོདཔ་ཚུའི་སྐོར་ལས་བརྡ་དོན་བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -55320,7 +51532,6 @@ msgstr "ད་ལྟོའི་གནད་སྡུད་གཞི་རྟེ
msgctxt ""
"12010100.xhp\n"
"hd_id3146976\n"
-"13\n"
"help.text"
msgid "More <<"
msgstr "ལྷག་སྟེ། <<"
@@ -55329,7 +51540,6 @@ msgstr "ལྷག་སྟེ། <<"
msgctxt ""
"12010100.xhp\n"
"par_id3149664\n"
-"14\n"
"help.text"
msgid "Hides the additional options."
msgstr "ཁ་སྐོང་གདམ་ཁ་ཚུ་སྦཝ་ཨིན།"
@@ -55354,7 +51564,6 @@ msgstr "<bookmark_value>གནད་སྡུད་གཞི་རྟེན་
msgctxt ""
"12020000.xhp\n"
"hd_id3145068\n"
-"1\n"
"help.text"
msgid "Select Database Range"
msgstr "གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་སེལ་འཐུ་འབད་"
@@ -55363,7 +51572,6 @@ msgstr "གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད
msgctxt ""
"12020000.xhp\n"
"par_id3149655\n"
-"2\n"
"help.text"
msgid "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Selects a database range that you defined under <link href=\"text/scalc/01/12010000.xhp\" name=\"Data - Define Range\">Data - Define Range</link>.</ahelp></variable>"
msgstr "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་ ཁྱོད་ཀྱིས་<link href=\"text/scalc/01/12010000.xhp\" name=\"Data - Define Range\">གནད་སྡུད་ - ངེས་འཛིན་ཁྱབ་ཚད་</link>གི་འོག་ལུ་ངེས་འཛིན་འབད་ཡོད་མི་འདི་ སེལ་འཐུ་འབད།</ahelp></variable>"
@@ -55372,7 +51580,6 @@ msgstr "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">གནད
msgctxt ""
"12020000.xhp\n"
"hd_id3153192\n"
-"3\n"
"help.text"
msgid "Ranges"
msgstr "ཁྱབ་ཚད་ཚུ་"
@@ -55381,7 +51588,6 @@ msgstr "ཁྱབ་ཚད་ཚུ་"
msgctxt ""
"12020000.xhp\n"
"par_id3154684\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/selectrange/treeview\">Lists the available database ranges. To select a database range, click its name, and then click <emph>OK</emph>.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/selectrange/treeview\">གནད་སྡུད་ཁྱབ་ཚད་འཐོབ་ཚུགསཔ་ཡོད་མི་ཚུ་ ཐོ་བཀོད་འབདཝ་ཨིན། གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་ཅིག་སེལ་འཐུ་འབད་ནིའི་དོན་ལས་ དེའི་མིང་ཨེབ་གཏང་ དེ་ལས་ <emph>བཏུབ་</emph>ཨེབ་གཏང་།</ahelp>"
@@ -55398,7 +51604,6 @@ msgstr "དབྱེ་སེལ།"
msgctxt ""
"12030000.xhp\n"
"hd_id3150275\n"
-"1\n"
"help.text"
msgid "Sort"
msgstr "དབྱེ་སེལ།"
@@ -55407,7 +51612,6 @@ msgstr "དབྱེ་སེལ།"
msgctxt ""
"12030000.xhp\n"
"par_id3155922\n"
-"2\n"
"help.text"
msgid "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">Sorts the selected rows according to the conditions that you specify.</ahelp></variable> $[officename] automatically recognizes and selects database ranges."
msgstr "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\"> ཁྱོད་ཀྱིས་ གསལ་བཀོད་འབད་ཡོད་པའི་ གནས་སྟངས་ཚུ་དང་ འཁྲིལ་ཏེ་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་གྲལ་ཐིག་ཚུ་དབྱེ་སེལ་འབདཝ་ཨིན། </ahelp></variable> $[officename] གིས་ གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་ཚུ་ རང་བཞིན་གྱིས་ ངོས་འཛིན་འབད་དེ་ སེལ་འཐུ་འབདཝ་ཨིན།"
@@ -55416,7 +51620,6 @@ msgstr "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\"> ཁྱོད་
msgctxt ""
"12030000.xhp\n"
"par_id3147428\n"
-"4\n"
"help.text"
msgid "You cannot sort data if the <link href=\"text/shared/01/02230000.xhp\" name=\"Record changes\">Record changes</link> options is enabled."
msgstr "<link href=\"text/shared/01/02230000.xhp\" name=\"Record changes\"> དྲན་ཐོ་བསྒྱུར་བཅོས་གདམ་ཁ་ཚུ་ </link> ལྕོགས་ཅན་བཟོ་ཡོད་པ་ཅིན་ ཁྱོད་ཀྱིས་ གནད་སྡུད་དབྱེ་སེལ་འབད་མི་ཚུགས།"
@@ -55441,7 +51644,6 @@ msgstr "<bookmark_value> འཚོལ་དོ་; གནད་སྡུད་
msgctxt ""
"12030100.xhp\n"
"hd_id3152350\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12030100.xhp\" name=\"Sort Criteria\">Sort Criteria</link>"
msgstr "<link href=\"text/scalc/01/12030100.xhp\" name=\"Sort Criteria\"> ཁྱད་ཚད་འཚོལ། </link>"
@@ -55450,7 +51652,6 @@ msgstr "<link href=\"text/scalc/01/12030100.xhp\" name=\"Sort Criteria\"> ཁྱ
msgctxt ""
"12030100.xhp\n"
"par_id3151385\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortcriteriapage/SortCriteriaPage\">Specify the sorting options for the selected range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortcriteriapage/SortCriteriaPage\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ ཁྱབ་ཚད་ཀྱི་དོན་ལུ་ དབྱེ་སེལ་འབད་ནིའི་གདམ་ཁ་ཚུ་ གསལ་བཀོད་འབད། </ahelp>"
@@ -55459,7 +51660,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortcriteriapage/SortCriteriaPage\"> ས
msgctxt ""
"12030100.xhp\n"
"par_id3152462\n"
-"24\n"
"help.text"
msgid "Ensure that you include any row and column titles in the selection."
msgstr "ཁྱོད་ཀྱིས་ སེལ་འཐུ་ནང་ལུ་ གྲལ་ཐིག་དང་ ཀེར་ཐིག་མགོ་མིང་ཚུ་གྲངས་སུ་བཙུགས་ཡོདཔ་སྦེ་ངེས་ཏིག་བཟོ།"
@@ -55468,7 +51668,6 @@ msgstr "ཁྱོད་ཀྱིས་ སེལ་འཐུ་ནང་ལུ
msgctxt ""
"12030100.xhp\n"
"hd_id3147428\n"
-"3\n"
"help.text"
msgid "Sort by"
msgstr "གིས་ དབྱེ་སེལ་འབད་ཡོདཔ།"
@@ -55477,7 +51676,6 @@ msgstr "གིས་ དབྱེ་སེལ་འབད་ཡོདཔ།"
msgctxt ""
"12030100.xhp\n"
"par_id3155854\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortkey/sortlb\">Select the column that you want to use as the primary sort key.</ahelp>"
msgstr ""
@@ -55486,7 +51684,6 @@ msgstr ""
msgctxt ""
"12030100.xhp\n"
"hd_id3146121\n"
-"5\n"
"help.text"
msgid "Ascending"
msgstr "ཡར་འཛེགས།"
@@ -55495,7 +51692,6 @@ msgstr "ཡར་འཛེགས།"
msgctxt ""
"12030100.xhp\n"
"par_id3148645\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortkey/up\">Sorts the selection from the lowest value to the highest value. The sorting rules are given by the locale. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
msgstr ""
@@ -55504,7 +51700,6 @@ msgstr ""
msgctxt ""
"12030100.xhp\n"
"hd_id3155411\n"
-"7\n"
"help.text"
msgid "Descending"
msgstr "མར་འབབ།"
@@ -55513,7 +51708,6 @@ msgstr "མར་འབབ།"
msgctxt ""
"12030100.xhp\n"
"par_id3151075\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortkey/down\">Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
msgstr ""
@@ -55522,7 +51716,6 @@ msgstr ""
msgctxt ""
"12030100.xhp\n"
"hd_id3154492\n"
-"9\n"
"help.text"
msgid "Then by"
msgstr "དེ་ལས་གིས།"
@@ -55531,7 +51724,6 @@ msgstr "དེ་ལས་གིས།"
msgctxt ""
"12030100.xhp\n"
"par_id3156283\n"
-"10\n"
"help.text"
msgid "Select the column that you want to use as the secondary sort key."
msgstr ""
@@ -55540,7 +51732,6 @@ msgstr ""
msgctxt ""
"12030100.xhp\n"
"hd_id3149413\n"
-"11\n"
"help.text"
msgid "Ascending"
msgstr "ཡར་འཛེགས།"
@@ -55549,7 +51740,6 @@ msgstr "ཡར་འཛེགས།"
msgctxt ""
"12030100.xhp\n"
"par_id3154018\n"
-"12\n"
"help.text"
msgid "Sorts the selection from the lowest value to the highest value. You can define the sort rules on Data - Sort - Options. You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
msgstr ""
@@ -55558,7 +51748,6 @@ msgstr ""
msgctxt ""
"12030100.xhp\n"
"hd_id3146972\n"
-"13\n"
"help.text"
msgid "Descending"
msgstr "མར་འབབ།"
@@ -55567,7 +51756,6 @@ msgstr "མར་འབབ།"
msgctxt ""
"12030100.xhp\n"
"par_id3145640\n"
-"14\n"
"help.text"
msgid "Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options. You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
msgstr ""
@@ -55576,7 +51764,6 @@ msgstr ""
msgctxt ""
"12030100.xhp\n"
"hd_id3150300\n"
-"21\n"
"help.text"
msgid "Sort Ascending/Descending"
msgstr "ཡར་འཚེགས་/མར་འབབར་དབྱེ་སེལ།"
@@ -55585,7 +51772,6 @@ msgstr "ཡར་འཚེགས་/མར་འབབར་དབྱེ་ས
msgctxt ""
"12030100.xhp\n"
"par_id3158212\n"
-"22\n"
"help.text"
msgid "<ahelp hid=\".uno:SortDescending\"><variable id=\"sytext\">Sorts the selection from the highest to the lowest value, or from the lowest to the highest value. Number fields are sorted by size and text fields by the order of the characters. You can define the sort rules on Data - Sort - Options.</variable></ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
msgstr ""
@@ -55594,7 +51780,6 @@ msgstr ""
msgctxt ""
"12030100.xhp\n"
"par_id3159236\n"
-"25\n"
"help.text"
msgid "Icons on the <emph>Standard</emph> toolbar"
msgstr "ཚད་ལྡན་ལག་ཆས་ཕྲ་རིང་གུ་ལུ་<emph> གུ་ལུ་ </emph> ངོས་དཔར་ཚུ།"
@@ -55619,7 +51804,6 @@ msgstr "<bookmark_value>དབྱེ་སེལ་འབད་དོ་ གན
msgctxt ""
"12030200.xhp\n"
"hd_id3147228\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> Options</link>"
msgstr "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> གདམ་ཁ་ཚུ་</link>"
@@ -55628,7 +51812,6 @@ msgstr "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> གདམ་
msgctxt ""
"12030200.xhp\n"
"par_id3153770\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/SortOptionsPage\"> Sets additional sorting options.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/SortOptionsPage\"> ཁ་སྐོང་དབྱེ་སེལ་འབད་ནིའི་གདམ་ཁ་ཚུ་གཞི་སྒྲིག་འབདཝ་ཨིན།</ahelp>"
@@ -55637,7 +51820,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/SortOptionsPage\"> ཁ་
msgctxt ""
"12030200.xhp\n"
"hd_id3146976\n"
-"3\n"
"help.text"
msgid "Case Sensitivity"
msgstr "ཡི་གུ་ཆེ་ཆུང་གི་ཉེན་ཁ།"
@@ -55646,7 +51828,6 @@ msgstr "ཡི་གུ་ཆེ་ཆུང་གི་ཉེན་ཁ།"
msgctxt ""
"12030200.xhp\n"
"par_id3153091\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\"> Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\"> དང་པ་རང་ ཚུགས་ཡིག་གི་ཡིག་གུ་ཚུ་དང་ དེ་ལས་མགྱོགས་ཡིག་གི་ཡིག་གུ་ཚུ་གིས་སྦེ་ དབྱེ་སེལ་འབདཝ་ཨིན། ཨེ་ཤི་ཡཱན་སྐད་ཡིག་ཚུ་གི་དོན་ལུ་ དམིགས་བསལ་གྱི་ལེགས་སྐྱོང་འཐབ་ནི་འཇུག་སྤྱོད་འབདཝ་ཨིན།</ahelp>"
@@ -55663,7 +51844,6 @@ msgstr "ཨེ་ཤི་ཡཱན་སྐད་ཡིག་ཚུ་གི་
msgctxt ""
"12030200.xhp\n"
"hd_id3155856\n"
-"5\n"
"help.text"
msgid "Range contains column/row labels"
msgstr "ཁྱབ་ཚད་ནང་ན་ ཀེར་ཐིག་/གྲལ་ཐིག་ཁ་ཡིག་ཚུ་ཡོད་"
@@ -55672,7 +51852,6 @@ msgstr "ཁྱབ་ཚད་ནང་ན་ ཀེར་ཐིག་/གྲལ
msgctxt ""
"12030200.xhp\n"
"par_id3154014\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/header\"> Omits the first row or the first column in the selection from the sort.</ahelp> The <emph>Direction</emph> setting at the bottom of the dialog defines the name and function of this check box."
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/header\"> དབྱེ་སེལ་ལས་ སེལ་འཐུ་འབད་ནི་ནང་ལུ་ གྲལ་ཐིག་དང་པ་ཡང་ཀེར་ཐིག་དང་འདི་ སྐྱུར་བཞགཔ་ཨིན།</ahelp> <emph>ཁ་ཕྱོགས་</emph>སྒྲིག་སྟངས་ ཌའི་ལོག་འདི་གི་མཇུག་ལུ་ཡོད་མི་འདི་གིས་ འ་ནི་དཔྱད་སྒྲོམ་འདི་གི་ མིང་དང་ལས་འགན་ ངེས་འཛིན་འབདཝ་ཨིན།"
@@ -55681,7 +51860,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/header\"> དབྱེ་
msgctxt ""
"12030200.xhp\n"
"hd_id3147436\n"
-"7\n"
"help.text"
msgid "Include formats"
msgstr "རྩ་སྒྲིག་ཚུ་གྲངས་སུ་བཙུགས་"
@@ -55690,7 +51868,6 @@ msgstr "རྩ་སྒྲིག་ཚུ་གྲངས་སུ་བཙུག
msgctxt ""
"12030200.xhp\n"
"par_id3149377\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/formats\"> Preserves the current cell formatting.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/formats\"> ད་ལྟོའི་ནང་ཐིག་རྩ་སྒྲིག་འབད་ནི་འདི་ཉམས་སྲུང་འབདཝ་ཨིན།</ahelp>"
@@ -55715,7 +51892,6 @@ msgstr ""
msgctxt ""
"12030200.xhp\n"
"hd_id3153878\n"
-"10\n"
"help.text"
msgid "Copy sort results to:"
msgstr "ལུ་ དབྱེ་སེལ་གྲུབ་འབྲས་འདྲ་བཤུས་རྐྱབས:"
@@ -55724,7 +51900,6 @@ msgstr "ལུ་ དབྱེ་སེལ་གྲུབ་འབྲས་འ
msgctxt ""
"12030200.xhp\n"
"par_id3156286\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/copyresult\"> Copies the sorted list to the cell range that you specify.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/copyresult\"> ཁྱོད་ཀྱིས་གསལ་བཀོད་འབད་མི་ནང་ཐིག་ཁྱབ་ཚད་འདི་ལུ་ དབྱེ་སེལ་འབད་ཡོད་པའི་ཐོ་ཡིག་འདི་འདྲ་བཤུས་རྐྱབས་ཨིན།</ahelp>"
@@ -55733,7 +51908,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/copyresult\"> ཁྱོད
msgctxt ""
"12030200.xhp\n"
"hd_id3153418\n"
-"12\n"
"help.text"
msgid "Sort results"
msgstr "དབྱེ་སེལ་གྲུབ་འབྲས་"
@@ -55742,7 +51916,6 @@ msgstr "དབྱེ་སེལ་གྲུབ་འབྲས་"
msgctxt ""
"12030200.xhp\n"
"par_id3155602\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outarealb\"> Select a named <link href=\"text/scalc/01/12010000.xhp\" name=\"cell range\"> cell range</link> where you want to display the sorted list, or enter a cell range in the input box.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outarealb\"> མིང་བཏགས་ཡོད་པའི་ <link href=\"text/scalc/01/12010000.xhp\" name=\"cell range\"> ནང་ཐིག་ཁྱབ་ཚད་</link> ཅིག་ ཁྱོད་ཀྱིས་ དབྱེ་སེལ་འབད་ཡོད་པའི་ཐོ་ཡིག་འདི་བཀྲམ་སྟོན་འབད་དགོ་མནོ་སར་ སེལ་འཐུ་འབད་ ཡང་ན་ ཨིན་པུཊི་སྒྲོམ་ནང་ནང་ཐིག་ཁྱབ་ཚད་ཅིག་ཐོ་བཀོད་འབད།</ahelp>"
@@ -55751,7 +51924,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outarealb\"> མིང་
msgctxt ""
"12030200.xhp\n"
"hd_id3153707\n"
-"14\n"
"help.text"
msgid "Sort results"
msgstr "དབྱེ་སེལ་གྲུབ་འབྲས་"
@@ -55760,7 +51932,6 @@ msgstr "དབྱེ་སེལ་གྲུབ་འབྲས་"
msgctxt ""
"12030200.xhp\n"
"par_id3145642\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outareaed\"> Enter the cell range where you want to display the sorted list, or select a named range from the list.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outareaed\"> ནང་ཐིག་གི་ཁྱབ་ཚད་འདི་ ཁྱོད་ཀྱིས་དབྱེ་སེལ་འབད་ཡོད་པའི་ཐོ་ཡིག་འདི་བཀྲམ་སྟོན་འབད་དགོ་མནོ་སར་ ཐོབཀོད་འབད་ ཡང་ན་ ཐོ་ཡིག་འདི་ལས་་མིག་བཏགས་ཡོད་པའི་ཁྱབ་ཚད་ཅིག་སེལ་འཐུ་འབད།</ahelp>"
@@ -55769,7 +51940,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outareaed\"> ནང་ཐ
msgctxt ""
"12030200.xhp\n"
"hd_id3155445\n"
-"16\n"
"help.text"
msgid "Custom sort order"
msgstr "སྲོལ་སྒྲིག་དབྱེ་སེལ་གོ་རིམ་"
@@ -55778,7 +51948,6 @@ msgstr "སྲོལ་སྒྲིག་དབྱེ་སེལ་གོ་ར
msgctxt ""
"12030200.xhp\n"
"par_id3156385\n"
-"17\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuser\"> Click here and then select the custom sort order that you want.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuser\"> ནཱ་ལུ་ཨེབ་གཏང་ཞིནམ་ལས་ ཁྱོད་ལུ་དགོ་མི་ སྲོལ་སྒྲིག་དབྱེ་སེལ་གོ་རིམ་འདི་ སེལ་འཐུ་འབད་</ahelp>"
@@ -55787,7 +51956,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuser\"> ནཱ་ལ
msgctxt ""
"12030200.xhp\n"
"hd_id3154704\n"
-"18\n"
"help.text"
msgid "Custom sort order"
msgstr "སྲོལ་སྒྲིག་དབྱེ་སེལ་གོ་རིམ་"
@@ -55796,7 +51964,6 @@ msgstr "སྲོལ་སྒྲིག་དབྱེ་སེལ་གོ་ར
msgctxt ""
"12030200.xhp\n"
"par_id3155962\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuserlb\"> Select the custom sort order that you want to apply. To define a custom sort order, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Sort Lists\">%PRODUCTNAME Calc - Sort Lists</link> .</ahelp>"
msgstr ""
@@ -55805,7 +51972,6 @@ msgstr ""
msgctxt ""
"12030200.xhp\n"
"hd_id3149257\n"
-"28\n"
"help.text"
msgid "Language"
msgstr "སྐད་ཡིག་"
@@ -55814,7 +51980,6 @@ msgstr "སྐད་ཡིག་"
msgctxt ""
"12030200.xhp\n"
"hd_id3147004\n"
-"29\n"
"help.text"
msgid "Language"
msgstr "སྐད་ཡིག་"
@@ -55823,7 +51988,6 @@ msgstr "སྐད་ཡིག་"
msgctxt ""
"12030200.xhp\n"
"par_id3150787\n"
-"32\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/language\"> Select the language for the sorting rules.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/language\"> དབྱེ་སེལ་འབད་ནིའི་ལམ་ལུགས་འདི་ཚུ་གི་དོན་ལུ་ སྐད་ཡིག་འདི་སེལ་འཐུ་འབད་</ahelp>"
@@ -55832,7 +51996,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/language\"> དབྱེ
msgctxt ""
"12030200.xhp\n"
"hd_id3150344\n"
-"30\n"
"help.text"
msgid "Options"
msgstr "གདམ་ཁ་ཚུ།"
@@ -55841,7 +52004,6 @@ msgstr "གདམ་ཁ་ཚུ།"
msgctxt ""
"12030200.xhp\n"
"par_id3155113\n"
-"33\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/algorithmlb\"> Select a sorting option for the language.</ahelp> For example, select the \"phonebook\" option for German to include the umlaut special character in the sorting."
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/algorithmlb\"> སྐད་ཡིག་གི་དོན་ལུ་ དབྱེ་སེལ་འབད་ནིའི་གདམ་ཁ་ཅིག་སེལ་འཐུ་འབད།</ahelp> དཔེར་ན་ \"phonebook\" གདམ་ཁ་འདི་ ཇར་མཱན་ལུ་ ཨམ་ལཱཊི་དམིགས་བསལ་ཡིག་འབྲུ་ དབྱེ་སེལ་འབད་ནི་ནང་གྲངས་སུ་བཙུགས་ནིའི་དོན་ལུ་ སེལ་འཐུ་འབད།"
@@ -55850,7 +52012,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/algorithmlb\"> སྐད
msgctxt ""
"12030200.xhp\n"
"hd_id3152580\n"
-"20\n"
"help.text"
msgid "Direction"
msgstr "ཁ་ཕྱོགས་"
@@ -55859,7 +52020,6 @@ msgstr "ཁ་ཕྱོགས་"
msgctxt ""
"12030200.xhp\n"
"hd_id3154201\n"
-"22\n"
"help.text"
msgid "Top to Bottom (Sort Rows)"
msgstr "མགོ་ལས་མཇུག་ལུ་ (གྲལ་ཐིག་དབྱེ་སེལ་འབད་)"
@@ -55868,7 +52028,6 @@ msgstr "མགོ་ལས་མཇུག་ལུ་ (གྲལ་ཐིག་
msgctxt ""
"12030200.xhp\n"
"par_id3166430\n"
-"23\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/topdown\"> Sorts rows by the values in the active columns of the selected range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/topdown\"> སེལ་འཐུ་འབད་འབད་བའི་ཁྱབ་ཚད་ཀྱི་ ཤུགས་ལྡན་ཀེར་ཐིག་ཚུ་ནང་ གནས་གོང་གིས་སྦེ་ གྲལ་ཐིག་ཚུ་དབྱེ་སེལ་འབདཝ་ཨིན།</ahelp>"
@@ -55877,7 +52036,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/topdown\"> སེལ་འ
msgctxt ""
"12030200.xhp\n"
"hd_id3145588\n"
-"24\n"
"help.text"
msgid "Left to Right (Sort Columns)"
msgstr "གཡོན་ལས་གཡས་ (ཀེར་ཐིག་དབྱེ་སེལ་འབད་)"
@@ -55886,7 +52044,6 @@ msgstr "གཡོན་ལས་གཡས་ (ཀེར་ཐིག་དབྱ
msgctxt ""
"12030200.xhp\n"
"par_id3154370\n"
-"25\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/leftright\"> Sorts columns by the values in the active rows of the selected range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/leftright\"> སེལ་འཐུ་འབད་ཡོད་པའི་ཁྱབ་ཚད་འདི་གི་ ཤུགས་ལྡན་གྲལ་ཐིག་ཚུ་ནང་ གནས་གོང་ཚུ་གིས་སྦེ་ ཀེར་ཐིག་ཚུ་དབྱེ་སེལ་འབདཝ་ཨིན།</ahelp>"
@@ -55895,7 +52052,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/leftright\"> སེལ་
msgctxt ""
"12030200.xhp\n"
"hd_id3156290\n"
-"26\n"
"help.text"
msgid "Data area"
msgstr "གནད་སྡུད་མངའ་ཁོངས་"
@@ -55904,7 +52060,6 @@ msgstr "གནད་སྡུད་མངའ་ཁོངས་"
msgctxt ""
"12030200.xhp\n"
"par_id3156446\n"
-"27\n"
"help.text"
msgid "Displays the cell range that you want to sort."
msgstr "ཁྱོད་ཀྱིས་དབྱེ་སེལ་འབད་དགོ་མནོ་མི་ནང་ཐིག་ཁྱབ་ཚད་འདི་བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -55921,7 +52076,6 @@ msgstr "ཚགས་མ།"
msgctxt ""
"12040000.xhp\n"
"hd_id3150767\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">Filter</link>"
msgstr "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\"> ཚགས་མ། </link>"
@@ -55930,7 +52084,6 @@ msgstr "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\"> ཚགས་
msgctxt ""
"12040000.xhp\n"
"par_id3155131\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Shows commands to filter your data.</ahelp>"
msgstr ""
@@ -55939,7 +52092,6 @@ msgstr ""
msgctxt ""
"12040000.xhp\n"
"par_id3146119\n"
-"7\n"
"help.text"
msgid "$[officename] automatically recognizes predefined database ranges."
msgstr "$[officename] གིས་ རངབཞིན་གྱིས་ སྔ་གོང་ནས་ངེས་འཛིན་འབད་ཡོད་པའི་ གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་ཚུ་ངོས་འཛིན་འབདཝ་ཨིན།"
@@ -55948,7 +52100,6 @@ msgstr "$[officename] གིས་ རངབཞིན་གྱིས་ སྔ
msgctxt ""
"12040000.xhp\n"
"par_id3153363\n"
-"3\n"
"help.text"
msgid "The following filtering options are available:"
msgstr "འོག་ལུ་ཡོད་པའི་བཙག་ནིའི་གདམ་ཁ་ཚུ་འཐོབ་ཚུགས།:"
@@ -55957,7 +52108,6 @@ msgstr "འོག་ལུ་ཡོད་པའི་བཙག་ནིའི་
msgctxt ""
"12040000.xhp\n"
"hd_id3153728\n"
-"4\n"
"help.text"
msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Standard filter\">Standard filter</link>"
msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"Standard filter\"> ཚད་ལྡན་ཚགས་མ། </link>"
@@ -55966,7 +52116,6 @@ msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"Standard filter\"> ཚ
msgctxt ""
"12040000.xhp\n"
"hd_id3159153\n"
-"5\n"
"help.text"
msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced filter\">Advanced filter</link>"
msgstr "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced filter\"> མཐོ་རིམ་ཚགས་མ། </link>"
@@ -55983,7 +52132,6 @@ msgstr "རང་བཞིན་ཚགས་མ།"
msgctxt ""
"12040100.xhp\n"
"hd_id3153541\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\"> རང་བཞིན་ཚགས་མ། </link>"
@@ -55992,7 +52140,6 @@ msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\"> རང་
msgctxt ""
"12040100.xhp\n"
"par_id3148550\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display.</ahelp>"
msgstr "<ahelp hid=\".uno:DataFilterAutoFilter\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཁྱབ་ཚད་རང་བཞིན་གྱིས་བཙག་བཞིནམ་ལས་ ཁྱོད་ཀྱིས་བཀྲམ་སྟོན་འབད་དགོ་འདོད་པའི་རྣམ་གྲངས་ཚུ་གདམ་བཏུབ་སའི་ གྲལ་ཐིག་གཅིག་པའི་ཐོ་ཡིག་སྒྲོམ་ཚུ་གསར་བསྐྲུན་འབད་ཚུགསཔ་ཨིན། </ahelp>"
@@ -56001,13 +52148,11 @@ msgstr "<ahelp hid=\".uno:DataFilterAutoFilter\"> སེལ་འཐུ་གྲ
msgctxt ""
"12040100.xhp\n"
"par_id3145171\n"
-"3\n"
"help.text"
msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Default filter\">Default filter</link>"
msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"Default filter\"> སྔོན་སྒྲིག་ཚགས་མ། </link>"
#: 12040201.xhp
-#, fuzzy
msgctxt ""
"12040201.xhp\n"
"tit\n"
@@ -56019,7 +52164,6 @@ msgstr "གདམ་ཁ་ཚུ།"
msgctxt ""
"12040201.xhp\n"
"hd_id3148492\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\"> ཧེང་བཀལ། </link>"
@@ -56028,7 +52172,6 @@ msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\"> ཧེང་བ
msgctxt ""
"12040201.xhp\n"
"par_id3159400\n"
-"2\n"
"help.text"
msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"modules/scalc/ui/advancedfilterdialog/more\">Shows additional filter options.</ahelp></variable>"
msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"modules/scalc/ui/advancedfilterdialog/more\">ཁ་སྐོང་ཚགས་མའི་གདམ་ཁ་ཚུ་སྟོན་</ahelp></variable>"
@@ -56037,7 +52180,6 @@ msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"modules/scalc/ui/advancedfilt
msgctxt ""
"12040201.xhp\n"
"hd_id3150791\n"
-"3\n"
"help.text"
msgid "Options"
msgstr "གདམ་ཁ་ཚུ།"
@@ -56046,7 +52188,6 @@ msgstr "གདམ་ཁ་ཚུ།"
msgctxt ""
"12040201.xhp\n"
"hd_id3154138\n"
-"5\n"
"help.text"
msgid "Case sensitive"
msgstr "ཡི་གུ་ཉེན་ཅན།"
@@ -56055,7 +52196,6 @@ msgstr "ཡི་གུ་ཉེན་ཅན།"
msgctxt ""
"12040201.xhp\n"
"par_id3147228\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/case\">Distinguishes between uppercase and lowercase letters when filtering the data.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/case\">གནད་སྡུད་འདི་བཙགས་པའི་སྐབས་ ཚུགས་ཡིག་དང་མགྱོགས་ཡིག་ ཡིག་གུ་ཚུ་གི་བར་ན་ཁྱད་པར་ཕྱེཝ་ཨིན།</ahelp>"
@@ -56064,7 +52204,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/case\">གནད་
msgctxt ""
"12040201.xhp\n"
"hd_id3154908\n"
-"7\n"
"help.text"
msgid "Range contains column labels"
msgstr "ཁྱབ་ཚད་ནང་ན་ཀེར་ཐིག་ཁ་ཡིག་བཏགས་ནི་ཚུ་ཤོམ་ཏེ་ཡོད།"
@@ -56073,7 +52212,6 @@ msgstr "ཁྱབ་ཚད་ནང་ན་ཀེར་ཐིག་ཁ་ཡི
msgctxt ""
"12040201.xhp\n"
"par_id3153768\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/header\">Includes the column labels in the first row of a cell range.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/header\">ནང་ཐིག་ཁྱབ་ཚད་ཅིག་གི་གྲལ་ཐིག་དང་པ་ནང་གི་ ཀེར་ཐིག་ཁ་ཡིག་འདི་གྲངས་སུ་བཙུགསཔ་ཨིན།</ahelp>"
@@ -56082,7 +52220,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/header\">ནང་ཐ
msgctxt ""
"12040201.xhp\n"
"hd_id3155306\n"
-"9\n"
"help.text"
msgid "Copy results to"
msgstr "གྲུབ་འབྲས་ཚུ་ ལུ་ འདྲ་བཤུས་རྐྱབས།"
@@ -56091,7 +52228,6 @@ msgstr "གྲུབ་འབྲས་ཚུ་ ལུ་ འདྲ་བཤུ
msgctxt ""
"12040201.xhp\n"
"par_id3154319\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/edcopyarea\">Select the check box, and then select the cell range where you want to display the filter results.</ahelp> You can also select a named range from the list."
msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/edcopyarea\">དཔྱད་སྒྲོམ་འདི་སེལ་འཐུ་འབད་ དེ་ལས་ ཁྱོད་ཀྱིས་ཚགས་མའི་གྲུབ་འབྲས་འདི་ག་སྟེ་བཀྲམ་སྟོན་འབད་དགོ་མནོ་སའི་ ནང་ཐིག་ཁྱབ་ཚད་འདི་སེལ་འཐུ་འབད།</ahelp> ཁྱོད་ཀྱིས་ ཐོ་ཡིག་འདི་ལས་ མིང་བཏགས་ཡོད་པའི་ཁྱབ་ཚད་ཅིག་ཡང་སེལ་འཐུ་འབད་ཚུགས།"
@@ -56100,17 +52236,14 @@ msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/edcopyarea\">དཔ
msgctxt ""
"12040201.xhp\n"
"hd_id3145272\n"
-"11\n"
"help.text"
msgid "Regular expression"
msgstr "དུས་རྒྱུན་གསལ་བརྗོད།"
#: 12040201.xhp
-#, fuzzy
msgctxt ""
"12040201.xhp\n"
"par_id3152576\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/regexp\">Allows you to use regular expressions in the filter definition.</ahelp> For a list of the regular expressions that $[officename] supports, click <link href=\"text/shared/01/02100001.xhp\" name=\"here\">here</link>."
msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/regexp\"> ཁྱོད་ལུ་ ཚགཧ་མའི་ངེས་ཚིག་ནང་གི་ ཝའིལ་ཀཌིསི་ ལག་ལེན་འཐབ་བཅུགཔ་ཨིན།</ahelp> $[officename] གིས་རྒྱབ་སྐྱོར་འབད་མི་ དུས་རྒྱུན་གསལ་བརྗོད་འདི་གི་ཐོ་ཡིག་ཅིག་གི་དོན་ལུ་ <link href=\"text/shared/01/02100001.xhp\" name=\"here\">ནཱ་ལུ་</link>ཨེབ་གཏང་།"
@@ -56119,7 +52252,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/regexp\"> ཁྱོ
msgctxt ""
"12040201.xhp\n"
"par_id3149377\n"
-"33\n"
"help.text"
msgid "If the <emph>Regular Expressions</emph> check box is selected, you can use regular expressions in the Value field if the Condition list box is set to '=' EQUAL or '<>' UNEQUAL. This also applies to the respective cells that you reference for an advanced filter."
msgstr "<emph>དུས་རྒྱུན་གསལ་བརྗོད་ཀྱི་</emph> དཔྱད་སྒྲོམ་འདི་སེལ་འཐུ་འབད་ཡོདཔ་ཨིན་པ་ཅིན་ ཁྱོད་ཀྱིས་ དུས་རྒྱུན་གསལ་བརྗོད་འདི་ གནས་གོང་ས་སྒོ་ནང་ལུ་ གནས་སྟངས་ཐོ་ཡིག་སྒྲོམ་འདི་ '=' མཉམ་པ་ ཡང་ན་ '<>' མཉམ་པ་མིན་པ་ལུ་གཞི་སྒྲིག་འབད་ཡོདཔ་ཨིན་པ་ཅིན་ ལག་ལེན་འཐབ་བཏུབ། འ་ནི་འདི་གི་ ཁྱོད་ཀྱིས་ མཐོ་རིམ་ཚགས་མའི་དོན་ལུ་གཞི་བསྟུན་འབད་མི་ རིམ་བཞིན་ནང་ཐིག་ཚུ་ལུ་ཡང་ འཇུག་སྤྱོད་འབདཝ་ཨིན།"
@@ -56128,7 +52260,6 @@ msgstr "<emph>དུས་རྒྱུན་གསལ་བརྗོད་ཀྱ
msgctxt ""
"12040201.xhp\n"
"hd_id3149958\n"
-"34\n"
"help.text"
msgid "No duplication"
msgstr "ངོ་བཤུས་འབད་ནི་མེདཔ།"
@@ -56137,7 +52268,6 @@ msgstr "ངོ་བཤུས་འབད་ནི་མེདཔ།"
msgctxt ""
"12040201.xhp\n"
"par_id3153876\n"
-"35\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/unique\">Excludes duplicate rows in the list of filtered data.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/unique\">བཙགས་ཡོད་པའི་གནད་སྡུད་ཀྱི་ཐོ་ཡིག་འདི་ནང་ལུ་ གྲལ་ཐིག་རྫུན་མ་ཚུ་ གྲངས་སུ་མི་བཙུགས།</ahelp>"
@@ -56146,7 +52276,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/unique\">བཙགས
msgctxt ""
"12040201.xhp\n"
"hd_id3154018\n"
-"40\n"
"help.text"
msgid "Keep filter criteria"
msgstr "ཚགས་མ་ཁྱད་ཚད་བཞག"
@@ -56155,7 +52284,6 @@ msgstr "ཚགས་མ་ཁྱད་ཚད་བཞག"
msgctxt ""
"12040201.xhp\n"
"par_id3149123\n"
-"41\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/standardfilterdialog/destpers\">Select the <emph>Copy results to</emph> check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under <emph>Data - Define range</emph> as a database range.</ahelp> Following this, you can reapply the defined filter at any time as follows: click into the source range, then choose <emph>Data - Refresh Range</emph>."
msgstr "<ahelp hid=\"modules/scalc/ui/standardfilterdialog/destpers\"><emph>འདྲ་བཤུས་གྲུབ་འབྲས་འདི་</emph> དཔྱད་སྒྲོམ་ལུ་སེལ་འཐུ་འབད་ དེ་ལས་ འགྲོ་ཡུལ་ཁྱབ་ཚད་འདི་ ཁྱོད་ཀྱིས་བཙགས་ཡོད་པའི་གནད་སྡུད་འདི་ག་སྟེ་བཀྲམ་སྟོན་འབད་དགོ་མནོ་སར་ གསལ་བཀོད་འབད། འ་ནི་སྒྲོམ་འདི་ཞིབ་དཔྱད་འབད་ཡོདཔ་ཨིན་པ་ཅིན་ འགྲོ་ཡུལ་ཁྱབ་ཚད་འདི་ འབྱུང་ཁུངས་ཁྱབ་ཚད་ལུ་འབྲེལ་མཐུད་འབད་སྡོདཔ་ཨིན། ཁྱོད་ཀྱིས་ འབྱུང་ཁུངས་ཁྱབ་ཚད་འདི་ <emph>གནད་སྡུད་ - ཁྱབ་ཚད་ངེས་འཛིན་འབད་</emph> གི་འོག་ལུ་ གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་ཅིག་སྦེ་ ངེས་འཛིན་འབད་འབདཝ་འོང་། </ahelp> འ་ནི་རྗེས་སུ་འབྲང་སྟེ་ ཁྱོད་ཀྱིས་ འོག་ལུ་ཡོད་དོ་བཟུམ་སྦེ་ ངེས་འཛིན་འབད་ཡོད་པའི་ཚགས་མ་འདི་ནམ་འབད་རུང་ལོག་འཇུག་སྤྱོད་འབད་བཏུབ་: འབྱུང་ཁུངས་ཁྱབ་ཚད་འདི་ནང་ལུ་ཨེབ་གཏང་ དེ་ལས་ <emph>གནད་སྡུད་་- ཡང་སེལ་ཁྱབ་ཚད་</emph> གདམ་ཁ་རྐྱབས།"
@@ -56164,7 +52292,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/standardfilterdialog/destpers\"><emph>འ
msgctxt ""
"12040201.xhp\n"
"hd_id3149018\n"
-"36\n"
"help.text"
msgid "Data range"
msgstr "གནད་སྡུད་ཁྱབ་ཚད།"
@@ -56173,7 +52300,6 @@ msgstr "གནད་སྡུད་ཁྱབ་ཚད།"
msgctxt ""
"12040201.xhp\n"
"par_id3150042\n"
-"37\n"
"help.text"
msgid "Displays the cell range or the name of the cell range that you want to filter."
msgstr "ཁྱོད་ཀྱིས་ བཙག་དགོ་མནོ་མི་ ནང་ཐིག་ཁྱབ་ཚད་ཡང་ན་ ནང་ཐིག་ཁྱབ་ཚད་ཀྱི་མིང་ བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -56190,7 +52316,6 @@ msgstr "མཐོ་རིམ་ཚགས་མ།"
msgctxt ""
"12040300.xhp\n"
"hd_id3158394\n"
-"1\n"
"help.text"
msgid "Advanced Filter"
msgstr "མཐོ་རིམ་ཚགས་མ།"
@@ -56199,7 +52324,6 @@ msgstr "མཐོ་རིམ་ཚགས་མ།"
msgctxt ""
"12040300.xhp\n"
"par_id3156281\n"
-"2\n"
"help.text"
msgid "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Defines an advanced filter.</ahelp></variable>"
msgstr "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\"> མཐོ་རིམ་ཚགས་མ་ངེས་འཛིན་འབདཝ་ཨིན། </ahelp></variable>"
@@ -56208,7 +52332,6 @@ msgstr "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter
msgctxt ""
"12040300.xhp\n"
"hd_id3153771\n"
-"25\n"
"help.text"
msgid "Read filter criteria from"
msgstr "ལས་ ཚགས་མ་ཁྱད་ཚད་ལྷག"
@@ -56217,7 +52340,6 @@ msgstr "ལས་ ཚགས་མ་ཁྱད་ཚད་ལྷག"
msgctxt ""
"12040300.xhp\n"
"par_id3147426\n"
-"26\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/edfilterarea\">Select the named range, or enter the cell range that contains the filter criteria that you want to use.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/edfilterarea\"> མིང་བཏགས་ཡོད་པའི་ཁྱབ་ཚད་སེལ་འཐུ་ ཡང་ན་ ཁྱོད་ཀྱིས་ལག་ལེན་འཐབ་དགོ་མནོ་མི་ ནང་ན་ཚགས་མའི་ཁྱད་ཚད་ཤོམ་ཏེ་ཡོད་པའི་ ནང་ཐིག་ཁྱབ་ཚད་བཙུགས། </ahelp>"
@@ -56226,7 +52348,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/edfilterarea\"> མ
msgctxt ""
"12040300.xhp\n"
"hd_id3153188\n"
-"27\n"
"help.text"
msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\"> ཧེང་བཀལ། </link>"
@@ -56240,11 +52361,9 @@ msgid "Reset Filter"
msgstr ""
#: 12040400.xhp
-#, fuzzy
msgctxt ""
"12040400.xhp\n"
"hd_id3153087\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Reset Filter</link>"
msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\"> རང་བཞིན་ཚགས་མ། </link>"
@@ -56253,7 +52372,6 @@ msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\"> རང་
msgctxt ""
"12040400.xhp\n"
"par_id3154760\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DataFilterRemoveFilter\">Removes the filter from the selected cell range. To enable this command, click inside the cell area where the filter was applied.</ahelp>"
msgstr ""
@@ -56278,7 +52396,6 @@ msgstr "<bookmark_value> གནད་སྡུད་གཞི་རྟེན་
msgctxt ""
"12040500.xhp\n"
"hd_id3150276\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\">Hide AutoFilter</link>"
msgstr "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\"> རང་བཞིན་ཚགས་མ་སྦ། </link>"
@@ -56287,7 +52404,6 @@ msgstr "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\"> ར
msgctxt ""
"12040500.xhp\n"
"par_id3156326\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">Hides the AutoFilter buttons in the selected cell range.</ahelp>"
msgstr "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཁྱབ་ཚད་ནང་ རང་བཞིན་ཚགས་མ་ཨེབ་རྟ་ཚུ་སྦ་བཞགཔ་ཨིན། </ahelp>"
@@ -56304,7 +52420,6 @@ msgstr "ཡན་ལག་བསྡོམས་ཚུ།"
msgctxt ""
"12050000.xhp\n"
"hd_id3153822\n"
-"1\n"
"help.text"
msgid "Subtotals"
msgstr "ཡན་ལག་བསྡོམས་ཚུ།"
@@ -56313,7 +52428,6 @@ msgstr "ཡན་ལག་བསྡོམས་ཚུ།"
msgctxt ""
"12050000.xhp\n"
"par_id3145119\n"
-"2\n"
"help.text"
msgid "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibility=\"visible\">Calculates subtotals for the columns that you select.</ahelp></variable> $[officename] uses the SUM function to automatically calculate the subtotal and grand total values in a labeled range. You can also use other functions to perform the calculation. $[officename] automatically recognizes a defined database area when you place the cursor in it."
msgstr "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibility=\"visible\"> ཁྱོད་ཀྱིས་ སེལ་འཐུ་འབད་བའི་ ཀེར་ཐིག་ཚུའི་དོན་ལུ་ ཡན་ལག་བསྡོམས་ཚུ་རྩིས་སྟོནམ་ཨིན། </ahelp></variable> $[officename] གིས་ ཁ་ཡིག་བཏགས་ཡོད་པའི་ཁྱབ་ཚད་ནང་ ཡན་ལག་བསྡོམས་དང་ཡོངས་བསྡོམས་གནས་གོང་ཚུ་རང་བཞིན་གྱིས་ རྩིས་སྟོན་ནིའི་དོན་ལུ་ SUM ལས་འགན་ལག་ལེན་འཐབ་ཨིན། རྩིས་ལས་དེ་ལཱ་འགན་འགྲུབ་ནིའི་དོན་ལུ་ ཁྱོད་ཀྱིས་ ལས་འགན་གཞན་མི་ཚུ་ཡང་ལག་ལེན་འཐབ་ཚུགསཔ་ཨིན། $[officename] གིས་ ཁྱོད་ཀྱིས་ དེའི་ནང་ན་འོད་རྟགས་བཞགཔ་ད་ ངེས་འཛིན་འབད་ཡོད་པའི་གནད་སྡུད་གཞི་རྟེན་མའང་ཁོངས་གཅིག་ རང་བཞིན་གྱིས་ངོས་འཛིན་འབདཝ་ཨིན།"
@@ -56322,7 +52436,6 @@ msgstr "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibi
msgctxt ""
"12050000.xhp\n"
"par_id3153896\n"
-"3\n"
"help.text"
msgid "For example, you can generate a sales summary for a certain postal code based on data from a client database."
msgstr "དཔེ་འབད་བ་ཅིན་ ཁྱོད་ཀྱིས་ ཞབས་ཏོག་སྤྱོད་མི་གནད་སྡུད་གཞི་རྟེན་ལས་ གནད་སྡུད་གུ་ལུ་གཞི་བཞག་སྟེ་ འགྲེམ་ཨང་ལ་ལོའི་དོན་ལུ་ ཚོང་བསྒྱུར་ཚུའི་བཅུད་དོན་བཟོ་བཏོན་འབད་བཏུབ་ཨིན།"
@@ -56331,7 +52444,6 @@ msgstr "དཔེ་འབད་བ་ཅིན་ ཁྱོད་ཀྱིས
msgctxt ""
"12050000.xhp\n"
"hd_id3163708\n"
-"4\n"
"help.text"
msgid "Delete"
msgstr "བཏོན་གཏང་།"
@@ -56340,7 +52452,6 @@ msgstr "བཏོན་གཏང་།"
msgctxt ""
"12050000.xhp\n"
"par_id3154125\n"
-"5\n"
"help.text"
msgid "Deletes the subtotal rows in the selected area."
msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་མངའ་ཁོངས་ནང་ལུ་ ཡན་ལག་བསྡོམས་གྲལ་ཐིག་ཚུ་བཏོན་གཏངམ་ཨིན།"
@@ -56357,7 +52468,6 @@ msgstr "སྡེ་ཚན་ དང་པ་ གཉིས་པ་ གསུམ
msgctxt ""
"12050100.xhp\n"
"hd_id3149784\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12050100.xhp\" name=\"1st, 2nd, 3rd Group\">1st, 2nd, 3rd Group</link>"
msgstr "<link href=\"text/scalc/01/12050100.xhp\" name=\"1st, 2nd, 3rd Group\"> སྡེ་ཚན་དང་པ་ གཉིས་པ་ གསུམ་པ། </link>"
@@ -56366,7 +52476,6 @@ msgstr "<link href=\"text/scalc/01/12050100.xhp\" name=\"1st, 2nd, 3rd Group\">
msgctxt ""
"12050100.xhp\n"
"par_id3145068\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/SubTotalGrpPage\">Specify the settings for up to three subtotal groups. Each tab has the same layout.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/SubTotalGrpPage\"> ཡན་ལག་བསྡོམས་སྡེ་ཚན་གསུམ་ཚུན་གྱི་དོན་ལུ་ སྒྲིག་སྟངས་ཚུ་གསལ་བཀོད་འབདཝ་ཨིན། མཆོང་ལྡེ་རེ་རེ་ལུ་ སྒྲིག་བཀོད་གཅིག་པ་ཡོདཔ་ཨིན། </ahelp>"
@@ -56375,7 +52484,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/SubTotalGrpPage\"> ཡན
msgctxt ""
"12050100.xhp\n"
"par_id3148797\n"
-"3\n"
"help.text"
msgid "To insert subtotal values into a table:"
msgstr "ཐིག་ཁྲམ་ནང་ལུ་ ཡན་ལག་བསྡོམས་བཙུགས་ནིའི་དོན་ལུ།:"
@@ -56384,7 +52492,6 @@ msgstr "ཐིག་ཁྲམ་ནང་ལུ་ ཡན་ལག་བསྡ
msgctxt ""
"12050100.xhp\n"
"par_id3154908\n"
-"13\n"
"help.text"
msgid "Ensure that the columns of the table have labels."
msgstr "ཐིག་ཁྲམ་གྱི་ཀེར་ཐིག་ཚུ་གི་ཁ་ཡིག་བཏགས་ནི་ཚུ་ཡོདཔ་སྦེ་ངེས་ཏིག་བཟོ།"
@@ -56393,7 +52500,6 @@ msgstr "ཐིག་ཁྲམ་གྱི་ཀེར་ཐིག་ཚུ་ག
msgctxt ""
"12050100.xhp\n"
"par_id3153968\n"
-"4\n"
"help.text"
msgid "Select the table or the area in the table that you want to calculate subtotals for, and then choose <emph>Data – Subtotals</emph>."
msgstr "ཐིག་ཁྲམ་ནང་ལུ་ ཡན་ལག་བསྡོམས་ཚུ་རྩིས་སྟོན་ནི་ཨིན་པའི་ ཐིག་ཁྲམ་མམ་མངའ་ཁོངས་སེལ་འཐུ་འབད་བཞིནམ་ལས་ <emph> གནད་སྡུད་ – ཡན་ལག་བསྡོམས་ཚུ་ </emph> གདམ།"
@@ -56402,7 +52508,6 @@ msgstr "ཐིག་ཁྲམ་ནང་ལུ་ ཡན་ལག་བསྡ
msgctxt ""
"12050100.xhp\n"
"par_id3161831\n"
-"5\n"
"help.text"
msgid "In the <emph>Group By</emph> box, select the column that you want to add the subtotals to."
msgstr "<emph> སྡེ་ཚན་བཟོ་སྒྲོམ་ནང་ </emph> ཁྱོད་ཀྱིས་ ཡན་ལག་བསྡོམས་ཚུ་ལུ་ཁ་སྐོང་རྐྱབ་དགོ་མནོ་མི་ ཀེར་ཐིག་སེལ་འཐུ་འབད།"
@@ -56411,7 +52516,6 @@ msgstr "<emph> སྡེ་ཚན་བཟོ་སྒྲོམ་ནང་ </em
msgctxt ""
"12050100.xhp\n"
"par_id3153188\n"
-"6\n"
"help.text"
msgid "In the <emph>Calculate subtotals for</emph> box, select the check boxes for the columns containing the values that you want to subtotal."
msgstr "སྒྲོམ་དོན་ལུ་ <emph> ཡན་ལག་བསྡོམས་རྩིས་སྟོན་ནང་ལུ་ </emph> ཁྱོད་ཀྱིས་ ཡན་ལག་བསྡོམས་ནི་འདོད་པའི་གནས་གོང་ཚུ་ཤོམ་ཏེ་ཡོད་པའི་ ཀེར་ཐིག་ཚུའི་དོན་ལུ་ ཞིབ་དཔྱད་སྒྲོམ་སེལ་འཐུ་འབད།"
@@ -56420,7 +52524,6 @@ msgstr "སྒྲོམ་དོན་ལུ་ <emph> ཡན་ལག་བས
msgctxt ""
"12050100.xhp\n"
"par_id3152460\n"
-"14\n"
"help.text"
msgid "In the <emph>Use function</emph> box, select the function that you want to use to calculate the subtotals."
msgstr "ལས་འགན་སྒྲོམ་ལག་ལེན་འཐབ་ནང་ལུ་ <emph> ཁྱོད་ཀྱིས་ ཡན་ལག་བསྡོམས་ཚུ་རྩིས་སྟོན་འབད་ནིའི་དོན་ལུ་ </emph> ལག་ལེན་འཐབ་དགོ་མནོ་མི་ ལས་འགན་སེལ་འཐུ་འབད།"
@@ -56429,7 +52532,6 @@ msgstr "ལས་འགན་སྒྲོམ་ལག་ལེན་འཐབ་
msgctxt ""
"12050100.xhp\n"
"par_id3154321\n"
-"15\n"
"help.text"
msgid "Click <emph>OK</emph>."
msgstr "<emph> བཏུབ་ </emph> ཨེབ་གཏང་།"
@@ -56438,7 +52540,6 @@ msgstr "<emph> བཏུབ་ </emph> ཨེབ་གཏང་།"
msgctxt ""
"12050100.xhp\n"
"hd_id3156441\n"
-"7\n"
"help.text"
msgid "Group by"
msgstr "གིས་ སྡེ་ཚན།"
@@ -56447,7 +52548,6 @@ msgstr "གིས་ སྡེ་ཚན།"
msgctxt ""
"12050100.xhp\n"
"par_id3154013\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/group_by\">Select the column that you want to control the subtotal calculation process. If the contents of the selected column change, the subtotals are automatically recalculated.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/group_by\"> ཁྱོད་ཀྱིས་ ཡན་ལག་བསྡོམས་རྩིས་ལས་ ལས་སྦྱོར་འབད་དོན་ལུ་ ཚད་འཛིན་འབད་དགོ་འདོད་པའི་ཀེར་ཐིག་སེལ་འཐུ་འབད། སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཀེར་ཐིག་གི་ནང་དོན་ཚུ་བསྒྱུར་བཅོས་འབད་བ་ཅིན་ ཡན་ལག་བསྡོམས་ཚུ་རང་བཞིན་གྱིས་ སླར་རྩིས་བཏོན་ཡོདཔ་ཨིན། </ahelp>"
@@ -56456,7 +52556,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/group_by\"> ཁྱོད
msgctxt ""
"12050100.xhp\n"
"hd_id3154943\n"
-"9\n"
"help.text"
msgid "Calculate subtotals for"
msgstr "ལུ་ ཡན་ལག་བསྡོམས་ཚུ་རྩིས་སྟོན་འབད།"
@@ -56465,7 +52564,6 @@ msgstr "ལུ་ ཡན་ལག་བསྡོམས་ཚུ་རྩིས
msgctxt ""
"12050100.xhp\n"
"par_id3147125\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/columns\">Select the column(s) containing the values that you want to subtotal.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/columns\"> ཁྱོད་ཀྱིས་ ཡན་ལག་བསྡོམས་འབད་དགོ་མནོ་མི་ ནང་ན་གནས་གོང་ཚུ་ཤོམ་ཏེ་ཡོད་པའི་ ཀེར་ཐིག་ཚུ་སེལ་འཐུ་འབད། </ahelp>"
@@ -56474,7 +52572,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/columns\"> ཁྱོད་
msgctxt ""
"12050100.xhp\n"
"hd_id3156283\n"
-"11\n"
"help.text"
msgid "Use function"
msgstr "ལས་འགན་ལག་ལེན་འཐབ།"
@@ -56483,7 +52580,6 @@ msgstr "ལས་འགན་ལག་ལེན་འཐབ།"
msgctxt ""
"12050100.xhp\n"
"par_id3145647\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/functions\">Select the mathematical function that you want to use to calculate the subtotals.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/subtotalgrppage/functions\"> ཁྱོད་ཀྱིས་ ཡན་ལག་བསྡོམས་ཚུ་རྩིས་སྟོན་འབད་ནིའི་དོན་ལུ་ ལག་ལེན་འཐབ་དགོ་མནོ་མི་ ཨང་རྩིས་ལས་འགན་སེལ་འཐུ་འབད། </ahelp>"
@@ -56508,7 +52604,6 @@ msgstr "<bookmark_value> ཡན་ལག་བསྡོམས་ཚུ། གད
msgctxt ""
"12050200.xhp\n"
"hd_id3154758\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Options</link>"
msgstr "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\"> གདམ་ཁ་ཚུ། </link>"
@@ -56517,7 +52612,6 @@ msgstr "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\"> གདམ་
msgctxt ""
"12050200.xhp\n"
"par_id3154124\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Specify the settings for calculating and presenting subtotals.</ahelp>"
msgstr "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\"> རྩིས་སྟོན་འབད་ནི་དང་ ཡན་ལག་བསྡོམས་ཚུ་གསལ་སྟོན་འབད་ནིའི་དོན་ལུ་ སྒྲིག་སྟངས་ཚུ་གསལ་བཀོད་འབདཝ་ཨིན།Specify the settings for calculating and presenting subtotals.</ahelp>"
@@ -56526,7 +52620,6 @@ msgstr "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\"> རྩིས་སྟོན་
msgctxt ""
"12050200.xhp\n"
"hd_id3156422\n"
-"3\n"
"help.text"
msgid "Page break between groups"
msgstr "སྡེ་ཚན་ཚུའི་བར་ན་ཤོག་ལེབ་མཚམས།"
@@ -56535,7 +52628,6 @@ msgstr "སྡེ་ཚན་ཚུའི་བར་ན་ཤོག་ལེབ
msgctxt ""
"12050200.xhp\n"
"par_id3147317\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/pagebreak\">Inserts a new page after each group of subtotaled data.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/pagebreak\"> ཡན་ལག་བསྡོམས་ཡོད་པའི་ སྡེ་ཚན་རེ་རེའི་ཤུལ་ལས་ ཤོག་ལེབ་གསརཔ་རེ་བཙུགསཔ་ཨིན། </ahelp>"
@@ -56544,7 +52636,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/pagebreak\"> ཡན་
msgctxt ""
"12050200.xhp\n"
"hd_id3146985\n"
-"5\n"
"help.text"
msgid "Case sensitive"
msgstr "ཡི་གུ་ཉེན་ཅན།"
@@ -56553,7 +52644,6 @@ msgstr "ཡི་གུ་ཉེན་ཅན།"
msgctxt ""
"12050200.xhp\n"
"par_id3153190\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/case\">Recalculates subtotals when you change the case of a data label.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/case\"> ཁྱོད་ཀྱིས་ གནད་སྡུད་ཁ་ཡིག་བཏགས་ནིའི་ གནད་དོན་བསྒྱུར་བཅོས་འབད་བའི་སྐབས་སུ་ ཡན་ལག་བསྡོམས་ སླར་རྩིས་སྟོནམ་ཨིན། </ahelp>"
@@ -56562,7 +52652,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/case\"> ཁྱོད
msgctxt ""
"12050200.xhp\n"
"hd_id3151119\n"
-"7\n"
"help.text"
msgid "Pre-sort area according to groups"
msgstr "སྡེ་ཚན་ཚུ་དང་འཁྲིལ་ཏེ་ སྔོན་དབྱེ་སེལ་མངའ་ཁོངས།"
@@ -56571,7 +52660,6 @@ msgstr "སྡེ་ཚན་ཚུ་དང་འཁྲིལ་ཏེ་ ས
msgctxt ""
"12050200.xhp\n"
"par_id3149664\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/sort\">Sorts the area that you selected in the <emph>Group by</emph> box of the Group tabs according to the columns that you selected.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/sort\">Sorts the area that you selected in the <emph>Group by</emph> box of the Group tabs according to the columns that you selected.</ahelp>"
@@ -56580,7 +52668,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/sort\">Sorts the area
msgctxt ""
"12050200.xhp\n"
"hd_id3153951\n"
-"9\n"
"help.text"
msgid "Sort"
msgstr "དབྱེ་སེལ།"
@@ -56589,7 +52676,6 @@ msgstr "དབྱེ་སེལ།"
msgctxt ""
"12050200.xhp\n"
"hd_id3145252\n"
-"11\n"
"help.text"
msgid "Include formats"
msgstr "རྩ་སྒྲིག་ཚུ་གྲངས་སུ་བཙུགས་"
@@ -56598,7 +52684,6 @@ msgstr "རྩ་སྒྲིག་ཚུ་གྲངས་སུ་བཙུག
msgctxt ""
"12050200.xhp\n"
"par_id3147125\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/formats\">Considers formatting attributes when sorting.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/formats\"> དབྱེ་སེལ་འབདཝ་ད་ལུ་ རྩ་སྒྲིག་འབད་ནིའི་ཁྱད་ཆོས་ཚུ་བརྩི་འཇོག་འབདཝ་ཨིན། </ahelp>"
@@ -56607,7 +52692,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/formats\"> དབྱ
msgctxt ""
"12050200.xhp\n"
"hd_id3155418\n"
-"13\n"
"help.text"
msgid "Custom sort order"
msgstr "སྲོལ་སྒྲིག་དབྱེ་སེལ་གོ་རིམ་"
@@ -56616,7 +52700,6 @@ msgstr "སྲོལ་སྒྲིག་དབྱེ་སེལ་གོ་ར
msgctxt ""
"12050200.xhp\n"
"par_id3149400\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/lbuserdef\">Uses a custom sorting order that you defined in the Options dialog box at <emph>%PRODUCTNAME Calc - Sort Lists</emph>.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/lbuserdef\"> ཁྱོད་ཀྱིས་ Uses a custom sorting order that you defined under <emph> ལག་ཆས་ཚུ་ - གདམ་ཁ་ཚུ་ - %PRODUCTNAME ཀེལ་སི་ - ཐོ་ཡིག་ཚུ་དབྱེ་སེལ་འབད་ </emph> གི་འོག་ལུ་ ངེས་འཛིན་འབད་ཡོད་པའི་ སྲོལ་སྒྲིག་འབད་ནིའི་རིམ་པ་དབྱེ་སེལ་འབད་ནི་ ལག་ལེན་འཐབ་ཨིན། </ahelp>"
@@ -56625,7 +52708,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/lbuserdef\"> ཁྱོ
msgctxt ""
"12050200.xhp\n"
"hd_id3149121\n"
-"15\n"
"help.text"
msgid "Ascending"
msgstr "ཡར་འཛེགས།"
@@ -56634,7 +52716,6 @@ msgstr "ཡར་འཛེགས།"
msgctxt ""
"12050200.xhp\n"
"par_id3155068\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/ascending\">Sorts beginning with the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
msgstr ""
@@ -56643,7 +52724,6 @@ msgstr ""
msgctxt ""
"12050200.xhp\n"
"hd_id3155443\n"
-"17\n"
"help.text"
msgid "Descending"
msgstr "མར་འབབ།"
@@ -56652,7 +52732,6 @@ msgstr "མར་འབབ།"
msgctxt ""
"12050200.xhp\n"
"par_id3153766\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/descending\">Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
msgstr ""
@@ -56669,7 +52748,6 @@ msgstr "བཀོལ་སྤྱོདཔ་ཚུ་སྣ་མང་།"
msgctxt ""
"12060000.xhp\n"
"hd_id3153381\n"
-"1\n"
"help.text"
msgid "Multiple Operations"
msgstr "བཀོལ་སྤྱོདཔ་ཚུ་སྣ་མང་།"
@@ -56678,7 +52756,6 @@ msgstr "བཀོལ་སྤྱོདཔ་ཚུ་སྣ་མང་།"
msgctxt ""
"12060000.xhp\n"
"par_id3154140\n"
-"2\n"
"help.text"
msgid "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDialog\">Applies the same formula to different cells, but with different parameter values.</ahelp></variable>"
msgstr "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDialog\" visibility=\"visible\"> ནང་ཐིག་སོ་སོ་ཚུ་ལུ་ མན་ངག་གཅིག་པ་འཇུག་སྤྱོད་འབདཝ་ཨིན་རུང་ ཚད་བཟུང་གནས་གོང་ཚུ་གཅིག་པ་མ་ཡིན་པ་སོ་སོ་ཨིན། </ahelp></variable>"
@@ -56687,7 +52764,6 @@ msgstr "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDia
msgctxt ""
"12060000.xhp\n"
"par_id3152598\n"
-"5\n"
"help.text"
msgid "The <emph>Row</emph> or <emph>Column</emph> box must contain a reference to the first cell of the selected range."
msgstr "<emph> གྲལ་ཐིག་ </emph> ཡང་ན་ <emph> ཀེར་ཐིག་སྒྲོམ་ </emph> ནང་ན་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ ཁྱབ་ཚད་ཀྱི་ནང་ཐིག་དང་པ་ལུ་ གཞི་བསྟུན་ཤོམ་ཡོད་དགོཔ་ཨིན།"
@@ -56696,7 +52772,6 @@ msgstr "<emph> གྲལ་ཐིག་ </emph> ཡང་ན་ <emph> ཀེར
msgctxt ""
"12060000.xhp\n"
"par_id3154011\n"
-"16\n"
"help.text"
msgid "If you export a spreadsheet containing multiple operations to Microsoft Excel, the location of the cells containing the formula must be fully defined relative to the data range."
msgstr "ཁྱོད་ཀྱིས་ ནང་ན་སྣ་མང་བཀོལ་སྤྱོད་ཚུ་ཤོམ་ཏེ་ཡོད་པའི་ཤོག་ཁྲམ་དེ་ མའི་ཀོརོ་སོཕཊི་ཨེགསི་སེལ་ནང་ ཕྱིར་འདྲེན་འབད་བ་ཅིན་ ནང་ན་མན་ངག་ཤོམ་ཏེ་ཡོད་པའི་ནང་ཐིག་ཚུའི་གནས་ས་དེ་ གནད་སྡུད་ཁྱབ་ཚད་ལུ་འབྲེལ་ཏེ་ངེས་འཛིན་འབད་འོང་དགོཔ་ཨིན།"
@@ -56705,7 +52780,6 @@ msgstr "ཁྱོད་ཀྱིས་ ནང་ན་སྣ་མང་བཀ
msgctxt ""
"12060000.xhp\n"
"hd_id3156441\n"
-"3\n"
"help.text"
msgid "Defaults"
msgstr "སྔོན་སྒྲིག་ཚུ།"
@@ -56714,7 +52788,6 @@ msgstr "སྔོན་སྒྲིག་ཚུ།"
msgctxt ""
"12060000.xhp\n"
"hd_id3154492\n"
-"6\n"
"help.text"
msgid "Formulas"
msgstr "མན་ངག་ཚུ།"
@@ -56723,7 +52796,6 @@ msgstr "མན་ངག་ཚུ།"
msgctxt ""
"12060000.xhp\n"
"par_id3151073\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/multipleoperationsdialog/formulas\">Enter the cell references for the cells containing the formulas that you want to use in the multiple operation.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/multipleoperationsdialog/formulas\" visibility=\"visible\"> ཁྱོད་ཀྱིས་ སྣ་མང་བཀོལ་སྤྱོད་ནང་ལག་ལེན་འཐབ་དགོ་མནོ་མི་ མན་ངག་ཚུ་ཤོམ་ཏེ་ཡོད་པའི་ ནང་ཐིག་ཚུའི་དོན་ལུ་ ནང་ཐིག་གཞི་བསྟུན་ཚུ་བཙུགས། </ahelp>"
@@ -56732,7 +52804,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/multipleoperationsdialog/formulas\" visibi
msgctxt ""
"12060000.xhp\n"
"hd_id3154729\n"
-"8\n"
"help.text"
msgid "Row"
msgstr "གྲལ་ཐིག"
@@ -56741,7 +52812,6 @@ msgstr "གྲལ་ཐིག"
msgctxt ""
"12060000.xhp\n"
"par_id3148456\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/multipleoperationsdialog/row\">Enter the input cell reference that you want to use as a variable for the rows in the data table.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/multipleoperationsdialog/row\" visibility=\"visible\"> གནད་སྡུད་ཐིག་ཁྲམ་ནང་ ཁྱོད་ཀྱིས་ གྲལ་ཐིག་ཚུའི་དོན་ལུ་འགྱུར་ཅན་སྦེ་ལག་ལེན་འཐབ་དགོ་མནོ་མི་ ཨིན་པུཊི་ནང་ཐིག་གཞི་བསྟུན་བཙུགས། </ahelp>"
@@ -56750,7 +52820,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/multipleoperationsdialog/row\" visibility=
msgctxt ""
"12060000.xhp\n"
"hd_id3150718\n"
-"14\n"
"help.text"
msgid "Column"
msgstr "ཀེར་ཐིག"
@@ -56759,7 +52828,6 @@ msgstr "ཀེར་ཐིག"
msgctxt ""
"12060000.xhp\n"
"par_id3150327\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/multipleoperationsdialog/col\">Enter the input cell reference that you want to use as a variable for the columns in the data table.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/multipleoperationsdialog/col\" visibility=\"visible\"> གནད་སྡུད་ཐིག་ཁྲམ་ནང་ལུ་ ཀེར་ཐིག་ཚུའི་དོན་ལུ་ འགྱུར་ཅན་སྦེ་ལག་ལེན་འཐབ་དགོ་མནོ་མི་ ནང་ཐིག་ཨིན་པུཊི་གཞི་བསྟུན་བཙུགས། </ahelp>"
@@ -56776,7 +52844,6 @@ msgstr "རྩ་བརྟན་བཟོ་ནི།"
msgctxt ""
"12070000.xhp\n"
"hd_id3148946\n"
-"1\n"
"help.text"
msgid "Consolidate"
msgstr "རྩ་བརྟན་བཟོ་ནི།"
@@ -56785,7 +52852,6 @@ msgstr "རྩ་བརྟན་བཟོ་ནི།"
msgctxt ""
"12070000.xhp\n"
"par_id3148798\n"
-"2\n"
"help.text"
msgid "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">Combines data from one or more independent cell ranges and calculates a new range using the function that you specify.</ahelp></variable>"
msgstr "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\"> ནང་ཐིག་ཁྱབ་ཚད་རང་དབང་གཅིག་གམ་དེ་བ་ལྷགཔ་ཚུ་ལས་ ཁྱོད་ཀྱིས་གསལ་བཀོད་འབད་ཡོད་པའི་ལས་འགན་ལག་ལེན་འཐབ་ཀྱི་ཐོག་ལས་ གནད་སྡུད་མཉམ་མཐུད་དམ་ ཁྱབ་ཚད་གསརཔ་ཅིག་རྩིས་སྟོནམ་ཨིན། </ahelp></variable>"
@@ -56794,7 +52860,6 @@ msgstr "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\"> ན
msgctxt ""
"12070000.xhp\n"
"hd_id3150010\n"
-"8\n"
"help.text"
msgid "Function"
msgstr "ལས་འགན།"
@@ -56803,7 +52868,6 @@ msgstr "ལས་འགན།"
msgctxt ""
"12070000.xhp\n"
"par_id3149377\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/func\">Select the function that you want to use to consolidate the data.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/func\"> གནད་སྡུད་རྩ་གཏན་བཟོ་ནིའི་དོན་ལུ་ ལག་ལེན་འཐབ་ནི་ཨིན་པའི་ལས་འགན་སེལ་འཐུ་འབད། </ahelp>"
@@ -56812,7 +52876,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/func\"> གནད་ས
msgctxt ""
"12070000.xhp\n"
"hd_id3147127\n"
-"10\n"
"help.text"
msgid "Consolidation ranges"
msgstr "རྩ་གཏན་བཟོ་ནིའི་ཁྱབ་ཚད་ཚུ།"
@@ -56821,7 +52884,6 @@ msgstr "རྩ་གཏན་བཟོ་ནིའི་ཁྱབ་ཚད་ཚ
msgctxt ""
"12070000.xhp\n"
"par_id3151075\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/consareas\">Displays the cell ranges that you want to consolidate.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/consareas\"> ཁྱོད་ཀྱིས རྩ་གཏན་བཟོ་ནི་ཨིན་པའི་ནང་ཐིག་ཁྱབ་ཚད་ཚུ་བཀྲམ་སྟོན་འབདཝ་ཨིན། </ahelp>"
@@ -56830,7 +52892,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/consareas\"> ཁྱོ
msgctxt ""
"12070000.xhp\n"
"hd_id3147397\n"
-"12\n"
"help.text"
msgid "Source data range"
msgstr "འབྱུང་ཁུངས་གནད་སྡུད་ཁྱབ་ཚད།"
@@ -56839,7 +52900,6 @@ msgstr "འབྱུང་ཁུངས་གནད་སྡུད་ཁྱབ་
msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\"> ཁྱབ་ཚད་གཅིག་བསྡོམས་ཚུའི་སྒྲོམ་ནང་ཐོ་བཀོད་འབད་ཡོད་པའི་ <emph>ནང་ཐིག་ཁྱབ་ཚད་ཚུ་དང་གཅིག་ཁར་གཅིག་ཁར་བསྡོམས་དགོ་མནོ་མི་ </emph> ནང་ཐིག་ཁྱབ་ཚད་གསལ་བཀོད་འབདཝ་ཨིན། ཤོག་ལེབ་ནང་ལུ་ ནང་ཐིག་ཁྱབ་ཚད་སེལ་འཐུ་འབད་བཞིནམ་ལས་ <emph> ཁ་སྐོང་བརྐྱབ་ </emph> ཨེབ་གཏང་། <emph> ཁྱོད་ཀྱིས་ འབྱུང་ཁུངས་གནད་སྡུད་ཁྱབ་ཚད་ཐོ་ཡིག་ལས་ </emph> སྔ་གོང་ནས་ངེས་འཛིན་འབད་ཡོད་པའི་ནང་ཐིག་གི་མིང་གཅིག་ཡང་སེལ་འཐུ་འབད་བཏུབ་ཨིན། </ahelp>"
@@ -56848,7 +52908,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\"> ཁྱབ
msgctxt ""
"12070000.xhp\n"
"hd_id3155768\n"
-"15\n"
"help.text"
msgid "Copy results to"
msgstr "གྲུབ་འབྲས་ཚུ་ ལུ་ འདྲ་བཤུས་རྐྱབས།"
@@ -56857,7 +52916,6 @@ msgstr "གྲུབ་འབྲས་ཚུ་ ལུ་ འདྲ་བཤུ
msgctxt ""
"12070000.xhp\n"
"par_id3147341\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddestarea\">Displays the first cell in the range where the consolidation results will be displayed.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddestarea\"> རྩ་བརྟན་བཟོ་ནི་གྲུབ་འབྲས་ཚུ་བཀྲམ་སྟོན་འབད་ནི་ཨིན་སའི་ ཁྱབ་ཚད་ནང་ ནང་ཐིག་དང་པ་བཀྲམ་སྟོན་འབདཝ་ཨིན། </ahelp>"
@@ -56866,7 +52924,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddestarea\"> རྩ་
msgctxt ""
"12070000.xhp\n"
"hd_id3147345\n"
-"17\n"
"help.text"
msgid "Add"
msgstr "ཁ་སྐོང་།"
@@ -56875,13 +52932,11 @@ msgstr "ཁ་སྐོང་།"
msgctxt ""
"12070000.xhp\n"
"par_id3155335\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/add\">Adds the cell range specified in the <emph>Source data range</emph> box to the <emph>Consolidation ranges </emph>box.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/add\"> གནད་སྡུད་འབྱུང་ཁུངས་ཁྱབ་ཚད་སྒྲོམ་ནང་ <emph> གསལ་བཀོད་འབད་ཡོད་པའི་ནང་ཐིག་ཁྱབ་ཚད་དེ་ </emph> <emph> རྩ་བརྟན་བཟོ་ནི་ཁྱབ་ཚད་སྒྲོམ་ནང་ </emph> ཁ་སྐོང་རྐྱབ་ཨིན། </ahelp>"
#: 12070000.xhp
-#, fuzzy
msgctxt ""
"12070000.xhp\n"
"hd_id3148630\n"
@@ -56893,7 +52948,6 @@ msgstr "གདམ་ཁ་ཚུ།"
msgctxt ""
"12070000.xhp\n"
"par_id3159239\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/more\">Shows additional <link href=\"text/scalc/01/12070100.xhp\" name=\"options\">options</link>.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/more\"> གདམ་ཁ་ ཁ་སྐོང་ཚུ་ <link href=\"text/scalc/01/12070100.xhp\" name=\"options\"> སྟོནམ་ཨིན། </link>.</ahelp>"
@@ -56910,7 +52964,6 @@ msgstr "གིས་ རྩ་བརྟན་བཟོ་ནི།"
msgctxt ""
"12070100.xhp\n"
"hd_id3151210\n"
-"1\n"
"help.text"
msgid "Consolidate by"
msgstr "གིས་ རྩ་བརྟན་བཟོ་ནི།"
@@ -56919,7 +52972,6 @@ msgstr "གིས་ རྩ་བརྟན་བཟོ་ནི།"
msgctxt ""
"12070100.xhp\n"
"hd_id3125864\n"
-"2\n"
"help.text"
msgid "Consolidate by"
msgstr "གིས་ རྩ་བརྟན་བཟོ་ནི།"
@@ -56928,7 +52980,6 @@ msgstr "གིས་ རྩ་བརྟན་བཟོ་ནི།"
msgctxt ""
"12070100.xhp\n"
"par_id3154909\n"
-"3\n"
"help.text"
msgid "Use this section if the cell ranges that you want to consolidate contain labels. You only need to select these options if the consolidation ranges contain similar labels and the data arranged is arranged differently."
msgstr "ཁྱོད་ཀྱིས་ རྩ་བརྟན་བཟོ་དགོ་མནོ་མི་ ནང་ཐིག་ཁྱབ་ཚད་ནང་ན་ ཁ་ཡིག་བཏགས་ནི་ཚུ་ཤོམ་ཏེ་ཡོད་པ་ཅིན་ འ་ནི་ དབྱེ་ཚན་ལག་ལེན་འཐབ། འ་ནི་རྩ་བརྟན་བཟོ་ནི་ཁྱབ་ཚད་ཚུ་ནང་ན་ཁ་ཡིག་བཏགས་ནི་གཅིག་པ་དང་ བདེ་ཞིབ་འབད་ཡོད་པའི་ གནད་སྡུད་དེ་སོ་སོ་སྦེ་བདེ་ཞིབ་འབད་ཡོད་པ་ཅིན་རྐྱངམ་ཅིག་ ཁྱོད་ཀྱིས་ འ་ནི་གདམ་ཁ་ཚུ་སེལ་འཐུ་འབད་དགོཔ་ཨིན།"
@@ -56937,7 +52988,6 @@ msgstr "ཁྱོད་ཀྱིས་ རྩ་བརྟན་བཟོ་ད
msgctxt ""
"12070100.xhp\n"
"hd_id3153968\n"
-"4\n"
"help.text"
msgid "Row labels"
msgstr "གྲལ་ཐིག་ཁ་ཡིག་བཏགས་ནི་ཚུ།"
@@ -56946,7 +52996,6 @@ msgstr "གྲལ་ཐིག་ཁ་ཡིག་བཏགས་ནི་ཚུ
msgctxt ""
"12070100.xhp\n"
"par_id3150441\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/byrow\" visibility=\"visible\">Uses the row labels to arrange the consolidated data.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/byrow\" visibility=\"visible\"> རྩ་གཏན་བཟོ་ཡོད་པའི་གནད་སྡུད་འདི་ བདེ་ཞིབ་འབད་ནིའི་དོན་ལུ་ གྲལ་ཐིག་ཁ་ཡིག་བཏགས་ནི་ཚུ་ལག་ལེན་འཐབ་ཨིན། </ahelp>"
@@ -56955,7 +53004,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/byrow\" visibility=\"vis
msgctxt ""
"12070100.xhp\n"
"hd_id3146976\n"
-"6\n"
"help.text"
msgid "Column labels"
msgstr "ཀེར་ཐིག་ཁ་ཡིག་བཏགས་ནི་ཚུ།"
@@ -56964,7 +53012,6 @@ msgstr "ཀེར་ཐིག་ཁ་ཡིག་བཏགས་ནི་ཚུ
msgctxt ""
"12070100.xhp\n"
"par_id3155411\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/bycol\" visibility=\"visible\">Uses the column labels to arrange the consolidated data.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/bycol\" visibility=\"visible\"> རྩ་གཏན་བཟོ་ཡོད་པའི་གནད་སྡུད་འདི་ བདེ་ཞིབ་འབད་ནིའི་དོན་ལུ་ ཀེར་ཐིག་ཁ་ཡིག་བཏགས་ནི་ཚུ་ལག་ལེན་འཐབ་ཨིན། </ahelp>"
@@ -56973,7 +53020,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/bycol\" visibility=\"vis
msgctxt ""
"12070100.xhp\n"
"hd_id3153191\n"
-"12\n"
"help.text"
msgid "Options"
msgstr "གདམ་ཁ་ཚུ།"
@@ -56982,7 +53028,6 @@ msgstr "གདམ་ཁ་ཚུ།"
msgctxt ""
"12070100.xhp\n"
"hd_id3159154\n"
-"8\n"
"help.text"
msgid "Link to source data"
msgstr "གནདསྡུད་འབྱུང་ཁུངས་ལུ་འབྲེལ་ལམ།"
@@ -56991,13 +53036,11 @@ msgstr "གནདསྡུད་འབྱུང་ཁུངས་ལུ་འབ
msgctxt ""
"12070100.xhp\n"
"par_id3146986\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/refs\" visibility=\"visible\">Links the data in the consolidation range to the source data, and automatically updates the results of the consolidation when the source data is changed.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/refs\" visibility=\"visible\"> རྩ་བརྟན་བཟོ་ནི་ཁྱབ་ཚད་ནང་གི་གནད་སྡུད་དེ་ འབྱུང་ཁུངས་གནད་སྡུད་ལུ་འབྲེལ་མཐུད་འབད་ཞིནམ་ལས་ གནད་སྡུད་འབྱུང་ཁུངས་བསྒྱུར་བཅོས་འབད་ཡོད་པའི་སྐབས་སུ་ རྩ་བརྟན་བཟོ་ནིའི་གྲུབ་འབྲས་ཚུ་ དུས་མཐུནམ་བཟོཝ་ཨིན། </ahelp>"
#: 12070100.xhp
-#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163708\n"
@@ -57009,7 +53052,6 @@ msgstr "གདམ་ཁ་ཚུ།"
msgctxt ""
"12070100.xhp\n"
"par_id3151118\n"
-"11\n"
"help.text"
msgid "Hides the additional options."
msgstr "ཁ་སྐོང་གདམ་ཁ་ཚུ་སྦཝ་ཨིན།"
@@ -57034,7 +53076,6 @@ msgstr "<bookmark_value> ཤོག་ཁྲམ་ཚུ་ ; མཐའ་ཐི
msgctxt ""
"12080000.xhp\n"
"hd_id3152350\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12080000.xhp\" name=\"Group and Outline\">Group and Outline</link>"
msgstr "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\"> རང་བཞིན་མཐའ་ཐིག </link>"
@@ -57043,7 +53084,6 @@ msgstr "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\"> རང
msgctxt ""
"12080000.xhp\n"
"par_id3150793\n"
-"2\n"
"help.text"
msgid "You can create an outline of your data and group rows and columns together so that you can collapse and expand the groups with a single click."
msgstr "ཁྱོད་ཀྱིས་ སྡེ་ཚན་ཚུ་ཨེབ་གཏང་རྐྱང་པ་གཅིག་གིས་ ནང་ན་བརྡིབ་ནི་དང་ རྒྱ་འཕར་བཟོ་ནིའི་དོན་ལུ་ ཁྱོད་ཀྱིས་ ཁྱོད་རའི་གནད་སྡུད་ཀྱི་མཐའ་ཐིག་འབྲི་སྟེ་ གྲལ་ཐིག་དང་ཀེར་ཐིག་ཚུ་གཅིག་ཁར་སྡེ་ཚན་བཟོ།"
@@ -57052,7 +53092,6 @@ msgstr "ཁྱོད་ཀྱིས་ སྡེ་ཚན་ཚུ་ཨེབ
msgctxt ""
"12080000.xhp\n"
"hd_id3147229\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\"> སྡེ་ཚན་ </link>"
@@ -57061,7 +53100,6 @@ msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\"> སྡེ་
msgctxt ""
"12080000.xhp\n"
"hd_id3153188\n"
-"4\n"
"help.text"
msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"> སྡེ་ཚན་བཤུབ་ནི་། </link>"
@@ -57086,7 +53124,6 @@ msgstr "<bookmark_value> ཤོག་ཁྲམ་ཚུ་ ; རྒྱས་བ
msgctxt ""
"12080100.xhp\n"
"hd_id3155628\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\">Hide Details</link>"
msgstr "<link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\"> རྒྱས་བཤད་ཚུ་སྦ་ </link>"
@@ -57095,7 +53132,6 @@ msgstr "<link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\"> རྒ
msgctxt ""
"12080100.xhp\n"
"par_id3154515\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\">Hides the details of the grouped row or column that contains the cursor. To hide all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
msgstr "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\"> ནང་ན་འོད་རྟགས་ཤོམ་པའི་སྡེ་ཚན་བཟོ་ཡོད་པའི་གྲལ་ཐིག་གམ་ཀེར་ཐིག་གི་རྒྱས་བཤད་ཚུ་སྦ་བཞགཔ་ཨིན། སྡེ་ཚན་བཟོ་ཡོད་པའི་གྲལ་ཐིག་གམ་ཀེར་ཐིག་ཚུ་ཆ་མཉམ་སྦ་ནིའི་དོན་ལུ་ མཐའ་ཐིག་འབྲི་ཡོད་པའི་ཐིག་ཁྲམ་སེལ་འཐུ་འབད་བཞིནམ་ལས་ འ་ནི་བརྡ་བཀོད་དེ་གདམ། </ahelp>"
@@ -57104,7 +53140,6 @@ msgstr "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\"> ནང་ན་
msgctxt ""
"12080100.xhp\n"
"par_id3153252\n"
-"3\n"
"help.text"
msgid "To show all hidden groups, select the outlined table, and then choose <emph>Data - Group and Outline –</emph> <link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\"><emph>Show Details</emph></link>."
msgstr ""
@@ -57129,7 +53164,6 @@ msgstr "<bookmark_value> ཐིག་ཁྲམ་ཚུ་ ; རྒྱས་བ
msgctxt ""
"12080200.xhp\n"
"hd_id3153561\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">Show Details</link>"
msgstr "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\"> རྒྱས་བཤད་ཚུ་སྟོན་ </link>"
@@ -57138,7 +53172,6 @@ msgstr "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\"> རྒ
msgctxt ""
"12080200.xhp\n"
"par_id3153822\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowDetail\">Shows the details of the grouped row or column that contains the cursor. To show the details of all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
msgstr "<ahelp hid=\".uno:ShowDetail\"> སྡེ་ཚན་བཟོ་ཡོད་པའི་ནང་ན་འོད་རྟགས་ཤོམ་ཡོད་པའི་གྲལ་ཐིག་གམ་ཀེར་ཐིག་གི་རྒྱས་བཤད་ཚུ་སྟོནམ་ཨིན། སྡེ་ཚན་བཟོ་ཡོད་པའི་ གྲལ་ཐིག་དང་ཀེར་ཐིག་ཚུའི་རྒྱས་བཤད་ཚུ་སྟོན་ནིའི་དོན་ལུ་ མཐའ་ཐིག་འབྲི་ཡོད་པའི་ཐིག་ཁྲམ་སེལ་འཐུ་འབད་བཞིནམ་ལས་ འ་ནི་བརྡ་བཀོད་དེ་གདམ།</ahelp>"
@@ -57147,7 +53180,6 @@ msgstr "<ahelp hid=\".uno:ShowDetail\"> སྡེ་ཚན་བཟོ་ཡོ
msgctxt ""
"12080200.xhp\n"
"par_id3155922\n"
-"3\n"
"help.text"
msgid "To hide a selected group, choose <emph>Data - Group and Outline – </emph><link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\"><emph>Hide Details</emph></link>."
msgstr ""
@@ -57172,7 +53204,6 @@ msgstr "སྡེ་ཚན།"
msgctxt ""
"12080300.xhp\n"
"hd_id3153088\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\"> སྡེ་ཚན་ </link>"
@@ -57181,25 +53212,22 @@ msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\"> སྡེ་
msgctxt ""
"12080300.xhp\n"
"par_id3153821\n"
-"2\n"
"help.text"
-msgid "<variable id=\"gruppierung\"><ahelp hid=\".uno:Group\" visibility=\"visible\">Defines the selected cell range as a group of rows or columns.</ahelp></variable>"
-msgstr "<variable id=\"gruppierung\"><ahelp hid=\".uno:Group\" visibility=\"visible\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ ནང་ཐིག་ཁྱབ་ཚད་འདི་ གྲལ་ཐིག་ཚུའི་ཡང་ན་ ཀེར་ཐིག་ཚུའི་སྡེ་ཚན་སྦེ་ངེས་འཛིན་འབདཝ་ཨིན། </ahelp></variable>"
+msgid "<variable id=\"gruppierung\"><ahelp hid=\".\">Defines the selected cell range as a group of rows or columns.</ahelp></variable>"
+msgstr ""
#: 12080300.xhp
msgctxt ""
"12080300.xhp\n"
"par_id3145069\n"
-"3\n"
"help.text"
-msgid "When you group a cell range, and outline icon appears in the margins next to the group. To hide or show the group, click the icon. To ungroup the selection, choose <emph>Data – Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Ungroup</emph></link>."
-msgstr "ཁྱོད་ཀྱིས་ ནངཐིག་ཁྱབ་ཚད་སྡེ་ཚན་བཟོཝ་དང་ སྡེ་ཚན་གྱི་ཤུལ་མའི་མཐའ་སྟོང་ཚུ་ནང་མཐའ་ཐིག་ངོས་དཔར་འབྱུངམ་ཨིན། སྡེ་ཚན་དེ་ སྟོན་ནམ་སྦ་ནིའི་དོན་ལུ་ ངོས་དཔར་ཨེབ་གཏང་། སེལ་འཐུ་དེ་ སྡེ་ཚན་བཟོ་ནིའི་དོན་ལུ་ <emph> གནད་སྡུད་ – མཐའ་ཐིག་ -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph> སྡེ་ཚན་བཤུབ་ </emph></link> ཚུ་ གདམ།"
+msgid "When you group a cell range, and outline icon appears in the margins next to the group. To hide or show the group, click the icon. To ungroup the selection, choose <emph>Data – Group and Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Ungroup</emph></link>."
+msgstr ""
#: 12080300.xhp
msgctxt ""
"12080300.xhp\n"
"hd_id3125863\n"
-"4\n"
"help.text"
msgid "Include"
msgstr "གྲངས་སུ་བཙུགས།"
@@ -57208,7 +53236,6 @@ msgstr "གྲངས་སུ་བཙུགས།"
msgctxt ""
"12080300.xhp\n"
"hd_id3150448\n"
-"6\n"
"help.text"
msgid "Rows"
msgstr "གྲལ་ཐིག་ཚུ།"
@@ -57217,16 +53244,14 @@ msgstr "གྲལ་ཐིག་ཚུ།"
msgctxt ""
"12080300.xhp\n"
"par_id3153194\n"
-"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Groups the selected rows.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་གྲལ་ཐིག་ཚུ་སྡེ་ཚན་བཟོཝ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/groupdialog/rows\">Groups the selected rows.</ahelp>"
+msgstr ""
#: 12080300.xhp
msgctxt ""
"12080300.xhp\n"
"hd_id3145786\n"
-"8\n"
"help.text"
msgid "Columns"
msgstr "ཀེར་ཐིག་ཚུ།"
@@ -57235,10 +53260,9 @@ msgstr "ཀེར་ཐིག་ཚུ།"
msgctxt ""
"12080300.xhp\n"
"par_id3146984\n"
-"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Groups the selected columns.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཀེར་ཐིག་ཚུ་སྡེ་ཚན་བཟོཝ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/groupdialog/cols\">Groups the selected columns.</ahelp>"
+msgstr ""
#: 12080400.xhp
msgctxt ""
@@ -57252,7 +53276,6 @@ msgstr "སྡེ་ཚན་བཤུབ་ནི།"
msgctxt ""
"12080400.xhp\n"
"hd_id3148492\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"> སྡེ་ཚན་བཤུབ་ནི་། </link>"
@@ -57261,7 +53284,6 @@ msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"> སྡེ་
msgctxt ""
"12080400.xhp\n"
"par_id3151384\n"
-"2\n"
"help.text"
msgid "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">Ungroups the selection. In a nested group, the last rows or columns that were added are removed from the group.</ahelp></variable>"
msgstr "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\"> སེལ་འཐུ་སྡེ་ཚན་བཤུབ་ཨིན། ནེསི་ཊེཌི་སྡེ་ཚན་ནང་ལུ་ ཁ་སྐོང་བརྐྱབ་ཡོདཔ་པའི་གྲལ་ཐིག་ ཡང་ན་ཀེར་ཐིག་ཚུ་ སྡེ་ཚན་ལས་རྩ་བསྐྲད་བཏང་ཡོདཔ་ཨིན། </ahelp></variable>"
@@ -57270,7 +53292,6 @@ msgstr "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\
msgctxt ""
"12080400.xhp\n"
"hd_id3151210\n"
-"3\n"
"help.text"
msgid "Deactivate for"
msgstr "དོན་ལུ་ཤུགས་མེད་བཟོ།"
@@ -57279,7 +53300,6 @@ msgstr "དོན་ལུ་ཤུགས་མེད་བཟོ།"
msgctxt ""
"12080400.xhp\n"
"hd_id3156280\n"
-"5\n"
"help.text"
msgid "Rows"
msgstr "གྲལ་ཐིག་ཚུ།"
@@ -57288,7 +53308,6 @@ msgstr "གྲལ་ཐིག་ཚུ།"
msgctxt ""
"12080400.xhp\n"
"par_id3125864\n"
-"6\n"
"help.text"
msgid "Removes selected rows from a group."
msgstr "སྡེ་ཚན་ལས་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་གྲལ་ཐིག་ཚུ་རྩ་བསྐྲད་གཏངམ་ཨིན།"
@@ -57297,7 +53316,6 @@ msgstr "སྡེ་ཚན་ལས་ སེལ་འཐུ་གྲུབ་
msgctxt ""
"12080400.xhp\n"
"hd_id3147230\n"
-"7\n"
"help.text"
msgid "Columns"
msgstr "ཀེར་ཐིག་ཚུ།"
@@ -57306,7 +53324,6 @@ msgstr "ཀེར་ཐིག་ཚུ།"
msgctxt ""
"12080400.xhp\n"
"par_id3154685\n"
-"8\n"
"help.text"
msgid "Removes selected columns from a group."
msgstr "སྡེ་ཚན་ལས་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཀེར་ཐིག་ཚུ་རྩ་བསྐྲད་གཏངམ་ཨིན།"
@@ -57323,7 +53340,6 @@ msgstr "རང་བཞིན་མཐའ་ཐིག"
msgctxt ""
"12080500.xhp\n"
"hd_id3150275\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">AutoOutline</link>"
msgstr "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\"> རང་བཞིན་མཐའ་ཐིག </link>"
@@ -57332,7 +53348,6 @@ msgstr "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\"> རང
msgctxt ""
"12080500.xhp\n"
"par_id3145069\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AutoOutline\">If the selected cell range contains formulas or references, $[officename] automatically outlines the selection.</ahelp>"
msgstr "<ahelp hid=\".uno:AutoOutline\" visibility=\"visible\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ ནང་ཐིག་ཁྱབ་ཚད་ནང་ན་ མན་ངག་ ཡང་ན་ གཞི་བསྟུན་ཚུ་ཤོམ་ཏེ་ཡོད་པ་ཅིན་ $[officename] གིས་ སེལ་འཐུ་དེ་ རང་བཞིན་གྱིས་ བསྡུས་དོན་སྟོནམ་ཨིན། </ahelp>"
@@ -57341,7 +53356,6 @@ msgstr "<ahelp hid=\".uno:AutoOutline\" visibility=\"visible\"> སེལ་འ
msgctxt ""
"12080500.xhp\n"
"par_id3148798\n"
-"10\n"
"help.text"
msgid "For example, consider the following table:"
msgstr "དཔེ་འབད་བ་ཅིན་ འོག་ལུ་ཡོད་པའི་ཐིག་ཁྲམ་ བརྩི་འཇོག་འབད།:"
@@ -57350,7 +53364,6 @@ msgstr "དཔེ་འབད་བ་ཅིན་ འོག་ལུ་ཡོ
msgctxt ""
"12080500.xhp\n"
"par_id3154123\n"
-"11\n"
"help.text"
msgid "January"
msgstr "སྤྱི་ཟླ་དང་པ།"
@@ -57359,7 +53372,6 @@ msgstr "སྤྱི་ཟླ་དང་པ།"
msgctxt ""
"12080500.xhp\n"
"par_id3154011\n"
-"12\n"
"help.text"
msgid "February"
msgstr "སྤྱི་ཟླ་གཉིས་པ།"
@@ -57368,7 +53380,6 @@ msgstr "སྤྱི་ཟླ་གཉིས་པ།"
msgctxt ""
"12080500.xhp\n"
"par_id3152460\n"
-"13\n"
"help.text"
msgid "March"
msgstr "སྤྱི་ཟླ་གསུམ་པ།"
@@ -57377,7 +53388,6 @@ msgstr "སྤྱི་ཟླ་གསུམ་པ།"
msgctxt ""
"12080500.xhp\n"
"par_id3146119\n"
-"14\n"
"help.text"
msgid "1st Quarter"
msgstr "དཔྱ་གསུམ་དང་པ།"
@@ -57386,7 +53396,6 @@ msgstr "དཔྱ་གསུམ་དང་པ།"
msgctxt ""
"12080500.xhp\n"
"par_id3155854\n"
-"15\n"
"help.text"
msgid "April"
msgstr "སྤྱི་ཟླ་བཞི་པ།"
@@ -57395,7 +53404,6 @@ msgstr "སྤྱི་ཟླ་བཞི་པ།"
msgctxt ""
"12080500.xhp\n"
"par_id3148575\n"
-"16\n"
"help.text"
msgid "May"
msgstr "སྤྱི་ཟླ་ལྔ་པ།"
@@ -57404,7 +53412,6 @@ msgstr "སྤྱི་ཟླ་ལྔ་པ།"
msgctxt ""
"12080500.xhp\n"
"par_id3145271\n"
-"17\n"
"help.text"
msgid "June"
msgstr "སྤྱི་ཟླ་དྲུག་པ།"
@@ -57413,7 +53420,6 @@ msgstr "སྤྱི་ཟླ་དྲུག་པ།"
msgctxt ""
"12080500.xhp\n"
"par_id3145648\n"
-"18\n"
"help.text"
msgid "2nd Quarter"
msgstr "དཔྱ་གསུམ་གཉིས་པ།"
@@ -57422,7 +53428,6 @@ msgstr "དཔྱ་གསུམ་གཉིས་པ།"
msgctxt ""
"12080500.xhp\n"
"par_id3153876\n"
-"19\n"
"help.text"
msgid "100"
msgstr "༡༠༠"
@@ -57431,7 +53436,6 @@ msgstr "༡༠༠"
msgctxt ""
"12080500.xhp\n"
"par_id3145251\n"
-"20\n"
"help.text"
msgid "120"
msgstr "༡༢༠"
@@ -57440,7 +53444,6 @@ msgstr "༡༢༠"
msgctxt ""
"12080500.xhp\n"
"par_id3149400\n"
-"21\n"
"help.text"
msgid "130"
msgstr "༡༣༠"
@@ -57449,7 +53452,6 @@ msgstr "༡༣༠"
msgctxt ""
"12080500.xhp\n"
"par_id3150328\n"
-"22\n"
"help.text"
msgid "350"
msgstr "༣༥༠"
@@ -57458,7 +53460,6 @@ msgstr "༣༥༠"
msgctxt ""
"12080500.xhp\n"
"par_id3155443\n"
-"23\n"
"help.text"
msgid "100"
msgstr "༡༠༠"
@@ -57467,7 +53468,6 @@ msgstr "༡༠༠"
msgctxt ""
"12080500.xhp\n"
"par_id3153713\n"
-"24\n"
"help.text"
msgid "100"
msgstr "༡༠༠"
@@ -57476,7 +53476,6 @@ msgstr "༡༠༠"
msgctxt ""
"12080500.xhp\n"
"par_id3156385\n"
-"25\n"
"help.text"
msgid "200"
msgstr "༢༠༠"
@@ -57485,7 +53484,6 @@ msgstr "༢༠༠"
msgctxt ""
"12080500.xhp\n"
"par_id3145230\n"
-"26\n"
"help.text"
msgid "400"
msgstr "༤༠༠"
@@ -57494,7 +53492,6 @@ msgstr "༤༠༠"
msgctxt ""
"12080500.xhp\n"
"par_id3147363\n"
-"27\n"
"help.text"
msgid "The cells for the 1st and 2nd quarters each contain a sum formula for the three cells to their left. If you apply the <emph>AutoOutline</emph> command, the table is grouped into two quarters."
msgstr "གཞི་ཆ་དང་པམ་དང་གཉིས་པམ་དོན་ལུ་ནང་ཐིག་ཚུ་ དང་དེའི་ རེ་རེ་ནང་ན་གཡོན་ཁ་ཐུག་གི་ནང་ཐིག་གསུམ་ཚུའི་དོན་ལུ་མན་ངག་བསྡོམས་ཤོམ་ཏེ་ཡོདཔ་ཨིན། ཁྱོད་ཀྱིས་ <emph> རང་བཞིན་མཐའ་ཐིག་ </emph> བརྡ་བཀོད་ འཇུག་སྤྱོད་འབད་བ་ཅིན་ ཐིག་ཁྲམ་དེ་བཞི་ཆ་གཉིས་ནང་ སྡེ་ཚན་བཟོ་ཡོདཔ་ཨིན།"
@@ -57503,7 +53500,6 @@ msgstr "གཞི་ཆ་དང་པམ་དང་གཉིས་པམ་ད
msgctxt ""
"12080500.xhp\n"
"par_id3146918\n"
-"9\n"
"help.text"
msgid "To remove the outline, select the table, and then choose <link href=\"text/scalc/01/12080600.xhp\" name=\"Data - Group and Outline - Remove\">Data - Group and Outline - Remove</link>."
msgstr "མཐའ་ཐིག་རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་ ཐིག་ཁྲམ་སེལ་འཐུ་འབད་ཞིནམ་ལས་ <link href=\"text/scalc/01/12080600.xhp\" name=\"Data - Outline - Remove\"> གནད་སྡུད་ - མཐའ་ཐིག་ - རྩ་བསྐྲད་གཏང་ </link> གདམ།"
@@ -57520,7 +53516,6 @@ msgstr "རྩ་བསྐྲད་གཏང་།"
msgctxt ""
"12080600.xhp\n"
"hd_id3148947\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\">Remove</link>"
msgstr "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\"> རྩ་བསྐྲད་གཏང་། </link>"
@@ -57529,7 +53524,6 @@ msgstr "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\"> རྩ་བ
msgctxt ""
"12080600.xhp\n"
"par_id3149656\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Removes the outline from the selected cell range.</ahelp>"
msgstr "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ ནང་ཐིག་ཁྱབ་ཚད་ལས་མཐའ་ཐིག་རྩ་བསྐྲད་གཏངམ་ཨིན། </ahelp>"
@@ -57578,7 +53572,6 @@ msgstr "པི་ཝོཊི་ཐིག་ཁྲམ།"
msgctxt ""
"12090000.xhp\n"
"hd_id3150275\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12090000.xhp\" name=\"Pivot Table\">Pivot Table</link>"
msgstr "<link href=\"text/shared/01/01100500.xhp\" name=\"Priority Table\">གཙོ་རིམ་ཐིག་ཁྲམ།</link>"
@@ -57587,7 +53580,6 @@ msgstr "<link href=\"text/shared/01/01100500.xhp\" name=\"Priority Table\">ག
msgctxt ""
"12090000.xhp\n"
"par_id3153562\n"
-"2\n"
"help.text"
msgid "A pivot table provides a summary of large amounts of data. You can then rearrange the pivot table to view different summaries of the data."
msgstr "གནད་སྡུད་པཱའི་ལོཊི་གིས་ གནད་སྡུད་ཀྱི་དངུལ་བསྡོམས་སྦོམ་གཅིག་ལུ་བཅུད་དོན་བྱིནམ་ཨིན། དེ་ལས་ ཁྱོད་ཀྱིས་ གནད་སྡུད་ཀྱི་ བཅུད་དོན་སོ་སོར་ཚུ་བལྟ་ནིའི་དོན་ལུ་ གནད་སྡུད་པཱའི་ལོཊི་ཡང་བསྐྱར་བདེ་ཞིབ་འབད་བཏུབ་ཨིན།"
@@ -57596,7 +53588,6 @@ msgstr "གནད་སྡུད་པཱའི་ལོཊི་གིས་
msgctxt ""
"12090000.xhp\n"
"hd_id3155923\n"
-"3\n"
"help.text"
msgid "<link href=\"text/scalc/01/12090100.xhp\" name=\"Create\">Create</link>"
msgstr "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\"> བཏོན་གཏང་། </link>"
@@ -57621,7 +53612,6 @@ msgstr "འབྱུང་ཁུངས་སེལ་འཐུ་འབད།"
msgctxt ""
"12090100.xhp\n"
"hd_id3153663\n"
-"1\n"
"help.text"
msgid "Select Source"
msgstr "འབྱུང་ཁུངས་སེལ་འཐུ་འབད།"
@@ -57630,7 +53620,6 @@ msgstr "འབྱུང་ཁུངས་སེལ་འཐུ་འབད།"
msgctxt ""
"12090100.xhp\n"
"par_id3145119\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DataDataPilotRun\">Opens a dialog where you can select the source for your pivot table, and then create your table.</ahelp>"
msgstr "<ahelp hid=\".uno:DataDataPilotRun\"> ཁྱོད་ཀྱིས་ གནད་སྡུད་པའི་ལོཊི་ཐིག་ཁྲམ་སེལ་འཐུ་འབད་ཚུངག་ནི་དང་ ཐིག་ཁྲམ་གསར་བསྐྲུན་འབད་ནིའི་དོན་ལུ་ ཌའི་ལོག་གཅིག་ཁ་ཕྱེཝ་ཨིན། </ahelp>"
@@ -57639,7 +53628,6 @@ msgstr "<ahelp hid=\".uno:DataDataPilotRun\"> ཁྱོད་ཀྱིས་ ག
msgctxt ""
"12090100.xhp\n"
"hd_id3154760\n"
-"5\n"
"help.text"
msgid "Selection"
msgstr "སེལ་འཐུ།"
@@ -57648,7 +53636,6 @@ msgstr "སེལ་འཐུ།"
msgctxt ""
"12090100.xhp\n"
"par_id3150543\n"
-"6\n"
"help.text"
msgid "Select a data source for the pivot table."
msgstr "གནད་སྡུད་པའི་ལོཊ་ཐིག་ཁྲམ་དོན་ལུ་ གནད་སྡུད་འབྱུང་ཁུངས་སེལ་འཐུ་འབད།"
@@ -57657,7 +53644,6 @@ msgstr "གནད་སྡུད་པའི་ལོཊ་ཐིག་ཁྲམ
msgctxt ""
"12090100.xhp\n"
"hd_id3148799\n"
-"7\n"
"help.text"
msgid "Current Selection"
msgstr "ད་ལྟོའི་སེལ་འཐུ།"
@@ -57666,7 +53652,6 @@ msgstr "ད་ལྟོའི་སེལ་འཐུ།"
msgctxt ""
"12090100.xhp\n"
"par_id3125865\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\".\">Uses the selected cells as the data source for the pivot table.</ahelp>"
msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_SELECTION\"> གནད་སྡུད་པའི་ལོཊི་ཐིག་ཁྲམ་གྱི་དོན་ལུ་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཚུ་གནད་སྡུད་འབྱུང་ཁུངས་སྦེ་ལག་ལེན་འཐབ་ཨིན། </ahelp>"
@@ -57675,7 +53660,6 @@ msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_SELECTION\"> གན
msgctxt ""
"12090100.xhp\n"
"par_id3150011\n"
-"13\n"
"help.text"
msgid "The data columns in the pivot table use the same number format as the first data row in the current selection."
msgstr "གནད་སྡུད་པཱའི་ལོཊི་ཐིག་ཁྲམ་ནང་གི་གནད་སྡུད་ཀེར་ཐིག་ཚུ་གིས་ ད་ལྟོའི་སེལ་འཐུ་ནང་གནད་སྡུད་གྲལ་ཐིག་དང་པམ་གྱི་ལག་ལེན་འཐབ་ཡོདཔ་བཟུམསྦེ་ ཨང་གྲངས་རྩ་སྒྲིག་གཅིག་པ་ལག་ལེན་འཐབ་ཨིན།"
@@ -57684,7 +53668,6 @@ msgstr "གནད་སྡུད་པཱའི་ལོཊི་ཐིག་ཁ
msgctxt ""
"12090100.xhp\n"
"hd_id3147348\n"
-"9\n"
"help.text"
msgid "Data source registered in $[officename]"
msgstr "$[officename] ནང་ལུ་གནད་སྡུད་འབྱུང་ཁུངས་ཐོ་བཀོད་འབད་ཡོདཔ།"
@@ -57693,7 +53676,6 @@ msgstr "$[officename] ནང་ལུ་གནད་སྡུད་འབྱུ
msgctxt ""
"12090100.xhp\n"
"par_id3145271\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\".\">Uses a table or query in a database that is registered in $[officename] as the data source for the pivot table.</ahelp>"
msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_DATABASE\">$[officename] ནང་ གནད་སྡུད་པའི་ལོཊི་ཐིག་ཁྲམ་གྱི་དོན་ལུ་ གནད་སྡུད་འབྱུང་ཁུངས་སྦེ་ཐོ་འགོད་འབད་ཡོད་པའི་ གནད་སྡུད་གཞི་རྟེན་ནང་ ཐིག་ཁྲམ་ ཡང་ན་ འདྲི་དཔྱད་ལག་ལེན་འཐབ་ཨིན། </ahelp>"
@@ -57702,7 +53684,6 @@ msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_DATABASE\">$[officena
msgctxt ""
"12090100.xhp\n"
"hd_id3146119\n"
-"11\n"
"help.text"
msgid "External source/interface"
msgstr "ཕྱིའི་འབྱུང་ཁུངས་/ངོས་འདྲ་བ།"
@@ -57711,7 +53692,6 @@ msgstr "ཕྱིའི་འབྱུང་ཁུངས་/ངོས་འད
msgctxt ""
"12090100.xhp\n"
"par_id3145647\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <emph>External Source</emph> dialog where you can select the OLAP data source for the pivot table.</ahelp>"
msgstr "<ahelp hid=\".uno:DiagramData\">དེ་གིས་<emph> གནས་སྡུད་ཐིག་ཁྲམ་ </emph>ཌའི་ལོག་འདི་ཁ་ཕྱེཝ་ཨིན་ དེ་ཡང་ ཁྱོད་ཀྱིས་དཔེ་རིས་གནས་སྡུད་ཞུན་དག་འབད་བཏུབ་མི།</ahelp>"
@@ -57736,7 +53716,6 @@ msgstr "གནད་སྡུད་འབྱུང་ཁུངས་སེལ་
msgctxt ""
"12090101.xhp\n"
"hd_id3143268\n"
-"1\n"
"help.text"
msgid "Select Data Source"
msgstr "གནད་སྡུད་འབྱུང་ཁུངས་སེལ་འཐུ་འབད།"
@@ -57745,7 +53724,6 @@ msgstr "གནད་སྡུད་འབྱུང་ཁུངས་སེལ་
msgctxt ""
"12090101.xhp\n"
"par_id3148552\n"
-"2\n"
"help.text"
msgid "Select the database and the table or query containing the data that you want to use."
msgstr "ཁྱོད་ཀྱིས་ ལག་ལེན་འཐབ་དགོཔ་མནོ་མི་ གནད་སྡུད་གཞི་རྟེན་དང་ ཐིག་ཁྲམ་ ཡང་ན་ ནང་ན་གནད་སྡུད་ཤོམ་ཏེ་ཡོད་པའི་ འདྲི་དཔྱད་སེལ་འཐུ་འབད།"
@@ -57754,7 +53732,6 @@ msgstr "ཁྱོད་ཀྱིས་ ལག་ལེན་འཐབ་དག
msgctxt ""
"12090101.xhp\n"
"hd_id3154140\n"
-"3\n"
"help.text"
msgid "Selection"
msgstr "སེལ་འཐུ།"
@@ -57763,7 +53740,6 @@ msgstr "སེལ་འཐུ།"
msgctxt ""
"12090101.xhp\n"
"par_id3125863\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\".\">You can only select databases that are registered in %PRODUCTNAME.</ahelp> To register a data source, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - Databases</emph>."
msgstr ""
@@ -57772,7 +53748,6 @@ msgstr ""
msgctxt ""
"12090101.xhp\n"
"hd_id3151041\n"
-"5\n"
"help.text"
msgid "Database"
msgstr "གནད་སྡུད་གཞི་རྟེན།"
@@ -57781,7 +53756,6 @@ msgstr "གནད་སྡུད་གཞི་རྟེན།"
msgctxt ""
"12090101.xhp\n"
"par_id3156424\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/selectdatasource/database\">Select the database that contains the data source that you want to use.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/selectdatasource/database\"> ཁྱོད་ཀྱིས་ ལག་ལེན་འཐབ་དགོ་མནོ་མི་ ནང་ན་ གནད་སྡུད་འབྱུང་ཁུངས་ཤོམ་ཏེ་ཡོད་པའི་ གནད་སྡུད་གཞི་རྟེན་སེལ་འཐུ་འབད། </ahelp>"
@@ -57790,7 +53764,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/selectdatasource/database\"> ཁྱོད
msgctxt ""
"12090101.xhp\n"
"hd_id3145364\n"
-"7\n"
"help.text"
msgid "Data source"
msgstr "གནད་སྡུད་འབྱུང་ཁུངས།"
@@ -57799,7 +53772,6 @@ msgstr "གནད་སྡུད་འབྱུང་ཁུངས།"
msgctxt ""
"12090101.xhp\n"
"par_id3149260\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/selectdatasource/datasource\">Select the data source that you want to use.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/selectdatasource/datasource\"> ཁྱོད་ཀྱིས་ལག་ལེན་འཐབ་ནི་ཨིན་པའི་གནད་སྡུད་འབྱུང་ཁུངས་སེལ་འཐུ་འབད། </ahelp>"
@@ -57808,7 +53780,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/selectdatasource/datasource\"> ཁྱོ
msgctxt ""
"12090101.xhp\n"
"hd_id3147428\n"
-"9\n"
"help.text"
msgid "Type"
msgstr "དབྱེ་བ།"
@@ -57817,7 +53788,6 @@ msgstr "དབྱེ་བ།"
msgctxt ""
"12090101.xhp\n"
"par_id3150010\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/selectdatasource/type\">Click the source type of for the selected data source.</ahelp> You can choose from four source types: \"Table\", \"Query\" and \"SQL\" or SQL (Native)."
msgstr "<ahelp hid=\"modules/scalc/ui/selectdatasource/type\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ གནད་སྡུད་འབྱུང་ཁུངས་ཀྱི་དོན་ལུ་ འབྱུང་ཁུངས་དབྱེ་བ་ཨེབ་གཏང་། </ahelp> ཁྱོད་ཀྱིས་ འབྱུང་ཁུངས་དབྱེ་བ་བཞི་ལས་: \"Table\", \"Query\" and \"SQL\" ཡང་ན་ ཨེསི་ ཀུཡུ་ ཨེལ་ (རང་ཡུལ་) གདམ་བཏུབ་ཨིན།"
@@ -57826,7 +53796,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/selectdatasource/type\"> སེལ་འ
msgctxt ""
"12090101.xhp\n"
"par_id3147348\n"
-"11\n"
"help.text"
msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"DataPilot dialog\"> གནད་སྡུད་པའི་ལོཊི་ ཌའི་ལོག</link>"
@@ -57851,7 +53820,6 @@ msgstr "<bookmark_value>དབྱེ་བ་མིང་ལས་འགན་</
msgctxt ""
"12090102.xhp\n"
"hd_id3149165\n"
-"1\n"
"help.text"
msgid "Pivot Table"
msgstr "པི་ཝོཊི་ཐིག་ཁྲམ།"
@@ -57860,7 +53828,6 @@ msgstr "པི་ཝོཊི་ཐིག་ཁྲམ།"
msgctxt ""
"12090102.xhp\n"
"par_id3155922\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\".uno:DataPilotExec\">Specify the layout of the table that is generated by the pivot table.</ahelp>"
msgstr "<ahelp hid=\".uno:DataPilotExec\"> གནད་སྡུད་པཱའི་ལོཊི་གིས་ བཟོ་བཏོན་འབད་ཡོད་པའི་ ཐིག་ཁྲམ་གྱི་སྒྲིག་བཀོད་གསལ་བཀོད་འབད། </ahelp>"
@@ -57869,7 +53836,6 @@ msgstr "<ahelp hid=\".uno:DataPilotExec\"> གནད་སྡུད་པཱའ
msgctxt ""
"12090102.xhp\n"
"par_id3148798\n"
-"34\n"
"help.text"
msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table."
msgstr "གནད་སྡུད་པཱའི་ལོཊི་གིས་ གནད་སྡུད་ས་སྒོ་ཚུ་ གནད་སྡུད་པཱའི་ལོཊི་ཐིག་ཁྲམ་ངེས་འཛིན་འབད་ནིའི་དོན་ལུ་འདྲུད་ནི་དང་ བཀོག་བཞག་བཏུབ་པའི་ ཨེབ་རྟ་ཚུ་སྦེ་བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -57878,7 +53844,6 @@ msgstr "གནད་སྡུད་པཱའི་ལོཊི་གིས་
msgctxt ""
"12090102.xhp\n"
"hd_id3154908\n"
-"18\n"
"help.text"
msgid "Layout"
msgstr "སྒྲིག་བཀོད།"
@@ -57887,7 +53852,6 @@ msgstr "སྒྲིག་བཀོད།"
msgctxt ""
"12090102.xhp\n"
"par_id3150768\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/listbox-fields\">To define the layout of a pivot table, drag and drop data field buttons onto the <emph>Page Fields, Row Fields, Column Fields, </emph>and<emph> Data Fields </emph>areas.</ahelp> You can also use drag and drop to rearrange the data fields on a pivot table."
msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/listbox-fields\"> གནད་སྡུད་པའི་ལོཊི་ཐིག་ཁྲམ་གྱི་སྒྲིག་བཀོད་ངེས་འཛིན་འབད་ནིའི་དོན་ལུ་ གནད་སྡུད་ས་སྒོ་ཨེབ་རྟ་ཚུ་ <emph> ཤོག་ལེབ་ས་སྒོ་ ཀེར་ཐིག་ས་སྒོ་ </emph> དང་ <emph> གནད་སྡུད་ས་སྒོ་ཚུ་གུ་ལུ་ </emph> འདྲུད་དེ་བཞག </ahelp> གནད་སྡུད་པཱའི་ལོཊི་ཐིག་ཁྲམ་ནང་ལུ་ གནད་སྡུད་ས་སྒོ་ཚུ་སླར་བདེ་ཞིབ་འབད་ནིའི་དོན་ལུ་ འདྲུད་ནི་དང་བཀོག་བཞག་ནི་གཉིས་ཡང་ ལག་ལེན་འཐབ་བཏུབ་ཨིན།"
@@ -57896,7 +53860,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/listbox-fields\">
msgctxt ""
"12090102.xhp\n"
"par_id3147229\n"
-"20\n"
"help.text"
msgid "$[officename] automatically adds a caption to buttons that are dragged into the <emph>Data Fields </emph>area. The caption contains the name of the data field as well as the formula that created the data."
msgstr "$[officename] གིས་ གནད་སྡུད་ས་སྒོ་ཚུའི་མངའ་ཁོངས་ནང་ལུ་ <emph> འདྲུད་ཡོད་པའི་ཨེབ་རྟ་ཚུ་ལུ་ </emph> རང་བཞིན་གྱིས་དཔར་བཤད་ཁ་སྐོང་རྐྱབ་ཨིན། དཔར་བཤད་ནང་ན་ གནད་སྡུད་ས་སྒོའི་མིང་དང་ གནད་སྡུད་ཀྱིས་གསར་བསྐྲུན་འབད་ཡོད་པའི་ མན་ངག་ཡང་ཤོམ་ཏེ་ཡོདཔ་ཨིན།"
@@ -57905,7 +53868,6 @@ msgstr "$[officename] གིས་ གནད་སྡུད་ས་སྒོ་
msgctxt ""
"12090102.xhp\n"
"par_id3145749\n"
-"21\n"
"help.text"
msgid "To change the function that is used by a data field, double-click a button in the <emph>Data Fields</emph> area to open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\">Data Field</link> dialog. You can also double-click buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> areas."
msgstr "གནད་སྡུད་ས་སྒོ་གིས་ ལག་ལེན་འཐབ་སྟེ་ཡོད་པའི་ ལས་འགན་དེ་བསྒྱུར་བཅོས་འབད་ནི་དོན་ལུ་དང་ <emph> གནད་སྡུད་ས་སྒོ་ཌའི་ལོག་ </emph> ཁ་ཕྱེ་ནིའི་དོན་ལུ་ <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"> གནས་སྡུད་ས་སྒོ་ཚུའི་མངའ་ཁོངས་ནང་ </link> ཨེབ་རྟ་དེ་ལོག་བལྟབ་ཨེབ་གཏང་། ཁྱོད་ཀྱིས་ <emph> གྲལ་ཐིག་ས་སྒོ་ཚུ་ </emph> ཡང་ན་ <emph> ཀེར་ཐིག་ས་སྒོ་ཚུའི་མངའ་ཁོངས་ཚུ་ནང་ </emph> ཨེབ་རྟ་ཚུ་ལོག་བལྟབ་ཨེབ་གཏང་བཏུབ་ཨིན།"
@@ -57914,7 +53876,6 @@ msgstr "གནད་སྡུད་ས་སྒོ་གིས་ ལག་ལ
msgctxt ""
"12090102.xhp\n"
"hd_id3154944\n"
-"22\n"
"help.text"
msgid "More"
msgstr "ཧེང་བཀལ།"
@@ -57923,7 +53884,6 @@ msgstr "ཧེང་བཀལ།"
msgctxt ""
"12090102.xhp\n"
"par_id3145647\n"
-"23\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/more\">Displays or hides additional options for defining the pivot table.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/more\"> གནད་སྡུད་པའི་ལོཊི་ཐིག་ཁྲམ་ ངེས་འཛིན་འབད་ནིའི་དོན་ལུ་ ཁ་སྐོང་གདམ་ཁ་ཚུ་བཀྲམ་སྟོན་ཡང་ན་ སྦཝ་ཨིན། </ahelp>"
@@ -57932,7 +53892,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/more\"> གནད
msgctxt ""
"12090102.xhp\n"
"hd_id3151073\n"
-"2\n"
"help.text"
msgid "Result"
msgstr "གྲུབ་འབྲས།"
@@ -57941,7 +53900,6 @@ msgstr "གྲུབ་འབྲས།"
msgctxt ""
"12090102.xhp\n"
"par_id3155417\n"
-"3\n"
"help.text"
msgid "Specify the settings for displaying the results of the pivot table."
msgstr "གནད་སྡུད་པའི་ལོཊི་ཐིག་ཁྲམ་གྱི་ གྲུབ་འབྲས་ཚུ་བཀྲམ་སྟོན་འབད་ནིའི་དོན་ལུ་ སྒྲིག་སྟངས་ཚུ་གསལ་བཀོད་འབད།"
@@ -57966,7 +53924,6 @@ msgstr "<ahelp hid=\".\">ད་ལྟོའི་ཚད་འཛིན་གྱ
msgctxt ""
"12090102.xhp\n"
"hd_id3155603\n"
-"4\n"
"help.text"
msgid "Results to"
msgstr "ལུ་གྲུབ་འབྲས་ཚུ།"
@@ -57975,7 +53932,6 @@ msgstr "ལུ་གྲུབ་འབྲས་ཚུ།"
msgctxt ""
"12090102.xhp\n"
"par_id3153838\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/destination-edit\">Select the area where you want to display the results of the pivot table.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/destination-edit\"> ཁྱོད་ཀྱིས་ གནད་སྡུད་པའི་ལོཊི་ཐིག་ཁྲམ་གྱི་གྲུབ་འབྲས་ཚུ་ བཀྲམ་སྟོན་འབད་དགོས་མནོ་མི་མངའ་ཁོངས་སེལ་འཐུ་འབད། </ahelp>"
@@ -57984,7 +53940,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/destination-edit\">
msgctxt ""
"12090102.xhp\n"
"par_id3155961\n"
-"6\n"
"help.text"
msgid "If the selected area contains data, the pivot table overwrites the data. To prevent the loss of existing data, let the pivot table automatically select the area to display the results."
msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་མངའ་ཁོངས་ནང་ན་ གནད་སྡུད་ཤོམ་ཏེ་ཡོད་པ་ཅིན་ གནད་སྡུད་དེ་ གནས་སྡུད་པའི་ལོཊི་གིས་ ཚབ་སྲུང་འབདཝ་ཨིན། གནས་ཏེ་ཡོད་པའི་ གནད་སྡུད་ཀྱི་གྱོང་རྒུད་སྔོན་བཀག་འབད་ནིའི་དོན་ལུ་ གྲུབ་འབྲས་ཚུ་བཀྲམ་སྟོན་འབད་ནིའི་དོན་ལུ་ གནད་སྡུད་པའི་ལོཊི་གིས་ མངའ་ཁོངས་དེ་ རང་བཞིན་གྱིས་ སེལ་འཐུ་འབད་བཅུག"
@@ -57993,7 +53948,6 @@ msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་མངའ
msgctxt ""
"12090102.xhp\n"
"hd_id3147364\n"
-"7\n"
"help.text"
msgid "Ignore empty rows"
msgstr "གྲལ་ཐིག་སྟོངམ་ཚུ་སྣང་མེད་སྦེ་བཞག"
@@ -58002,7 +53956,6 @@ msgstr "གྲལ་ཐིག་སྟོངམ་ཚུ་སྣང་མེད
msgctxt ""
"12090102.xhp\n"
"par_id3154022\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-ignore-empty-rows\">Ignores empty fields in the data source.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-ignore-empty-rows\"> གནད་སྡུད་འབྱུང་ཁུངས་ནང་ལུ་ ས་སྒོ་སྟོངམ་ཚུ་ སྣང་མེད་སྦེ་བཞགཔ་ཨིན། </ahelp>"
@@ -58011,7 +53964,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-ignore-empty-
msgctxt ""
"12090102.xhp\n"
"hd_id3155114\n"
-"9\n"
"help.text"
msgid "Identify categories"
msgstr "དབྱེ་རིམ་ཚུ་ངོས་འཛིན་འབད།"
@@ -58020,7 +53972,6 @@ msgstr "དབྱེ་རིམ་ཚུ་ངོས་འཛིན་འབད
msgctxt ""
"12090102.xhp\n"
"par_id3145257\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-identify-categories\">Automatically assigns rows without labels to the category of the row above.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-identify-categories\"> གྲལ་ཐིག་ཁ་ཡིག་བཏགས་ནི་གིས་ གསལ་བཀོད་འབད་དེ་ཡོདཔ་བཟུམ་སྦེ་ གྲལ་ཐིག་ཚུ་ ཁ་ཡིག་བཏགས་ནི་ཚུ་མེདཔ་སྦེ་ ཤུལ་མམ་གྱི་དབྱེ་རིམ་མཐོ་ཤོས་ལུ་ རང་བཞིན་གྱིས་འགན་སྤྲོདཔ་ཨིན། </ahelp>"
@@ -58029,7 +53980,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-identify-cate
msgctxt ""
"12090102.xhp\n"
"hd_id3149207\n"
-"14\n"
"help.text"
msgid "Total columns"
msgstr "ཀེར་ཐིག་ཡོངས་བསྡོམས།"
@@ -58038,7 +53988,6 @@ msgstr "ཀེར་ཐིག་ཡོངས་བསྡོམས།"
msgctxt ""
"12090102.xhp\n"
"par_id3166426\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-total-columns\">Calculates and displays the grand total of the column calculation.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-total-columns\"> ཀེར་ཐིག་རྩིས་ལས་ཀྱི་ཡོངས་བསྡོམས་རྩིས་སྟོན་དང་བཀྲམ་སྟོན་འབདཝ་ཨིན། </ahelp>"
@@ -58047,7 +53996,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-total-columns
msgctxt ""
"12090102.xhp\n"
"hd_id3150364\n"
-"16\n"
"help.text"
msgid "Total rows"
msgstr "གྲལ་ཐིག་ཡོངས་བསྡོམས།"
@@ -58056,7 +54004,6 @@ msgstr "གྲལ་ཐིག་ཡོངས་བསྡོམས།"
msgctxt ""
"12090102.xhp\n"
"par_id3152583\n"
-"17\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-total-rows\">Calculates and displays the grand total of the row calculation.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivottablelayoutdialog/check-total-rows\"> གྲལ་ཐིག་རྩིས་ལས་ཀྱི་ཡོངས་བསྡོམས་རྩིས་སྟོན་དང་བཀྲམ་སྟོན་འབདཝ་ཨིན། </ahelp>"
@@ -58161,7 +54108,6 @@ msgstr "<ahelp hid=\".\"> ཁྱོད་ཀྱིས་ རྒྱས་བཤ
msgctxt ""
"12090102.xhp\n"
"par_id3149817\n"
-"35\n"
"help.text"
msgid "<link href=\"text/scalc/04/01020000.xhp\" name=\"Pivot table shortcut keys\">Pivot table shortcut keys</link>"
msgstr "<link href=\"text/scalc/04/01020000.xhp\" name=\"DataPilot shortcut keys\"> གནད་སྡུད་པའི་ལོཊི་མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ། </link>"
@@ -58178,7 +54124,6 @@ msgstr "ཚགས་མ།"
msgctxt ""
"12090103.xhp\n"
"hd_id3153970\n"
-"1\n"
"help.text"
msgid "Filter"
msgstr "ཚགས་མ།"
@@ -58187,7 +54132,6 @@ msgstr "ཚགས་མ།"
msgctxt ""
"12090103.xhp\n"
"par_id3150448\n"
-"2\n"
"help.text"
msgid "Set the filtering options for the data."
msgstr "གནད་སྡུད་ཀྱི་དོན་ལུ་ བཙག་ནི་གདམ་ཁ་ཚུ་གཞི་སྒྲིག་འབདཝ་ཨིན།"
@@ -58196,7 +54140,6 @@ msgstr "གནད་སྡུད་ཀྱི་དོན་ལུ་ བཙག
msgctxt ""
"12090103.xhp\n"
"hd_id3151043\n"
-"3\n"
"help.text"
msgid "Filter Criteria"
msgstr "ཚགས་མ་ཁྱད་ཚད།"
@@ -58205,7 +54148,6 @@ msgstr "ཚགས་མ་ཁྱད་ཚད།"
msgctxt ""
"12090103.xhp\n"
"par_id3150440\n"
-"4\n"
"help.text"
msgid "You can define a default filter for the data by filtering, for example, field names, using a combination of logical expressions arguments."
msgstr "ཁྱོད་ཀྱིས་ གནད་སྡུད་དོན་ལུ་ ཚགས་མ་སྔོན་སྒྲིག་དེ་ བཙག་ནི་ཐོག་ལས་ངེས་འཛིན་འབད་ཚུགསཔ་ཨིན་ དཔེ་འབད་བ་ཅིན་ གཏན་ཚིག་ཅན་གསལ་བརྗོད་སྒྲུབ་རྟགས་ཚུའི་མཉམ་མཐུད་ལག་ལེན་འཐབ་ཐོག་ལས་ ས་སྒོའི་མིང་ཚུ།"
@@ -58214,7 +54156,6 @@ msgstr "ཁྱོད་ཀྱིས་ གནད་སྡུད་དོན་
msgctxt ""
"12090103.xhp\n"
"hd_id3159153\n"
-"5\n"
"help.text"
msgid "Operator"
msgstr "བཀོལ་སྤྱོདཔ།"
@@ -58223,7 +54164,6 @@ msgstr "བཀོལ་སྤྱོདཔ།"
msgctxt ""
"12090103.xhp\n"
"par_id3153093\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/connect2\" visibility=\"visible\">Select a logical operator for the filter.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/connect2\" visibility=\"visible\"> ཚགས་མའི་དོན་ལུ་ བཀོལ་སྤྱོདཔ་གཏན་ཚིག་ཅན་སེལ་འཐུ་འབད། </ahelp>"
@@ -58232,7 +54172,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/connect2\" visibility=\"
msgctxt ""
"12090103.xhp\n"
"hd_id3152462\n"
-"7\n"
"help.text"
msgid "Field name"
msgstr "ས་སྒོའི་མིང་།"
@@ -58241,7 +54180,6 @@ msgstr "ས་སྒོའི་མིང་།"
msgctxt ""
"12090103.xhp\n"
"par_id3155306\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/field3\" visibility=\"visible\">Select the field that you want to use in the filter. If field names are not available, the column labels are listed.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/field3\" visibility=\"visible\"> ཁྱོད་ཀྱིས་ཚགས་མ་ནང་ལག་ལེན་འཐབ་དགོས་མནོ་མི་ས་སྒོ་སེལ་འཐུ་འབད། ས་སྒོའི་མིང་ཚུ་འཐོབ་ཚུགསཔ་མེད་པ་ཅིན་ ཀེར་ཐིག་ཁ་ཡིག་བཏགས་ནི་ཚུ་ཐོ་བཀོད་འབད་ཡོདཔ་ཨིན། </ahelp>"
@@ -58250,7 +54188,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/field3\" visibility=\"vi
msgctxt ""
"12090103.xhp\n"
"hd_id3148575\n"
-"9\n"
"help.text"
msgid "Condition"
msgstr "གནས་སྟངས།"
@@ -58259,7 +54196,6 @@ msgstr "གནས་སྟངས།"
msgctxt ""
"12090103.xhp\n"
"par_id3147394\n"
-"10\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"modules/scalc/ui/pivotfilterdialog/cond3\">Select an operator to compare the <emph>Field name</emph> and <emph>Value</emph> entries.</ahelp>"
msgstr ""
@@ -58268,7 +54204,6 @@ msgstr ""
msgctxt ""
"12090103.xhp\n"
"par_id3144764\n"
-"11\n"
"help.text"
msgid "The following operators are available:"
msgstr "འོག་ལུ་ཡོད་པའི་ བཀོལ་སྤྱོདཔ་ཚུ་ཐོབ་ཚུགསཔ་ཨིན་པས།:"
@@ -58277,7 +54212,6 @@ msgstr "འོག་ལུ་ཡོད་པའི་ བཀོལ་སྤྱ
msgctxt ""
"12090103.xhp\n"
"par_id3153415\n"
-"12\n"
"help.text"
msgid "<emph>Conditions:</emph>"
msgstr "<emph> གནས་སྟངས་ཚུ། :</emph>"
@@ -58286,7 +54220,6 @@ msgstr "<emph> གནས་སྟངས་ཚུ། :</emph>"
msgctxt ""
"12090103.xhp\n"
"par_id3150324\n"
-"13\n"
"help.text"
msgid "="
msgstr ""
@@ -58295,7 +54228,6 @@ msgstr ""
msgctxt ""
"12090103.xhp\n"
"par_id3153714\n"
-"14\n"
"help.text"
msgid "equal"
msgstr "མཉམ་པ།"
@@ -58304,7 +54236,6 @@ msgstr "མཉམ་པ།"
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
-"15\n"
"help.text"
msgid "<"
msgstr ""
@@ -58313,7 +54244,6 @@ msgstr ""
msgctxt ""
"12090103.xhp\n"
"par_id3154703\n"
-"16\n"
"help.text"
msgid "less than"
msgstr "ཉུང་མི།"
@@ -58322,7 +54252,6 @@ msgstr "ཉུང་མི།"
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
-"17\n"
"help.text"
msgid ">"
msgstr ""
@@ -58331,7 +54260,6 @@ msgstr ""
msgctxt ""
"12090103.xhp\n"
"par_id3147003\n"
-"18\n"
"help.text"
msgid "greater than"
msgstr "སྦོམ་མི།"
@@ -58340,7 +54268,6 @@ msgstr "སྦོམ་མི།"
msgctxt ""
"12090103.xhp\n"
"par_id3153270\n"
-"19\n"
"help.text"
msgid "<="
msgstr "<="
@@ -58349,7 +54276,6 @@ msgstr "<="
msgctxt ""
"12090103.xhp\n"
"par_id3145257\n"
-"20\n"
"help.text"
msgid "less than or equal to"
msgstr "ཉུང་མི་ཡང་ན་མཉམ་པ།"
@@ -58358,7 +54284,6 @@ msgstr "ཉུང་མི་ཡང་ན་མཉམ་པ།"
msgctxt ""
"12090103.xhp\n"
"par_id3145134\n"
-"21\n"
"help.text"
msgid ">="
msgstr ">="
@@ -58367,7 +54292,6 @@ msgstr ">="
msgctxt ""
"12090103.xhp\n"
"par_id3151214\n"
-"22\n"
"help.text"
msgid "greater than or equal to"
msgstr "སྦོམ་མི་ཡང་ན་མཉམ་པ།"
@@ -58376,7 +54300,6 @@ msgstr "སྦོམ་མི་ཡང་ན་མཉམ་པ།"
msgctxt ""
"12090103.xhp\n"
"par_id3150345\n"
-"23\n"
"help.text"
msgid "<>"
msgstr "<>"
@@ -58385,7 +54308,6 @@ msgstr "<>"
msgctxt ""
"12090103.xhp\n"
"par_id3159101\n"
-"24\n"
"help.text"
msgid "not equal to"
msgstr "མཉམ་པ་མ་ཡིན་པ།"
@@ -58394,7 +54316,6 @@ msgstr "མཉམ་པ་མ་ཡིན་པ།"
msgctxt ""
"12090103.xhp\n"
"hd_id3150886\n"
-"25\n"
"help.text"
msgid "Value"
msgstr "གནས་གོང་།"
@@ -58403,13 +54324,11 @@ msgstr "གནས་གོང་།"
msgctxt ""
"12090103.xhp\n"
"par_id3155506\n"
-"26\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/val3\" visibility=\"visible\">Select the value that you want to compare to the selected field.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/val3\" visibility=\"visible\"> ཁྱོད་ཀྱིས་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ས་སྒོ་དང་ག་བསྡུར་བརྐྱབ་ནི་ཨིན་པའི་ གནས་གོང་སེལ་འཐུ་འབད། </ahelp>"
#: 12090103.xhp
-#, fuzzy
msgctxt ""
"12090103.xhp\n"
"hd_id3146980\n"
@@ -58429,17 +54348,14 @@ msgstr "གདམ་ཁ་ཚུ།"
msgctxt ""
"12090104.xhp\n"
"hd_id3149119\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Options</link>"
msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\"> གདམ་ཁ་ཚུ། </link>"
#: 12090104.xhp
-#, fuzzy
msgctxt ""
"12090104.xhp\n"
"par_id3147102\n"
-"2\n"
"help.text"
msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"modules/scalc/ui/pivotfilterdialog/more\" visibility=\"visible\">Displays or hides additional filtering options.</ahelp></variable>"
msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\"> བཙག་ནི་གདམ་ཁ་ ཁ་སྐོང་ཚུ་བཀྲམ་སྟོན་ནམ་ སྦ་བཞགཔ་ཨིན། </ahelp></variable>"
@@ -58448,7 +54364,6 @@ msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\">
msgctxt ""
"12090104.xhp\n"
"hd_id3147008\n"
-"3\n"
"help.text"
msgid "Options"
msgstr "གདམ་ཁ་ཚུ།"
@@ -58457,7 +54372,6 @@ msgstr "གདམ་ཁ་ཚུ།"
msgctxt ""
"12090104.xhp\n"
"hd_id3153662\n"
-"5\n"
"help.text"
msgid "Case sensitive"
msgstr "ཡི་གུ་ཉེན་ཅན།"
@@ -58466,7 +54380,6 @@ msgstr "ཡི་གུ་ཉེན་ཅན།"
msgctxt ""
"12090104.xhp\n"
"par_id3145673\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Distinguishes between uppercase and lowercase letters.</ahelp>"
msgstr ""
@@ -58475,7 +54388,6 @@ msgstr ""
msgctxt ""
"12090104.xhp\n"
"hd_id3156327\n"
-"7\n"
"help.text"
msgid "Regular Expression"
msgstr "དུས་རྒྱུན་གསལ་བརྗོད།"
@@ -58484,7 +54396,6 @@ msgstr "དུས་རྒྱུན་གསལ་བརྗོད།"
msgctxt ""
"12090104.xhp\n"
"par_id3151245\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Allows you to use regular expressions in the filter definition.</ahelp>"
msgstr ""
@@ -58493,13 +54404,11 @@ msgstr ""
msgctxt ""
"12090104.xhp\n"
"par_id3147264\n"
-"29\n"
"help.text"
msgid "If the <emph>Regular Expression</emph> check box is selected, you can use EQUAL (=) and NOT EQUAL (<>) also in comparisons. You can also use the following functions: DCOUNTA, DGET, MATCH, COUNTIF, SUMIF, LOOKUP, VLOOKUP and HLOOKUP."
msgstr "<emph> དུས་རྒྱུན་གསལ་བརྗོད་ </emph> དཔྱད་ཞིབ་སྒྲོམ་དེ་ སེལ་འཐུ་གྲུབ་ཡོད་པ་ཅིན་ ཁྱོད་ཀྱིས་ EQUAL (=) and NOT EQUAL (<>) ཚུ་ ག་བསྡུར་ནང་ཡང་ ལག་ལེན་འཐབ་བཏུབ་ཨིན། ཁྱོད་ཀྱིས་ འོག་ལུ་ཡོད་པའི་ལས་འགན་: DCOUNTA, DGET, MATCH, COUNTIF, SUMIF, LOOKUP, VLOOKUP and HLOOKUP ཚུ་ཡང་ ལག་ལེན་འཐབ་བཏུབ་ཨིན་"
#: 12090104.xhp
-#, fuzzy
msgctxt ""
"12090104.xhp\n"
"hd_id3153379\n"
@@ -58511,13 +54420,11 @@ msgstr "ངོ་བཤུས་འབད་ནི་མེདཔ།"
msgctxt ""
"12090104.xhp\n"
"par_id3154138\n"
-"31\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Excludes duplicate rows in the list of filtered data.</ahelp>"
msgstr ""
#: 12090104.xhp
-#, fuzzy
msgctxt ""
"12090104.xhp\n"
"hd_id3156282\n"
@@ -58561,7 +54468,6 @@ msgstr "<bookmark_value> གནད་སྡུད་པའི་ལོཊི་
msgctxt ""
"12090105.xhp\n"
"hd_id3150871\n"
-"1\n"
"help.text"
msgid "Data field"
msgstr "གནད་སྡུད་ས་སྒོ།"
@@ -58570,7 +54476,6 @@ msgstr "གནད་སྡུད་ས་སྒོ།"
msgctxt ""
"12090105.xhp\n"
"par_id3154124\n"
-"16\n"
"help.text"
msgid "The contents of this dialog is different for data fields in the <emph>Data</emph> area, and data fields in the <emph>Row</emph> or <emph>Column</emph> area of the <link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table\">Pivot Table</link> dialog."
msgstr "འ་ནི་ཌའི་ལོག་ནང་གི་ནང་དོན་ཚུ་ the <emph> གནད་སྡུད་ </emph> མངའ་ཁོངས་ནང་གི་ གནད་སྡུད་ས་སྒོ་ཚུའི་དོན་ལུ་ དང་ and data fields in the<emph> གྲལ་ཐིག་ </emph> ནང་གི་ གནད་སྡུད་ས་སྒོ་ཚུ་ ཡང་ན་ <emph> གནད་སྡུད་པཱའི་ལོཊི་ ཌའི་ལོག་གི་</emph> ཀེར་ཐིག་ <link href=\"text/scalc/01/12090102.xhp\" name=\"DataPilot\"> དོནལུ་ </link> སོ་སོར་ཨིན།"
@@ -58579,7 +54484,6 @@ msgstr "འ་ནི་ཌའི་ལོག་ནང་གི་ནང་དོ
msgctxt ""
"12090105.xhp\n"
"hd_id3152596\n"
-"2\n"
"help.text"
msgid "Subtotals"
msgstr "ཡན་ལག་བསྡོམས་ཚུ།"
@@ -58588,7 +54492,6 @@ msgstr "ཡན་ལག་བསྡོམས་ཚུ།"
msgctxt ""
"12090105.xhp\n"
"par_id3151113\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/PivotFieldDialog\">Specify the subtotals that you want to calculate.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/PivotFieldDialog\"> ཁྱོད་ཀྱིས་ རྩིས་སྟོན་འབད་ནི་ཨིན་པའི་ ཡན་ལག་བསྡོམས་ཚུ་གསལ་བཀོད་འབད། </ahelp>"
@@ -58597,7 +54500,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/PivotFieldDialog\"> ཁ
msgctxt ""
"12090105.xhp\n"
"hd_id3145366\n"
-"4\n"
"help.text"
msgid "None"
msgstr "ཅི་མེད།"
@@ -58606,7 +54508,6 @@ msgstr "ཅི་མེད།"
msgctxt ""
"12090105.xhp\n"
"par_id3152576\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/none\">Does not calculate subtotals.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/none\"> ཡན་ལག་བསྡོམས་ཚུ་རྩིས་སྟོན་མི་འབད་བས། </ahelp>"
@@ -58615,7 +54516,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/none\"> ཡན་ལག
msgctxt ""
"12090105.xhp\n"
"hd_id3154012\n"
-"6\n"
"help.text"
msgid "Automatic"
msgstr "རང་བཞིན་གྱིས།"
@@ -58624,7 +54524,6 @@ msgstr "རང་བཞིན་གྱིས།"
msgctxt ""
"12090105.xhp\n"
"par_id3155856\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/auto\">Automatically calculates subtotals.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/auto\"> ཡན་ལག་བསྡོམས་ཚུ་རང་བཞིན་གྱིས་ རྩིས་སྟོན་འབདཝ་ཨིན། </ahelp>"
@@ -58633,7 +54532,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/auto\"> ཡན་ལག
msgctxt ""
"12090105.xhp\n"
"hd_id3155411\n"
-"8\n"
"help.text"
msgid "User-defined"
msgstr "ངེས་འཛིན་འབད་ཡོད་པའི་ལག་ལེན་པ།"
@@ -58642,7 +54540,6 @@ msgstr "ངེས་འཛིན་འབད་ཡོད་པའི་ལག་
msgctxt ""
"12090105.xhp\n"
"par_id3149581\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/user\">Select this option, and then click the type of subtotal that you want to calculate in the list.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/user\"> འ་ནི་གདམ་ཁ་འདི་སེལ་འཐུ་འབད་ཞིནམ་ལས་ ཁྱོད་ཀྱིས་ཐོ་ཡིག་ནང་ལུ་ རྩིས་སྟོན་དགོས་མནོ་མི་ ཡན་ལག་བསྡོམས་ཀྱི་དབྱེ་བ་ཨེབ་གཏང་། </ahelp>"
@@ -58651,7 +54548,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/user\"> འ་ནི་
msgctxt ""
"12090105.xhp\n"
"hd_id3147124\n"
-"10\n"
"help.text"
msgid "Function"
msgstr "ལས་འགན།"
@@ -58660,34 +54556,30 @@ msgstr "ལས་འགན།"
msgctxt ""
"12090105.xhp\n"
"par_id3154490\n"
-"11\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/functions\">Click the type of subtotal that you want to calculate. This option is only available if the <emph>User-defined</emph> option is selected.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/functions\"> ཁྱོད་ཀྱིས་ རྩིས་སྟོན་འབད་དགོས་མནོ་མི་ ཡན་ལག་བསྡོམས་ཀྱི་དབྱེ་བ་ཨེབ་གཏང་། འ་ནི་གདམ་ཁ་འདི་ <emph> ལག་ལེན་པ་ངེས་འཛིན་འབད་ཡོདཔ་ </emph> པའི་གདམ་ཁ་འདི་སེལ་འཐུ་གྲུབ་ཡོད་པ་ཅིན་རྐྱངམ་ཅིག་འཐོབ་ཚུགསཔ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\".\">Click the type of subtotal that you want to calculate. This option is only available if the <emph>User-defined</emph> option is selected.</ahelp>"
+msgstr ""
#: 12090105.xhp
msgctxt ""
"12090105.xhp\n"
"hd_id3154944\n"
-"14\n"
"help.text"
-msgid "Show elements without data"
-msgstr "ཆ་ཤས་ཚུ་གནད་སྡུད་མེདཔ་སྦེ་སྟོན།"
+msgid "Show items without data"
+msgstr ""
#: 12090105.xhp
msgctxt ""
"12090105.xhp\n"
"par_id3149403\n"
-"15\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/showall\">Includes empty columns and rows in the results table.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/pivotfielddialog/showall\"> གྲུབ་འབྲས་ཚུའི་ཐིག་ཁྲམ་ནང་ལུ་ ཀེར་ཐིག་དང་གྲལ་ཐིག་སྟོངམ་ཚུ་གྲངས་སུ་བཙུགསཔ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\".\">Includes empty columns and rows in the results table.</ahelp>"
+msgstr ""
#: 12090105.xhp
msgctxt ""
"12090105.xhp\n"
"hd_id3149122\n"
-"12\n"
"help.text"
msgid "Name:"
msgstr "མིང་།:"
@@ -58696,7 +54588,6 @@ msgstr "མིང་།:"
msgctxt ""
"12090105.xhp\n"
"par_id3150749\n"
-"13\n"
"help.text"
msgid "Lists the name of the selected data field."
msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་གནད་སྡུད་ས་སྒོའི་མིང་ ཐོ་བཀོད་འབདཝ་ཨིན།"
@@ -58770,8 +54661,8 @@ msgctxt ""
"12090105.xhp\n"
"par_idN10716\n"
"help.text"
-msgid "<ahelp hid=\"1495371266\">Select the type of calculating of the displayed value for the data field.</ahelp>"
-msgstr "<ahelp hid=\"1495371266\"> གནད་སྡུད་ས་སྒོ་དོན་ལུ་ བཀྲམ་སྟོན་འབད་ཡོད་པའི་གནས་གོང་གི་ རྩིས་སྟོན་འབད་ནིའི་དབྱེ་བ་སེལ་འཐུ་འབད། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafielddialog/type\">Select the type of calculating of the displayed value for the data field.</ahelp>"
+msgstr ""
#: 12090105.xhp
msgctxt ""
@@ -58994,8 +54885,8 @@ msgctxt ""
"12090105.xhp\n"
"par_idN107BE\n"
"help.text"
-msgid "<ahelp hid=\"1495371267\">Select the field from which the respective value is taken as base for the calculation.</ahelp>"
-msgstr "<ahelp hid=\"1495371267\"> རྩིས་ལས་དོན་ལུ་ རིམ་བཞིན་གནས་གོང་ལས་གཞི་རྟེན་སྦེ་འབག་ཡོད་པའི་ས་སྒོ་དེ་ སེལ་འཐུ་འབད། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafielddialog/basefield\">Select the field from which the respective value is taken as base for the calculation.</ahelp>"
+msgstr ""
#: 12090105.xhp
msgctxt ""
@@ -59010,8 +54901,8 @@ msgctxt ""
"12090105.xhp\n"
"par_idN107C5\n"
"help.text"
-msgid "<ahelp hid=\"1495371268\">Select the item of the base field from which the respective value is taken as base for the calculation.</ahelp>"
-msgstr "<ahelp hid=\"1495371268\"> རྩིས་ལས་ཀྱི་དོན་ལུ་ རང་སོའི་གནས་གོང་གཞི་རྟེན་སྦེ་འབག་ཡོད་པའི་ གཞི་རྟེན་ས་སྒོའི་རྣམ་གྲངས་སེལ་འཐུ་འབད། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafielddialog/baseitem\">Select the item of the base field from which the respective value is taken as base for the calculation.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -59058,8 +54949,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN1055B\n"
"help.text"
-msgid "<ahelp hid=\"1495387653\">Select the data field that you want to sort columns or rows by.</ahelp>"
-msgstr "<ahelp hid=\"1495387653\"> ཁྱོད་ཀྱིས་ ཀེར་ཐིག་ཚུ་ ཡང་ན་ གྲལ་ཐིག་ཚུ་ དབྱེ་སེལ་འབད་དགོ་མནོ་མི་ གནད་སྡུད་ས་སྒོ་སེལ་འཐུ་འབད། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/sortby\">Select the data field that you want to sort columns or rows by.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -59074,8 +54965,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN10562\n"
"help.text"
-msgid "<ahelp hid=\"1495384580\">Sorts the values from the lowest value to the highest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
-msgstr "<ahelp hid=\"1495384580\"> གནས་གོང་ཚུ་ དམའ་ཤོས་ལས་མཐོ་ཤོས་ལུ་དབྱེ་སེལ་འབདཝ་ཨིན་ དེ་ཡང་ ཨེ་ ལས་ བི་ ཚུན་དང་ ༡་ལས་༩ ཚུན་ཨིན། སེལ་འཐུ་གྲུབ་ཡོད་པའི་ས་སྒོ་དེ་ ཌའི་ལོག་ཁ་ཕྱེ་ཡོད་པའི་ས་སྒོ་ཨིན་པ་ཅིན་ རྣམ་གྲངས་ཚུ་མིང་གིས་དབྱེ་སེལ་འབད་ཡོདཔ་ཨིན། གནད་སྡུད་ས་སྒོ་ཚུ་ སེལ་འཐུ་གྲུབ་ཡོད་པ་ཅིན་ རྣམ་གྲངས་ཚུ་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་གནད་སྡུད་ས་སྒོ་ གྲུབ་འབྲས་ཅན་གྱི་གནས་གོང་གིས་ དབྱེ་སེལ་འབད་ཡོདཔ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/ascending\">Sorts the values from the lowest value to the highest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -59090,8 +54981,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "<ahelp hid=\"1495384581\">Sorts the values descending from the highest value to the lowest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
-msgstr "<ahelp hid=\"1495384581\"> གནས་གོང་ཚུ་ གནས་གོང་མཐོ་ཤོས་ལས་གནས་གོང་དམའ་ཤོས་ལུ་ མར་འབབ་འགྱོ་མི་ཐོག་ལས་དབྱེ་སེལ་འབདཝ་ཨིན་ དེ་ཡང་ ཛེཌི་ ལས་ ཨེ་ དང་ ཡང་ན་ ༩ ལས་ ༡ ཚུན་བཟུམ་ཨིན། སེལ་འཐུ་གྲུབ་ཡོད་པའི་ ས་སྒོ་དེ་ ཌའི་ལོག་ཁ་ཕྱེ་ཡོད་པའི་ ས་སྒོ་ཨིན་པ་ཅིན་ རྣམ་གྲངས་ཚུ་ མིང་གིས་ དབྱེ་སེལ་འབད་ཡོདཔ་ཨིན། གནད་སྡུད་ས་སྒོ་གཅིག་སེལ་འཐུ་གྲུབ་ཡོད་པ་ཅིན་ རྣམ་གྲངས་ཚུ་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་གནད་སྡུད་ས་སྒོའི་གྲུབ་འབྲས་ཅན་གྱིས་ཐོག་ལས་ དབྱེ་སེལ་འབད་ཡོདཔ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/descending\">Sorts the values descending from the highest value to the lowest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -59106,7 +54997,7 @@ msgctxt ""
"12090106.xhp\n"
"par_idN10570\n"
"help.text"
-msgid "<ahelp hid=\"1495384582\">Sorts values alphabetically.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/manual\">Sorts values alphabetically.</ahelp>"
msgstr ""
#: 12090106.xhp
@@ -59138,8 +55029,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN10590\n"
"help.text"
-msgid "<ahelp hid=\"1495387654\">Select the layout mode for the field in the list box.</ahelp>"
-msgstr "<ahelp hid=\"1495387654\"> ཐོ་ཡིག་སྒྲོམ་ནང་ལུ་ ས་སྒོའི་དོན་ལུ་ སྒྲིག་བཀོད་ཐབས་ལམ་སེལ་འཐུ་འབདཝ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/layout\">Select the layout mode for the field in the list box.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -59154,8 +55045,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN10597\n"
"help.text"
-msgid "<ahelp hid=\"1495385090\">Adds an empty row after the data for each item in the pivot table.</ahelp>"
-msgstr "<ahelp hid=\"1495385090\"> གནད་སྡུད་པའི་ལོཊི་ཐིག་ཁྲམ་ནང་ལུ་ གནད་སྡུད་ཀྱི་ཤུལ་མ་རྣམ་གྲངས་རེ་རེ་ལུ་ གྲལ་ཐིག་ཁ་སྐོང་བརྐྱབ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/emptyline\">Adds an empty row after the data for each item in the pivot table.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -59186,8 +55077,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN105A5\n"
"help.text"
-msgid "<ahelp hid=\"1495385091\">Turns on the automatic show feature.</ahelp>"
-msgstr "<ahelp hid=\"1495385091\"> རང་བཞིན་གྱིས་སྟོན་ཁྱད་རྣམ་གུ་བསྒྱིརཝ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/show\">Turns on the automatic show feature.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -59202,8 +55093,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN105AC\n"
"help.text"
-msgid "<ahelp hid=\"1495390209\">Enter the maximum number of items that you want to show automatically.</ahelp>"
-msgstr "<ahelp hid=\"1495390209\"> ཁྱོད་ཀྱིས་ རང་བཞིན་གྱིས་སྟོན་དགོས་མནོ་མི་ རྣམ་གྲངས་ཚུའི་གྱངས་ཁ་མང་མཐའ་བཙུགས། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/items\">Enter the maximum number of items that you want to show automatically.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -59218,8 +55109,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN105B3\n"
"help.text"
-msgid "<ahelp hid=\"1495387655\">Shows the top or bottom items in the specified sort order.</ahelp>"
-msgstr "<ahelp hid=\"1495387655\"> གསལ་བཀོད་འབད་ཡོད་པའི་ དབྱེ་སེལ་རིམ་པ་ནང་ མགུ་ཡང་ན་ མཇུག་གི་རྣམ་གྲངས་ཚུ་སྟོནམ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/from\">Shows the top or bottom items in the specified sort order.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -59234,8 +55125,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN105BA\n"
"help.text"
-msgid "<ahelp hid=\"1495387656\">Select the data field that you want to sort the data by.</ahelp>"
-msgstr "<ahelp hid=\"1495387656\"> ཁྱོད་ཀྱིས་ དབྱེ་སེལ་འབད་དགོ་མནོ་མི་ གནད་སྡུད་ས་སྒོ་སེལ་འཐུ་འབད། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/using\">Select the data field that you want to sort the data by.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -59250,8 +55141,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN105C1\n"
"help.text"
-msgid "<ahelp hid=\"59010\">Select the items that you want to hide from the calculations.</ahelp>"
-msgstr "<ahelp hid=\"59010\">ཁྱོད་ཀྱིས་རྩིས་སྟོན་འབད་ནི་ཚུ་ལས་སྦ་ནི་ཨིན་མི་ རྣམ་གྲངས་འདི་སེལ་འཐུ་འབད།</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/hideitems\">Select the items that you want to hide from the calculations.</ahelp>"
+msgstr ""
#: 12090106.xhp
msgctxt ""
@@ -59266,8 +55157,8 @@ msgctxt ""
"12090106.xhp\n"
"par_idN105C8\n"
"help.text"
-msgid "<ahelp hid=\"1495387657\">Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies.</ahelp>"
-msgstr "<ahelp hid=\"1495387657\"> ཁྱོད་ཀྱིས་ ལག་ལེན་འཐབ་དགོཔ་མནོ་མི་ སྡེ་རིམ་ སེལ་འཐུ་འབད། གནད་སྡུད་པའི་ལོཊི་དེ་ ནང་ན་གནད་སྡུད་སྡེ་རིམ་ཚུ་ཤོམ་ཏེ་ཡོད་པའི་ ཕྱིའི་འབྱུང་ཁུངས་གནད་སྡུད་ལུ་ གཞི་བཞག་དགོཔ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/hierarchy\">Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies.</ahelp>"
+msgstr ""
#: 12090200.xhp
msgctxt ""
@@ -59281,7 +55172,6 @@ msgstr "ཡང་སེལ་འབད།"
msgctxt ""
"12090200.xhp\n"
"hd_id3151385\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresh\">Refresh</link>"
msgstr "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresh\"> ཡང་སེལ་འབད། </link>"
@@ -59290,7 +55180,6 @@ msgstr "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresh\"> ཡང་ས
msgctxt ""
"12090200.xhp\n"
"par_id3149456\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:RecalcPivotTable\">Updates the pivot table.</ahelp>"
msgstr "<ahelp hid=\".uno:RecalcPivotTable\"> གནད་སྡུད་པའི་ལོཊི་ཐིག་ཁྲམ་ དུས་མཐུནམ་བཟོཝ་ཨིན། </ahelp>"
@@ -59299,7 +55188,6 @@ msgstr "<ahelp hid=\".uno:RecalcPivotTable\"> གནད་སྡུད་པའ
msgctxt ""
"12090200.xhp\n"
"par_id3150400\n"
-"3\n"
"help.text"
msgid "After you import an Excel spreadsheet that contains a pivot table, click in the table, and then choose <emph>Data - Pivot Table - Refresh</emph>."
msgstr "ཁྱོད་ཀྱིས་ ནང་ན་པའི་བོཊི་ཐིག་ཁྲམ་ཤོམ་ཏེ་ཡོད་པའི་ ཨེགསི་སེལ་ཤོག་ཁྲམ་ནང་འདྲེན་འབད་ཚར་བའི་ཤུལ་ལས་ ཐིག་ཁྲམ་ནང་ཨེབ་གཏང་ཟིནམ་ལས་ <emph> གནད་སྡུད་ - གནད་སྡུད་པའི་ལོཊི་ - ཡང་སེལ་འབད་ཚུ་ </emph> གདམ།"
@@ -59316,7 +55204,6 @@ msgstr "བཏོན་གཏང་།"
msgctxt ""
"12090300.xhp\n"
"hd_id3150276\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Delete</link>"
msgstr "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\"> བཏོན་གཏང་། </link>"
@@ -59325,7 +55212,6 @@ msgstr "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\"> བཏོན
msgctxt ""
"12090300.xhp\n"
"par_id3159400\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Deletes the selected pivot table.</ahelp>"
msgstr "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ གནད་སྡུད་པའི་ལོཊི་ཐིག་ཁྲམ་བཏོན་གཏངམ་ཨིན། </ahelp>"
@@ -59518,7 +55404,6 @@ msgstr "<bookmark_value> གནད་སྡུད་གཞི་རྟེན་
msgctxt ""
"12100000.xhp\n"
"hd_id3153662\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\"> ཁྱབ་ཚད་ཡང་སེལ་འབད། </link>"
@@ -59527,7 +55412,6 @@ msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\"> ཁྱ
msgctxt ""
"12100000.xhp\n"
"par_id3153088\n"
-"2\n"
"help.text"
msgid "<variable id=\"aktualisieren\"><ahelp hid=\".uno:DataAreaRefresh\" visibility=\"visible\">Updates a data range that was inserted from an external database. The data in the sheet is updated to match the data in the external database.</ahelp></variable>"
msgstr "<variable id=\"aktualisieren\"><ahelp hid=\".uno:DataAreaRefresh\" visibility=\"visible\"> ཕྱིའི་གནད་སྡུད་གཞི་རྟེན་ལས་ བཙུགས་ཡོད་པའི་ གནད་སྡུད་ཁྱབ་ཚད་དུས་མཐུནམ་བཟོཝ་ཨིན། ཤོག་ཁྲམ་ནང་གི་གནད་སྡུད་དེ་ ཕྱིའི་གནད་སྡུད་གཞི་རྟེན་དང་ མཐུན་སྒྲིག་འབད་ནིའི་དོན་ལུ་ དུས་མཐུནམ་བཟོ་ཡདོ། </ahelp></variable>"
@@ -59544,7 +55428,6 @@ msgstr "ནུས་ལྡན་དུས་ཚོད།"
msgctxt ""
"12120000.xhp\n"
"hd_id3156347\n"
-"1\n"
"help.text"
msgid "Validity"
msgstr "ནུས་ལྡན་དུས་ཚོད།"
@@ -59553,7 +55436,6 @@ msgstr "ནུས་ལྡན་དུས་ཚོད།"
msgctxt ""
"12120000.xhp\n"
"par_id3153252\n"
-"2\n"
"help.text"
msgid "<variable id=\"gueltigkeit\"><ahelp hid=\".uno:Validation\">Defines what data is valid for a selected cell or cell range.</ahelp></variable>"
msgstr "<variable id=\"gueltigkeit\"><ahelp hid=\".uno:Validation\"> ནང་ཐིག་ཡང་ན་ ནང་ཐིག་ཁྱབ་ཚད་ལུ་སེལ་འཐུ་གྲུབ་ཡོད་པའི་དོན་ལུ་གནད་སྡུད་འདི་ ག་ཅི་ནུས་ཅན་ཡོདཔ་ཨིན་ན་ངེས་འཛིན་འབདཝ་ཨིན། </ahelp></variable>"
@@ -59586,7 +55468,6 @@ msgstr "<bookmark_value>སེལ་འཐུའི་ཐོ་ཡིག་ཚ
msgctxt ""
"12120100.xhp\n"
"hd_id3153032\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\">Criteria</link>"
msgstr "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\"> ཁྱད་ཚད། </link>"
@@ -59595,7 +55476,6 @@ msgstr "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\"> ཁྱད
msgctxt ""
"12120100.xhp\n"
"par_id3156327\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/ValidationCriteriaPage\">Specify the validation rules for the selected cell(s).</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/ValidationCriteriaPage\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ ནང་ཐིག་ཚུའི་དོན་ལུ་ ནུས་ལྡན་བཟོ་ནིའི་ལམ་ལུགས་ཚུ་གསལ་བཀོད་འབད།(s) </ahelp>"
@@ -59604,7 +55484,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/ValidationCriteriaP
msgctxt ""
"12120100.xhp\n"
"par_id3155923\n"
-"4\n"
"help.text"
msgid "For example, you can define criteria such as: \"Numbers between 1 and 10\" or \"Texts that are no more than 20 characters\"."
msgstr "དཔེ་འབད་བ་ཅིན་ ཁྱོད་ཀྱིས་ ཁྱད་ཚད་འདི་ འོག་ལུ་ཡོདཔ་བཟུམ་སྦེ་ངེས་འཛིན་འབད་བཏུབ་ཨིན་: \"Numbers between 1 and 10\" or \"Texts that are no more than 20 characters\"."
@@ -59613,7 +55492,6 @@ msgstr "དཔེ་འབད་བ་ཅིན་ ཁྱོད་ཀྱིས
msgctxt ""
"12120100.xhp\n"
"hd_id3153896\n"
-"5\n"
"help.text"
msgid "Allow"
msgstr "བཅུག"
@@ -59622,7 +55500,6 @@ msgstr "བཅུག"
msgctxt ""
"12120100.xhp\n"
"par_id3150400\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/allow\">Click a validation option for the selected cell(s).</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/allow\"> སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཚུ་གི་དོན་ལུ་ ནུས་ལྡན་བཟོ་ནིའི་གདམ་ཁ་ཨེབ་གཏང་།(s) </ahelp>"
@@ -59631,7 +55508,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/allow\"> སེལ
msgctxt ""
"12120100.xhp\n"
"par_id3148797\n"
-"17\n"
"help.text"
msgid "The following conditions are available:"
msgstr "འོག་ལུ་ཡོད་པའི་གནས་སྟངས་ཚུ་འཐོབ་ཚུགས།:"
@@ -59640,7 +55516,6 @@ msgstr "འོག་ལུ་ཡོད་པའི་གནས་སྟངས་
msgctxt ""
"12120100.xhp\n"
"par_id3150447\n"
-"18\n"
"help.text"
msgid "Condition"
msgstr "གནས་སྟངས།"
@@ -59649,7 +55524,6 @@ msgstr "གནས་སྟངས།"
msgctxt ""
"12120100.xhp\n"
"par_id3155854\n"
-"19\n"
"help.text"
msgid "Effect"
msgstr "ནུས་པ།"
@@ -59658,7 +55532,6 @@ msgstr "ནུས་པ།"
msgctxt ""
"12120100.xhp\n"
"par_id3153092\n"
-"20\n"
"help.text"
msgid "All values"
msgstr "གནས་གོང་ཚུ་ཆ་མཉམ།"
@@ -59667,7 +55540,6 @@ msgstr "གནས་གོང་ཚུ་ཆ་མཉམ།"
msgctxt ""
"12120100.xhp\n"
"par_id3155411\n"
-"21\n"
"help.text"
msgid "No limitation."
msgstr "མཚམས་ཚད་མེད།"
@@ -59676,7 +55548,6 @@ msgstr "མཚམས་ཚད་མེད།"
msgctxt ""
"12120100.xhp\n"
"par_id3147434\n"
-"22\n"
"help.text"
msgid "Whole number"
msgstr "ཨང་ཧྲིལ་བུ།"
@@ -59685,7 +55556,6 @@ msgstr "ཨང་ཧྲིལ་བུ།"
msgctxt ""
"12120100.xhp\n"
"par_id3154319\n"
-"23\n"
"help.text"
msgid "Only whole numbers corresponding to the condition."
msgstr "གནས་སྟངས་ལུ་མཉམ་པའི་ཧྲིལ་ཨང་ཚུ་རྐྱངམ་ཅིག"
@@ -59694,7 +55564,6 @@ msgstr "གནས་སྟངས་ལུ་མཉམ་པའི་ཧྲིལ
msgctxt ""
"12120100.xhp\n"
"par_id3145802\n"
-"24\n"
"help.text"
msgid "Decimal"
msgstr "བཅུ་ཚག"
@@ -59703,7 +55572,6 @@ msgstr "བཅུ་ཚག"
msgctxt ""
"12120100.xhp\n"
"par_id3153160\n"
-"25\n"
"help.text"
msgid "All numbers corresponding to the condition."
msgstr "གནས་སྟངས་ལུ་མཉམ་ཐོག་འབད་མི་ཨང་གྲངས་ཚུ་ཆ་མཉམ།"
@@ -59712,7 +55580,6 @@ msgstr "གནས་སྟངས་ལུ་མཉམ་ཐོག་འབད་
msgctxt ""
"12120100.xhp\n"
"par_id3149377\n"
-"26\n"
"help.text"
msgid "Date"
msgstr "ཚེས།"
@@ -59721,7 +55588,6 @@ msgstr "ཚེས།"
msgctxt ""
"12120100.xhp\n"
"par_id3150718\n"
-"27\n"
"help.text"
msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
msgstr "གནས་སྟངས་ལུ་མཉམ་ཐོག་མི་ ཨང་གྲངས་ཚུ་ཆ་མཉམ། བཙུགས་ཡོད་པའི་ གནས་གོང་ཚུ་ ཌའི་ལོག་དེ་ ལོག་ཤུལ་ལས་བོད་བརྡ་འབད་བའི་སྐབས་དང་ འཁྲིལ་ཏེ་ རྩ་སྒྲིག་འབད་ཡོདཔ་ཨིན།"
@@ -59730,7 +55596,6 @@ msgstr "གནས་སྟངས་ལུ་མཉམ་ཐོག་མི་
msgctxt ""
"12120100.xhp\n"
"par_id3146969\n"
-"28\n"
"help.text"
msgid "Time"
msgstr "དུས་ཚོད།"
@@ -59739,7 +55604,6 @@ msgstr "དུས་ཚོད།"
msgctxt ""
"12120100.xhp\n"
"par_id3155066\n"
-"29\n"
"help.text"
msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
msgstr "གནས་སྟངས་ལུ་མཉམ་ཐོག་མི་ ཨང་གྲངས་ཚུ་ཆ་མཉམ། བཙུགས་ཡོད་པའི་ གནས་གོང་ཚུ་ ཌའི་ལོག་དེ་ ལོག་ཤུལ་ལས་བོད་བརྡ་འབད་བའི་སྐབས་དང་ འཁྲིལ་ཏེ་ རྩ་སྒྲིག་འབད་ཡོདཔ་ཨིན།"
@@ -59780,7 +55644,6 @@ msgstr "ཐོ་ཡིག་ནང་ལུ་གསལ་བཀོད་འབ
msgctxt ""
"12120100.xhp\n"
"par_id3154756\n"
-"30\n"
"help.text"
msgid "Text length"
msgstr "ཚིག་ཡིག་རིང་ཚད།"
@@ -59789,7 +55652,6 @@ msgstr "ཚིག་ཡིག་རིང་ཚད།"
msgctxt ""
"12120100.xhp\n"
"par_id3147339\n"
-"31\n"
"help.text"
msgid "Entries whose length corresponds to the condition."
msgstr "གནས་སྟངས་ལུ་ ཆ་མཉམ་པའི་རིང་ཚད་ཀྱི་ཐོ་བཀོད་ཚུ།"
@@ -59798,7 +55660,6 @@ msgstr "གནས་སྟངས་ལུ་ ཆ་མཉམ་པའི་ར
msgctxt ""
"12120100.xhp\n"
"hd_id3154704\n"
-"7\n"
"help.text"
msgid "Allow blank cells"
msgstr "ནང་ཐིག་སྟོངམ་ཚུ་བཅུག"
@@ -59807,7 +55668,6 @@ msgstr "ནང་ཐིག་སྟོངམ་ཚུ་བཅུག"
msgctxt ""
"12120100.xhp\n"
"par_id3153967\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/allowempty\">In conjunction with <emph>Tools - Detective - Mark invalid Data</emph>, this defines that blank cells are shown as invalid data (disabled) or not (enabled).</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/allowempty\"> <emph>ལག་ཆས་ - སྐྱོན་འཛིན་ཅན་ - ནུས་མེད་གནད་སྡུད་རྟགས་བཀལ་</emph>དང་གཅིག་ཁར་འབྲེལ་ཚིག་སྦེ་ འ་ནི་འདི་གིས་ ནང་ཐིག་སྟོངམ་ཚུ་ ནུས་མེད་གནད་སྡུད་(ལྕོགས་མིན་བཟོ་ཡོདཔ་) ཡང་ན་མེནམ་(ལྕོགས་ཅན་བཟོ་ཡོདཔ་) སྦེ་ངེས་འཛིན་འབདཝ་ཨིན།</ahelp>"
@@ -59880,7 +55740,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/minlist\"> ནུ
msgctxt ""
"12120100.xhp\n"
"hd_id3163807\n"
-"9\n"
"help.text"
msgid "Data"
msgstr "གནད་སྡུད།"
@@ -59889,7 +55748,6 @@ msgstr "གནད་སྡུད།"
msgctxt ""
"12120100.xhp\n"
"par_id3144502\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/data\">Select the comparative operator that you want to use.</ahelp> The available operators depend on what you selected in the <emph>Allow </emph>box. If you select \"between\" or \"not between\", the <emph>Minimum</emph> and <emph>Maximum</emph> input boxes appear. Otherwise, only the <emph>Minimum</emph>, the <emph>Maximum, or the Value</emph> input boxes appear."
msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/data\"> ཁྱོད་ཀྱིས་ ལག་ལེན་འཐབ་དགོསཔ་མནོ་མི་ ག་བསྡུར་རྐྱབས་བཏུབ་པའི་བཀོལ་སྤྱོདཔ་ སེལ་འཐུ་འབད། </ahelp> འཐོབ་ཚུགས་པའི་བཀོལ་སྤྱོདཔ་ཚུ་ ཁྱོད་ཀྱིས་ <emph> བཅུག་སྒྲོམ་ནང་ལུ་སེལ་འཐུ་གྲུབ་ཡོད་མི་ </emph> ལུ་རག་ལསཔ་ཨིན། ཁྱོད་ཀྱིས་ \"between\" ཡང་ན་ \"not between\" སེལ་འཐུ་འབད་བ་ཅིན་ <emph> ཉུང་མཐའ་དང་ </emph> མང་མཐའི་ <emph> ཨིན་པུཊི་སྒྲོམ་ཚུ་ </emph> འབྱུངམ་ཨིན། ནི་མེན་པ་ཅིན་ <emph> ཉུང་མཐའ་དང་ </emph> མང་མཐའ་ཡང་ན་ <emph> གནས་གོང་ཨིན་པུཊི་སྒྲོམ་ཚུ་ </emph> འབྱུངམ་ཨིན།"
@@ -59898,7 +55756,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/data\"> ཁྱོ
msgctxt ""
"12120100.xhp\n"
"hd_id3153782\n"
-"11\n"
"help.text"
msgid "Value"
msgstr "གནས་གོང་།"
@@ -59907,7 +55764,6 @@ msgstr "གནས་གོང་།"
msgctxt ""
"12120100.xhp\n"
"par_id3153266\n"
-"12\n"
"help.text"
msgid "Enter the value for the data validation option that you selected in the <emph>Allow </emph>box."
msgstr "ཁྱོད་ཀྱིས་ <emph>འབད་བཅུག་ </emph>སྒྲོམ་ནང་ལུ་སེལ་འཐུ་འབད་ཡོད་མི་ ཚེས་གྲངས་ནུས་ལྡན་བཟོ་ནིའི་གདམ་ཁ་འདི་གི་དོན་ལུ་ གནས་གོང་འདི་ཐོ་བཀོད་འབད།"
@@ -59916,7 +55772,6 @@ msgstr "ཁྱོད་ཀྱིས་ <emph>འབད་བཅུག་ </emph>
msgctxt ""
"12120100.xhp\n"
"hd_id3149814\n"
-"13\n"
"help.text"
msgid "Minimum"
msgstr "ཉུང་མཐའ།"
@@ -59925,7 +55780,6 @@ msgstr "ཉུང་མཐའ།"
msgctxt ""
"12120100.xhp\n"
"par_id3153199\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/min\">Enter the minimum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/min\"> ཁྱོད་ཀྱིས་བཅུག་སྒྲོམ་ནང་ལུ་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ <emph> གནད་སྡུད་ནུས་ལྡན་བཟོ་ནི་གདམ་ཁའི་དོན་ལུ་ </emph> གནས་གོང་ཉུང་མཐའ་བཙུགས། </ahelp>"
@@ -59934,7 +55788,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/min\"> ཁྱོད
msgctxt ""
"12120100.xhp\n"
"hd_id3149035\n"
-"15\n"
"help.text"
msgid "Maximum"
msgstr "མང་མཐའ།"
@@ -59943,7 +55796,6 @@ msgstr "མང་མཐའ།"
msgctxt ""
"12120100.xhp\n"
"par_id3150089\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/max\">Enter the maximum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/max\"> ཁྱོད་ཀྱིས་ བཅུག་སྒྲོམ་ནང་ལུ་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ <emph> གནད་སྡུད་ནུས་ལྡན་བཟོ་ནིའི་གདམ་ཁའི་དོན་ལུ་ </emph> གནས་གོང་མང་མཐའ་བཙུགས།</ahelp>"
@@ -59960,7 +55812,6 @@ msgstr "ཨིན་པུཊི་གྲོགས་རམ།"
msgctxt ""
"12120200.xhp\n"
"hd_id3156280\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12120200.xhp\" name=\"Input Help\">Input Help</link>"
msgstr "<link href=\"text/scalc/01/12120200.xhp\" name=\"Input Help\"> ཨིན་པུཊི་གྲོགས་རམ། </link>"
@@ -59969,7 +55820,6 @@ msgstr "<link href=\"text/scalc/01/12120200.xhp\" name=\"Input Help\"> ཨིན
msgctxt ""
"12120200.xhp\n"
"par_id3147229\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/ValidationHelpTabPage\">Enter the message that you want to display when the cell or cell range is selected in the sheet.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/ValidationHelpTabPage\"> ཤོག་ཁྲམ་ནང་ལུ་ ནང་ཐིག་ ཡང་ན་ ནང་ཐིགཁྱབ་ཚད་སེལ་འཐུ་གྲུབ་པའི་སྐབས་སུ་ ཁྱོད་ཀྱིས་ བཀྲམ་སྟོན་འབད་དགོས་མནོ་མི་ འཕྲིན་དོན་འདི་བཙུགས། </ahelp>"
@@ -59978,7 +55828,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/ValidationHelpTabPag
msgctxt ""
"12120200.xhp\n"
"hd_id3146986\n"
-"3\n"
"help.text"
msgid "Show input help when cell is selected"
msgstr "ནང་ཐིག་འདི་སེལ་འཐུ་གྲུབ་ད་ཨིན་པུཊི་གྲོགས་རམ་སྟོན།"
@@ -59987,7 +55836,6 @@ msgstr "ནང་ཐིག་འདི་སེལ་འཐུ་གྲུབ་
msgctxt ""
"12120200.xhp\n"
"par_id3153363\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/tsbhelp\">Displays the message that you enter in the <emph>Contents</emph> box when the cell or cell range is selected in the sheet.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/tsbhelp\"> ཤོག་ཁྲམ་ནང་ལུ་ ནང་ཐིག་ཡང་ན་ ནང་ཐིག་ཁྱབ་ཚད་སེལ་འཐུ་གྲུབ་བའི་སྐབས་སུ་ <emph> ཁྱོད་ཀྱིས་ནང་དོན་ཚུའི་སྒྲོམ་ནང་ལུ་Contents</emph> བཙུགས་པའི་འཕྲིན་དོན་བཀྲམ་སྟོན་འབདཝ་ཨིན། </ahelp>"
@@ -59996,7 +55844,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/tsbhelp\"> ཤོག
msgctxt ""
"12120200.xhp\n"
"par_id3154730\n"
-"5\n"
"help.text"
msgid "If you enter text in the <emph>Contents</emph> box of this dialog, and then select and clear this check box, the text will be lost."
msgstr "ཁྱོད་ཀྱིས་ ཌའི་ལོག་གི་ <emph> ནང་དོན་ཚུའི་ </emph> སྒྲོམ་ནང་ཚིག་ཡིག་བཙུགས་སྦེ་ སེལ་འཐུ་འབད་དེ་ལས་ འ་ནི་ཞིབ་དཔྱད་སྒྲོམ་བསལ་བ་ཅིན་ ཚིག་ཡིག་འདི་ བརླག་སྟོར་ཞུགས་ནི་ཨིན།"
@@ -60005,7 +55852,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཌའི་ལོག་གི་ <emph>
msgctxt ""
"12120200.xhp\n"
"hd_id3147394\n"
-"6\n"
"help.text"
msgid "Contents"
msgstr "ནང་དོན་ཚུ།"
@@ -60014,7 +55860,6 @@ msgstr "ནང་དོན་ཚུ།"
msgctxt ""
"12120200.xhp\n"
"hd_id3149582\n"
-"8\n"
"help.text"
msgid "Title"
msgstr "མགོ་མིང་།"
@@ -60023,7 +55868,6 @@ msgstr "མགོ་མིང་།"
msgctxt ""
"12120200.xhp\n"
"par_id3149400\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/title\">Enter the title that you want to display when the cell or cell range is selected.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/title\"> ནང་ཐིག་ཡང་ན་ནང་ཐིག་ཁྱབ་ཚད་སེལ་འཐུ་གྲུབ་ཡོད་པའི་སྐབས་སུ་ ཁྱོད་ཀྱིས་ བཀྲམ་སྟོན་འབད་དགོས་མནོ་མི་ མགོ་མིང་བཙུགས། </ahelp>"
@@ -60032,7 +55876,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/title\"> ནང་
msgctxt ""
"12120200.xhp\n"
"hd_id3149121\n"
-"10\n"
"help.text"
msgid "Input help"
msgstr "ཨིན་པུཊི་གྲོགས་རམ།"
@@ -60041,7 +55884,6 @@ msgstr "ཨིན་པུཊི་གྲོགས་རམ།"
msgctxt ""
"12120200.xhp\n"
"par_id3150752\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/inputhelp\">Enter the message that you want to display when the cell or cell range is selected.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/validationhelptabpage/inputhelp\"> ནང་ཐིག་ཡང་ན་ནང་ཐིག་ཁྱབ་ཚད་སེལ་འཐུ་གྲུབ་ཡོད་པའི་སྐབས་སུ་ ཁྱོད་ཀྱིས་བཀྲམ་སྟོན་འབད་དགོས་མནོ་མི་ འཕྲིན་དོན་བཙུགས། </ahelp>"
@@ -60058,7 +55900,6 @@ msgstr "དྲན་བརྡ་འཛོལ་བ།"
msgctxt ""
"12120300.xhp\n"
"hd_id3153821\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/12120300.xhp\" name=\"Error Alert\">Error Alert</link>"
msgstr "<link href=\"text/scalc/01/12120300.xhp\" name=\"Error Alert\"> འཛོལ་བའི་དྲན་བརྡ། </link>"
@@ -60067,7 +55908,6 @@ msgstr "<link href=\"text/scalc/01/12120300.xhp\" name=\"Error Alert\"> འཛ
msgctxt ""
"12120300.xhp\n"
"par_id3153379\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/ErrorAlertTabPage\">Define the error message that is displayed when invalid data is entered in a cell.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/ErrorAlertTabPage\"> ནང་ཐིག་ནང་ལུ་ གནད་སྡུད་ནུས་མེད་བཙུགས་པའི་སྐབས་ལུ་ བཀྲམ་སྟོན་འབད་ཡོད་པའི་ འཕྲིན་དོན་འཛོལ་བ་ངེས་འཛིན་འབད། </ahelp>"
@@ -60076,7 +55916,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/ErrorAlertTabPage\"> ན
msgctxt ""
"12120300.xhp\n"
"par_id3154138\n"
-"25\n"
"help.text"
msgid "You can also start a macro with an error message. A sample macro is provided at the end of this page."
msgstr "ཁྱོད་ཀྱིས་ འཕྲིན་དོན་འཛོལ་བ་དང་གཅིག་ཁར་ མེཀ་རོ་གཅིག་ཡང་འགོ་བཙུགས་ཚུགསཔ་ཨིན། མེཀ་རོ་དཔེ་ཚད་གཅིག་འ་ནི་ཤོག་ལེབ་མཇུག་ལུ་བྱིན་ཡོདཔ་ཨིན།"
@@ -60085,7 +55924,6 @@ msgstr "ཁྱོད་ཀྱིས་ འཕྲིན་དོན་འཛོ
msgctxt ""
"12120300.xhp\n"
"hd_id3156280\n"
-"3\n"
"help.text"
msgid "Show error message when invalid values are entered."
msgstr "གནས་གོང་ནུས་མེད་ཚུ་བཙུགསཔ་ འཕྲིན་དོན་འཛོལ་བ་སྟོན།"
@@ -60094,7 +55932,6 @@ msgstr "གནས་གོང་ནུས་མེད་ཚུ་བཙུགས
msgctxt ""
"12120300.xhp\n"
"par_id3150768\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the error message that you enter in the <emph>Contents</emph> area when invalid data is entered in a cell.</ahelp> If enabled, the message is displayed to prevent an invalid entry."
msgstr ""
@@ -60103,7 +55940,6 @@ msgstr ""
msgctxt ""
"12120300.xhp\n"
"par_id3146984\n"
-"5\n"
"help.text"
msgid "In both cases, if you select \"Stop\", the invalid entry is deleted and the previous value is reentered in the cell. The same applies if you close the \"Warning\" and \"Information\" dialogs by clicking the <emph>Cancel </emph>button. If you close the dialogs with the <emph>OK</emph> button, the invalid entry is not deleted."
msgstr "གནད་དོན་གཉིས་ཆ་ར་ནང་ ཁྱོད་ཀྱིས་ \"Stop\" སེལ་འཐུ་འབད་བ་ཅིན་ ཐོ་བཀོད་ནུས་མེད་འདི་བཏོན་གཏང་ནི་ཨིནམ་མ་ཚད་ ཧེ་མ་གི་གནས་གོང་འདི་ཡང་ སླར་བཙུགས་འབད་ཡོདཔ་ཨིན། དེ་བཟུམ་སྦེ་ ཁྱོད་ཀྱིས་ \"Warning\" དང་ \"Information\" ཌའི་ལོགསི་ <emph> ཆ་མེད་གཏང་ ཨེབ་རྟ་ ཨེབ་གཏང་ཐོག་ལས་ </emph> ཁ་བསྡམས་པ་ཅིན་གོང་གི་འཇུག་སྤྱོད་ནང་གཅིགཔ་ཨིན། ཁྱོད་ཀྱིས་ ཌའི་ལོགསི་འདི་ <emph> བཏུབ་ </emph> ཨེབ་རྟ་དང་བཅསཔ་སྦེ་ཁ་བསྡམས་པ་ཅིན་ ནུས་མེད་ཐོ་བཀོད་འདི་བཏོན་མ་གཏངམ་ཡོདཔ་ཨིན།"
@@ -60112,7 +55948,6 @@ msgstr "གནད་དོན་གཉིས་ཆ་ར་ནང་ ཁྱོ
msgctxt ""
"12120300.xhp\n"
"hd_id3152460\n"
-"6\n"
"help.text"
msgid "Contents"
msgstr "ནང་དོན་ཚུ།"
@@ -60121,7 +55956,6 @@ msgstr "ནང་དོན་ཚུ།"
msgctxt ""
"12120300.xhp\n"
"hd_id3148646\n"
-"8\n"
"help.text"
msgid "Action"
msgstr "བྱ་བ།"
@@ -60130,7 +55964,6 @@ msgstr "བྱ་བ།"
msgctxt ""
"12120300.xhp\n"
"par_id3151115\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/actionCB\">Select the action that you want to occur when invalid data is entered in a cell.</ahelp> The \"Stop\" action rejects the invalid entry and displays a dialog that you have to close by clicking <emph>OK</emph>. The \"Warning\" and \"Information\" actions display a dialog that can be closed by clicking <emph>OK</emph> or <emph>Cancel</emph>. The invalid entry is only rejected when you click <emph>Cancel</emph>."
msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/actionCB\"> ནང་ཐིག་ནང་ལུ་ཚེས་གྲངས་ནུས་མེད་གཅིག་བཙུགས་ཡོད་པའི་སྐབས་ལུ་ ཁྱོད་ཀྱིས་འབྱུང་བཅུག་དགོས་མནོ་མི་བྱ་བ་སེལ་འཐུ་འབད། </ahelp> འ་ནི་ \"Stop\" བྱ་བ་གིས་ ནུས་མེད་ཐོ་བཀོད་དང་ལེན་སྤང་སྟེ་ ཌའི་ལོག་གཅིག་བཀྲམ་སྟོན་འབདཝ་ཨིནམ་ཁྱོད་ཀྱིས་ <emph> བཏུབ་ </emph> ཨེབ་གཏང་གི་ཐོག་ལས་ཌའི་ལོག་འདི་ཁ་བསྡམས་དགོསཔ་ཨིན། \"Warning\" དང་ \"Information\" བྱ་བ་ཚུ་གིས་ <emph> བཏུབ་ </emph> ཡང་ན་ <emph> ཆ་མེད་གཏང་ </emph> ཨེབ་གཏང་ཐོག་ལས་ཁ་བསྡབས་ཚུགས་པའི་ཌའི་ལོག་གཅིག་བཀྲམ་སྟོན་འབདཝ་ཨིན། ཐོ་བཀོད་ནུས་མེད་འདི་ ཁྱོད་ཀྱིས་ <emph> ཆ་མེད་གཏང་ </emph> ཨེབ་གཏང་ཐོག་ལས་རྐྱངམ་ཅིག་ དང་ལེན་སྤངམ་ཨིན།"
@@ -60139,7 +55972,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/actionCB\"> ནང་ཐ
msgctxt ""
"12120300.xhp\n"
"hd_id3156441\n"
-"10\n"
"help.text"
msgid "Browse"
msgstr "བརྡ་འཚོལ།"
@@ -60148,7 +55980,6 @@ msgstr "བརྡ་འཚོལ།"
msgctxt ""
"12120300.xhp\n"
"par_id3153160\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/browseBtn\">Opens the <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog where you can select the macro that is executed when invalid data is entered in a cell. The macro is executed after the error message is displayed.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/browseBtn\"> ཁྱོད་ཀྱིས་ ནང་ཐིག་ནང་ལུ་ གནད་སྡུད་ནུས་མེད་བཙུགས་ཡོད་པའི་སྐབས་ལུ་ <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\"> ལག་ལེན་འཐབ་ཡོད་པའི་མེཀ་རོ་ </link> སེལ་འཐུ་འབད་ཚུགས་པའི་ མེཀ་རོ་ཌའི་ལོག་ཁ་ཕྱེཝ་ཨིན། འཕྲིན་དོན་འཛོལ་བ་འདི་བཀྲམ་སྟོན་འབད་ཚར་བའི་ཤུལ་ལུ་ མེཀ་རོ་འདི་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན། </ahelp>"
@@ -60157,7 +55988,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/browseBtn\"> ཁྱོ
msgctxt ""
"12120300.xhp\n"
"hd_id3153876\n"
-"12\n"
"help.text"
msgid "Title"
msgstr "མགོ་མིང་།"
@@ -60166,7 +55996,6 @@ msgstr "མགོ་མིང་།"
msgctxt ""
"12120300.xhp\n"
"par_id3149410\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/title\">Enter the title of the macro or the error message that you want to display when invalid data is entered in a cell.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/title\"> ནང་ཐིག་ནང་ལུ་ གནད་སྡུད་ནུས་མེད་བཙུགས་ཡོད་པའི་སྐབས་ ཁྱོད་ཀྱིས་ བཀྲམ་སྟོན་འབད་དགོས་མནོ་མི་ མེཀ་རོ་གི་མགོ་མིང་ ཡང་ན་ འཕྲིན་དོན་འཛོལ་བ་བཙུགས། </ahelp>"
@@ -60175,7 +56004,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/title\"> ནང་ཐི
msgctxt ""
"12120300.xhp\n"
"hd_id3154510\n"
-"14\n"
"help.text"
msgid "Error message"
msgstr "འཕྲིན་དོན་འཛོལ་བ།"
@@ -60184,7 +56012,6 @@ msgstr "འཕྲིན་དོན་འཛོལ་བ།"
msgctxt ""
"12120300.xhp\n"
"par_id3149122\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/errorMsg\">Enter the message that you want to display when invalid data is entered in a cell.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/errorMsg\"> ནང་ཐིག་ནང་ལུ་གནད་སྡུད་ནུས་མེད་བཙུགས་ཡོདཔ་ད་ ཁྱོད་ཀྱིས་ བཀྲམ་སྟོན་འབད་དགོས་མནོ་མི་ འཕྲིན་དོན་བཙུགས། </ahelp>"
@@ -60193,7 +56020,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/errorMsg\"> ནང་ཐ
msgctxt ""
"12120300.xhp\n"
"par_id3150752\n"
-"16\n"
"help.text"
msgid "<emph>Sample macro:</emph>"
msgstr "<emph> དཔེ་ཚད་ མེཀ་རོ་:</emph>"
@@ -60399,7 +56225,6 @@ msgid "Examples Dataset for Statistical Functions"
msgstr ""
#: ex_data_stat_func.xhp
-#, fuzzy
msgctxt ""
"ex_data_stat_func.xhp\n"
"hd_id2657394931588\n"
@@ -60592,7 +56417,6 @@ msgid "Aggregation"
msgstr ""
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id040320161859464\n"
@@ -60601,7 +56425,6 @@ msgid "Function"
msgstr "ལས་འགན།"
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0403201618594636\n"
@@ -60610,7 +56433,6 @@ msgid "AVERAGE"
msgstr "ཆ་སྙོམས།"
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0403201618594692\n"
@@ -60619,7 +56441,6 @@ msgid "COUNT"
msgstr "COUNT"
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0403201618594633\n"
@@ -60628,7 +56449,6 @@ msgid "COUNTA"
msgstr "COUNTA"
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id040320161859460\n"
@@ -60637,7 +56457,6 @@ msgid "MAX"
msgstr "MAX"
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0403201618594658\n"
@@ -60646,7 +56465,6 @@ msgid "MEDIAN"
msgstr "MEDIAN"
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0403201618594671\n"
@@ -60655,7 +56473,6 @@ msgid "MIN"
msgstr "MIN"
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0403201618594639\n"
@@ -60824,7 +56641,6 @@ msgid "forecast = ( basevalue + trend * ∆x ) * periodical_aberration."
msgstr ""
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"hd_id0603201610005796\n"
@@ -60849,7 +56665,6 @@ msgid "Timeline"
msgstr ""
#: exponsmooth_embd.xhp
-#, fuzzy
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0903201610312228\n"
@@ -60914,7 +56729,6 @@ msgid "<ahelp hid=\".\">Switches <emph>Edit Points</emph> mode for an inserted f
msgstr "<ahelp hid=\".\">བཙུགས་ཏེ་ཡོད་པའི་གྱལ་རིམ་རང་དབང་རྣམ་པ་ <emph>ཨཱོན་དང་ཨོཕ་ </emph> ཞུན་དག་ས་ཚིགས་ཐབས་ལམ་ཚུ་སོར་བསྒྱུར་འབདཝ་ཨིན། </ahelp>"
#: ful_func.xhp
-#, fuzzy
msgctxt ""
"ful_func.xhp\n"
"hd_id126511265112651\n"
@@ -60923,7 +56737,6 @@ msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: ful_func.xhp
-#, fuzzy
msgctxt ""
"ful_func.xhp\n"
"hd_id980889808898088\n"
@@ -60988,7 +56801,6 @@ msgid "AGGREGATE function"
msgstr ""
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"bm_id126123001625791\n"
@@ -60997,7 +56809,6 @@ msgid "<bookmark_value>AGGREGATE function</bookmark_value>"
msgstr "<bookmark_value>AREAS ལས་འགན།</bookmark_value>"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"hd_id3154073\n"
@@ -61022,7 +56833,6 @@ msgid "AGGREGATE function is applied to vertical ranges of data with activated A
msgstr ""
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"hd_id239693194826384\n"
@@ -61063,7 +56873,6 @@ msgid "<emph>Function</emph> – obligatory argument. A function index or a refe
msgstr ""
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511454963\n"
@@ -61080,7 +56889,6 @@ msgid "Function applied"
msgstr ""
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360043\n"
@@ -61089,7 +56897,6 @@ msgid "AVERAGE"
msgstr "ཆ་སྙོམས།"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id230920151136007\n"
@@ -61098,7 +56905,6 @@ msgid "COUNT"
msgstr "COUNT"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360018\n"
@@ -61107,7 +56913,6 @@ msgid "COUNTA"
msgstr "COUNTA"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360026\n"
@@ -61116,7 +56921,6 @@ msgid "MAX"
msgstr "MAX"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360078\n"
@@ -61125,7 +56929,6 @@ msgid "MIN"
msgstr "MIN"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360087\n"
@@ -61134,7 +56937,6 @@ msgid "PRODUCT"
msgstr "ཐོན་སྐྱེད།"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360153\n"
@@ -61143,7 +56945,6 @@ msgid "STDEV.S"
msgstr "STDEVP"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360178\n"
@@ -61152,7 +56953,6 @@ msgid "STDEV.P"
msgstr "STDEVP"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360199\n"
@@ -61161,7 +56961,6 @@ msgid "SUM"
msgstr "དངུལ་བསྡོམས།"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360174\n"
@@ -61170,7 +56969,6 @@ msgid "VAR.S"
msgstr "VARP"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360120\n"
@@ -61179,7 +56977,6 @@ msgid "VAR.P"
msgstr "VARP"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360122\n"
@@ -61196,7 +56993,6 @@ msgid "MODE.SNGL"
msgstr ""
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360180\n"
@@ -61205,7 +57001,6 @@ msgid "LARGE"
msgstr "LARGE"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360150\n"
@@ -61376,15 +57171,6 @@ msgstr ""
#: func_aggregate.xhp
msgctxt ""
"func_aggregate.xhp\n"
-"par_id2309201516525483\n"
-"help.text"
-msgid "If the <emph>k</emph> argument is necessary, but not specified, the function returns the error Err:511.<br/>If the <emph>Function</emph> and/or <emph>Option</emph> arguments specified not correctly, the function returns the error Err:502."
-msgstr ""
-
-#: func_aggregate.xhp
-#, fuzzy
-msgctxt ""
-"func_aggregate.xhp\n"
"hd_id198071265128228\n"
"help.text"
msgid "Examples"
@@ -61431,7 +57217,6 @@ msgid "3"
msgstr ""
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"id_par29987248418152\n"
@@ -61520,7 +57305,6 @@ msgid "AVERAGEIF function"
msgstr ""
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"bm_id237812197829662\n"
@@ -61529,7 +57313,6 @@ msgid "<bookmark_value>AVERAGEIF function</bookmark_value> <bookmark_value>arit
msgstr "<bookmark_value>AVEDEV ལས་འགན་</bookmark_value><bookmark_value>ཆ་སྙོམས་ཚུ་ ཚད་རྩིས་ལས་འགན་</bookmark_value>"
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"hd_id16852304621982\n"
@@ -61546,7 +57329,6 @@ msgid "<ahelp hid=\".\"><variable id=\"averageif_des\">Returns the arithmetic me
msgstr ""
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"hd_id210572014129502\n"
@@ -61843,7 +57625,6 @@ msgid "AVERAGEIFS function"
msgstr ""
#: func_averageifs.xhp
-#, fuzzy
msgctxt ""
"func_averageifs.xhp\n"
"bm_id536715367153671\n"
@@ -61852,7 +57633,6 @@ msgid "<bookmark_value>AVERAGEIFS function</bookmark_value> <bookmark_value>ari
msgstr "<bookmark_value>AVEDEV ལས་འགན་</bookmark_value><bookmark_value>ཆ་སྙོམས་ཚུ་ ཚད་རྩིས་ལས་འགན་</bookmark_value>"
#: func_averageifs.xhp
-#, fuzzy
msgctxt ""
"func_averageifs.xhp\n"
"hd_id537445374453744\n"
@@ -61869,7 +57649,6 @@ msgid "<ahelp hid=\".\"><variable id=\"averageifs_des\">Returns the arithmetic m
msgstr ""
#: func_averageifs.xhp
-#, fuzzy
msgctxt ""
"func_averageifs.xhp\n"
"hd_id538895388953889\n"
@@ -62086,7 +57865,6 @@ msgid "<bookmark_value>colors;numerical values</bookmark_value> <bookmark_value
msgstr ""
#: func_color.xhp
-#, fuzzy
msgctxt ""
"func_color.xhp\n"
"hd_id456845684568\n"
@@ -62099,7 +57877,7 @@ msgctxt ""
"func_color.xhp\n"
"par_id1102201617001848\n"
"help.text"
-msgid "<ahelp hid=\".\">Return a numeric value calculated by a combination of three colors (red, green and blue) and the alpha channel, in the RGBA color system.</ahelp>The result depends on the color system used by your computer."
+msgid "<ahelp hid=\".\">Return a numeric value calculated by a combination of three colors (red, green and blue) and the alpha channel, in the RGBA color system.</ahelp> The result depends on the color system used by your computer."
msgstr ""
#: func_color.xhp
@@ -62175,7 +57953,6 @@ msgid "<bookmark_value>COUNTIFS function</bookmark_value> <bookmark_value>count
msgstr ""
#: func_countifs.xhp
-#, fuzzy
msgctxt ""
"func_countifs.xhp\n"
"hd_id456845684568\n"
@@ -62192,7 +57969,6 @@ msgid "<ahelp hid=\".\"><variable id=\"countifs_des\">Returns the count of rows
msgstr ""
#: func_countifs.xhp
-#, fuzzy
msgctxt ""
"func_countifs.xhp\n"
"hd_id465746574657\n"
@@ -62412,7 +58188,6 @@ msgstr "<bookmark_value> ཚེས་ལས་འགན། </bookmark_value>"
msgctxt ""
"func_date.xhp\n"
"hd_id3155511\n"
-"3\n"
"help.text"
msgid "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
msgstr "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\"> ཚེས་ </link></variable>"
@@ -62421,7 +58196,6 @@ msgstr "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\"> ཚེ
msgctxt ""
"func_date.xhp\n"
"par_id3153551\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function calculates a date specified by year, month, day and displays it in the cell's formatting.</ahelp> The default format of a cell containing the DATE function is the date format, but you can format the cells with any other number format."
msgstr ""
@@ -62430,7 +58204,6 @@ msgstr ""
msgctxt ""
"func_date.xhp\n"
"hd_id3148590\n"
-"5\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -62439,7 +58212,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_date.xhp\n"
"par_id3150474\n"
-"6\n"
"help.text"
msgid "DATE(Year; Month; Day)"
msgstr "DATE(ལོ་; ཟླཝ་; ཉིནམ་)"
@@ -62448,7 +58220,6 @@ msgstr "DATE(ལོ་; ཟླཝ་; ཉིནམ་)"
msgctxt ""
"func_date.xhp\n"
"par_id3152815\n"
-"7\n"
"help.text"
msgid "<emph>Year</emph> is an integer between 1583 and 9957 or between 0 and 99."
msgstr "<emph> ལོ་ </emph> འདི་ ༡༥༨༣ དང་ ༩༩༥༦ ཡང་ན་ ༠ དང་ ༩༩ བར་གྱི་ཧྲིལ་ཨང་ཨིན།"
@@ -62457,7 +58228,6 @@ msgstr "<emph> ལོ་ </emph> འདི་ ༡༥༨༣ དང་ ༩༩༥
msgctxt ""
"func_date.xhp\n"
"par_id3153222\n"
-"174\n"
"help.text"
msgid "In <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - $[officename] - General </item>you can set from which year a two-digit number entry is recognized as 20xx."
msgstr ""
@@ -62466,7 +58236,6 @@ msgstr ""
msgctxt ""
"func_date.xhp\n"
"par_id3155817\n"
-"8\n"
"help.text"
msgid "<emph>Month</emph> is an integer indicating the month."
msgstr "<emph> ཟླཝ་ </emph> འདི་ ཟླྭཝ་བརྡ་སྟོན་པའི་ ༡ དང་༡༢ བར་གྱི་ཧྲིལ་ཨང་ཨིན།"
@@ -62475,17 +58244,14 @@ msgstr "<emph> ཟླཝ་ </emph> འདི་ ཟླྭཝ་བརྡ་ས
msgctxt ""
"func_date.xhp\n"
"par_id3153183\n"
-"9\n"
"help.text"
msgid "<emph>Day</emph> is an integer indicating the day of the month."
msgstr ""
#: func_date.xhp
-#, fuzzy
msgctxt ""
"func_date.xhp\n"
"par_id3156260\n"
-"10\n"
"help.text"
msgid "If the values for month and day are out of bounds, they are carried over to the next digit. If you enter <item type=\"input\">=DATE(00;12;31)</item> the result will be 2000-12-31. If, on the other hand, you enter <item type=\"input\">=DATE(00;13;31)</item> the result will be 2001-01-31."
msgstr "ཟླཝ་དང་ཉིནམ་གྱི་དོན་ལུ་གནས་གོང་ཚུ་ མཐོ་བ་ཅིན་ དེ་ཚུ་ ཤུལ་མའི་ཨང་ཡིག་གུ་ལུ་འབག་ཡོདཔ་ཨིན། ཁྱོད་ཀྱིས་ =DATE(༠༠;༡༢;༣༡) བཙུགས་པ་ཅིན་ གྲུབ་འབྲས་འདི་ \"༡༢/༣༡/༠༠.\" བྱུངམ་ཨིན། གཅིག་ལས་འབད་བ་ཅིན་ ཁྱོད་ཀྱིས་ =DATE(༠༠;༡༣;༣༡) བཙུགས་པ་ཅིན་ གྲུབ་འབྲས་འདི་ \"༡/༣༡/༠༡.\" བྱུངམ་ཨིན།"
@@ -62494,7 +58260,6 @@ msgstr "ཟླཝ་དང་ཉིནམ་གྱི་དོན་ལུ་ག
msgctxt ""
"func_date.xhp\n"
"hd_id3147477\n"
-"12\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -62503,7 +58268,6 @@ msgstr "དཔེ།"
msgctxt ""
"func_date.xhp\n"
"par_id3152589\n"
-"16\n"
"help.text"
msgid "<item type=\"input\">=DATE(00;1;31)</item> yields 1/31/00 if the cell format setting is MM/DD/YY."
msgstr ""
@@ -62760,7 +58524,6 @@ msgstr "<bookmark_value> གནད་སྡུད་གནས་གོང་ལ
msgctxt ""
"func_datevalue.xhp\n"
"hd_id3145621\n"
-"18\n"
"help.text"
msgid "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DATEVALUE</link></variable>"
msgstr "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\"> གནས་སྡུད་གནས་གོང་། </link></variable>"
@@ -62769,7 +58532,6 @@ msgstr "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp
msgctxt ""
"func_datevalue.xhp\n"
"par_id3145087\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DATWERT\">Returns the internal date number for text in quotes.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_DATWERT\"> འདྲེན་ཚིག་ཚུ་ནང་ ཚིག་ཡིག་གི་དོན་ལུ་ནང་འཁོད་ཚེས་གྲངས་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -62778,7 +58540,6 @@ msgstr "<ahelp hid=\"HID_FUNC_DATWERT\"> འདྲེན་ཚིག་ཚུ་
msgctxt ""
"func_datevalue.xhp\n"
"par_id3149281\n"
-"20\n"
"help.text"
msgid "The internal date number is returned as a number. The number is determined by the date system that is used by $[officename] to calculate dates."
msgstr "ནང་འཁོད་ཚེས་གྲངས་ཨང་འདི་ ཨང་སྦེ་སླར་ལོག་འབད་ཡོདཔ་ཨིན། ཨང་འདི་ $[officename] གིས་ཚེས་གྲངས་ཚུ་རྩིས་སྟོན་འབད་ནི་དོན་ལུ་ལག་ལེན་འཐབ་ཡོད་པའི་ ཚེས་གྲངས་རིམ་ལུགས་ཀྱིས་ གཏན་འབེབས་བཟོ་ཡོདཔ་ཨིན།"
@@ -62795,7 +58556,6 @@ msgstr ""
msgctxt ""
"func_datevalue.xhp\n"
"hd_id3156294\n"
-"21\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -62804,7 +58564,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_datevalue.xhp\n"
"par_id3149268\n"
-"22\n"
"help.text"
msgid "DATEVALUE(\"Text\")"
msgstr "གནད་སྡུད་གནས་གོང་། (\"Text\")"
@@ -62813,7 +58572,6 @@ msgstr "གནད་སྡུད་གནས་གོང་། (\"Text\")"
msgctxt ""
"func_datevalue.xhp\n"
"par_id3154819\n"
-"23\n"
"help.text"
msgid "<emph>Text</emph> is a valid date expression and must be entered with quotation marks."
msgstr "<emph> ཚིག་ཡིག་འདི་ </emph> ཚེས་གྲངས་གསལ་བརྗོད་ནུས་ཅན་ཨིནམ་ལས་ འདྲེན་ཚིག་རྟགས་ཚུ་དང་བཅསཔ་སྦེ་བཙུགས་དགོསཔ་ཨིན།"
@@ -62822,7 +58580,6 @@ msgstr "<emph> ཚིག་ཡིག་འདི་ </emph> ཚེས་གྲ
msgctxt ""
"func_datevalue.xhp\n"
"hd_id3156309\n"
-"24\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -62831,7 +58588,6 @@ msgstr "དཔེ།"
msgctxt ""
"func_datevalue.xhp\n"
"par_id3155841\n"
-"25\n"
"help.text"
msgid "<emph>=DATEVALUE(\"1954-07-20\")</emph> yields 19925."
msgstr ""
@@ -62856,7 +58612,6 @@ msgstr "<bookmark_value> ཉིནམ་ལས་འགན། </bookmark_value>"
msgctxt ""
"func_day.xhp\n"
"hd_id3147317\n"
-"106\n"
"help.text"
msgid "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">DAY</link></variable>"
msgstr "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\"> ཉིནམ། </link></variable>"
@@ -62865,7 +58620,6 @@ msgstr "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\"> ཉི
msgctxt ""
"func_day.xhp\n"
"par_id3147584\n"
-"107\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TAG\">Returns the day of given date value.</ahelp> The day is returned as an integer between 1 and 31. You can also enter a negative date/time value."
msgstr "<ahelp hid=\"HID_FUNC_TAG\"> གྲ་སྒྲིག་འབད་ཡོད་པའི་ཚེས་གྲངས་གནས་གོང་གི་ཉིནམ་ སླར་ལོག་འབདཝ་ཨིན། </ahelp> ཉིནམ་འདི་ ༡ དང་ ༣༡ བར་གྱི་ཧྲིལ་ཨང་སྦེ་སླར་ལོག་འབད་ཡོདཔ་ཨིན། ཁྱོད་ཀྱིས་ ཚེས་གྲངས་/དུས་ཚོད་གནས་གོང་མེད་ཆ་ཡང་བཙུགས་ཚུགསཔ་ཨིན།"
@@ -62874,7 +58628,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TAG\"> གྲ་སྒྲིག་འབད་ཡ
msgctxt ""
"func_day.xhp\n"
"hd_id3150487\n"
-"108\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -62883,7 +58636,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_day.xhp\n"
"par_id3149430\n"
-"109\n"
"help.text"
msgid "DAY(Number)"
msgstr "ཉིནམ་(ཨང་)"
@@ -62892,7 +58644,6 @@ msgstr "ཉིནམ་(ཨང་)"
msgctxt ""
"func_day.xhp\n"
"par_id3149443\n"
-"110\n"
"help.text"
msgid "<emph>Number</emph>, as a time value, is a decimal, for which the day is to be returned."
msgstr "<emph> དུས་ཚོད་གནས་གོང་སྦེ་ཡོད་པའི་ </emph> ཨང་འདི་ ཉིནམ་སླར་ལོག་འབད་ནི་ཨིན་པའི་ བཅུ་ཚག་ཨིན།"
@@ -62901,7 +58652,6 @@ msgstr "<emph> དུས་ཚོད་གནས་གོང་སྦེ་ཡ
msgctxt ""
"func_day.xhp\n"
"hd_id3163809\n"
-"111\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
@@ -62910,7 +58660,6 @@ msgstr "དཔེར་བརྗོད་ཚུ།"
msgctxt ""
"func_day.xhp\n"
"par_id3151200\n"
-"112\n"
"help.text"
msgid "DAY(1) returns 31 (since $[officename] starts counting at zero from December 30, 1899)"
msgstr "DAY(1) དབྱིན་ལོ་ ༡༨༩༩ དབྱིན་ཟླ་ ༡༢ པའི་དབྱིན་ཚེས་ ༣༠ ལས་ ( $[officename] ཀླད་ཀོར་ལུ་གྱངས་ཁ་རྐྱབ་ནི་འགོ་བཙུགསཔ་ལས་ ༣༡ སླར་ལོག་འབདཝ་ཨིན།)"
@@ -62919,7 +58668,6 @@ msgstr "DAY(1) དབྱིན་ལོ་ ༡༨༩༩ དབྱིན་ཟླ
msgctxt ""
"func_day.xhp\n"
"par_id3154130\n"
-"113\n"
"help.text"
msgid "DAY(NOW()) returns the current day."
msgstr "DAY(NOW()) ད་ལྟོའི་ཉིནམ་སླར་ལོག་འབདཝ་ཨིན།"
@@ -62928,7 +58676,6 @@ msgstr "DAY(NOW()) ད་ལྟོའི་ཉིནམ་སླར་ལོག
msgctxt ""
"func_day.xhp\n"
"par_id3159190\n"
-"114\n"
"help.text"
msgid "=DAY(C4) returns 5 if you enter 1901-08-05 in cell C4 (the date value might get formatted differently after you press Enter)."
msgstr ""
@@ -62953,7 +58700,6 @@ msgstr "<bookmark_value>DAYS ལས་འགན།</bookmark_value>"
msgctxt ""
"func_days.xhp\n"
"hd_id3151328\n"
-"116\n"
"help.text"
msgid "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</link></variable>"
msgstr "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</link></variable>"
@@ -62962,7 +58708,6 @@ msgstr "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</l
msgctxt ""
"func_days.xhp\n"
"par_id3155139\n"
-"117\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TAGE\">Calculates the difference between two date values.</ahelp> The result returns the number of days between the two days."
msgstr "<ahelp hid=\"HID_FUNC_TAGE\"> ཚེས་གྲངས་གནས་གོང་གཉིས་ཀྱི་ བར་ན་ཁྱད་པར་རྩིས་སྟོན་འབདཝ་ཨིན། </ahelp> གྲུབ་འབྲས་ཀྱིས་ ཉིནམ་གཉིས་ཀྱི་བར་ན་ ཉིན་གྲངས་ཚུ་སླར་ལོག་འབདཝ་ཨིན།"
@@ -62971,7 +58716,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TAGE\"> ཚེས་གྲངས་གནས་ག
msgctxt ""
"func_days.xhp\n"
"hd_id3155184\n"
-"118\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -62980,7 +58724,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_days.xhp\n"
"par_id3149578\n"
-"119\n"
"help.text"
msgid "DAYS(Date2; Date1)"
msgstr "DAYS(ཚེས་_༢;ཚེས་_༡)"
@@ -62989,7 +58732,6 @@ msgstr "DAYS(ཚེས་_༢;ཚེས་_༡)"
msgctxt ""
"func_days.xhp\n"
"par_id3151376\n"
-"120\n"
"help.text"
msgid "<emph>Date1</emph> is the start date, <emph>Date2</emph> is the end date. If <emph>Date2</emph> is an earlier date than <emph>Date1</emph> the result is a negative number."
msgstr "<emph>Date_1</emph> is the start date, <emph>Date_2</emph> is the end date. If <emph>Date_2</emph> is an earlier date than <emph>Date_1</emph> the result is a negative number."
@@ -62998,7 +58740,6 @@ msgstr "<emph>Date_1</emph> is the start date, <emph>Date_2</emph> is the end da
msgctxt ""
"func_days.xhp\n"
"hd_id3151001\n"
-"121\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
@@ -63007,7 +58748,6 @@ msgstr "དཔེར་བརྗོད་ཚུ།"
msgctxt ""
"func_days.xhp\n"
"par_id3159101\n"
-"123\n"
"help.text"
msgid "=DAYS(\"2010-01-01\"; NOW()) returns the number of days from today until January 1, 2010."
msgstr "DAYS(\"1/1/2010\"; NOW()) ད་རིས་ལས་ དབྱིན་ལོ་ ༢༠༡༠ དབྱིན་ཟླ་དང་པའི་དབྱིན་ཚེས་ ༡ ཚུན་གྱི་ ཉིན་གྲངས་ཚུ་སླར་ལོག་འབདཝ་ཨིན།"
@@ -63016,7 +58756,6 @@ msgstr "DAYS(\"1/1/2010\"; NOW()) ད་རིས་ལས་ དབྱིན་
msgctxt ""
"func_days.xhp\n"
"par_id3163720\n"
-"172\n"
"help.text"
msgid "=DAYS(\"1990-10-10\";\"1980-10-10\") returns 3652 days."
msgstr ""
@@ -63041,7 +58780,6 @@ msgstr "<bookmark_value> ཉིནམ་ཚུ་༣༦༠ ལས་འགན།
msgctxt ""
"func_days360.xhp\n"
"hd_id3148555\n"
-"124\n"
"help.text"
msgid "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">DAYS360</link></variable>"
msgstr "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">DAYS360</link></variable>"
@@ -63050,7 +58788,6 @@ msgstr "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">D
msgctxt ""
"func_days360.xhp\n"
"par_id3156032\n"
-"125\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TAGE360\">Returns the difference between two dates based on the 360 day year used in interest calculations.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TAGE360\"> སྐྱེད་རྩིས་སྟོན་ཚུ་ནང་ལག་ལེན་འཐབ་ཡོད་པའི་ ཉིན་གྲངས་ ༣༦༠ ལོ་ལུ་གཞི་བཞག་སྟེ་ ཚེས་གྲངས་གཉིས་ཀྱི་བར་ན་ ཁྱད་པར་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -63059,7 +58796,6 @@ msgstr "<ahelp hid=\"HID_FUNC_TAGE360\"> སྐྱེད་རྩིས་སྟ
msgctxt ""
"func_days360.xhp\n"
"hd_id3155347\n"
-"126\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -63068,7 +58804,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_days360.xhp\n"
"par_id3155313\n"
-"127\n"
"help.text"
msgid "DAYS360(\"Date1\"; \"Date2\"; Type)"
msgstr ""
@@ -63077,7 +58812,6 @@ msgstr ""
msgctxt ""
"func_days360.xhp\n"
"par_id3145263\n"
-"128\n"
"help.text"
msgid "If <emph>Date2</emph> is earlier than <emph>Date1</emph>, the function will return a negative number."
msgstr ""
@@ -63086,7 +58820,6 @@ msgstr ""
msgctxt ""
"func_days360.xhp\n"
"par_id3151064\n"
-"129\n"
"help.text"
msgid "The optional argument <emph>Type</emph> determines the type of difference calculation. If Type = 0 or if the argument is missing, the US method (NASD, National Association of Securities Dealers) is used. If Type <> 0, the European method is used."
msgstr "སྒྲུབ་རྟགས་དབྱེ་བ་ <emph> གདམ་ཁ་ཅན་གིས་ </emph> རྩིས་ལས་ཁྱད་པར་གྱི་དབྱེ་བ་གཏན་འབེབས་བཟོཝ་ཨིན། དབྱེ་བ་ = ༠ ཡང་ན་ སྒྲུབ་རྟགས་འདི་ བརླག་སོར་ཞུགས་པ་ཅིན་ ཡུ་ཨེསི་ ཐབས་ལམ་འདི་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན།(NASD, National Association of Securities Dealers) དབྱེ་བ་ <> ༠ ཨིན་པ་ཅིན་ ཡུ་རོ་པེན་ཐབས་ལམ་འདི་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན།"
@@ -63095,7 +58828,6 @@ msgstr "སྒྲུབ་རྟགས་དབྱེ་བ་ <emph> གདམ
msgctxt ""
"func_days360.xhp\n"
"hd_id3148641\n"
-"130\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
@@ -63104,7 +58836,6 @@ msgstr "དཔེར་བརྗོད་ཚུ།"
msgctxt ""
"func_days360.xhp\n"
"par_id3156348\n"
-"132\n"
"help.text"
msgid "=DAYS360(\"2000-01-01\";NOW()) returns the number of interest days from January 1, 2000 until today."
msgstr "DAYS360(\"1/1/2000\";NOW()) གིས་དབྱིན་ལོ་ ༢༠༠༡ དབྱིན་ཟླ་ དང་པའི་དབྱིན་ཚེས་ ༡ ལས་ད་ལྟོ་ཚུན་གྱི་སྐྱེད་ཉིནམ་ཚུའི་གྱངས་ཁ་སླར་ལོག་འབདཝ་ཨིན།"
@@ -63129,7 +58860,6 @@ msgstr "<bookmark_value>EASTERSUNDAY ལས་འགན།</bookmark_value>"
msgctxt ""
"func_eastersunday.xhp\n"
"hd_id3152960\n"
-"175\n"
"help.text"
msgid "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">EASTERSUNDAY</link></variable>"
msgstr "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">EASTERSUNDAY</link></variable>"
@@ -63138,7 +58868,6 @@ msgstr "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersund
msgctxt ""
"func_eastersunday.xhp\n"
"par_id3154570\n"
-"176\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Returns the date of Easter Sunday for the entered year.</ahelp>"
msgstr ""
@@ -63171,7 +58900,6 @@ msgstr ""
msgctxt ""
"func_eastersunday.xhp\n"
"par_id3156156\n"
-"177\n"
"help.text"
msgid "Easter Monday = EASTERSUNDAY(Year) + 1"
msgstr "ཨིསི་ཊར་ མིག་དམར་ = ཨིསི་ཊར་ཟླཝ་() + ༡"
@@ -63180,7 +58908,6 @@ msgstr "ཨིསི་ཊར་ མིག་དམར་ = ཨིསི་ཊ
msgctxt ""
"func_eastersunday.xhp\n"
"par_id3147521\n"
-"178\n"
"help.text"
msgid "Good Friday = EASTERSUNDAY(Year) - 2"
msgstr "Good Friday = EASTERSUNDAY() - 2"
@@ -63189,7 +58916,6 @@ msgstr "Good Friday = EASTERSUNDAY() - 2"
msgctxt ""
"func_eastersunday.xhp\n"
"par_id3146072\n"
-"179\n"
"help.text"
msgid "Pentecost Sunday = EASTERSUNDAY(Year) + 49"
msgstr "Pentecost Sunday = EASTERSUNDAY() + 49"
@@ -63198,7 +58924,6 @@ msgstr "Pentecost Sunday = EASTERSUNDAY() + 49"
msgctxt ""
"func_eastersunday.xhp\n"
"par_id3149553\n"
-"180\n"
"help.text"
msgid "Pentecost Monday = EASTERSUNDAY(Year) + 50"
msgstr "Pentecost Monday = EASTERSUNDAY() + 50"
@@ -63207,7 +58932,6 @@ msgstr "Pentecost Monday = EASTERSUNDAY() + 50"
msgctxt ""
"func_eastersunday.xhp\n"
"hd_id3155120\n"
-"181\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
@@ -63216,7 +58940,6 @@ msgstr "དཔེར་བརྗོད་ཚུ།"
msgctxt ""
"func_eastersunday.xhp\n"
"par_id3154472\n"
-"182\n"
"help.text"
msgid "=EASTERSUNDAY(2000) returns 2000-04-23."
msgstr ""
@@ -63225,7 +58948,6 @@ msgstr ""
msgctxt ""
"func_eastersunday.xhp\n"
"par_id3150940\n"
-"184\n"
"help.text"
msgid "EASTERSUNDAY(2000)+49 returns the internal serial number 36688. The result is 2000-06-11. Format the serial date number as a date, for example in the format YYYY-MM-DD."
msgstr ""
@@ -63250,7 +58972,6 @@ msgstr "<bookmark_value>EDATE ལས་འགན།</bookmark_value>"
msgctxt ""
"func_edate.xhp\n"
"hd_id3151184\n"
-"213\n"
"help.text"
msgid "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE</link></variable>"
msgstr "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE</link></variable>"
@@ -63259,7 +58980,6 @@ msgstr "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE
msgctxt ""
"func_edate.xhp\n"
"par_id3150880\n"
-"214\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_EDATE\">The result is a date which is a number of <emph>months</emph> away from the <emph>start date</emph>. Only months are considered; days are not used for calculation.</ahelp>"
msgstr ""
@@ -63268,7 +58988,6 @@ msgstr ""
msgctxt ""
"func_edate.xhp\n"
"hd_id3154647\n"
-"215\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -63277,7 +58996,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_edate.xhp\n"
"par_id3153212\n"
-"216\n"
"help.text"
msgid "EDATE(StartDate; Months)"
msgstr "EDATE(ཚེས་འགོ་བཙུགས ;ཟླཝ་ཚུ།)"
@@ -63286,7 +59004,6 @@ msgstr "EDATE(ཚེས་འགོ་བཙུགས ;ཟླཝ་ཚུ།)"
msgctxt ""
"func_edate.xhp\n"
"par_id3146860\n"
-"217\n"
"help.text"
msgid "<emph>StartDate</emph> is a date."
msgstr "<emph> ཚེས་འགོ་བཙུགས་ </emph>: ཚེས།"
@@ -63295,7 +59012,6 @@ msgstr "<emph> ཚེས་འགོ་བཙུགས་ </emph>: ཚེས།"
msgctxt ""
"func_edate.xhp\n"
"par_id3152929\n"
-"218\n"
"help.text"
msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
msgstr "<emph> ཟླཝ་ཚུ་ </emph>: ཚེས་གྲངས་འགོ་བཙུགས་ཀྱི་ སྔ་མའམ་ (མེད་ཆ་) ཕྱི་མ་ཡོད་པའི་ (ཡོད་ཆ་) ཟླཝ་ཚུའི་གྱངས་ཁ།"
@@ -63304,7 +59020,6 @@ msgstr "<emph> ཟླཝ་ཚུ་ </emph>: ཚེས་གྲངས་འག
msgctxt ""
"func_edate.xhp\n"
"hd_id3151289\n"
-"219\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -63313,7 +59028,6 @@ msgstr "དཔེ།"
msgctxt ""
"func_edate.xhp\n"
"par_id3155845\n"
-"220\n"
"help.text"
msgid "What date is one month prior to 2001-03-31?"
msgstr ""
@@ -63322,7 +59036,6 @@ msgstr ""
msgctxt ""
"func_edate.xhp\n"
"par_id3155999\n"
-"221\n"
"help.text"
msgid "<item type=\"input\">=EDATE(\"2001-03-31\";-1)</item> returns the serial number 36950. Formatted as a date, this is 2001-02-28."
msgstr ""
@@ -63347,17 +59060,14 @@ msgstr "<bookmark_value> ཨི་ཨོ་ ཟླཝ་ལས་འགན། </
msgctxt ""
"func_eomonth.xhp\n"
"hd_id3150991\n"
-"231\n"
"help.text"
msgid "<variable id=\"eomonth\"><link href=\"text/scalc/01/func_eomonth.xhp\">EOMONTH</link></variable>"
msgstr "<variable id=\"eomonth\"><link href=\"text/scalc/01/func_eomonth.xhp\"> ཨི་ཨོ་ཟླཝ། </link></variable>"
#: func_eomonth.xhp
-#, fuzzy
msgctxt ""
"func_eomonth.xhp\n"
"par_id3152766\n"
-"232\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">Returns the date of the last day of a month which falls months away from the start date.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\"> ཚེས་གྲངས་འགོ་བཙུགས་ ལས་ཟླཝ་ལེ་ཤའི་ཕྱི་ཁར་ <emph> ཕོག་པའི་ཟླཝ་གི་ཉིནམ་མཇུག་གི་ </emph> ཚེས་གྲངས་ <emph> སླར་ལོག་འབདཝ་ཨིན། </emph>.</ahelp>"
@@ -63366,7 +59076,6 @@ msgstr "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\"> ཚེས་གྲངས་འག
msgctxt ""
"func_eomonth.xhp\n"
"hd_id3150597\n"
-"233\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -63375,7 +59084,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_eomonth.xhp\n"
"par_id3150351\n"
-"234\n"
"help.text"
msgid "EOMONTH(StartDate; Months)"
msgstr "EOMONTH (ཚེས་འགོ་བཙུགས་; ཟླཝ་ཚུ།)"
@@ -63384,7 +59092,6 @@ msgstr "EOMONTH (ཚེས་འགོ་བཙུགས་; ཟླཝ་ཚུ
msgctxt ""
"func_eomonth.xhp\n"
"par_id3146787\n"
-"235\n"
"help.text"
msgid "<emph>StartDate</emph> is a date (the starting point of the calculation)."
msgstr ""
@@ -63393,7 +59100,6 @@ msgstr ""
msgctxt ""
"func_eomonth.xhp\n"
"par_id3155615\n"
-"236\n"
"help.text"
msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
msgstr "<emph> ཟླཝ་ཚུ་ </emph>: ཚེས་གྲངས་འགོ་བཙུགས་ཀྱི་ སྔ་མའམ་ (མེད་ཆ་) ཕྱི་མ་ཡོད་པའི་ (ཡོད་ཆ་) ཟླཝ་ཚུའི་གྱངས་ཁ།"
@@ -63402,7 +59108,6 @@ msgstr "<emph> ཟླཝ་ཚུ་ </emph>: ཚེས་གྲངས་འག
msgctxt ""
"func_eomonth.xhp\n"
"hd_id3156335\n"
-"237\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -63411,7 +59116,6 @@ msgstr "དཔེ།"
msgctxt ""
"func_eomonth.xhp\n"
"par_id3154829\n"
-"238\n"
"help.text"
msgid "What is the last day of the month that falls 6 months after September 14 2001?"
msgstr "དབྱིན་ལོ་ ༢༠༠༡ དབྱིན་ཟླ་ ༩ པའི་དབྱིན་ཚེས་ ༡༤ པའི་ཟླཝ་དྲུག་གི་ཤུལ་ལས་ཕོག་མི་ ཟླཝ་དེའི་ཉིནམ་མཇུག་ག་ཅི་སྨོ?"
@@ -63420,7 +59124,6 @@ msgstr "དབྱིན་ལོ་ ༢༠༠༡ དབྱིན་ཟླ་ ༩
msgctxt ""
"func_eomonth.xhp\n"
"par_id3156143\n"
-"239\n"
"help.text"
msgid "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> returns the serial number 37346. Formatted as a date, this is 2002-03-31."
msgstr ""
@@ -63429,7 +59132,6 @@ msgstr ""
msgctxt ""
"func_eomonth.xhp\n"
"par_id3156144\n"
-"239\n"
"help.text"
msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If the date is given as string, it has to be in ISO format."
msgstr ""
@@ -63443,7 +59145,6 @@ msgid "ERROR.TYPE function"
msgstr ""
#: func_error_type.xhp
-#, fuzzy
msgctxt ""
"func_error_type.xhp\n"
"bm_id346793467934679\n"
@@ -63452,7 +59153,6 @@ msgid "<bookmark_value>ERROR.TYPE function</bookmark_value> <bookmark_value>ind
msgstr "<bookmark_value>ཨེམ་ཨིན་བརསི་ལས་འགན་</bookmark_value><bookmark_value>ལུགས་ལྡོག་ཨེ་རེ་</bookmark_value>"
#: func_error_type.xhp
-#, fuzzy
msgctxt ""
"func_error_type.xhp\n"
"hd_id348223482234822\n"
@@ -63469,7 +59169,6 @@ msgid "<ahelp hid=\".\"><variable id=\"error_type_des\">Returns a number represe
msgstr ""
#: func_error_type.xhp
-#, fuzzy
msgctxt ""
"func_error_type.xhp\n"
"hd_id351323513235132\n"
@@ -63526,7 +59225,6 @@ msgid "#DIV/0!"
msgstr ""
#: func_error_type.xhp
-#, fuzzy
msgctxt ""
"func_error_type.xhp\n"
"par_id121020152053296785\n"
@@ -63583,7 +59281,6 @@ msgid "#N/A"
msgstr ""
#: func_error_type.xhp
-#, fuzzy
msgctxt ""
"func_error_type.xhp\n"
"hd_id352113521135211\n"
@@ -63696,7 +59393,6 @@ msgid "FORECAST.ETS.ADD"
msgstr ""
#: func_forecastetsadd.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsadd.xhp\n"
"bm_id976559765597655\n"
@@ -63729,7 +59425,6 @@ msgid "FORECAST.ETS.ADD calculates with the model"
msgstr ""
#: func_forecastetsadd.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsadd.xhp\n"
"hd_id0403201618594554\n"
@@ -63794,7 +59489,6 @@ msgid "FORECAST.ETS.MULT"
msgstr ""
#: func_forecastetsmult.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsmult.xhp\n"
"bm_id976559765597655\n"
@@ -63827,7 +59521,6 @@ msgid "FORECAST.ETS.MULT calculates with the model"
msgstr ""
#: func_forecastetsmult.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsmult.xhp\n"
"hd_id0403201618594554\n"
@@ -63892,7 +59585,6 @@ msgid "FORECAST.ETS.PI.ADD"
msgstr ""
#: func_forecastetspiadd.xhp
-#, fuzzy
msgctxt ""
"func_forecastetspiadd.xhp\n"
"bm_id976559765597655\n"
@@ -63925,7 +59617,6 @@ msgid "FORECAST.ETS.PI.ADD calculates with the model"
msgstr ""
#: func_forecastetspiadd.xhp
-#, fuzzy
msgctxt ""
"func_forecastetspiadd.xhp\n"
"hd_id0603201610005973\n"
@@ -64014,7 +59705,6 @@ msgid "FORECAST.ETS.PI.MULT"
msgstr ""
#: func_forecastetspimult.xhp
-#, fuzzy
msgctxt ""
"func_forecastetspimult.xhp\n"
"bm_id976559765597655\n"
@@ -64047,7 +59737,6 @@ msgid "FORECAST.ETS.PI.MULT calculates with the model"
msgstr ""
#: func_forecastetspimult.xhp
-#, fuzzy
msgctxt ""
"func_forecastetspimult.xhp\n"
"hd_id0603201610005973\n"
@@ -64136,7 +59825,6 @@ msgid "FORECAST.ETS.SEASONALITY"
msgstr ""
#: func_forecastetsseason.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsseason.xhp\n"
"bm_id976559765597655\n"
@@ -64169,7 +59857,6 @@ msgid "The same result is returned with FORECAST.ETS.STAT functions when argumen
msgstr ""
#: func_forecastetsseason.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsseason.xhp\n"
"hd_id0603201618013635\n"
@@ -64218,7 +59905,6 @@ msgid "FORECAST.ETS.STAT.ADD"
msgstr ""
#: func_forecastetsstatadd.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsstatadd.xhp\n"
"bm_id976559765597655\n"
@@ -64251,7 +59937,6 @@ msgid "FORECAST.ETS.STAT.ADD calculates with the model"
msgstr ""
#: func_forecastetsstatadd.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsstatadd.xhp\n"
"par_id050320162122554\n"
@@ -64316,7 +60001,6 @@ msgid "FORECAST.ETS.STAT.MULT"
msgstr ""
#: func_forecastetsstatmult.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsstatmult.xhp\n"
"bm_id976559765597655\n"
@@ -64349,7 +60033,6 @@ msgid "FORECAST.ETS.STAT.MULT calculates with the model"
msgstr ""
#: func_forecastetsstatmult.xhp
-#, fuzzy
msgctxt ""
"func_forecastetsstatmult.xhp\n"
"par_id050320162122554\n"
@@ -64425,7 +60108,6 @@ msgstr "<bookmark_value> ཆུ་ཚོད་ལས་འགན། </bookmark_v
msgctxt ""
"func_hour.xhp\n"
"hd_id3154725\n"
-"96\n"
"help.text"
msgid "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\">HOUR</link></variable>"
msgstr "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\"> ཆུ་ཚོད། </link></variable>"
@@ -64434,7 +60116,6 @@ msgstr "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\"> ཆུ
msgctxt ""
"func_hour.xhp\n"
"par_id3149747\n"
-"97\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STUNDE\">Returns the hour for a given time value.</ahelp> The hour is returned as an integer between 0 and 23."
msgstr "<ahelp hid=\"HID_FUNC_STUNDE\"> གྲ་སྒྲིག་འབད་ཡོད་པའི་དུས་ཚོད་གནས་གོང་ལུ་ ཆུ་ཚོད་འདི་སླར་ལོག་འབདཝ་ཨིན། </ahelp> ཆུ་ཚོད་འདི་ ༠ དང་ ༢༣ བར་གྱི་ཧྲིལ་ཨང་སྦེ་སླར་ལོག་འབད་ཡོདཔ་ཨིན།"
@@ -64443,7 +60124,6 @@ msgstr "<ahelp hid=\"HID_FUNC_STUNDE\"> གྲ་སྒྲིག་འབད་
msgctxt ""
"func_hour.xhp\n"
"hd_id3149338\n"
-"98\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -64452,7 +60132,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_hour.xhp\n"
"par_id3150637\n"
-"99\n"
"help.text"
msgid "HOUR(Number)"
msgstr "ཆུ་ཚོད་(ཨང་།)"
@@ -64461,7 +60140,6 @@ msgstr "ཆུ་ཚོད་(ཨང་།)"
msgctxt ""
"func_hour.xhp\n"
"par_id3147547\n"
-"100\n"
"help.text"
msgid "<emph>Number</emph>, as a time value, is a decimal, for which the hour is to be returned."
msgstr "<emph> དུས་ཚོད་གནས་གོང་སྦེ་ཡོད་པའི་ </emph> ཨང་འདི་ ཆུ་ཚོད་སླར་ལོག་འབད་ནི་ཨིན་པའི་བཅུ་ཚག་ཨིན།"
@@ -64470,7 +60148,6 @@ msgstr "<emph> དུས་ཚོད་གནས་གོང་སྦེ་ཡ
msgctxt ""
"func_hour.xhp\n"
"hd_id3153264\n"
-"101\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
@@ -64479,7 +60156,6 @@ msgstr "དཔེར་བརྗོད་ཚུ།"
msgctxt ""
"func_hour.xhp\n"
"par_id3159215\n"
-"103\n"
"help.text"
msgid "<item type=\"input\">=HOUR(NOW())</item> returns the current hour"
msgstr ""
@@ -64488,7 +60164,6 @@ msgstr ""
msgctxt ""
"func_hour.xhp\n"
"par_id3145152\n"
-"104\n"
"help.text"
msgid "<item type=\"input\">=HOUR(C4)</item> returns 17 if the contents of C4 = <item type=\"input\">17:20:00</item>."
msgstr ""
@@ -64497,7 +60172,6 @@ msgstr ""
msgctxt ""
"func_hour.xhp\n"
"par_id3154188\n"
-"105\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"YEAR\">YEAR</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NOW\">NOW</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTE\">MINUTE</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MONTH\">MONTH</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DAY\">DAY</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"WEEKDAY\">WEEKDAY</link>."
msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"YEAR\"> ལོ་ </link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NOW\"> ད་ལྟོ་ </link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTE\"> སྐར་མ་ </link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MONTH\"> ཟླཝ་ </link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DAY\"> ཉིནམ་ </link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"WEEKDAY\"> བདུན་ཕྲག་ཉིནམ་ </link>."
@@ -64511,7 +60185,6 @@ msgid "IMCOS function"
msgstr ""
#: func_imcos.xhp
-#, fuzzy
msgctxt ""
"func_imcos.xhp\n"
"bm_id262410558824\n"
@@ -64520,7 +60193,6 @@ msgid "<bookmark_value>IMCOS function</bookmark_value><bookmark_value>cosine;com
msgstr "<bookmark_value>ཨེསི་ཡུ་ཨེམ་ཨའི་ཨེཕ་ལས་འགན་</bookmark_value><bookmark_value>ཁ་སྐོང་རྐྱབས་དོ་ གསལ་བཀོད་འབད་ཡོད་པའི་ཨང་ཚུ་</bookmark_value>"
#: func_imcos.xhp
-#, fuzzy
msgctxt ""
"func_imcos.xhp\n"
"hd_id90361032228870\n"
@@ -64537,7 +60209,6 @@ msgid "<ahelp hid=\".\"><variable id=\"imcos_des\">Returns the cosine of a compl
msgstr ""
#: func_imcos.xhp
-#, fuzzy
msgctxt ""
"func_imcos.xhp\n"
"par_id164021484116762\n"
@@ -64578,7 +60249,6 @@ msgid "IMCOSH function"
msgstr ""
#: func_imcosh.xhp
-#, fuzzy
msgctxt ""
"func_imcosh.xhp\n"
"bm_id123771237712377\n"
@@ -64587,7 +60257,6 @@ msgid "<bookmark_value>IMCOSH function</bookmark_value><bookmark_value>hyperboli
msgstr "<bookmark_value>DELTA ལས་འགན་</bookmark_value><bookmark_value>ངོས་འཛིན་འབད་དོ་ མཉམ་པའི་ཨང་ཚུ་</bookmark_value>"
#: func_imcosh.xhp
-#, fuzzy
msgctxt ""
"func_imcosh.xhp\n"
"hd_id124691246912469\n"
@@ -64604,7 +60273,6 @@ msgid "<ahelp hid=\".\"><variable id=\"imcosh_des\">Returns the hyperbolic cosin
msgstr ""
#: func_imcosh.xhp
-#, fuzzy
msgctxt ""
"func_imcosh.xhp\n"
"par_id16051131322110\n"
@@ -64645,7 +60313,6 @@ msgid "IMCOT function"
msgstr ""
#: func_imcot.xhp
-#, fuzzy
msgctxt ""
"func_imcot.xhp\n"
"bm_id762757627576275\n"
@@ -64654,7 +60321,6 @@ msgid "<bookmark_value>IMCOT function</bookmark_value><bookmark_value>cotangent;
msgstr "<bookmark_value>བདེན་པ་ལས་འགན་</bookmark_value><bookmark_value>ཆ་རྐྱེན་ཚུ་ ཨང་</bookmark_value>"
#: func_imcot.xhp
-#, fuzzy
msgctxt ""
"func_imcot.xhp\n"
"hd_id763567635676356\n"
@@ -64675,11 +60341,10 @@ msgctxt ""
"func_imcot.xhp\n"
"par_id311713256011430\n"
"help.text"
-msgid "<image id=\"img_id5988220084990\" src=\"res/helpimg/sc_func_imcot.png\"><alt id=\"alt_id5988220084990\">cot(a+bi)=cos(a+bi)/sin(a+bi)</alt></image>"
+msgid "<image id=\"img_id5988220084990\" src=\"media/helpimg/sc_func_imcot.png\"><alt id=\"alt_id5988220084990\">cot(a+bi)=cos(a+bi)/sin(a+bi)</alt></image>"
msgstr ""
#: func_imcot.xhp
-#, fuzzy
msgctxt ""
"func_imcot.xhp\n"
"par_id16051131322110\n"
@@ -64720,7 +60385,6 @@ msgid "IMCSC function"
msgstr ""
#: func_imcsc.xhp
-#, fuzzy
msgctxt ""
"func_imcsc.xhp\n"
"bm_id931179311793117\n"
@@ -64729,7 +60393,6 @@ msgid "<bookmark_value>IMCSC function</bookmark_value><bookmark_value>cosecant;c
msgstr "<bookmark_value>MODE ལས་འགན་</bookmark_value><bookmark_value>མཐུན་མོང་གི་གནས་གོང་མང་ཤོས་</bookmark_value>"
#: func_imcsc.xhp
-#, fuzzy
msgctxt ""
"func_imcsc.xhp\n"
"hd_id931679316793167\n"
@@ -64750,11 +60413,10 @@ msgctxt ""
"func_imcsc.xhp\n"
"par_id13510198901485\n"
"help.text"
-msgid "<image id=\"img_id24404683532568\" src=\"res/helpimg/sc_func_imcsc.png\"><alt id=\"alt_id148492012231637\">csc(a+bi)=1/sin(a+bi)</alt></image>"
+msgid "<image id=\"img_id24404683532568\" src=\"media/helpimg/sc_func_imcsc.png\"><alt id=\"alt_id148492012231637\">csc(a+bi)=1/sin(a+bi)</alt></image>"
msgstr ""
#: func_imcsc.xhp
-#, fuzzy
msgctxt ""
"func_imcsc.xhp\n"
"par_id30461169611909\n"
@@ -64795,7 +60457,6 @@ msgid "IMCSCH function"
msgstr ""
#: func_imcsch.xhp
-#, fuzzy
msgctxt ""
"func_imcsch.xhp\n"
"bm_id976559765597655\n"
@@ -64804,7 +60465,6 @@ msgid "<bookmark_value>IMCSCH function</bookmark_value><bookmark_value>hyperboli
msgstr "<bookmark_value>ཨའི་ཨེསི་ཨི་ཨར་ཨར་ལས་འགན་</bookmark_value><bookmark_value>འཛོལ་བའི་ཨང་རྟགས་ ཚད་འཛིན་འབད་དོ་</bookmark_value>"
#: func_imcsch.xhp
-#, fuzzy
msgctxt ""
"func_imcsch.xhp\n"
"hd_id977779777797777\n"
@@ -64825,11 +60485,10 @@ msgctxt ""
"func_imcsch.xhp\n"
"par_id195151657917534\n"
"help.text"
-msgid "<image id=\"img_id23513691929169\" src=\"res/helpimg/sc_func_imcsch.png\"><alt id=\"alt_id313882186926700\">csch(a+bi)=1/sinh(a+bi)</alt></image>"
+msgid "<image id=\"img_id23513691929169\" src=\"media/helpimg/sc_func_imcsch.png\"><alt id=\"alt_id313882186926700\">csch(a+bi)=1/sinh(a+bi)</alt></image>"
msgstr ""
#: func_imcsch.xhp
-#, fuzzy
msgctxt ""
"func_imcsch.xhp\n"
"par_id30461169611909\n"
@@ -64870,7 +60529,6 @@ msgid "IMSEC function"
msgstr ""
#: func_imsec.xhp
-#, fuzzy
msgctxt ""
"func_imsec.xhp\n"
"bm_id101862404332680\n"
@@ -64879,7 +60537,6 @@ msgid "<bookmark_value>IMSEC function</bookmark_value><bookmark_value>secant;com
msgstr "<bookmark_value>བདེན་པ་ལས་འགན་</bookmark_value><bookmark_value>ཆ་རྐྱེན་ཚུ་ ཨང་</bookmark_value>"
#: func_imsec.xhp
-#, fuzzy
msgctxt ""
"func_imsec.xhp\n"
"hd_id29384186273495\n"
@@ -64900,11 +60557,10 @@ msgctxt ""
"func_imsec.xhp\n"
"par_id17543461310594\n"
"help.text"
-msgid "<image id=\"img_id112671346811327\" src=\"res/helpimg/sc_func_imsec.png\"><alt id=\"alt_id303562937523579\">sec(a+bi)=1/cos(a+bi)</alt></image>"
+msgid "<image id=\"img_id112671346811327\" src=\"media/helpimg/sc_func_imsec.png\"><alt id=\"alt_id303562937523579\">sec(a+bi)=1/cos(a+bi)</alt></image>"
msgstr ""
#: func_imsec.xhp
-#, fuzzy
msgctxt ""
"func_imsec.xhp\n"
"par_id66061624115094\n"
@@ -64945,7 +60601,6 @@ msgid "IMSECH function"
msgstr ""
#: func_imsech.xhp
-#, fuzzy
msgctxt ""
"func_imsech.xhp\n"
"bm_id220201324724579\n"
@@ -64954,7 +60609,6 @@ msgid "<bookmark_value>IMSECH function</bookmark_value><bookmark_value>hyperboli
msgstr "<bookmark_value>ཨའི་ཨེསི་ཨི་ཨར་ཨར་ལས་འགན་</bookmark_value><bookmark_value>འཛོལ་བའི་ཨང་རྟགས་ ཚད་འཛིན་འབད་དོ་</bookmark_value>"
#: func_imsech.xhp
-#, fuzzy
msgctxt ""
"func_imsech.xhp\n"
"hd_id258933143113817\n"
@@ -64975,11 +60629,10 @@ msgctxt ""
"func_imsech.xhp\n"
"par_id74572850718840\n"
"help.text"
-msgid "<image id=\"img_id8983315386682\" src=\"res/helpimg/sc_func_imsech.png\"><alt id=\"alt_id9157586510683\">sech(a+bi)=1/cosh(a+bi)</alt></image>"
+msgid "<image id=\"img_id8983315386682\" src=\"media/helpimg/sc_func_imsech.png\"><alt id=\"alt_id9157586510683\">sech(a+bi)=1/cosh(a+bi)</alt></image>"
msgstr ""
#: func_imsech.xhp
-#, fuzzy
msgctxt ""
"func_imsech.xhp\n"
"par_id17253876723855\n"
@@ -65020,7 +60673,6 @@ msgid "IMSIN function"
msgstr ""
#: func_imsin.xhp
-#, fuzzy
msgctxt ""
"func_imsin.xhp\n"
"bm_id79322063230162\n"
@@ -65029,7 +60681,6 @@ msgid "<bookmark_value>IMSIN function</bookmark_value><bookmark_value>sine;compl
msgstr "<bookmark_value>ཨེསི་ཡུ་ཨེམ་ཨའི་ཨེཕ་ལས་འགན་</bookmark_value><bookmark_value>ཁ་སྐོང་རྐྱབས་དོ་ གསལ་བཀོད་འབད་ཡོད་པའི་ཨང་ཚུ་</bookmark_value>"
#: func_imsin.xhp
-#, fuzzy
msgctxt ""
"func_imsin.xhp\n"
"hd_id3192388765304\n"
@@ -65054,7 +60705,6 @@ msgid "sin(a+bi)=sin(a)cosh(b)+cos(a)sinh(b)i"
msgstr ""
#: func_imsin.xhp
-#, fuzzy
msgctxt ""
"func_imsin.xhp\n"
"par_id284611113926520\n"
@@ -65095,7 +60745,6 @@ msgid "IMSINH function"
msgstr ""
#: func_imsinh.xhp
-#, fuzzy
msgctxt ""
"func_imsinh.xhp\n"
"bm_id79322063230162\n"
@@ -65104,7 +60753,6 @@ msgid "<bookmark_value>IMSINH function</bookmark_value><bookmark_value>hyperboli
msgstr "<bookmark_value>DELTA ལས་འགན་</bookmark_value><bookmark_value>ངོས་འཛིན་འབད་དོ་ མཉམ་པའི་ཨང་ཚུ་</bookmark_value>"
#: func_imsinh.xhp
-#, fuzzy
msgctxt ""
"func_imsinh.xhp\n"
"hd_id3192388765304\n"
@@ -65129,7 +60777,6 @@ msgid "sinh(a+bi)=sinh(a)cos(b)+cosh(a)sin(b)i"
msgstr ""
#: func_imsinh.xhp
-#, fuzzy
msgctxt ""
"func_imsinh.xhp\n"
"par_id284611113926520\n"
@@ -65162,7 +60809,6 @@ msgid "<item type=\"input\">=IMSINH(2)</item><br/>returns 3.62686040784702 as a
msgstr ""
#: func_imsinh.xhp
-#, fuzzy
msgctxt ""
"func_imsinh.xhp\n"
"par_id2773214341302\n"
@@ -65179,7 +60825,6 @@ msgid "IMTAN function"
msgstr ""
#: func_imtan.xhp
-#, fuzzy
msgctxt ""
"func_imtan.xhp\n"
"bm_id4210250889873\n"
@@ -65188,7 +60833,6 @@ msgid "<bookmark_value>IMTAN function</bookmark_value><bookmark_value>tangent;co
msgstr "<bookmark_value>ཨེསི་ཡུ་ཨེམ་ཨའི་ཨེཕ་ལས་འགན་</bookmark_value><bookmark_value>ཁ་སྐོང་རྐྱབས་དོ་ གསལ་བཀོད་འབད་ཡོད་པའི་ཨང་ཚུ་</bookmark_value>"
#: func_imtan.xhp
-#, fuzzy
msgctxt ""
"func_imtan.xhp\n"
"hd_id9522389621160\n"
@@ -65209,11 +60853,10 @@ msgctxt ""
"func_imtan.xhp\n"
"par_id25021317131239\n"
"help.text"
-msgid "<image id=\"img_id16283275473700\" src=\"res/helpimg/sc_func_imtan.png\"><alt id=\"alt_id676711494402\">tan(a+bi)=sin(a+bi)/cos(a+bi)</alt></image>"
+msgid "<image id=\"img_id16283275473700\" src=\"media/helpimg/sc_func_imtan.png\"><alt id=\"alt_id676711494402\">tan(a+bi)=sin(a+bi)/cos(a+bi)</alt></image>"
msgstr ""
#: func_imtan.xhp
-#, fuzzy
msgctxt ""
"func_imtan.xhp\n"
"par_id23219159944377\n"
@@ -65254,7 +60897,6 @@ msgid "ISOWEEKNUM"
msgstr ""
#: func_isoweeknum.xhp
-#, fuzzy
msgctxt ""
"func_isoweeknum.xhp\n"
"bm_id3159161\n"
@@ -65263,27 +60905,22 @@ msgid "<bookmark_value>ISOWEEKNUM function</bookmark_value>"
msgstr "<bookmark_value>WEEKNUM ལས་འགན།</bookmark_value>"
#: func_isoweeknum.xhp
-#, fuzzy
msgctxt ""
"func_isoweeknum.xhp\n"
"hd_id3159161\n"
-"54\n"
"help.text"
msgid "<variable id=\"isoweeknum\"><link href=\"text/scalc/01/func_isoweeknum.xhp\">ISOWEEKNUM</link></variable>"
msgstr "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
#: func_isoweeknum.xhp
-#, fuzzy
msgctxt ""
"func_isoweeknum.xhp\n"
"par_id3149770\n"
-"55\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ISOWEEKNUM\">ISOWEEKNUM calculates the week number of the year for the internal date value.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM གིས་ནང་འཁོད་གནད་སྡུད་གནས་གོང་གི་དོན་ལུ་ལོའི་བདུན་ཕྲག་གྱངས་ཁ་རྩིས་སྟོན་འབདཝ་ཨིན། </ahelp>"
#: func_isoweeknum.xhp
-#, fuzzy
msgctxt ""
"func_isoweeknum.xhp\n"
"par_idN105E4\n"
@@ -65292,11 +60929,9 @@ msgid "The International Standard ISO 8601 has decreed that Monday shall be the
msgstr "རྒྱལ་སྤྱི་ཚད་ལྡན་ ཨའི་ཨེསི་ཨོ་ ༨༦༠༡ གིས་གཟའ་མིག་དམར་འདི་བདུན་ཕྲག་གི་ཉིནམ་དང་པམ་ཨིན་དགོསཔ་སྦེ་བཀའ་གནང་ཡོདཔ་ཨིན། ཕྱོགས་ཙམ་ཅིག་ལོ་གཅིག་ནང་ལུ་དང་ ཕྱོགས་ཙམ་ཅིག་ལོ་སོ་སོ་ནང་ལུ་གནས་པའི་བདུན་ཕྲག་འདི་ དེའི་ཉིནམ་མང་ཤོས་རང་གནས་པའི་ལོ་སྦེ་འགན་སྤྲོད་ཡོདཔ་ཨིན། འདི་གིས་ག་ཅི་སླབ་སྨོ་ཟེར་བ་ཅིན་ ལོ་གང་རུང་གི་བདུན་ཕྲག་ཨང་ ༡ འདི་ དབྱིན་ཟླ་དང་པའི་དབྱིན་ཚེས་ <emph>༤th</emph> ཤོམ་ཏེ་ཡོད་པའི་བདུན་ཕྲག་ཨིན།"
#: func_isoweeknum.xhp
-#, fuzzy
msgctxt ""
"func_isoweeknum.xhp\n"
"hd_id3153055\n"
-"56\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -65305,27 +60940,22 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_isoweeknum.xhp\n"
"par_id3147236\n"
-"57\n"
"help.text"
msgid "ISOWEEKNUM(Number)"
msgstr ""
#: func_isoweeknum.xhp
-#, fuzzy
msgctxt ""
"func_isoweeknum.xhp\n"
"par_id3147511\n"
-"58\n"
"help.text"
msgid "<emph>Number</emph> is the internal date number."
msgstr "<emph> ཨང་ </emph> འདི་ནང་འཁོད་གནད་སྡུད་ཨང་ཨིན།"
#: func_isoweeknum.xhp
-#, fuzzy
msgctxt ""
"func_isoweeknum.xhp\n"
"hd_id3146948\n"
-"62\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
@@ -65334,7 +60964,6 @@ msgstr "དཔེར་བརྗོད་ཚུ།"
msgctxt ""
"func_isoweeknum.xhp\n"
"par_id3149792\n"
-"64\n"
"help.text"
msgid "=ISOWEEKNUM(DATE(1995;1;1)) returns 52. Week 1 starts on Monday, 1995-01-02."
msgstr ""
@@ -65343,7 +60972,6 @@ msgstr ""
msgctxt ""
"func_isoweeknum.xhp\n"
"par_id3149794\n"
-"67\n"
"help.text"
msgid "=ISOWEEKNUM(DATE(1999;1;1)) returns 53. Week 1 starts on Monday, 1999-01-04."
msgstr ""
@@ -65368,7 +60996,6 @@ msgstr "<bookmark_value> སྐར་མ་ལས་འགན། </bookmark_valu
msgctxt ""
"func_minute.xhp\n"
"hd_id3149803\n"
-"66\n"
"help.text"
msgid "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MINUTE</link></variable>"
msgstr "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\"> སྐར་མ། </link></variable>"
@@ -65377,7 +61004,6 @@ msgstr "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">
msgctxt ""
"func_minute.xhp\n"
"par_id3148988\n"
-"67\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MINUTE\">Calculates the minute for an internal time value.</ahelp> The minute is returned as a number between 0 and 59."
msgstr "<ahelp hid=\"HID_FUNC_MINUTE\"> ནང་འཁོད་དུས་ཚོད་གནས་གོང་དོན་ལུ་སྐར་མ་རྩིས་སྟོན་འབདཝ་ཨིན། </ahelp> སྐར་མ་འདི་ ༠ དང་ ༥༩ བར་གྱི་ཨང་སྦེ་སླར་ལོག་འབད་ཡོདཔ་ཨིན།"
@@ -65386,7 +61012,6 @@ msgstr "<ahelp hid=\"HID_FUNC_MINUTE\"> ནང་འཁོད་དུས་ཚ
msgctxt ""
"func_minute.xhp\n"
"hd_id3154343\n"
-"68\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -65395,7 +61020,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_minute.xhp\n"
"par_id3148660\n"
-"69\n"
"help.text"
msgid "MINUTE(Number)"
msgstr "སྐར་མ་(ཨང་།)"
@@ -65404,7 +61028,6 @@ msgstr "སྐར་མ་(ཨང་།)"
msgctxt ""
"func_minute.xhp\n"
"par_id3154611\n"
-"70\n"
"help.text"
msgid "<emph>Number</emph>, as a time value, is a decimal number where the number of the minute is to be returned."
msgstr "<emph> དུས་ཚོད་གནས་གོང་སྦེ་ </emph> ཡོད་པའི་ཨང་འདི་ སྐར་མ་གི་ཨང་སླར་ལོག་འབད་ནི་ཨིན་པའི་ བཅུ་ཚག་ཨང་ཨིན།"
@@ -65413,7 +61036,6 @@ msgstr "<emph> དུས་ཚོད་གནས་གོང་སྦེ་ </em
msgctxt ""
"func_minute.xhp\n"
"hd_id3145374\n"
-"71\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
@@ -65422,7 +61044,6 @@ msgstr "དཔེར་བརྗོད་ཚུ།"
msgctxt ""
"func_minute.xhp\n"
"par_id3148463\n"
-"72\n"
"help.text"
msgid "<item type=\"input\">=MINUTE(8.999)</item> returns 58"
msgstr ""
@@ -65431,7 +61052,6 @@ msgstr ""
msgctxt ""
"func_minute.xhp\n"
"par_id3149419\n"
-"73\n"
"help.text"
msgid "<item type=\"input\">=MINUTE(8.9999)</item> returns 59"
msgstr ""
@@ -65440,7 +61060,6 @@ msgstr ""
msgctxt ""
"func_minute.xhp\n"
"par_id3144755\n"
-"74\n"
"help.text"
msgid "<item type=\"input\">=MINUTE(NOW())</item> returns the current minute value."
msgstr ""
@@ -65465,7 +61084,6 @@ msgstr "<bookmark_value> ཟླཝ་ལས་འགན་ </bookmark_value>"
msgctxt ""
"func_month.xhp\n"
"hd_id3149936\n"
-"76\n"
"help.text"
msgid "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>"
msgstr "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\"> ཟླཝ་ </link></variable>"
@@ -65474,7 +61092,6 @@ msgstr "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\"> ཟ
msgctxt ""
"func_month.xhp\n"
"par_id3153538\n"
-"77\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MONAT\">Returns the month for the given date value.</ahelp> The month is returned as an integer between 1 and 12."
msgstr "<ahelp hid=\"HID_FUNC_MONAT\"> གྲ་སྒྲིག་འབད་ཡོད་པའི་ཚེས་གནས་གོང་དོན་ལུ་སླར་ལོག་འབདཝ་ཨིན། </ahelp> ཟླཝ་འདི་ ༡ དང་ ༡༢ བར་གྱི་ཧྲིལ་ཨང་སྦེ་སླར་ལོག་འབད་ཡོདཔ་ཨིན།"
@@ -65483,7 +61100,6 @@ msgstr "<ahelp hid=\"HID_FUNC_MONAT\"> གྲ་སྒྲིག་འབད་
msgctxt ""
"func_month.xhp\n"
"hd_id3149517\n"
-"78\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -65492,7 +61108,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_month.xhp\n"
"par_id3145602\n"
-"79\n"
"help.text"
msgid "MONTH(Number)"
msgstr "ཟླཝ་(ཨང་)"
@@ -65501,7 +61116,6 @@ msgstr "ཟླཝ་(ཨང་)"
msgctxt ""
"func_month.xhp\n"
"par_id3149485\n"
-"80\n"
"help.text"
msgid "<emph>Number</emph>, as a time value, is a decimal for which the month is to be returned."
msgstr "<emph> ཨང་ </emph> དུས་ཚོད་གནས་གོང་འདི་ ཟླཝ་འདི་སླར་ལོག་འབད་ནིའི་ བཅུ་ཚག་ཨིནམ་ལས།"
@@ -65510,7 +61124,6 @@ msgstr "<emph> ཨང་ </emph> དུས་ཚོད་གནས་གོང
msgctxt ""
"func_month.xhp\n"
"hd_id3153322\n"
-"81\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
@@ -65519,7 +61132,6 @@ msgstr "དཔེར་བརྗོད་ཚུ།"
msgctxt ""
"func_month.xhp\n"
"par_id3149244\n"
-"83\n"
"help.text"
msgid "=MONTH(NOW()) returns the current month."
msgstr "MONTH(NOW()) གིས་ད་ལྟོའི་ཟླཝ་སླར་ལོག་འབདཝ་ཨིན།"
@@ -65528,7 +61140,6 @@ msgstr "MONTH(NOW()) གིས་ད་ལྟོའི་ཟླཝ་སླར
msgctxt ""
"func_month.xhp\n"
"par_id3154790\n"
-"84\n"
"help.text"
msgid "=MONTH(C4) returns 7 if you enter 2000-07-07 to cell C4 (that date value might get formatted differently after you press Enter)."
msgstr ""
@@ -65674,7 +61285,7 @@ msgctxt ""
"func_networkdays.intl.xhp\n"
"par_id241020160012187036\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_workdays.intl.xhp\">WORKDAYS.INTL</link>"
+msgid "<link href=\"text/scalc/01/func_workdays.intl.xhp\">WORKDAY.INTL</link>"
msgstr ""
#: func_networkdays.intl.xhp
@@ -65826,7 +61437,7 @@ msgctxt ""
"func_networkdays.xhp\n"
"par_id241070160012187036\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_workdays.intl.xhp\">WORKDAYS.INTL</link>"
+msgid "<link href=\"text/scalc/01/func_workday.intl.xhp\">WORKDAY.INTL</link>"
msgstr ""
#: func_networkdays.xhp
@@ -65865,7 +61476,6 @@ msgstr "<bookmark_value> ད་ལྟོའི་ལས་འགན། </bookmar
msgctxt ""
"func_now.xhp\n"
"hd_id3150521\n"
-"47\n"
"help.text"
msgid "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">NOW</link></variable>"
msgstr "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\"> ད་ལྟོ། </link></variable>"
@@ -65874,7 +61484,6 @@ msgstr "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\"> ད་
msgctxt ""
"func_now.xhp\n"
"par_id3148829\n"
-"48\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_JETZT\">Returns the computer system date and time.</ahelp> The value is updated when you recalculate the document or each time a cell value is modified."
msgstr "<ahelp hid=\"HID_FUNC_JETZT\"> གློག་རིག་རིམ་ལུགས་ཚེས་དང་དུས་ཚོད་ སླར་ལོག་འབདཝ་ཨིན། </ahelp> གནས་གོང་འདི་ཁྱོད་ཀྱིས་ཡིག་ཆ་འདི་ཡང་བསྐྱར་རྩིས་སྟོནམ་ད་དང་ཡང་ན་ ནང་ཐིག་གནས་གོང་ཚར་རེ་རེ་ལེགས་བཅོས་འབདཝ་དང་གནས་གོང་འདི་དུས་མཐུནམ་བཟོ་ཡོདཔ་ཨིན།"
@@ -65883,7 +61492,6 @@ msgstr "<ahelp hid=\"HID_FUNC_JETZT\"> གློག་རིག་རིམ་
msgctxt ""
"func_now.xhp\n"
"hd_id3146988\n"
-"49\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -65892,7 +61500,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_now.xhp\n"
"par_id3154897\n"
-"50\n"
"help.text"
msgid "NOW()"
msgstr "ད་ལྟོ།()"
@@ -65909,7 +61516,6 @@ msgstr ""
msgctxt ""
"func_now.xhp\n"
"hd_id3154205\n"
-"51\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -65918,7 +61524,6 @@ msgstr "དཔེ།"
msgctxt ""
"func_now.xhp\n"
"par_id3150774\n"
-"52\n"
"help.text"
msgid "<item type=\"input\">=NOW()-A1</item> returns the difference between the date in A1 and now. Format the result as a number."
msgstr "=NOW()-ཨེ་ ༡ གིས་ཨེ་ ༡ དང་ད་ལྟོའི་ཚེས་ཀྱི་བར་གྱི་ཁྱད་པར་སླར་ལོག་འབདཝ་ཨིན། གྲུབ་འབྲས་འདི་ཨང་སྦེ་རྩ་སྒྲིག་འབད།"
@@ -65932,7 +61537,6 @@ msgid "NUMBERVALUE"
msgstr ""
#: func_numbervalue.xhp
-#, fuzzy
msgctxt ""
"func_numbervalue.xhp\n"
"bm_id3145621\n"
@@ -65941,11 +61545,9 @@ msgid "<bookmark_value>NUMBERVALUE function</bookmark_value>"
msgstr "<bookmark_value>TIMEVALUE ལས་འགན།</bookmark_value>"
#: func_numbervalue.xhp
-#, fuzzy
msgctxt ""
"func_numbervalue.xhp\n"
"hd_id3145621\n"
-"18\n"
"help.text"
msgid "<variable id=\"datevalue\"> <link href=\"text/scalc/01/func_numbervalue.xhp\">NUMBERVALUE</link> </variable>"
msgstr "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\"> གནས་སྡུད་གནས་གོང་། </link></variable>"
@@ -65954,7 +61556,6 @@ msgstr "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp
msgctxt ""
"func_numbervalue.xhp\n"
"par_id3145087\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NUMBERVALUE\">Convert text to number, in a locale-independent way.</ahelp>"
msgstr ""
@@ -65963,7 +61564,6 @@ msgstr ""
msgctxt ""
"func_numbervalue.xhp\n"
"par_id3149281\n"
-"20\n"
"help.text"
msgid "Constraints: LEN(decimal_separator) = 1, decimal_separator shall not appear in group_separator"
msgstr ""
@@ -65972,7 +61572,6 @@ msgstr ""
msgctxt ""
"func_numbervalue.xhp\n"
"hd_id3156294\n"
-"21\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -65981,17 +61580,14 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_numbervalue.xhp\n"
"par_id3149268\n"
-"22\n"
"help.text"
msgid "NUMBERVALUE(\"Text\";decimal_separator;group_separator)"
msgstr ""
#: func_numbervalue.xhp
-#, fuzzy
msgctxt ""
"func_numbervalue.xhp\n"
"par_id3154819\n"
-"23\n"
"help.text"
msgid "<emph>Text</emph> is a valid number expression and must be entered with quotation marks."
msgstr "<emph> ཚིག་ཡིག་འདི་ </emph> ཚེས་གྲངས་གསལ་བརྗོད་ནུས་ཅན་ཨིནམ་ལས་ འདྲེན་ཚིག་རྟགས་ཚུ་དང་བཅསཔ་སྦེ་བཙུགས་དགོསཔ་ཨིན།"
@@ -66000,7 +61596,6 @@ msgstr "<emph> ཚིག་ཡིག་འདི་ </emph> ཚེས་གྲ
msgctxt ""
"func_numbervalue.xhp\n"
"par_id3154820\n"
-"23\n"
"help.text"
msgid "<emph>decimal_separator</emph> (optional) defines the character used as the decimal separator."
msgstr ""
@@ -66009,7 +61604,6 @@ msgstr ""
msgctxt ""
"func_numbervalue.xhp\n"
"par_id3154821\n"
-"23\n"
"help.text"
msgid "<emph>group_separator</emph> (optional) defines the character(s) used as the group separator."
msgstr ""
@@ -66018,7 +61612,6 @@ msgstr ""
msgctxt ""
"func_numbervalue.xhp\n"
"hd_id3156309\n"
-"24\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -66027,11 +61620,74 @@ msgstr "དཔེ།"
msgctxt ""
"func_numbervalue.xhp\n"
"par_id3155841\n"
-"25\n"
"help.text"
msgid "<item type=\"input\">=NUMBERVALUE(\"123.456\";\".\";\",\")</item> yields 123.456"
msgstr ""
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"tit\n"
+"help.text"
+msgid "RAWSUBTRACT function"
+msgstr ""
+
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"bm_2016112109230\n"
+"help.text"
+msgid "<bookmark_value>rawsubtract;subtraction</bookmark_value> <bookmark_value>RAWSUBTRACT function</bookmark_value>"
+msgstr ""
+
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"hd_2016112109231\n"
+"help.text"
+msgid "<variable id=\"rawsubtract_head\"><link href=\"text/scalc/01/func_rawsubtract.xhp\">RAWSUBTRACT</link></variable>"
+msgstr ""
+
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"par_2016112109232\n"
+"help.text"
+msgid "<ahelp hid=\".\">Subtracts a set of numbers and gives the result without eliminating small roundoff errors. </ahelp>"
+msgstr ""
+
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"par_2016112109233\n"
+"help.text"
+msgid "RAWSUBTRACT(Minuend, Subtrahend1, Subtrahend2, ...)"
+msgstr ""
+
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"par_2016112109234\n"
+"help.text"
+msgid "Subtracts the subtrahend(s) from the minuend without eliminating roundoff errors. The function should be called with at least two parameters."
+msgstr ""
+
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"par_2016112109235\n"
+"help.text"
+msgid "<item type=\"literal\">RAWSUBTRACT(0.987654321098765, 0.9876543210987)</item> returns 6.53921361504217E-14"
+msgstr ""
+
+#: func_rawsubtract.xhp
+msgctxt ""
+"func_rawsubtract.xhp\n"
+"par_2016112109237\n"
+"help.text"
+msgid "<item type=\"literal\">RAWSUBTRACT(0.987654321098765)</item> returns Err:511 (Missing variable) because RAWSUBTRACT requires a minimum of two numbers."
+msgstr ""
+
#: func_second.xhp
msgctxt ""
"func_second.xhp\n"
@@ -66052,7 +61708,6 @@ msgstr "<bookmark_value> སྐར་ཆ་ལས་འགན། </bookmark_valu
msgctxt ""
"func_second.xhp\n"
"hd_id3159390\n"
-"86\n"
"help.text"
msgid "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>"
msgstr "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\"> སྐར་ཆ། </link></variable>"
@@ -66061,7 +61716,6 @@ msgstr "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">
msgctxt ""
"func_second.xhp\n"
"par_id3148974\n"
-"87\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SEKUNDE\">Returns the second for the given time value.</ahelp> The second is given as an integer between 0 and 59."
msgstr "<ahelp hid=\"HID_FUNC_SEKUNDE\"> གྲ་སྒྲིག་འབད་ཡོད་པའི་དུས་ཚོད་གནས་གོང་དོན་ལུ་སྐར་ཆ་སླར་ལོག་འབདཝ་ཨིན། </ahelp> སྐར་ཆ་འདི་ ༠ དང་ ༥༩ བར་གྱི་ཧྲིལ་ཨང་སྦེ་གྲ་སྒྲིག་འབད་ཡོད།"
@@ -66070,7 +61724,6 @@ msgstr "<ahelp hid=\"HID_FUNC_SEKUNDE\"> གྲ་སྒྲིག་འབད་
msgctxt ""
"func_second.xhp\n"
"hd_id3154362\n"
-"88\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -66079,7 +61732,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_second.xhp\n"
"par_id3148407\n"
-"89\n"
"help.text"
msgid "SECOND(Number)"
msgstr "སྐར་ཆ་(ཨང་།)"
@@ -66088,7 +61740,6 @@ msgstr "སྐར་ཆ་(ཨང་།)"
msgctxt ""
"func_second.xhp\n"
"par_id3155904\n"
-"90\n"
"help.text"
msgid "<emph>Number</emph>, as a time value, is a decimal, for which the second is to be returned."
msgstr "<emph> ཨང་ </emph> སྐར་ཆ་འདི་སླར་ལོག་འབད་ནི་ཨིན་པའི་དུས་ཚོད་ཀྱི་གནས་གོང་སྦེ་བཅུ་ཚག་ཨིན།"
@@ -66097,7 +61748,6 @@ msgstr "<emph> ཨང་ </emph> སྐར་ཆ་འདི་སླར་ལ
msgctxt ""
"func_second.xhp\n"
"hd_id3149992\n"
-"91\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
@@ -66106,7 +61756,6 @@ msgstr "དཔེར་བརྗོད་ཚུ།"
msgctxt ""
"func_second.xhp\n"
"par_id3153350\n"
-"93\n"
"help.text"
msgid "<item type=\"input\">=SECOND(NOW())</item> returns the current second"
msgstr ""
@@ -66115,7 +61764,6 @@ msgstr ""
msgctxt ""
"func_second.xhp\n"
"par_id3150831\n"
-"94\n"
"help.text"
msgid "<item type=\"input\">=SECOND(C4)</item> returns 17 if contents of C4 = <item type=\"input\">12:20:17</item>."
msgstr ""
@@ -66129,7 +61777,6 @@ msgid "SKEWP function"
msgstr ""
#: func_skewp.xhp
-#, fuzzy
msgctxt ""
"func_skewp.xhp\n"
"bm_id1102201617201921\n"
@@ -66138,7 +61785,6 @@ msgid "<bookmark_value>skewness;population</bookmark_value> <bookmark_value>SKE
msgstr "<bookmark_value>NORMDIST ལས་འགན་</bookmark_value><bookmark_value>སྟུག་ཚད་ལས་འགན་</bookmark_value>"
#: func_skewp.xhp
-#, fuzzy
msgctxt ""
"func_skewp.xhp\n"
"hd_id456845684568\n"
@@ -66155,7 +61801,6 @@ msgid "<ahelp hid=\".\">Calculates the skewness of a distribution using the popu
msgstr ""
#: func_skewp.xhp
-#, fuzzy
msgctxt ""
"func_skewp.xhp\n"
"par_id27421466710275\n"
@@ -66164,7 +61809,6 @@ msgid "SKEWP(Number1; Number2;..., Number30)"
msgstr "SKEW(ཨང་གྲངས་ ༡།ཨང་གྲངས་ ༢།... ཨང་གྲངས་ ༣༠།)"
#: func_skewp.xhp
-#, fuzzy
msgctxt ""
"func_skewp.xhp\n"
"par_id242131304318587\n"
@@ -66229,7 +61873,6 @@ msgid "SUMIFS function"
msgstr ""
#: func_sumifs.xhp
-#, fuzzy
msgctxt ""
"func_sumifs.xhp\n"
"bm_id658066580665806\n"
@@ -66238,7 +61881,6 @@ msgid "<bookmark_value>SUMIFS function</bookmark_value> <bookmark_value>sum;sat
msgstr "<bookmark_value>ཀོམ་བིན་ལས་འགན་</bookmark_value><bookmark_value>མཉམ་མཐུད་ཀྱི་གྲངས་</bookmark_value>"
#: func_sumifs.xhp
-#, fuzzy
msgctxt ""
"func_sumifs.xhp\n"
"hd_id658866588665886\n"
@@ -66255,7 +61897,6 @@ msgid "<ahelp hid=\".\"><variable id=\"sumifs_des\">Returns the sum of the value
msgstr ""
#: func_sumifs.xhp
-#, fuzzy
msgctxt ""
"func_sumifs.xhp\n"
"hd_id660246602466024\n"
@@ -66483,7 +62124,6 @@ msgstr "<bookmark_value> དུས་ཚོད་ལས་འགན་ </bookmar
msgctxt ""
"func_time.xhp\n"
"hd_id3154073\n"
-"149\n"
"help.text"
msgid "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>"
msgstr "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\"> དུས་ཚོད་ </link></variable>"
@@ -66492,7 +62132,6 @@ msgstr "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\"> དུ
msgctxt ""
"func_time.xhp\n"
"par_id3145762\n"
-"150\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ZEIT\">TIME returns the current time value from values for hours, minutes and seconds.</ahelp> This function can be used to convert a time based on these three elements to a decimal time value."
msgstr "<ahelp hid=\"HID_FUNC_ZEIT\">TIME གིས་ཆུ་ཚོད་ སྐར་མ་དང་སྐར་ཆ་ཚུའི་དོན་གྱི་གནས་གོང་ཚུ་ལས་ ད་ལྟོའི་དུས་ཚད་གནས་གོང་སླར་ལོག་འབདཝ་ཨིན། </ahelp> འ་ནི་ལས་འགན་འདི་ བཅུ་ཚག་དུས་ཚོད་གནས་གོང་ལུ་ ཆ་ཤས་དེ་གསུམ་ལུ་གཞི་བཞག་སྟེ་ དུས་ཚོད་གཞི་བསྒྱུར་འབད་ནིའི་ལུ་ལག་ལེན་འཐབ་བཏུབ་ཨིན།"
@@ -66501,7 +62140,6 @@ msgstr "<ahelp hid=\"HID_FUNC_ZEIT\">TIME གིས་ཆུ་ཚོད་ ས
msgctxt ""
"func_time.xhp\n"
"hd_id3155550\n"
-"151\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -66510,7 +62148,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_time.xhp\n"
"par_id3154584\n"
-"152\n"
"help.text"
msgid "TIME(Hour; Minute; Second)"
msgstr "དུས་ཚོད་(ཆུ་ཚོད་; སྐར་མ་; སྐར་ཆ)"
@@ -66519,7 +62156,6 @@ msgstr "དུས་ཚོད་(ཆུ་ཚོད་; སྐར་མ་; ས
msgctxt ""
"func_time.xhp\n"
"par_id3152904\n"
-"153\n"
"help.text"
msgid "Use an integer to set the <emph>Hour</emph>."
msgstr "<emph>ཆུ་ཚོད་</emph> གཞི་སྒྲིག་འབད་ནིའི་དོན་ལུ་ ཧྲིལ་ཨང་ལག་ལེན་འཐབ།"
@@ -66528,7 +62164,6 @@ msgstr "<emph>ཆུ་ཚོད་</emph> གཞི་སྒྲིག་འབ
msgctxt ""
"func_time.xhp\n"
"par_id3151346\n"
-"154\n"
"help.text"
msgid "Use an integer to set the <emph>Minute</emph>."
msgstr "<emph>སྐར་མ་ </emph>གཞི་སྒྲིག་འབད་ནིའི་དོན་ལུ་ ཧྲིལ་ཨང་ལག་ལེན་འཐབ།"
@@ -66537,7 +62172,6 @@ msgstr "<emph>སྐར་མ་ </emph>གཞི་སྒྲིག་འབད
msgctxt ""
"func_time.xhp\n"
"par_id3151366\n"
-"155\n"
"help.text"
msgid "Use an integer to set the <emph>Second</emph>."
msgstr "<emph>སྐར་ཆ་ </emph>གཞི་སྒྲིག་འབད་ནིའི་དོན་ལུ་ ཧྲིལ་ཨང་ལག་ལེན་འཐབ།"
@@ -66546,7 +62180,6 @@ msgstr "<emph>སྐར་ཆ་ </emph>གཞི་སྒྲིག་འབད
msgctxt ""
"func_time.xhp\n"
"hd_id3145577\n"
-"156\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
@@ -66555,7 +62188,6 @@ msgstr "དཔེར་བརྗོད་ཚུ།"
msgctxt ""
"func_time.xhp\n"
"par_id3156076\n"
-"157\n"
"help.text"
msgid "<item type=\"input\">=TIME(0;0;0)</item> returns 00:00:00"
msgstr ""
@@ -66564,7 +62196,6 @@ msgstr ""
msgctxt ""
"func_time.xhp\n"
"par_id3156090\n"
-"158\n"
"help.text"
msgid "<item type=\"input\">=TIME(4;20;4)</item> returns 04:20:04"
msgstr ""
@@ -66586,7 +62217,6 @@ msgid "<bookmark_value>TIMEVALUE function</bookmark_value>"
msgstr "<bookmark_value>TIMEVALUE ལས་འགན།</bookmark_value>"
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"hd_id3146755\n"
@@ -66595,7 +62225,6 @@ msgid "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\
msgstr "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\">TIMEVALUE</link></variable>"
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"par_id3148502\n"
@@ -66604,7 +62233,6 @@ msgid "<ahelp hid=\"HID_FUNC_ZEITWERT\">TIMEVALUE returns the internal time numb
msgstr "<ahelp hid=\"HID_FUNC_ZEITWERT\">TIMEVALUE གིས་འདྲེན་ཚིག་ཚུ་གི་མཉམ་སྦྲགས་འབད་ཡོདཔ་དང་ དུས་ཚོད་ཐོ་བཀོད་རྩ་སྒྲིག་སྟོན་ཚུགས་མི་ཚུ་ཚིག་ཡིག་ལས་དུས་ཚོད་ཨང་ནང་འཁོད་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"par_id3150794\n"
@@ -66621,7 +62249,6 @@ msgid "If the text string also includes a year, month, or day, TIMEVALUE only re
msgstr ""
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"hd_id3150810\n"
@@ -66630,7 +62257,6 @@ msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"par_id3150823\n"
@@ -66639,7 +62265,6 @@ msgid "TIMEVALUE(\"Text\")"
msgstr "དུས་ཚོད་གནས་གོང་།(\"Text\")"
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"par_id3152556\n"
@@ -66648,7 +62273,6 @@ msgid "<emph>Text</emph> is a valid time expression and must be entered in quota
msgstr "<emph> ཚིག་ཡིག་ </emph> འདི་ནུས་ཅན་དུས་ཚོད་གསལ་བརྗོད་ཨིནམ་ལས་ འདྲེན་ཚིག་རྟགས་ཚུ་ནང་བཙུགས་དགོསཔ་ཨིན།"
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"hd_id3146815\n"
@@ -66657,7 +62281,6 @@ msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"par_id3146829\n"
@@ -66666,7 +62289,6 @@ msgid "<item type=\"input\">=TIMEVALUE(\"4PM\")</item> returns 0.67. When format
msgstr "TIMEVALUE(\"4PM\") གིས་༠་༦༧ སླར་ལོག་འབདཝ་ཨིན། དུས་ཚོད་འདི་ HH:MM:SS རྩ་སྒྲིག་ནང་རྩ་སྒྲིག་འབདཝ་ད་ཁྱོད་ཀྱིས་ ༡༦:༠༠:༠༠ འཐོབ་ཨིན།"
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"par_id3153632\n"
@@ -66694,7 +62316,6 @@ msgstr "<bookmark_value> ད་རིས་ ལས་འགན། </bookmark_val
msgctxt ""
"func_today.xhp\n"
"hd_id3145659\n"
-"29\n"
"help.text"
msgid "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">TODAY</link></variable>"
msgstr "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\"> ད་རེས་ </link></variable>"
@@ -66703,7 +62324,6 @@ msgstr "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\"> ད
msgctxt ""
"func_today.xhp\n"
"par_id3153759\n"
-"30\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_HEUTE\">Returns the current computer system date.</ahelp> The value is updated when you reopen the document or modify the values of the document."
msgstr "<ahelp hid=\"HID_FUNC_HEUTE\"> གིས་ ད་ལྟོའི་གློག་རིག་རིམ་ལུགས་སླར་ལོག་འབདཝ་ཨིན། </ahelp> གནས་གོང་འདི་ཁྱོད་ཀྱིས་ཡིག་ཆ་འདི་ཡང་བསྐྱར་ཁ་ཕྱེཝ་ད་ཡང་ན་ ཡིག་ཆའི་གནས་གོང་ཚུ་ལེགས་བཅོས་འབདཝ་ད་ གནས་གོང་འདི་དུས་མཐུནམ་བཟོ་ཡོདཔ་ཨིན།"
@@ -66712,7 +62332,6 @@ msgstr "<ahelp hid=\"HID_FUNC_HEUTE\"> གིས་ ད་ལྟོའི་ག
msgctxt ""
"func_today.xhp\n"
"hd_id3154051\n"
-"31\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -66721,7 +62340,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_today.xhp\n"
"par_id3153154\n"
-"32\n"
"help.text"
msgid "TODAY()"
msgstr "ད་རིས།()"
@@ -66730,7 +62348,6 @@ msgstr "ད་རིས།()"
msgctxt ""
"func_today.xhp\n"
"par_id3154741\n"
-"33\n"
"help.text"
msgid "TODAY is a function without arguments."
msgstr ""
@@ -66739,7 +62356,6 @@ msgstr ""
msgctxt ""
"func_today.xhp\n"
"hd_id3153627\n"
-"34\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -66748,7 +62364,6 @@ msgstr "དཔེ།"
msgctxt ""
"func_today.xhp\n"
"par_id3156106\n"
-"35\n"
"help.text"
msgid "<item type=\"input\">TODAY()</item> returns the current computer system date."
msgstr ""
@@ -66762,7 +62377,6 @@ msgid "WEBSERVICE"
msgstr ""
#: func_webservice.xhp
-#, fuzzy
msgctxt ""
"func_webservice.xhp\n"
"bm_id3149012\n"
@@ -66774,7 +62388,6 @@ msgstr "<bookmark_value>ODDLPRICE ལས་འགན།</bookmark_value>"
msgctxt ""
"func_webservice.xhp\n"
"hd_id3149012\n"
-"186\n"
"help.text"
msgid "WEBSERVICE"
msgstr ""
@@ -66783,7 +62396,6 @@ msgstr ""
msgctxt ""
"func_webservice.xhp\n"
"par_id3149893\n"
-"187\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WEBSERVICE\">Get some web content from a URI.</ahelp>"
msgstr ""
@@ -66792,7 +62404,6 @@ msgstr ""
msgctxt ""
"func_webservice.xhp\n"
"hd_id3146944\n"
-"188\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -66801,7 +62412,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_webservice.xhp\n"
"par_id3154844\n"
-"189\n"
"help.text"
msgid "WEBSERVICE(URI)"
msgstr ""
@@ -66810,7 +62420,6 @@ msgstr ""
msgctxt ""
"func_webservice.xhp\n"
"par_id3147469\n"
-"190\n"
"help.text"
msgid "<emph>URI: </emph> URI text of the web service."
msgstr ""
@@ -66819,7 +62428,6 @@ msgstr ""
msgctxt ""
"func_webservice.xhp\n"
"hd_id3150141\n"
-"193\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -66828,7 +62436,6 @@ msgstr "དཔེ།"
msgctxt ""
"func_webservice.xhp\n"
"par_id3146142\n"
-"195\n"
"help.text"
msgid "=WEBSERVICE(\"http://api.openweathermap.org/data/2.5/forecast?q=Copenhagen,dk&mode=xml&units=metric\")"
msgstr ""
@@ -66842,7 +62449,6 @@ msgid "Returns the web page content of \"http://api.openweathermap.org/data/2.5/
msgstr ""
#: func_webservice.xhp
-#, fuzzy
msgctxt ""
"func_webservice.xhp\n"
"bm_id2949012\n"
@@ -66854,7 +62460,6 @@ msgstr "<bookmark_value>FISHER ལས་འགན།</bookmark_value>"
msgctxt ""
"func_webservice.xhp\n"
"hd_id2949012\n"
-"186\n"
"help.text"
msgid "FILTERXML"
msgstr ""
@@ -66863,7 +62468,6 @@ msgstr ""
msgctxt ""
"func_webservice.xhp\n"
"par_id2949893\n"
-"187\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FILTERXML\">Apply a XPath expression to a XML document.</ahelp>"
msgstr ""
@@ -66872,7 +62476,6 @@ msgstr ""
msgctxt ""
"func_webservice.xhp\n"
"hd_id2946944\n"
-"188\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -66881,7 +62484,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_webservice.xhp\n"
"par_id2954844\n"
-"189\n"
"help.text"
msgid "FILTERXML(XML Document; XPath expression)"
msgstr ""
@@ -66890,7 +62492,6 @@ msgstr ""
msgctxt ""
"func_webservice.xhp\n"
"par_id2947469\n"
-"190\n"
"help.text"
msgid "<emph>XML Document (required):</emph> String containing a valid XML stream."
msgstr ""
@@ -66899,7 +62500,6 @@ msgstr ""
msgctxt ""
"func_webservice.xhp\n"
"par_id2847469\n"
-"190\n"
"help.text"
msgid "<emph>XPath expression (required):</emph> String containing a valid XPath expression."
msgstr ""
@@ -66908,7 +62508,6 @@ msgstr ""
msgctxt ""
"func_webservice.xhp\n"
"hd_id2950141\n"
-"193\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -66917,7 +62516,6 @@ msgstr "དཔེ།"
msgctxt ""
"func_webservice.xhp\n"
"par_id2946142\n"
-"195\n"
"help.text"
msgid "=FILTERXML(WEBSERVICE(\"http://api.openweathermap.org/data/2.5/forecast?q=Copenhagen,dk&mode=xml&units=metric\");\"number(/weatherdata/forecast/time[2]/temperature/@value)\")"
msgstr ""
@@ -66950,25 +62548,22 @@ msgstr "<bookmark_value>WEEKDAY ལས་འགན།</bookmark_value>"
msgctxt ""
"func_weekday.xhp\n"
"hd_id3154925\n"
-"136\n"
"help.text"
-msgid "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link></variable>"
-msgstr "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link></variable>"
+msgid "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link> </variable>"
+msgstr ""
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
"par_id3154228\n"
-"137\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Returns the day of the week for the given date value.</ahelp> The day is returned as an integer between 1 (Sunday) and 7 (Saturday) if no type or type=1 is specified. If type=2, numbering begins at Monday=1; and if type=3 numbering begins at Monday=0."
-msgstr "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Returns the day of the week for the given date value.</ahelp> The day is returned as an integer between 1 (Sunday) and 7 (Saturday) if no type or type = 1 is specified. If type=2, numbering begins at Monday=1; and if type=3 numbering begins at Monday=0."
+msgid "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Returns the day of the week for the given date value.</ahelp> The day is returned as an integer between 1 (Sunday) and 7 (Saturday) if no type or type=1 is specified. For other types, see the table below."
+msgstr ""
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
"hd_id3147217\n"
-"138\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -66977,7 +62572,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_weekday.xhp\n"
"par_id3149033\n"
-"139\n"
"help.text"
msgid "WEEKDAY(Number; Type)"
msgstr "WEEKDAY(ཨང་; དབྱེ་བ།)"
@@ -66986,7 +62580,6 @@ msgstr "WEEKDAY(ཨང་; དབྱེ་བ།)"
msgctxt ""
"func_weekday.xhp\n"
"par_id3149046\n"
-"140\n"
"help.text"
msgid "<emph>Number</emph>, as a date value, is a decimal for which the weekday is to be returned."
msgstr "<emph> ཨང་ </emph> ཚེས་གནས་གོང་བཟུམ་སྦེ་ཡོད་མི་འདི་ བདུན་ཕྲག་ཉིནམ་སླར་ལོག་འབད་ནི་ཨིན་པའི་བཅུ་ཚག་ཨིན།"
@@ -66995,25 +62588,126 @@ msgstr "<emph> ཨང་ </emph> ཚེས་གནས་གོང་བཟུ
msgctxt ""
"func_weekday.xhp\n"
"par_id3154394\n"
-"141\n"
"help.text"
-msgid "<emph>Type</emph> determines the type of calculation. For Type=1, the weekdays are counted starting from Sunday (this is the default even when the Type parameter is missing). For Type=2, the weekdays are counted starting from Monday=1. For Type=3, the weekdays are counted starting from Monday=0."
-msgstr "<emph> དབྱེ་བ་གིས་ </emph> རྩིས་སྟོན་གྱི་དབྱེ་བ་གཏན་འབེབས་བཟོཝ་ཨིན། དབྱེ་བ་ =༡ དོན་ལུ་ བདུན་ཕྲག་ཉིནམ་ཚུ་གཟའ་ཟླཝ་ལས་རྩིས་ཡོདཔ་ཨིན། (འ་ནི་འདི་དབྱེ་བ་ཚད་བཟུང་ཡང་བརླག་སྟོར་ཞུགས་པའི་སྐབས་ཀྱི་སྔོན་སྒྲིག་ཨིན།) དབྱེ་བ་ =༢ དོན་ལུ་ བདུན་ཕྲག་ཉིནམ་ཚུ་གཟའ་མིག་དམར་ =༡ ལས་འགོ་བཙུགས་ཏེ་རྩིས་ཡོདཔ་ཨིན། དབྱེ་བ་ = ༣ དོན་ལུ་ བདུན་ཕྲག་ཉིནམ་ཚུ་ གཟའ་མིག་དམར་ = ༠ ལས་འགོ་བཙུགས་ཏེ་རྩིས་ཡོདཔ་ཨིན།"
+msgid "<emph>Type</emph> is optional and determines the type of calculation."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615596613\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id05022017061559141\n"
+"help.text"
+msgid "Weekday number returned"
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615599995\n"
+"help.text"
+msgid "1 or omitted"
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615597231\n"
+"help.text"
+msgid "1 (Sunday) through 7 (Saturday). For compatibility with Microsoft Excel."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615596260\n"
+"help.text"
+msgid "1 (Monday) through 7 (Sunday)."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615597630\n"
+"help.text"
+msgid "0 (Monday) through 6 (Sunday)"
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615592023\n"
+"help.text"
+msgid "1 (Monday) through 7 (Sunday)."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615591349\n"
+"help.text"
+msgid "1 (Tuesday) through 7 (Monday)."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615593664\n"
+"help.text"
+msgid "1 (Wednesday) through 7 (Tuesday)."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170615599110\n"
+"help.text"
+msgid "1 (Thursday) through 7 (Wednesday)."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id05022017061600535\n"
+"help.text"
+msgid "1 (Friday) through 7 (Thursday)."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170616003219\n"
+"help.text"
+msgid "1 (Saturday) through 7 (Friday)."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170616002095\n"
+"help.text"
+msgid "1 (Sunday) through 7 (Saturday)."
+msgstr ""
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
"par_id3156188\n"
-"142\n"
"help.text"
-msgid "These values apply only to the standard date format that you select under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Calculate</emph>."
+msgid "These values apply only to the standard date format that you select under <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><emph/><item type=\"menuitem\">- %PRODUCTNAME Calc - Calculate</item>."
msgstr ""
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
"hd_id3153836\n"
-"143\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
@@ -67022,46 +62716,49 @@ msgstr "དཔེར་བརྗོད་ཚུ།"
msgctxt ""
"func_weekday.xhp\n"
"par_id3150317\n"
-"144\n"
"help.text"
-msgid "=WEEKDAY(\"2000-06-14\") returns 4 (the Type parameter is missing, therefore the standard count is used. The standard count starts with Sunday as day number 1. June 14, 2000 was a Wednesday and therefore day number 4)."
-msgstr "WEEKDAY(\"6/14/2000\") གིས་ ༤ སླར་ལོག་འབདཝ་ཨིན། (དབྱེ་བ་ཚད་བཟུང་འདི་བརླག་སྟོར་ཞུགས་ཡོདཔ་ལས་བརྟེན་ གྱངས་ཁ་ཚད་ལྡན་འདི་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན། གྱངས་ཁ་ཚད་ལྡན་འདི་ གཟའ་ཟླཝ་དང་གཅིག་ཁར་ ཉིནམ་ཨང་ ༡ སྦེ་འགོ་བཙུགསཔ་ཨིན། དབྱིན་ལོ་ ༢༠༠༠ དབྱིན་ཟླ་ ༦ པའི་དབྱིན་ཚེས་ ༡༤ འདི་གཟའ་ཕུར་བུ་འབདཝ་ལས་བརྟེན་ ཉིནམ་ཨང་ ༤། )"
+msgid "<item type=\"literal\">=WEEKDAY(\"2000-06-14\")</item> returns 4 (the Type parameter is missing, therefore the standard count is used. The standard count starts with Sunday as day number 1. June 14, 2000 was a Wednesday and therefore day number 4)."
+msgstr ""
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
"par_id3153174\n"
-"145\n"
"help.text"
-msgid "=WEEKDAY(\"1996-07-24\";2) returns 3 (the Type parameter is 2, therefore Monday is day number 1. July 24, 1996 was a Wednesday and therefore day number 3)."
-msgstr "WEEKDAY(\"7/24/1996\";2) གིས་ ༣ སླར་ལོག་འབདཝ་ཨིན། (དབྱེ་བ་ཚད་བཟུང་འདི་ ༢ ཨིནམ་ལས་ གཟའ་མིག་དམར་འདི་ ཉིནམ་ཨང་ ༡། དབྱིན་ལོ་ ༡༩༩༦ དབྱིན་ཟླ་ ༧ པའི་དབྱིན་ཚེས་ ༢༤ འདི་གཟའ་ཕུར་བུ་འབདཝ་ལས་བརྟེན་ ཉིནམ་འདི་ ཨང་༣།)"
+msgid "<item type=\"literal\">=WEEKDAY(\"1996-07-24\";2)</item> returns 3 (the Type parameter is 2, therefore Monday is day number 1. July 24, 1996 was a Wednesday and therefore day number 3)."
+msgstr ""
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
"par_id3153525\n"
-"146\n"
"help.text"
-msgid "=WEEKDAY(\"1996-07-24\";1) returns 4 (the Type parameter is 1, therefore Sunday is day number 1. July 24, 1996 was a Wednesday and therefore day number 4)."
-msgstr "WEEKDAY (\"7/24/1996\";1) གིས་ ༤ སླར་ལོག་འབདཝ་ཨིན་ (དབྱེ་བ་ཚད་བཟུང་འདི་ ༡ ཨིནམ་ལས་ གཟའ་ཟླཝ་འདི་ ཨང་ ༡ཉིནམ་ཨིན། དབྱིན་ལོ་༡༩༩༦ དབྱིན་ཟླ་ ༧ པའི་དབྱིན་ཚེས་ ༢༤ འདི་གཟའ་ཕུར་བུ་ཨིན་པ་ལུ་བརྟེན་ ཉིནམ་ཨང་ ༤།)"
+msgid "<item type=\"literal\">=WEEKDAY(\"1996-07-24\";1)</item> returns 4 (the Type parameter is 1, therefore Sunday is day number 1. July 24, 1996 was a Wednesday and therefore day number 4)."
+msgstr ""
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id050220170616006699\n"
+"help.text"
+msgid "<item type=\"literal\">=WEEKDAY(\"</item><item type=\"literal\">2017</item><item type=\"literal\">-0</item><item type=\"literal\">5</item><item type=\"literal\">-</item><item type=\"literal\">02</item><item type=\"literal\">\";1</item><item type=\"literal\">4</item><item type=\"literal\">)</item> returns 6 (the Type parameter is 14, therefore Thursday is day number 1. May 2, 2017 was a Tuesday and therefore day number 6)"
+msgstr ""
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
"par_id3150575\n"
-"147\n"
"help.text"
-msgid "=WEEKDAY(NOW()) returns the number of the current day."
-msgstr "WEEKDAY(NOW()) གིས་ད་ལྟོའི་ཉིནམ་གྱི་གྱངས་ཁ་སླར་ལོག་འབདཝ་ཨིན།"
+msgid "<item type=\"literal\">=WEEKDAY(NOW())</item> returns the number of the current day."
+msgstr ""
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
"par_id3150588\n"
-"171\n"
"help.text"
-msgid "To obtain a function indicating whether a day in A1 is a business day, use the IF and WEEKDAY functions as follows: <br/>IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")"
-msgstr "ཨེ་ ༡ ནང་ཉིནམ་ འདི་ཚོང་འབྲེལ་ཉིནམ་ཨིན་མེན་བརྡ་སྟོན་ནི་ལུ་ལས་འགན་གཅིག་ལེན་ནིའི་དོན་ལུ་ ཨའི་ཨེཕ་དང་ བདུན་ཕྲག་ཉིནམ་ལས་འགན་ཚུ་འོག་ལུ་ཡོད་པ་ལྟར་ལག་ལེན་འཐབ་: IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")"
+msgid "To obtain a function indicating whether a day in A1 is a business day, use the IF and WEEKDAY functions as follows: <br/><item type=\"literal\">IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")</item>"
+msgstr ""
#: func_weeknum.xhp
msgctxt ""
@@ -67083,7 +62780,6 @@ msgstr "<bookmark_value>WEEKNUM ལས་འགན།</bookmark_value>"
msgctxt ""
"func_weeknum.xhp\n"
"hd_id3159161\n"
-"54\n"
"help.text"
msgid "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
msgstr "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
@@ -67092,7 +62788,6 @@ msgstr "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">W
msgctxt ""
"func_weeknum.xhp\n"
"par_id3149770\n"
-"55\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM calculates the week number of the year for the internal date value as defined in ODF OpenFormula and compatible with other spreadsheet applications.</ahelp>"
msgstr ""
@@ -67125,17 +62820,14 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"hd_id3153055\n"
-"56\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: func_weeknum.xhp
-#, fuzzy
msgctxt ""
"func_weeknum.xhp\n"
"par_id3147236\n"
-"57\n"
"help.text"
msgid "WEEKNUM(Number [; Mode])"
msgstr "WEEKNUM(ཨང་; ཐབས་ལམ།)"
@@ -67144,7 +62836,6 @@ msgstr "WEEKNUM(ཨང་; ཐབས་ལམ།)"
msgctxt ""
"func_weeknum.xhp\n"
"par_id3147511\n"
-"58\n"
"help.text"
msgid "<emph>Number</emph> is the internal date number."
msgstr "<emph> ཨང་ </emph> འདི་ནང་འཁོད་གནད་སྡུད་ཨང་ཨིན།"
@@ -67153,7 +62844,6 @@ msgstr "<emph> ཨང་ </emph> འདི་ནང་འཁོད་གནད
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154269\n"
-"59\n"
"help.text"
msgid "<emph>Mode</emph> sets the start of the week and the week numbering system. This parameter is optional, if omitted the default value is 1."
msgstr ""
@@ -67162,7 +62852,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3148930\n"
-"60\n"
"help.text"
msgid "1 = Sunday, system 1"
msgstr ""
@@ -67171,7 +62860,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154280\n"
-"61\n"
"help.text"
msgid "2 = Monday, system 1"
msgstr ""
@@ -67180,7 +62868,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154281\n"
-"71\n"
"help.text"
msgid "11 = Monday, system 1"
msgstr ""
@@ -67189,7 +62876,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154282\n"
-"72\n"
"help.text"
msgid "12 = Tuesday, system 1"
msgstr ""
@@ -67198,7 +62884,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154283\n"
-"73\n"
"help.text"
msgid "13 = Wednesday, system 1"
msgstr ""
@@ -67207,7 +62892,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154284\n"
-"74\n"
"help.text"
msgid "14 = Thursday, system 1"
msgstr ""
@@ -67216,7 +62900,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154285\n"
-"75\n"
"help.text"
msgid "15 = Friday, system 1"
msgstr ""
@@ -67225,7 +62908,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154286\n"
-"76\n"
"help.text"
msgid "16 = Saturday, system 1"
msgstr ""
@@ -67234,7 +62916,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154287\n"
-"77\n"
"help.text"
msgid "17 = Sunday, system 1"
msgstr ""
@@ -67243,7 +62924,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154288\n"
-"81\n"
"help.text"
msgid "21 = Monday, system 2 (ISO 8601)"
msgstr ""
@@ -67252,7 +62932,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3154289\n"
-"110\n"
"help.text"
msgid "150 = Monday, system 2 (ISO 8601, for interoperability with Gnumeric)"
msgstr ""
@@ -67261,7 +62940,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"hd_id3146948\n"
-"62\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
@@ -67270,17 +62948,14 @@ msgstr "དཔེར་བརྗོད་ཚུ།"
msgctxt ""
"func_weeknum.xhp\n"
"par_id3150704\n"
-"65\n"
"help.text"
msgid "=WEEKNUM(DATE(1995;1;1);1) returns 1"
msgstr ""
#: func_weeknum.xhp
-#, fuzzy
msgctxt ""
"func_weeknum.xhp\n"
"par_id3149792\n"
-"64\n"
"help.text"
msgid "=WEEKNUM(DATE(1995;1;1);2) returns 52. If the week starts on Monday, Sunday belongs to the last week of the previous year."
msgstr "WEEKNUM(\"1/1/95\";2) ༥༢ སླར་ལོག་འབདཝ་ཨིན། བདུན་ཕྲག་འདི་གཟའ་མིག་དམར་ལུ་འགོ་བཙུགས་པ་ཅིན་ གཟའ་ཟླཝ་འདི་ ལོ་ཧེ་མམ་གྱི་མཇུག་གི་བདུན་ཕྲག་ལུ་བངམ་ཨིན།"
@@ -67289,7 +62964,6 @@ msgstr "WEEKNUM(\"1/1/95\";2) ༥༢ སླར་ལོག་འབདཝ་ཨ
msgctxt ""
"func_weeknum.xhp\n"
"par_id3149793\n"
-"66\n"
"help.text"
msgid "=WEEKNUM(DATE(1995;1;1);21) returns 52. Week 1 starts on Monday, 1995-01-02."
msgstr ""
@@ -67298,7 +62972,6 @@ msgstr ""
msgctxt ""
"func_weeknum.xhp\n"
"par_id3149794\n"
-"67\n"
"help.text"
msgid "=WEEKNUM(DATE(1999;1;1);21) returns 53. Week 1 starts on Monday, 1999-01-04."
msgstr ""
@@ -67312,7 +62985,6 @@ msgid "WEEKNUM_OOO"
msgstr ""
#: func_weeknum_ooo.xhp
-#, fuzzy
msgctxt ""
"func_weeknum_ooo.xhp\n"
"bm_id3159161\n"
@@ -67321,21 +62993,17 @@ msgid "<bookmark_value>WEEKNUM_OOO function</bookmark_value>"
msgstr "<bookmark_value>WEEKNUM_ADD ལས་འགན། </bookmark_value>"
#: func_weeknum_ooo.xhp
-#, fuzzy
msgctxt ""
"func_weeknum_ooo.xhp\n"
"hd_id3159161\n"
-"54\n"
"help.text"
msgid "<variable id=\"weeknum_ooo\"><link href=\"text/scalc/01/func_weeknum_ooo.xhp\">WEEKNUM_OOO</link></variable>"
msgstr "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_ADD</link></variable>"
#: func_weeknum_ooo.xhp
-#, fuzzy
msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_id3149770\n"
-"55\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WEEKNUM_OOO\">WEEKNUM_OOO calculates the week number of the year for the internal date value.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM གིས་ནང་འཁོད་གནད་སྡུད་གནས་གོང་གི་དོན་ལུ་ལོའི་བདུན་ཕྲག་གྱངས་ཁ་རྩིས་སྟོན་འབདཝ་ཨིན། </ahelp>"
@@ -67345,55 +63013,45 @@ msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_idN105E4\n"
"help.text"
-msgid "This function exists for interoperability with LibreOffice releases older than 5.1.0 and OpenOffice.org. It calculates week numbers for a week numbering system in that week number 1 is the week that contains the January 4th. This function does not provide interoperability with other spreadsheet applications. For new documents use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> or <link href=\"text/scalc/01/func_isoweeknum.xhp\">ISOWEEKNUM</link> function instead."
+msgid "This function exists for interoperability with %PRODUCTNAME releases older than 5.1.0 and OpenOffice.org. It calculates week numbers for a week numbering system in that week number 1 is the week that contains the January 4th. This function does not provide interoperability with other spreadsheet applications. For new documents use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> or <link href=\"text/scalc/01/func_isoweeknum.xhp\">ISOWEEKNUM</link> function instead."
msgstr ""
#: func_weeknum_ooo.xhp
-#, fuzzy
msgctxt ""
"func_weeknum_ooo.xhp\n"
"hd_id3153055\n"
-"56\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
#: func_weeknum_ooo.xhp
-#, fuzzy
msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_id3147236\n"
-"57\n"
"help.text"
msgid "WEEKNUM_OOO(Number; Mode)"
msgstr "WEEKNUM(ཨང་; ཐབས་ལམ།)"
#: func_weeknum_ooo.xhp
-#, fuzzy
msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_id3147511\n"
-"58\n"
"help.text"
msgid "<emph>Number</emph> is the internal date number."
msgstr "<emph> ཨང་ </emph> འདི་ནང་འཁོད་གནད་སྡུད་ཨང་ཨིན།"
#: func_weeknum_ooo.xhp
-#, fuzzy
msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_id3154269\n"
-"59\n"
"help.text"
msgid "<emph>Mode</emph> sets the start of the week and the calculation type."
msgstr "<emph> ཐབས་ལམ་ </emph> གིས་བདུན་ཕྲག་གི་འགོ་བཙུགས་དང་རྩིས་སྟོན་དབྱེ་བ་གཞི་སྒྲིག་འབདཝ་ཨིན།"
#: func_weeknum_ooo.xhp
-#, fuzzy
msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_id3148930\n"
-"60\n"
"help.text"
msgid "1 = Sunday"
msgstr "༡=ཟླ་བ།"
@@ -67402,7 +63060,6 @@ msgstr "༡=ཟླ་བ།"
msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_id3154280\n"
-"61\n"
"help.text"
msgid "2 = Monday (ISO 8601)"
msgstr ""
@@ -67411,17 +63068,14 @@ msgstr ""
msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_id3154281\n"
-"66\n"
"help.text"
msgid "any other value = Monday (ISO 8601)"
msgstr ""
#: func_weeknum_ooo.xhp
-#, fuzzy
msgctxt ""
"func_weeknum_ooo.xhp\n"
"hd_id3146948\n"
-"62\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
@@ -67430,7 +63084,6 @@ msgstr "དཔེར་བརྗོད་ཚུ།"
msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_id3150704\n"
-"65\n"
"help.text"
msgid "=WEEKNUM_OOO(DATE(1995;1;1);1) returns 1"
msgstr ""
@@ -67439,7 +63092,6 @@ msgstr ""
msgctxt ""
"func_weeknum_ooo.xhp\n"
"par_id3149792\n"
-"64\n"
"help.text"
msgid "=WEEKNUM_OOO(DATE(1995;1;1);2) returns 52. Week 1 starts on Monday, 1995-01-02."
msgstr ""
@@ -67453,7 +63105,6 @@ msgid "WEEKNUM_EXCEL2003"
msgstr ""
#: func_weeknumadd.xhp
-#, fuzzy
msgctxt ""
"func_weeknumadd.xhp\n"
"bm_id3166443\n"
@@ -67462,11 +63113,9 @@ msgid "<bookmark_value>WEEKNUM_EXCEL2003 function</bookmark_value>"
msgstr "<bookmark_value>WEEKNUM_ADD ལས་འགན། </bookmark_value>"
#: func_weeknumadd.xhp
-#, fuzzy
msgctxt ""
"func_weeknumadd.xhp\n"
"hd_id3166443\n"
-"222\n"
"help.text"
msgid "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_EXCEL2003</link></variable>"
msgstr "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_ADD</link></variable>"
@@ -67475,7 +63124,6 @@ msgstr "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.x
msgctxt ""
"func_weeknumadd.xhp\n"
"par_id3152945\n"
-"223\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\">The result indicates the number of the calendar week for a date.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\"> གྲུབ་འབྲས་ཀྱིས་ <emph> ཚེས་ </emph> ལུ་ཟླ་ཐོ་བདུན་ཕྲག་གི་གྱངས་ཁ་བརྡ་སྟོན་འབདཝ་ཨིན། </ahelp>"
@@ -67492,7 +63140,6 @@ msgstr ""
msgctxt ""
"func_weeknumadd.xhp\n"
"hd_id3153745\n"
-"224\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -67501,7 +63148,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_weeknumadd.xhp\n"
"par_id3153685\n"
-"225\n"
"help.text"
msgid "WEEKNUM_EXCEL2003(Date; ReturnType)"
msgstr ""
@@ -67510,7 +63156,6 @@ msgstr ""
msgctxt ""
"func_weeknumadd.xhp\n"
"par_id3159277\n"
-"226\n"
"help.text"
msgid "<emph>Date</emph> is the date within the calendar week."
msgstr "<emph> ཚེས་ </emph>: ཟླ་ཐོ་བདུན་ཕྲག་ནང་འཁོད་ཀྱི་ཚེས།"
@@ -67519,7 +63164,6 @@ msgstr "<emph> ཚེས་ </emph>: ཟླ་ཐོ་བདུན་ཕྲག
msgctxt ""
"func_weeknumadd.xhp\n"
"par_id3154098\n"
-"227\n"
"help.text"
msgid "<emph>ReturnType</emph> is 1 for week beginning on a Sunday, 2 for week beginning on a Monday."
msgstr "<emph> སླར་ལོག་དབྱེ་བ་ </emph>: ༡ འདི་གཟའ་ཟླཝ་ལུ་བདུན་ཕྲག་འགོ་བཙུགས་ད་དང་ ༢ འདི་གཟའ་མིག་དམར་ལུ་བདུན་ཕྲག་འགོ་བཙུགསཔ་ད་ཨིན།"
@@ -67528,17 +63172,14 @@ msgstr "<emph> སླར་ལོག་དབྱེ་བ་ </emph>: ༡ འད
msgctxt ""
"func_weeknumadd.xhp\n"
"hd_id3152886\n"
-"228\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
#: func_weeknumadd.xhp
-#, fuzzy
msgctxt ""
"func_weeknumadd.xhp\n"
"par_id3149973\n"
-"229\n"
"help.text"
msgid "In which week number does 2001-12-24 fall?"
msgstr "༡༢.༢༤.༢༠༠༡ འདི་བདུན་ཕྲག་ཨང་ག་འདི་ནང་ལུ་ཕོགཔ་སྨོ?"
@@ -67547,344 +63188,333 @@ msgstr "༡༢.༢༤.༢༠༠༡ འདི་བདུན་ཕྲག་ཨང
msgctxt ""
"func_weeknumadd.xhp\n"
"par_id3149914\n"
-"230\n"
"help.text"
msgid "<item type=\"input\">=WEEKNUM_EXCEL2003(DATE(2001;12;24);1)</item> returns 52."
msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
+"func_workday.intl.xhp\n"
"tit\n"
"help.text"
-msgid "WORKDAY"
-msgstr "ཉིན་ལཱ།"
+msgid "WORKDAY.INTL"
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"bm_id3149012\n"
+"func_workday.intl.xhp\n"
+"bm_id231020162341219565\n"
"help.text"
-msgid "<bookmark_value>WORKDAY function</bookmark_value>"
-msgstr "<bookmark_value>ཉིན་ལཱ་ལས་འགན། </bookmark_value>"
+msgid "<bookmark_value>WORKDAY.INTL function</bookmark_value>"
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"hd_id3149012\n"
-"186\n"
+"func_workday.intl.xhp\n"
+"hd_id231020162348002143\n"
"help.text"
-msgid "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
-msgstr "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\"> ཉིན་ལཱ་ </link></variable>"
+msgid "<variable id=\"workdaysintl\"><link href=\"text/scalc/01/func_workday.intl.xhp\">WORKDAY.INTL</link></variable>"
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3149893\n"
-"187\n"
+"func_workday.intl.xhp\n"
+"par_id23102016234837285\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> The result is a date number that can be formatted as a date. You then see the date of a day that is a certain number of <emph>workdays</emph> away from the <emph>start date</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> གྲུབ་འབྲས་འདི་ཚེས་སྦེ་རྩ་སྒྲིག་འབད་བཏུབ་པའི་ཚེས་ཨང་ཨིན། དེ་ལས་ཁྱོད་ཀྱིས་ <emph> ཉིན་ལཱ་ཚུ་དང་ </emph> <emph> ཚེས་འགོ་བཙུགས་ </emph> ལས་ཕྱི་ཁར་ ཚུ་གི་ཨང་ལ་ལོ་ཅིག་ཨིན་པའི་ཉིནམ་གྱི་ཚེས་བལྟ། </ahelp>"
+msgid "<ahelp hid=\".\">The result is a date number that can be formatted as a date. User can see the date of a day that is a certain number of workdays away from the start date (before or after). There are options to define weekend days and holidays. The optional weekend parameter (or a string) can be used to define the weekend days (or the non-working days in each week). Also, optionally, the user can define a holiday list. The weekend days and user-defined holidays are not counted as working days.</ahelp>"
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"hd_id3146944\n"
-"188\n"
+"func_workday.intl.xhp\n"
+"hd_id241020160008306802\n"
"help.text"
msgid "Syntax"
-msgstr "ཚུག་སྦྱོར།"
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3154844\n"
-"189\n"
+"func_workday.intl.xhp\n"
+"par_id241020160008306838\n"
"help.text"
-msgid "WORKDAY(StartDate; Days; Holidays)"
-msgstr "WORKDAY (ཚེས་འགོ་བཙུགས་ ;ཉིན་གྲངས་ཚུ་ ; ངལ་གསོ་ཚུ།)"
+msgid "<item type=\"literal\">WORKDAY.INTL(StartDate; Days; Weekend; Holidays)</item>"
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3147469\n"
-"190\n"
+"func_workday.intl.xhp\n"
+"par_id241020160008308885\n"
"help.text"
-msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
-msgstr "<emph> ཚེས་གྲངས་འགོ་བཙུགས་ </emph>: རྩིས་ལས་འདི་ནམ་སྟོན་ཏེ་ཡོདཔ་ཨིན་ན་གི་ཚེས་གྲངས། འགོ་བཙུགས་ཚེས་གྲངས་འདི་ ཉིན་ལཱ་ཨིན་པ་ཅིན་ ཉིནམ་འདི་ རྩིས་ལས་ནང་ལུ་གྲངས་སུ་བཙུགས་ཏེ་ཡོདཔ་ཨིན།"
+msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation. This is required."
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3153038\n"
-"191\n"
+"func_workday.intl.xhp\n"
+"par_id241020160008305329\n"
"help.text"
msgid "<emph>Days</emph> is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date."
-msgstr "<emph> ཉིན་གྲངས་ཚུ་ </emph>: ཉིན་ལཱ་ཚུའི་གྱངས། གྲུབ་འབྲས་ལུ་ཚེས་འགོ་བཙུགས་ཀྱི་ཤུལ་ལས་ཡོད་ཆ་གནས་གོང་ གྲུབ་འབྲས་ལུ་ཚེས་འགོ་བཙུགས་ཀྱི་ཧེ་མ་མེད་ཆ་གནས་གོང་།"
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3150693\n"
-"192\n"
+"func_workday.intl.xhp\n"
+"hd_id241020160012172138\n"
"help.text"
-msgid "<emph>Holidays</emph> is a list of optional holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
-msgstr "<emph> ངལ་གསོ་ཚུ་ </emph>: ངལ་གསོ་གདམ་ཁ་ཅན་ཚུའི་ཐོ་བཀོད། འ་ནི་ཚུ་ལཱ་འབད་ནི་མེན་པའི་ཉིནམ་ཚུ་ཨིན། ངལ་གསོ་ཚུ་རེ་རེ་སྦེ་ཐོ་བཀོད་འབད་དེ་ཡོད་ས་ནང་ནང་ཐིག་ཁྱབ་ཚད་བཙུགས།"
+msgid "Example"
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"hd_id3150141\n"
-"193\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012177196\n"
"help.text"
-msgid "Example"
-msgstr "དཔེ།"
+msgid "What date comes 20 workdays after December 13, 2016? Enter the start date in C3 and the number of workdays in D3."
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3152782\n"
-"194\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012178429\n"
"help.text"
-msgid "What date came 17 workdays after 1 December 2001? Enter the start date \"2001-12-01\" in C3 and the number of workdays in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-msgstr "དབྱིན་ལོ་ ༢༠༠༡ དབྱིན་ཟླ་ ༡༢ པའི་དབྱིན་ཚེས་ ༡ ཉིན་ལཱ་ ༡༧ གྱི་ཤུལ་མ་ཚེས་གྲངས་ག་ཅི་འོངམ་སྨོ? འགོ་བཙུགས་བའི་ཚེས་ \"12/1/2001\" འདི་སི་ ༣ དང་ཉིན་ལཱ་གི་གྱངས་ཁ་འདི་ ཌི་༣ ནང་བཙུགས། ནང་ཐིག་ ཨེཕ་ ༣ དང་ ཇེ་ ༣ ནང་ལུ་འོག་ལུ་ཡོད་པའི་ཀིརིསིཊི་མཱསི་དང་ ལོ་གསར་ངལ་གསོ་ཚུ་ཤོམ་ཏེ་ཡོདཔ་ཨིན། \"12/24/2001\", \"12/25/2001\", \"12/26/2001\", \"12/31/2001\", \"1/1/2002\"."
+msgid "The weekend parameter (number) may be left blank or defined as 1 for default weekend (non-working days) – Saturday and Sunday."
+msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3146142\n"
-"195\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012172125\n"
"help.text"
-msgid "=WORKDAY(C3;D3;F3:J3) returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD."
+msgid "Cells F3 to J3 contain five (5) holidays for Christmas and New Year in date format: December 24, 2016; December 25, 2016; December 26, 2016; December 31, 2016; and January 1, 2017."
msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id231020162253594361\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012177923\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link>"
+msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;;F3:J3)</item> returns January 11, 2017 in the result cell, say D6 (use date format for the cell)."
msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id241020160012187036\n"
+"func_workday.intl.xhp\n"
+"par_id24102016001217206\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_networkdays.intl.xhp\">NETWORKDAYS.INTL</link>"
+msgid "To define Friday and Saturday as weekend days, use the weekend parameter 7."
msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id241030160012187036\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012178562\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_workdays.intl.xhp\">WORKDAYS.INTL</link>"
+msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;7;F3:J3)</item> returns January 15, 2017 with weekend parameter 7."
msgstr ""
-#: func_workday.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id23102016225717242\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012176149\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060102.xhp\">Date functions</link>"
+msgid "To define Sunday only the weekend day, use the weekend parameter 11."
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"tit\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012181455\n"
"help.text"
-msgid "WORKDAYS.INTL"
+msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;11;F3:J3)</item> returns January 9, 2017."
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"bm_id231020162341219565\n"
+"func_workday.intl.xhp\n"
+"par_id24102016001218469\n"
"help.text"
-msgid "<bookmark_value>WORKDAYS.INTL function</bookmark_value>"
+msgid "Alternatively, use the weekend string “0000001” for Sunday only weekend."
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"hd_id231020162348002143\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012183680\n"
"help.text"
-msgid "<variable id=\"workdaysintl\"><link href=\"text/scalc/01/func_workdays.intl.xhp\">WORKDAYS.INTL</link></variable>"
+msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;“0000001”;F3:J3)</item> returns January 9, 2017."
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id23102016234837285\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012181870\n"
"help.text"
-msgid "<ahelp hid=\".\">The result is a date number that can be formatted as a date. User can see the date of a day that is a certain number of workdays away from the start date (before or after). There are options to define weekend days and holidays. The optional weekend parameter (or a string) can be used to define the weekend days (or the non-working days in each week). Also, optionally, the user can define a holiday list. The weekend days and user-defined holidays are not counted as working days.</ahelp>"
+msgid "The function can be used without the two optional parameters – Weekday and Holidays – by leaving them out:"
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"hd_id241020160008306802\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012182048\n"
"help.text"
-msgid "Syntax"
+msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3)</item> gives the result: January 10, 2017."
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160008306838\n"
+"func_workday.intl.xhp\n"
+"par_id231020162253594361\n"
"help.text"
-msgid "<item type=\"literal\">WORKDAY.INTL(StartDate; Days; Weekend; Holidays)</item>"
+msgid "<link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link>"
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160008308885\n"
+"func_workday.intl.xhp\n"
+"par_id241020160012187036\n"
"help.text"
-msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation. This is required."
+msgid "<link href=\"text/scalc/01/func_networkdays.intl.xhp\">NETWORKDAYS.INTL</link>"
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160008305329\n"
+"func_workday.intl.xhp\n"
+"par_id241030160012187036\n"
"help.text"
-msgid "<emph>Days</emph> is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date."
+msgid "<link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link>"
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.intl.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"hd_id241020160012172138\n"
+"func_workday.intl.xhp\n"
+"par_id23102016225717242\n"
"help.text"
-msgid "Example"
+msgid "<link href=\"text/scalc/01/04060102.xhp\">Date functions</link>"
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160012177196\n"
+"func_workday.xhp\n"
+"tit\n"
"help.text"
-msgid "What date comes 20 workdays after December 13, 2016? Enter the start date in C3 and the number of workdays in D3."
-msgstr ""
+msgid "WORKDAY"
+msgstr "ཉིན་ལཱ།"
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160012178429\n"
+"func_workday.xhp\n"
+"bm_id3149012\n"
"help.text"
-msgid "The weekend parameter (number) may be left blank or defined as 1 for default weekend (non-working days) – Saturday and Sunday."
-msgstr ""
+msgid "<bookmark_value>WORKDAY function</bookmark_value>"
+msgstr "<bookmark_value>ཉིན་ལཱ་ལས་འགན། </bookmark_value>"
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160012172125\n"
+"func_workday.xhp\n"
+"hd_id3149012\n"
"help.text"
-msgid "Cells F3 to J3 contain five (5) holidays for Christmas and New Year in date format: December 24, 2016; December 25, 2016; December 26, 2016; December 31, 2016; and January 1, 2017."
-msgstr ""
+msgid "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
+msgstr "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\"> ཉིན་ལཱ་ </link></variable>"
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160012177923\n"
+"func_workday.xhp\n"
+"par_id3149893\n"
"help.text"
-msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;;F3:J3)</item> returns January 11, 2017 in the result cell, say D6 (use date format for the cell)."
-msgstr ""
+msgid "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> The result is a date number that can be formatted as a date. You then see the date of a day that is a certain number of <emph>workdays</emph> away from the <emph>start date</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> གྲུབ་འབྲས་འདི་ཚེས་སྦེ་རྩ་སྒྲིག་འབད་བཏུབ་པའི་ཚེས་ཨང་ཨིན། དེ་ལས་ཁྱོད་ཀྱིས་ <emph> ཉིན་ལཱ་ཚུ་དང་ </emph> <emph> ཚེས་འགོ་བཙུགས་ </emph> ལས་ཕྱི་ཁར་ ཚུ་གི་ཨང་ལ་ལོ་ཅིག་ཨིན་པའི་ཉིནམ་གྱི་ཚེས་བལྟ། </ahelp>"
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id24102016001217206\n"
+"func_workday.xhp\n"
+"hd_id3146944\n"
"help.text"
-msgid "To define Friday and Saturday as weekend days, use the weekend parameter 7."
-msgstr ""
+msgid "Syntax"
+msgstr "ཚུག་སྦྱོར།"
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160012178562\n"
+"func_workday.xhp\n"
+"par_id3154844\n"
"help.text"
-msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;7;F3:J3)</item> returns January 15, 2017 with weekend parameter 7."
-msgstr ""
+msgid "WORKDAY(StartDate; Days; Holidays)"
+msgstr "WORKDAY (ཚེས་འགོ་བཙུགས་ ;ཉིན་གྲངས་ཚུ་ ; ངལ་གསོ་ཚུ།)"
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160012176149\n"
+"func_workday.xhp\n"
+"par_id3147469\n"
"help.text"
-msgid "To define Sunday only the weekend day, use the weekend parameter 11."
-msgstr ""
+msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
+msgstr "<emph> ཚེས་གྲངས་འགོ་བཙུགས་ </emph>: རྩིས་ལས་འདི་ནམ་སྟོན་ཏེ་ཡོདཔ་ཨིན་ན་གི་ཚེས་གྲངས། འགོ་བཙུགས་ཚེས་གྲངས་འདི་ ཉིན་ལཱ་ཨིན་པ་ཅིན་ ཉིནམ་འདི་ རྩིས་ལས་ནང་ལུ་གྲངས་སུ་བཙུགས་ཏེ་ཡོདཔ་ཨིན།"
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160012181455\n"
+"func_workday.xhp\n"
+"par_id3153038\n"
"help.text"
-msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;11;F3:J3)</item> returns January 9, 2017."
-msgstr ""
+msgid "<emph>Days</emph> is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date."
+msgstr "<emph> ཉིན་གྲངས་ཚུ་ </emph>: ཉིན་ལཱ་ཚུའི་གྱངས། གྲུབ་འབྲས་ལུ་ཚེས་འགོ་བཙུགས་ཀྱི་ཤུལ་ལས་ཡོད་ཆ་གནས་གོང་ གྲུབ་འབྲས་ལུ་ཚེས་འགོ་བཙུགས་ཀྱི་ཧེ་མ་མེད་ཆ་གནས་གོང་།"
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id24102016001218469\n"
+"func_workday.xhp\n"
+"par_id3150693\n"
"help.text"
-msgid "Alternatively, use the weekend string “0000001” for Sunday only weekend."
-msgstr ""
+msgid "<emph>Holidays</emph> is a list of optional holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
+msgstr "<emph> ངལ་གསོ་ཚུ་ </emph>: ངལ་གསོ་གདམ་ཁ་ཅན་ཚུའི་ཐོ་བཀོད། འ་ནི་ཚུ་ལཱ་འབད་ནི་མེན་པའི་ཉིནམ་ཚུ་ཨིན། ངལ་གསོ་ཚུ་རེ་རེ་སྦེ་ཐོ་བཀོད་འབད་དེ་ཡོད་ས་ནང་ནང་ཐིག་ཁྱབ་ཚད་བཙུགས།"
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160012183680\n"
+"func_workday.xhp\n"
+"hd_id3150141\n"
"help.text"
-msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;“0000001”;F3:J3)</item> returns January 9, 2017."
-msgstr ""
+msgid "Example"
+msgstr "དཔེ།"
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160012181870\n"
+"func_workday.xhp\n"
+"par_id3152782\n"
"help.text"
-msgid "The function can be used without the two optional parameters – Weekday and Holidays – by leaving them out:"
-msgstr ""
+msgid "What date came 17 workdays after 1 December 2001? Enter the start date \"2001-12-01\" in C3 and the number of workdays in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
+msgstr "དབྱིན་ལོ་ ༢༠༠༡ དབྱིན་ཟླ་ ༡༢ པའི་དབྱིན་ཚེས་ ༡ ཉིན་ལཱ་ ༡༧ གྱི་ཤུལ་མ་ཚེས་གྲངས་ག་ཅི་འོངམ་སྨོ? འགོ་བཙུགས་བའི་ཚེས་ \"12/1/2001\" འདི་སི་ ༣ དང་ཉིན་ལཱ་གི་གྱངས་ཁ་འདི་ ཌི་༣ ནང་བཙུགས། ནང་ཐིག་ ཨེཕ་ ༣ དང་ ཇེ་ ༣ ནང་ལུ་འོག་ལུ་ཡོད་པའི་ཀིརིསིཊི་མཱསི་དང་ ལོ་གསར་ངལ་གསོ་ཚུ་ཤོམ་ཏེ་ཡོདཔ་ཨིན། \"12/24/2001\", \"12/25/2001\", \"12/26/2001\", \"12/31/2001\", \"1/1/2002\"."
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
-"par_id241020160012182048\n"
+"func_workday.xhp\n"
+"par_id3146142\n"
"help.text"
-msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3)</item> gives the result: January 10, 2017."
+msgid "=WORKDAY(C3;D3;F3:J3) returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD."
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
+"func_workday.xhp\n"
"par_id231020162253594361\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link>"
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
+"func_workday.xhp\n"
"par_id241020160012187036\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_networkdays.intl.xhp\">NETWORKDAYS.INTL</link>"
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
+"func_workday.xhp\n"
"par_id241030160012187036\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_workday.xhp\">WORKDAYS</link>"
+msgid "<link href=\"text/scalc/01/func_workday.intl.xhp\">WORKDAY.INTL</link>"
msgstr ""
-#: func_workdays.intl.xhp
+#: func_workday.xhp
msgctxt ""
-"func_workdays.intl.xhp\n"
+"func_workday.xhp\n"
"par_id23102016225717242\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060102.xhp\">Date functions</link>"
@@ -67910,7 +63540,6 @@ msgstr "<bookmark_value> ལོ་ལས་འགན་ </bookmark_value>"
msgctxt ""
"func_year.xhp\n"
"hd_id3153982\n"
-"37\n"
"help.text"
msgid "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">YEAR</link></variable>"
msgstr "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\"> ལོ་ </link></variable>"
@@ -67919,7 +63548,6 @@ msgstr "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\"> ལོ
msgctxt ""
"func_year.xhp\n"
"par_id3147496\n"
-"38\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_JAHR\">Returns the year as a number according to the internal calculation rules.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_JAHR\"> ནང་འཁོད་རྩིས་སྟོན་ལམ་ལུགས་ཚུ་དང་འཁྲིལ་ཏེ་ལོ་འདི་ཨང་སྦེ་སླར་ལོག་འབདཝ་ཨིན། </ahelp>"
@@ -67928,7 +63556,6 @@ msgstr "<ahelp hid=\"HID_FUNC_JAHR\"> ནང་འཁོད་རྩིས་ས
msgctxt ""
"func_year.xhp\n"
"hd_id3146090\n"
-"39\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -67937,7 +63564,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_year.xhp\n"
"par_id3154304\n"
-"40\n"
"help.text"
msgid "YEAR(Number)"
msgstr "ལོ།(ཨང་)"
@@ -67946,7 +63572,6 @@ msgstr "ལོ།(ཨང་)"
msgctxt ""
"func_year.xhp\n"
"par_id3156013\n"
-"41\n"
"help.text"
msgid "<emph>Number</emph> shows the internal date value for which the year is to be returned."
msgstr "<emph>Number</emph> ལོ་འདི་སླར་ལོག་འབད་ནི་ཨིན་པའི་ ནང་འཁོད་གནད་སྡུད་གནས་གོང་སྟོནམ་ཨིན།"
@@ -67955,7 +63580,6 @@ msgstr "<emph>Number</emph> ལོ་འདི་སླར་ལོག་འབ
msgctxt ""
"func_year.xhp\n"
"hd_id3152797\n"
-"42\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ།"
@@ -67964,7 +63588,6 @@ msgstr "དཔེར་བརྗོད་ཚུ།"
msgctxt ""
"func_year.xhp\n"
"par_id3145668\n"
-"43\n"
"help.text"
msgid "<item type=\"input\">=YEAR(1)</item> returns 1899"
msgstr ""
@@ -67973,7 +63596,6 @@ msgstr ""
msgctxt ""
"func_year.xhp\n"
"par_id3151168\n"
-"44\n"
"help.text"
msgid "<item type=\"input\">=YEAR(2)</item> returns 1900"
msgstr ""
@@ -67982,7 +63604,6 @@ msgstr ""
msgctxt ""
"func_year.xhp\n"
"par_id3150115\n"
-"45\n"
"help.text"
msgid "<item type=\"input\">=YEAR(33333.33)</item> returns 1991"
msgstr ""
@@ -68007,7 +63628,6 @@ msgstr "<bookmark_value>YEARFRAC ལས་འགན་ </bookmark_value>"
msgctxt ""
"func_yearfrac.xhp\n"
"hd_id3148735\n"
-"196\n"
"help.text"
msgid "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\">YEARFRAC</link></variable>"
msgstr "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\">YEARFRAC</link></variable>"
@@ -68016,7 +63636,6 @@ msgstr "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\"
msgctxt ""
"func_yearfrac.xhp\n"
"par_id3150899\n"
-"197\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_YEARFRAC\">The result is the number of the years (including fractional part) between <emph>StartDate</emph> and <emph>EndDate</emph>.</ahelp>"
msgstr ""
@@ -68025,7 +63644,6 @@ msgstr ""
msgctxt ""
"func_yearfrac.xhp\n"
"hd_id3155259\n"
-"198\n"
"help.text"
msgid "Syntax"
msgstr "ཚུག་སྦྱོར།"
@@ -68034,7 +63652,6 @@ msgstr "ཚུག་སྦྱོར།"
msgctxt ""
"func_yearfrac.xhp\n"
"par_id3155823\n"
-"199\n"
"help.text"
msgid "YEARFRAC(StartDate; EndDate; Basis)"
msgstr "YEARFRAC (ཚེས་འགོ་བཙུགས་ ;ཚེས་མཇུག་བསྡུ་ ;གཞི་རྩ་)"
@@ -68043,17 +63660,14 @@ msgstr "YEARFRAC (ཚེས་འགོ་བཙུགས་ ;ཚེས་མཇ
msgctxt ""
"func_yearfrac.xhp\n"
"par_id3145144\n"
-"200\n"
"help.text"
msgid "<emph>StartDate</emph> and <emph>EndDate</emph> are two date values."
msgstr "<emph> ཚེས་འགོ་བཙུགས་ </emph> དང་ <emph> ཚེས་མཇུག་བསྡུ་ </emph>: ཚེས་ཀྱི་གནས་གོང་གཉིས།"
#: func_yearfrac.xhp
-#, fuzzy
msgctxt ""
"func_yearfrac.xhp\n"
"par_id3149954\n"
-"201\n"
"help.text"
msgid "<emph>Basis</emph> (optional) is chosen from a list of options and indicates how the year is to be calculated."
msgstr "<emph> གཞི་རྩ་ </emph>: འདི་གདམ་ཁ་ཚུའི་ཐོ་ཡིག་ལས་གདམ་ཡོདཔ་དང་ དེ་གིས་ལོ་འདི་ག་དེ་སྦེ་རྩིས་ནི་ཨིན་ན་ བརྡ་སྟོནམ་ཨིན།"
@@ -68062,7 +63676,6 @@ msgstr "<emph> གཞི་རྩ་ </emph>: འདི་གདམ་ཁ་ཚ
msgctxt ""
"func_yearfrac.xhp\n"
"par_id3146847\n"
-"202\n"
"help.text"
msgid "Basis"
msgstr "གཞི་རྩ།"
@@ -68071,7 +63684,6 @@ msgstr "གཞི་རྩ།"
msgctxt ""
"func_yearfrac.xhp\n"
"par_id3155956\n"
-"203\n"
"help.text"
msgid "Calculation"
msgstr "རྩིས་སྟོན།"
@@ -68080,7 +63692,6 @@ msgstr "རྩིས་སྟོན།"
msgctxt ""
"func_yearfrac.xhp\n"
"par_id3154502\n"
-"204\n"
"help.text"
msgid "0 or missing"
msgstr "༠ ཡང་ན་ བརླག་སྟོར་ཞུགས་ཡོདཔ།"
@@ -68089,7 +63700,6 @@ msgstr "༠ ཡང་ན་ བརླག་སྟོར་ཞུགས་ཡོ
msgctxt ""
"func_yearfrac.xhp\n"
"par_id3149877\n"
-"205\n"
"help.text"
msgid "US method (NASD), 12 months of 30 days each"
msgstr "ཡུ་ཨེསི་ཐབས་ལམ་ (ཨེན་ཨེ་ཨེསི་ཌི), ཉིནམ་ ༣༠ རེ་གི་ཟླཝ་ ༡༢།"
@@ -68098,7 +63708,6 @@ msgstr "ཡུ་ཨེསི་ཐབས་ལམ་ (ཨེན་ཨེ་ཨ
msgctxt ""
"func_yearfrac.xhp\n"
"par_id3148766\n"
-"250\n"
"help.text"
msgid "1"
msgstr ""
@@ -68107,7 +63716,6 @@ msgstr ""
msgctxt ""
"func_yearfrac.xhp\n"
"par_id3154326\n"
-"206\n"
"help.text"
msgid "Exact number of days in months, exact number of days in year"
msgstr "ཟླཝ་ཚུ་ནང་ལུ་ཉིན་གྲངས་ཏག་ཏག་ ལོ་གཅིག་ནང་ལུ་ཉིན་གྲངས་ཏག་ཏག"
@@ -68116,7 +63724,6 @@ msgstr "ཟླཝ་ཚུ་ནང་ལུ་ཉིན་གྲངས་ཏག
msgctxt ""
"func_yearfrac.xhp\n"
"par_id3145245\n"
-"251\n"
"help.text"
msgid "2"
msgstr ""
@@ -68125,7 +63732,6 @@ msgstr ""
msgctxt ""
"func_yearfrac.xhp\n"
"par_id3155620\n"
-"207\n"
"help.text"
msgid "Exact number of days in month, year has 360 days"
msgstr "ཟླཝ་ནང་ལུ་ཉིན་གྲངས་ཏག་ཏག་ ལོ་གཅིག་ནང་ལུ་ ཉིན་གྲངས་ ༣༦༠ ཡོདཔ་ཨིན།"
@@ -68134,7 +63740,6 @@ msgstr "ཟླཝ་ནང་ལུ་ཉིན་གྲངས་ཏག་ཏག
msgctxt ""
"func_yearfrac.xhp\n"
"par_id3145297\n"
-"252\n"
"help.text"
msgid "3"
msgstr ""
@@ -68143,7 +63748,6 @@ msgstr ""
msgctxt ""
"func_yearfrac.xhp\n"
"par_id3148394\n"
-"208\n"
"help.text"
msgid "Exact number of days in month, year has 365 days"
msgstr "ཟླཝ་ནང་ལུ་ཉིན་གྲངས་ཏག་ཏག་ ལོ་གཅིག་ནང་ལུ་ཉིན་གྲངས་ ༣༦༥ ཡོདཔ་ཨིན།"
@@ -68152,7 +63756,6 @@ msgstr "ཟླཝ་ནང་ལུ་ཉིན་གྲངས་ཏག་ཏག
msgctxt ""
"func_yearfrac.xhp\n"
"par_id3151022\n"
-"253\n"
"help.text"
msgid "4"
msgstr ""
@@ -68161,7 +63764,6 @@ msgstr ""
msgctxt ""
"func_yearfrac.xhp\n"
"par_id3150931\n"
-"209\n"
"help.text"
msgid "European method, 12 months of 30 days each"
msgstr "ཡུ་རོ་པིན་ ཐབས་ལམ་ ཟླཝ་ ༡༢ དང་ཟླཝ་རེ་རེ་ལུ་ ཉིན་གྲངས་ ༣༠ རེ།"
@@ -68170,7 +63772,6 @@ msgstr "ཡུ་རོ་པིན་ ཐབས་ལམ་ ཟླཝ་ ༡༢
msgctxt ""
"func_yearfrac.xhp\n"
"hd_id3145626\n"
-"210\n"
"help.text"
msgid "Example"
msgstr "དཔེ།"
@@ -68179,7 +63780,6 @@ msgstr "དཔེ།"
msgctxt ""
"func_yearfrac.xhp\n"
"par_id3149007\n"
-"211\n"
"help.text"
msgid "What fraction of the year 2008 lies between 2008-01-01 and 2008-07-01?"
msgstr "༡་༡་༢༠༠༢ དང་ ༧་༡་༢༠༠༡ གི་བར་ན་གནམ་ལོ་༢༠༠༡ གི་དཔྱ་ཕྲན་ག་ཅི་གནསཔ་སྨོ?"
@@ -68188,7 +63788,6 @@ msgstr "༡་༡་༢༠༠༢ དང་ ༧་༡་༢༠༠༡ གི་བ
msgctxt ""
"func_yearfrac.xhp\n"
"par_id3154632\n"
-"212\n"
"help.text"
msgid "=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) returns 0.50."
msgstr ""
@@ -68586,7 +64185,6 @@ msgid "The following table has two data sets."
msgstr ""
#: stat_data.xhp
-#, fuzzy
msgctxt ""
"stat_data.xhp\n"
"hd_id1701201619425619\n"
@@ -68803,7 +64401,6 @@ msgid "The following table displays the results of the descriptive statistics of
msgstr ""
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1000690\n"
@@ -68812,7 +64409,6 @@ msgid "Column 1"
msgstr "ཀེར་ཐིག"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1000700\n"
@@ -68821,7 +64417,6 @@ msgid "Column 2"
msgstr "ཀེར་ཐིག"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1000710\n"
@@ -68846,7 +64441,6 @@ msgid "Standard Error"
msgstr ""
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1000800\n"
@@ -69047,7 +64641,6 @@ msgid "Alpha"
msgstr ""
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001350\n"
@@ -69088,7 +64681,6 @@ msgid "Variance"
msgstr ""
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001400\n"
@@ -69097,7 +64689,6 @@ msgid "Column 1"
msgstr "ཀེར་ཐིག"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001450\n"
@@ -69106,7 +64697,6 @@ msgid "Column 2"
msgstr "ཀེར་ཐིག"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001500\n"
@@ -69267,7 +64857,6 @@ msgid "Correlations"
msgstr ""
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001820\n"
@@ -69276,7 +64865,6 @@ msgid "Column 1"
msgstr "ཀེར་ཐིག"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001830\n"
@@ -69285,7 +64873,6 @@ msgid "Column 2"
msgstr "ཀེར་ཐིག"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001840\n"
@@ -69294,7 +64881,6 @@ msgid "Column 3"
msgstr "ཀེར་ཐིག"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001850\n"
@@ -69303,7 +64889,6 @@ msgid "Column 1"
msgstr "ཀེར་ཐིག"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001870\n"
@@ -69312,7 +64897,6 @@ msgid "Column 2"
msgstr "ཀེར་ཐིག"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001900\n"
@@ -69385,7 +64969,6 @@ msgid "Covariances"
msgstr ""
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002000\n"
@@ -69394,7 +64977,6 @@ msgid "Column 1"
msgstr "ཀེར་ཐིག"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002010\n"
@@ -69403,7 +64985,6 @@ msgid "Column 2"
msgstr "ཀེར་ཐིག"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002020\n"
@@ -69412,7 +64993,6 @@ msgid "Column 3"
msgstr "ཀེར་ཐིག"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002030\n"
@@ -69421,7 +65001,6 @@ msgid "Column 1"
msgstr "ཀེར་ཐིག"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002050\n"
@@ -69430,7 +65009,6 @@ msgid "Column 2"
msgstr "ཀེར་ཐིག"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002080\n"
@@ -69519,7 +65097,6 @@ msgid "Alpha"
msgstr ""
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002200\n"
@@ -69528,7 +65105,6 @@ msgid "Column 1"
msgstr "ཀེར་ཐིག"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002210\n"
@@ -69601,7 +65177,6 @@ msgid "Results of the moving average:"
msgstr ""
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002540\n"
@@ -69610,7 +65185,6 @@ msgid "Column 1"
msgstr "ཀེར་ཐིག"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002550\n"
@@ -70563,7 +66137,6 @@ msgid "Regression Model"
msgstr ""
#: statistics_regression.xhp
-#, fuzzy
msgctxt ""
"statistics_regression.xhp\n"
"par_id1701201618090596\n"
@@ -70580,7 +66153,6 @@ msgid "Logarithmic"
msgstr ""
#: statistics_regression.xhp
-#, fuzzy
msgctxt ""
"statistics_regression.xhp\n"
"par_id1701201618090555\n"
diff --git a/source/dz/helpcontent2/source/text/scalc/02.po b/source/dz/helpcontent2/source/text/scalc/02.po
index 4af2b9798ad..946337ea38f 100644
--- a/source/dz/helpcontent2/source/text/scalc/02.po
+++ b/source/dz/helpcontent2/source/text/scalc/02.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:02+0100\n"
-"PO-Revision-Date: 2011-04-05 19:28+0200\n"
+"POT-Creation-Date: 2017-05-12 14:35+0200\n"
+"PO-Revision-Date: 2013-06-16 08:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,8 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1371371303.000000\n"
#: 02130000.xhp
msgctxt ""
@@ -27,7 +28,6 @@ msgstr "ཨང་གྲངས་རྩ་སྒྲིག་:དངུལ།"
msgctxt ""
"02130000.xhp\n"
"hd_id3152892\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency\">Number format: Currency</link>"
msgstr "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency\">ཨང་གྲངས་རྩ་སྒྲིག : དངུལ་ </link>"
@@ -36,7 +36,6 @@ msgstr "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency
msgctxt ""
"02130000.xhp\n"
"par_id3148837\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">Applies the default currency format to the selected cells.</ahelp>"
msgstr "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཚུ་ནང་ལུ་ སྔོན་སྒྲིག་དངུལ་རྩ་སྒྲིག་འདི་འཇུག་སྤྱོད་འབདཝ་ཨིན། </ahelp>"
@@ -53,7 +52,6 @@ msgstr "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"a
msgctxt ""
"02130000.xhp\n"
"par_id3150214\n"
-"3\n"
"help.text"
msgid "Number Format: Currency"
msgstr "ཨང་གྲངས་རྩ་སྒྲིག་:དངུལ།"
@@ -62,7 +60,6 @@ msgstr "ཨང་གྲངས་རྩ་སྒྲིག་:དངུལ།"
msgctxt ""
"02130000.xhp\n"
"par_id3146776\n"
-"4\n"
"help.text"
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">རྩ་སྒྲིག་ - ནང་ཐིག་ - ཨང་གྲངས་ཚུ་ </link>."
@@ -79,7 +76,6 @@ msgstr "ཨང་གྲངས་རྩ་སྒྲིག་:བརྒྱ་ཆ
msgctxt ""
"02140000.xhp\n"
"hd_id3156329\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/02140000.xhp\" name=\"Number format: Percent\">Number format: Percent</link>"
msgstr "<link href=\"text/scalc/02/02140000.xhp\" name=\"Number format: Percent\">ཨང་གྲངས་རྩ་སྒྲིག་: བརྒྱ་ཆ་ </link>"
@@ -88,7 +84,6 @@ msgstr "<link href=\"text/scalc/02/02140000.xhp\" name=\"Number format: Percent\
msgctxt ""
"02140000.xhp\n"
"par_id3155629\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:NumberFormatPercent\">Applies the percentage format to the selected cells.</ahelp>"
msgstr "<ahelp hid=\".uno:NumberFormatPercent\">བརྒྱ་ཆའི་རྩ་སྒྲིག་འདི་སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཚུ་ལུ་འཇུག་སྤྱོད་འབདཝ་ཨིན།</ahelp>"
@@ -105,7 +100,6 @@ msgstr "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.png\" width
msgctxt ""
"02140000.xhp\n"
"par_id3151114\n"
-"3\n"
"help.text"
msgid "Number Format: Percent"
msgstr "ཨང་གྲངས་རྩ་སྒྲིག་:བརྒྱ་ཆ།"
@@ -122,7 +116,6 @@ msgstr "<bookmark_value>བརྒྱ་ཆ་རྩིས་སྟོན་ཚ
msgctxt ""
"02140000.xhp\n"
"par_id3149260\n"
-"5\n"
"help.text"
msgid "You can also enter a percentage sign (%) after a number in a cell:"
msgstr "ཨང་གྲངས་འདི་ནང་ཐིག་ཨིན་པའི་ཤུལ་ལས་ཁྱོད་ཀྱིས་བརྒྱ་ཆའི་མིང་རྟགས་(%)ཡང་བཙུགས་ཚུགསཔ་ཨིན།"
@@ -131,7 +124,6 @@ msgstr "ཨང་གྲངས་འདི་ནང་ཐིག་ཨིན་པ
msgctxt ""
"02140000.xhp\n"
"par_id3155411\n"
-"6\n"
"help.text"
msgid "1% corresponds to 0.01"
msgstr "༡% འདི་༠་༠༡ ལུ་ཆ་མཉམ་ཨིན།"
@@ -140,7 +132,6 @@ msgstr "༡% འདི་༠་༠༡ ལུ་ཆ་མཉམ་ཨིན།"
msgctxt ""
"02140000.xhp\n"
"par_id3145749\n"
-"7\n"
"help.text"
msgid "1 + 16% corresponds to 116% or 1.16"
msgstr "༡+༡༦% འདི་༡༡༦% ཡང་ན་ ༡་༡༦ ལུ་ཆ་མཉམ་ཨིན།"
@@ -149,7 +140,6 @@ msgstr "༡+༡༦% འདི་༡༡༦% ཡང་ན་ ༡་༡༦ ལུ
msgctxt ""
"02140000.xhp\n"
"par_id3148575\n"
-"8\n"
"help.text"
msgid "1%% corresponds to 0.0001"
msgstr "༡%% འདི་༠་༠༠༠༡ ལུ་ཆ་མཉམ་ཨིན།"
@@ -158,7 +148,6 @@ msgstr "༡%% འདི་༠་༠༠༠༡ ལུ་ཆ་མཉམ་ཨི
msgctxt ""
"02140000.xhp\n"
"par_id3159153\n"
-"10\n"
"help.text"
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>"
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">རྩ་སྒྲིག་ - ནང་ཐིག་ - ཨང་གྲངས་ཚུ་ </link>"
@@ -175,7 +164,6 @@ msgstr "ཨང་གྲངས་རྩ་སྒྲིག་: སྔོན་ས
msgctxt ""
"02150000.xhp\n"
"hd_id3149182\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/02150000.xhp\" name=\"Number format: Default\">Number format: Default</link>"
msgstr "<link href=\"text/scalc/02/02150000.xhp\" name=\"Number format: Default\">ཨང་གྲངས་རྩ་སྒྲིག་ : སྔོན་སྒྲིག་ </link>"
@@ -184,7 +172,6 @@ msgstr "<link href=\"text/scalc/02/02150000.xhp\" name=\"Number format: Default\
msgctxt ""
"02150000.xhp\n"
"par_id3163802\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:NumberFormatStandard\" visibility=\"visible\">Applies the default number format to the selected cells.</ahelp>"
msgstr "<ahelp hid=\".uno:NumberFormatStandard\" visibility=\"visible\">སྔོན་སྒྲིག་ཨང་གྲངས་རྩ་སྒྲིག་འདི་སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཚུ་ནང་ལུ་འཇུག་སྤྱོད་འབདཝ་ཨིན། </ahelp>"
@@ -201,7 +188,6 @@ msgstr "<image src=\"cmd/sc_numberformatstandard.png\" id=\"img_id3156024\"><alt
msgctxt ""
"02150000.xhp\n"
"par_id3153361\n"
-"3\n"
"help.text"
msgid "Number Format: Standard"
msgstr "ཨང་གྲངས་རྩ་སྒྲིག་:ཚད་ལྡན།"
@@ -210,7 +196,6 @@ msgstr "ཨང་གྲངས་རྩ་སྒྲིག་:ཚད་ལྡན
msgctxt ""
"02150000.xhp\n"
"par_id3154908\n"
-"4\n"
"help.text"
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">རྩ་སྒྲིག་ - ནང་ཐིག་ - ཨང་གྲངས་ཚུ་ </link>."
@@ -227,7 +212,6 @@ msgstr "ཨང་གྲངས་རྩ་སྒྲིག་:བཅུ་ཚག
msgctxt ""
"02160000.xhp\n"
"hd_id3150275\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/02160000.xhp\" name=\"Number Format: Add Decimal Place\">Number Format: Add Decimal Place</link>"
msgstr "<link href=\"text/scalc/02/02160000.xhp\" name=\"Number Format: Add Decimal Place\">ཨང་གྲངས་རྩ་སྒྲིག་: བཅུ་ཚག་ས་གནས་ཁ་སྐོང་ </link>"
@@ -236,7 +220,6 @@ msgstr "<link href=\"text/scalc/02/02160000.xhp\" name=\"Number Format: Add Deci
msgctxt ""
"02160000.xhp\n"
"par_id3150792\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:NumberFormatIncDecimals\">Adds one decimal place to the numbers in the selected cells.</ahelp>"
msgstr "<ahelp hid=\".uno:NumberFormatIncDecimals\"> སེལ་འཐུ་འབད་ཡོད་པའི་ནང་ཐིག་ནང་གི་ ཨང་འདི་ལུ་ བཅུ་ཚག་ས་གནས་གཅིག་ཁ་སྐོང་རྐྱབས་ཨིན།</ahelp>"
@@ -253,7 +236,6 @@ msgstr "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.png\" w
msgctxt ""
"02160000.xhp\n"
"par_id3149262\n"
-"3\n"
"help.text"
msgid "Number Format: Add Decimal Place"
msgstr "ཨང་གྲངས་རྩ་སྒྲིག་:བཅུ་ཚག་ས་གནས་ཁ་སྐོང་།"
@@ -270,7 +252,6 @@ msgstr "ཨང་གྲངས་རྩ་སྒྲིག་: བཅུ་ཚག
msgctxt ""
"02170000.xhp\n"
"hd_id3149164\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/02170000.xhp\" name=\"Number Format: Delete Decimal Place\">Number Format: Delete Decimal Place</link>"
msgstr "<link href=\"text/scalc/02/02170000.xhp\" name=\"Number Format: Delete Decimal Place\">ཨང་གྲངས་རྩ་སྒྲིག་: བཅུ་ཚག་ས་གནས་བཏོན་གཏང་ </link>"
@@ -279,7 +260,6 @@ msgstr "<link href=\"text/scalc/02/02170000.xhp\" name=\"Number Format: Delete D
msgctxt ""
"02170000.xhp\n"
"par_id3147264\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:NumberFormatDecDecimals\">Removes one decimal place from the numbers in the selected cells.</ahelp>"
msgstr "<ahelp hid=\".uno:NumberFormatDecDecimals\">སེལ་འཐུ་འབད་ཡོད་པའི་ནང་ཐིག་ཚུ་གི་ ཨང་འདི་ལས་ བཅུ་ཚག་ས་གནས་གཅིག་རྩ་བསྐྲད་གཏངམ་ཨིན།</ahelp>"
@@ -296,7 +276,6 @@ msgstr "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.png\" w
msgctxt ""
"02170000.xhp\n"
"par_id3154686\n"
-"3\n"
"help.text"
msgid "Number Format: Delete Decimal Place"
msgstr "ཨང་གྲངས་རྩ་སྒྲིག་: བཅུ་ཚག་ས་གནས་བཏོན་གཏང་།"
@@ -321,7 +300,6 @@ msgstr "<bookmark_value>མན་ངག་ཕྲ་རིང་; ཤོག་ཁ
msgctxt ""
"06010000.xhp\n"
"hd_id3156326\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">Name Box</link>"
msgstr "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">སྒྲོམ་མིང་བཏགས་ </link>"
@@ -330,7 +308,6 @@ msgstr "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">སྒྲོ
msgctxt ""
"06010000.xhp\n"
"par_id3149656\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_INSWIN_POS\">Displays the reference for the current cell, the range of the selected cells, or the name of the area. You can also select a range of cells, and then type a name for that range into the <emph>Name Box</emph>.</ahelp>"
msgstr "<ahelp hid=\"HID_INSWIN_POS\">གིས་ད་ལྟོའི་ནང་ཐིག་དང་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཚུ་གི་ཁྱབ་ཚད་ ཡང་ན་མངའ་ཁོངས་ཀྱི་མིང་ཚུ་གི་དོན་ལུ་ གཞི་བསྟུན་འདི་བཀྲམ་སྟོན་འབདཝ་ཨིན། ཁྱོད་ཀྱིས་ནང་ཐིག་ཚུ་གི་ཁྱབ་ཚད་སེལ་འཐུ་འབད་དེ་ <emph>Name Box</emph>.</ahelp>ནང་ལུ་ཁྱབ་ཚད་ཀྱི་དོན་ལུ་མིང་གཅིག་ཡིག་དཔར་རྐྱབ་བཏུབ་ཨིན།"
@@ -340,14 +317,13 @@ msgctxt ""
"06010000.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">Combo box sheet area</alt></image>"
-msgstr "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">བརྟག་སྒྲོམ་ལེབ་གྲངས་མངའ་ཁོངས་</alt></image>"
+msgid "<image id=\"img_id3152576\" src=\"media/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">Combo box sheet area</alt></image>"
+msgstr "<image id=\"img_id3152576\" src=\"media/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">བརྟག་སྒྲོམ་ལེབ་གྲངས་མངའ་ཁོངས་</alt></image>"
#: 06010000.xhp
msgctxt ""
"06010000.xhp\n"
"par_id3151118\n"
-"4\n"
"help.text"
msgid "Name Box"
msgstr "སྒྲོམ་མིང་རྟགས།"
@@ -356,7 +332,6 @@ msgstr "སྒྲོམ་མིང་རྟགས།"
msgctxt ""
"06010000.xhp\n"
"par_id3152596\n"
-"6\n"
"help.text"
msgid "To jump to a particular cell, or to select a cell range, type the cell reference, or cell range reference in this box, for example, F1, or A1:C4."
msgstr "ནང་ཐིག་བྱེ་བྲག་གཅིག་ལུ་མཆོང་ནི་དོན་ལུ་ ཡང་ན་ ནང་ཐིག་ཁྱབ་ཚད་སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ ནང་ཐིག་གཞི་བསྟུན་ཡིག་དཔར་རྐྱབ་དང་ཡང་ན་ ནང་ཐིག་ཁྱབ་ཚད་གཞི་བསྟུན་འ་ནི་སྒྲོམ་ནང་ལུ་ཡིག་དཔར་རྐྱབ་ དཔེ་འབད་བ་ཅིན་ ཨེཕ་ ༡ ཡང་ན་,ཡང་ན་ ཨེ་ ༡ :སི་ ༤ །"
@@ -381,7 +356,6 @@ msgstr ""
msgctxt ""
"06030000.xhp\n"
"hd_id3157909\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/06030000.xhp\" name=\"Sum\">Sum</link>"
msgstr "<link href=\"text/scalc/02/06030000.xhp\" name=\"Sum\">དངུལ་བསྡོམས་ </link>"
@@ -390,7 +364,6 @@ msgstr "<link href=\"text/scalc/02/06030000.xhp\" name=\"Sum\">དངུལ་
msgctxt ""
"06030000.xhp\n"
"par_id3150543\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_INSWIN_SUMME\">Inserts the sum of a cell range into the current cell, or inserts sum values into selected cells. Click in a cell, click this icon, and optionally adjust the cell range. Or select some cells into which the sum values will be inserted, then click the icon.</ahelp>"
msgstr ""
@@ -407,7 +380,6 @@ msgstr "<image id=\"img_id3147434\" src=\"cmd/sc_autosum.png\" width=\"5.64mm\"
msgctxt ""
"06030000.xhp\n"
"par_id3152577\n"
-"15\n"
"help.text"
msgid "Sum"
msgstr "དངུལ་བསྡོམས།"
@@ -416,7 +388,6 @@ msgstr "དངུལ་བསྡོམས།"
msgctxt ""
"06030000.xhp\n"
"par_id3156444\n"
-"16\n"
"help.text"
msgid "$[officename] automatically suggests a cell range, provided that the spreadsheet contains data. If the cell range already contains a sum function, you can combine it with the new one to yield the total sum of the range. If the range contains filters, the Subtotal function is inserted instead of the Sum function."
msgstr "ཤོག་ཁྲམ་གྱི་ནང་ན་གནད་སྡུད་ཤོམ་ཏེ་ཡོདཔ་བཟུམ་ཅིག་འབད་བ་ཅིན་ $[officename] གིས་རང་བཞིན་གྱིས་ནང་ཐིག་ཁྱབ་ཚད་གཅིག་བསམ་བཀོད་འབདཝ་ཨིན། ནང་ཐིག་ཁྱབ་ཚད་ཀྱི་ནང་ན་ཧེ་མ་ལས་རང་ལས་འགན་དངུལ་བསྡོམས་ཤོམ་ཏེ་ཡོད་པ་ཅིན་ ཁྱབ་ཚད་ཀྱི་དངུལ་ཡོངས་བསྡོམས་འབྲས་བུ་འཐོན་ནིའི་དོན་ལུ་ ཁྱོད་ཀྱིས་འདི་གསརཔ་འདི་དང་གཅིག་ཁར་མཉམ་མཐུས་འབད། ཁྱབ་ཚད་ཀྱི་ནང་ན་ཚགས་མ་ཚུ་ཤོམ་ཏེ་ཡོད་པ་ཅིན་ ལས་འགན་དངུས་བསྡོམས་ཀྱི་ཚབ་མ་ལུ་ ལས་འགན་ཡན་ལག་ཡོངས་བསྡོམས་བཙུགས་ཡོདཔ་ཨིན།"
@@ -425,7 +396,6 @@ msgstr "ཤོག་ཁྲམ་གྱི་ནང་ན་གནད་སྡུ
msgctxt ""
"06030000.xhp\n"
"par_id3153189\n"
-"3\n"
"help.text"
msgid "Click the <emph>Accept</emph> icon (green check mark) to use the formula displayed in the input line."
msgstr "ངོས་དཔར་ (ཞིབ་དཔྱད་རྟགས་ལྗང་ཁུ་) ཨིན་པུཊི་ནང་ལུ་བཀྲམ་སྟོན་འབད་དེ་ཡོད་པའི་མན་ངག་ལག་ལེན་འཐབ་ནིའི་དོན་ལུ་ <emph>Accept</emph>ཨེབ་གཏང་།"
@@ -450,7 +420,6 @@ msgstr "<bookmark_value>མན་ངག་ཕྲ་རིང་; ལས་འག
msgctxt ""
"06040000.xhp\n"
"hd_id3150084\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">Function</link>"
msgstr "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">ལས་འགན་ </link>"
@@ -459,7 +428,6 @@ msgstr "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">ལས་འ
msgctxt ""
"06040000.xhp\n"
"par_id3151245\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_INSWIN_FUNC\">Adds a formula to the current cell. Click this icon, and then enter the formula in the <emph>Input line</emph>.</ahelp>"
msgstr "<ahelp hid=\"HID_INSWIN_FUNC\">གིས་ད་ལྟོའི་ནང་ཐིག་ལུ་མན་ངག་ཁ་སྐོང་འབདཝ་ཨིན། འ་ནི་ངོས་དཔར་ཨེབ་གཏང་ཞིནམ་ལས་ <emph>Input line</emph>ནང་ལུ་མན་ངག་འདི་བཙུགས། </ahelp>"
@@ -468,7 +436,6 @@ msgstr "<ahelp hid=\"HID_INSWIN_FUNC\">གིས་ད་ལྟོའི་ན
msgctxt ""
"06040000.xhp\n"
"par_id3153360\n"
-"3\n"
"help.text"
msgid "This icon is only available when the <emph>Input line</emph> box is not active."
msgstr "<emph>Input line</emph> སྒྲོམ་འདི་སྦ་ཡོད་པའི་སྐབས་ལུ་རྐྱངམ་ཅིག་ ངོས་དཔར་འདི་འཐོབ་ཚུགསཔ་ཨིན།"
@@ -478,14 +445,13 @@ msgctxt ""
"06040000.xhp\n"
"par_id3153770\n"
"help.text"
-msgid "<image id=\"img_id3145785\" src=\"sc/imglst/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu01.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">ངོས་དཔར་ </alt></image>"
+msgid "<image id=\"img_id3145785\" src=\"sc/res/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Icon</alt></image>"
+msgstr ""
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id3153951\n"
-"4\n"
"help.text"
msgid "Function"
msgstr "ལས་འགན།"
@@ -502,7 +468,6 @@ msgstr "ཨིན་པུཊི་གྲལ་ཐིག"
msgctxt ""
"06050000.xhp\n"
"hd_id3153821\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/06050000.xhp\" name=\"Input line\">Input line</link>"
msgstr "<link href=\"text/scalc/02/06050000.xhp\" name=\"Input line\">ཨིན་པུཊི་གྲལ་ཐིག་ </link>"
@@ -511,7 +476,6 @@ msgstr "<link href=\"text/scalc/02/06050000.xhp\" name=\"Input line\">ཨིན
msgctxt ""
"06050000.xhp\n"
"par_id3155922\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_INSWIN_INPUT\">Enter the formula that you want to add to the current cell. You can also click the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link> icon to insert a predefined function into the formula.</ahelp>"
msgstr "ཁྱོད་ཀྱིས་ད་ལྟོའི་ནང་ཐིག་ནང་ལུ་ཁ་སྐོང་འབད་དགོས་མནོ་བའི་མན་ངག་འདི་བཙུགས། <ahelp hid=\"HID_INSWIN_INPUT\"> མན་ངག་ནང་ལུ་སྔ་གོང་ངེས་འཛིན་འབད་ཡོད་པའི་ལས་འགན་བཙུགས་ནིའི་དོན་ལུ་ཁྱོད་ཀྱིས་ <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">ལས་འགན་ཝི་ཛརཌི་ </link> </ahelp>ངོས་དཔར་ ཨེབ་གཏང་བཏུབ་ཨིན།"
@@ -536,7 +500,6 @@ msgstr "<bookmark_value>མན་ངག་ཕྲ་རིང་;ཨིན་པ
msgctxt ""
"06060000.xhp\n"
"hd_id3154514\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/06060000.xhp\" name=\"Cancel\">Cancel</link>"
msgstr "<link href=\"text/scalc/02/06060000.xhp\" name=\"Cancel\">ཆ་མེད་གཏང་</link>"
@@ -545,7 +508,6 @@ msgstr "<link href=\"text/scalc/02/06060000.xhp\" name=\"Cancel\">ཆ་མེ
msgctxt ""
"06060000.xhp\n"
"par_id3153823\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_INSWIN_CANCEL\">Clears the contents of the <emph>Input line</emph>, or cancels the changes that you made to an existing formula.</ahelp>"
msgstr "<ahelp hid=\"HID_INSWIN_CANCEL\">གིས་<emph>ཨིན་པུཊི་གྲལ་ཐིག་ </emph>གི་ནང་དོན་ཚུ་བསལཝ་ཨིན་ ཡང་ན་ ཁྱོད་ཀྱིས་གནས་ཞིན་ཡོད་པའི་མན་ངག་ནང་ལུ་ བཟོ་ཡོད་པའི་བསྒྱུར་བཅོས་ཚུ་ ཆ་མེད་གཏངམ་ཨིན། </ahelp>"
@@ -562,7 +524,6 @@ msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu02.png\" width=\"0.2228inch\
msgctxt ""
"06060000.xhp\n"
"par_id3153970\n"
-"3\n"
"help.text"
msgid "Cancel"
msgstr "ཆ་མེད་གཏང་།"
@@ -587,7 +548,6 @@ msgstr "<bookmark_value>མན་ངག་ཕྲ་རིང་; ཨིན་པ
msgctxt ""
"06070000.xhp\n"
"hd_id3143267\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">Accept</link>"
msgstr "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">དང་ལེན་འབད་</link>"
@@ -596,7 +556,6 @@ msgstr "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">དང་ལ
msgctxt ""
"06070000.xhp\n"
"par_id3151245\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"HID_INSWIN_OK\">Accepts the contents of the <emph>Input line</emph>, and then inserts the contents into the current cell.</ahelp>"
msgstr "<ahelp hid=\"HID_INSWIN_OK\">གིས་Accepts the contents of the <emph>ཨིན་པུཊི་གྲལ་ཐིག་ </emph> གི་ནང་དོན་ཚུ་དང་ལེན་འབད་ཞིནམ་ལས་ ནང་དོན་ཚུ་ད་ལྟོའི་ནང་ཐིག་ནང་ལུ་བཙུགསཔ་ཨིན། </ahelp>"
@@ -613,7 +572,6 @@ msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu01.png\" width=\"5.64mm\" he
msgctxt ""
"06070000.xhp\n"
"par_id3125864\n"
-"3\n"
"help.text"
msgid "Accept"
msgstr "དང་ལེན།"
@@ -630,7 +588,6 @@ msgstr "བརྗོད་དོན་སེལ་འཐུ།"
msgctxt ""
"06080000.xhp\n"
"hd_id3153087\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme Selection\">Theme Selection</link>"
msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme Selection\">བརྗོད་དོན་སེལ་འཐུ་ </link>"
@@ -639,7 +596,6 @@ msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme Selection\">བ
msgctxt ""
"06080000.xhp\n"
"par_id3154515\n"
-"2\n"
"help.text"
msgid "<variable id=\"thementext\"><ahelp hid=\".uno:ChooseDesign\">Applies a formatting style to the selected cells.</ahelp></variable> The styles include font, border, and background color information."
msgstr "<variable id=\"thementext\"><ahelp hid=\".uno:ChooseDesign\">སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཚུ་ལུ་རྩ་སྒྲིག་འབད་ནིའི་བཟོ་རྣམ་འཇུག་སྤྱོད་འབདཝ་ཨིན། </ahelp></variable> བཟོ་རྣམ་ཚུ་གི་གྲངས་སུ་ཡིག་གཟུགས་ མཐའ་མཚམས་དང་ རྒྱབ་གཞི་ཚོས་གཞི་བརྡ་དོན་ཚུ་ཚུདཔ་ཨིན།"
@@ -656,7 +612,6 @@ msgstr "<image id=\"img_id3145785\" src=\"cmd/sc_choosedesign.png\" width=\"0.22
msgctxt ""
"06080000.xhp\n"
"par_id3153953\n"
-"4\n"
"help.text"
msgid "Choose Themes"
msgstr "བརྗོད་དོན་ཚུ་གདམ།"
@@ -665,7 +620,6 @@ msgstr "བརྗོད་དོན་ཚུ་གདམ།"
msgctxt ""
"06080000.xhp\n"
"par_id3147127\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGSTYLES_LISTBOX\">Click the formatting theme that you want to apply, and then click <emph>OK</emph>.</ahelp>"
msgstr "<ahelp hid=\"HID_DLGSTYLES_LISTBOX\">ཁྱོད་ཀྱིས་འཇུག་སྤྱོད་འབད་དགོས་མནོ་མི་རྩ་སྒྲིག་འབད་ནི་བརྗོད་དོན་ཨེབ་བཞིནམ་ལས་ <emph>བཏུབ་</emph>ཨེབ་གཏང་། </ahelp>"
@@ -682,7 +636,6 @@ msgstr "ཡིག་ཆ་ནང་གནས་ས།"
msgctxt ""
"08010000.xhp\n"
"hd_id3145119\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/08010000.xhp\" name=\"Position in document\">Position in document</link>"
msgstr "<link href=\"text/scalc/02/08010000.xhp\" name=\"Position in document\">ཡིག་ཆ་ནང་གནས་ས་</link>"
@@ -691,7 +644,6 @@ msgstr "<link href=\"text/scalc/02/08010000.xhp\" name=\"Position in document\">
msgctxt ""
"08010000.xhp\n"
"par_id3147265\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:StatusDocPos\">Displays the number of the current sheet and the total number of sheets in the spreadsheet.</ahelp>"
msgstr "<ahelp hid=\".uno:StatusDocPos\">ཤོག་ཁྲམ་ནང་ལུ་ ད་ལྟོའི་ལེབ་གྲངས་ཀྱི་ཨང་དང་ ལེབ་གྲངས་ཀྱི་བསྡོམས་འདི་བཀྲམ་སྟོན་འབདཝ་ཨིན།</ahelp>"
@@ -716,7 +668,6 @@ msgstr "<bookmark_value>མན་ངག་ཚུ་;གནས་ཚད་ཕྲ
msgctxt ""
"08080000.xhp\n"
"hd_id3147335\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/08080000.xhp\" name=\"Standard Formula, Date/Time, Error Warning\">Standard Formula, Date/Time, Error Warning</link>"
msgstr "<link href=\"text/scalc/02/08080000.xhp\" name=\"Standard Formula, Date/Time, Error Warning\">ཚད་ལྡན་མན་ངག་, ཚེས་/དུས་ཚོད་, ཉེན་བརྡ་འཛོལ་བ་ </link>"
@@ -725,7 +676,6 @@ msgstr "<link href=\"text/scalc/02/08080000.xhp\" name=\"Standard Formula, Date/
msgctxt ""
"08080000.xhp\n"
"par_id3150791\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:StateTableCell\">Displays information about the current document. By default, the SUM of the contents of the selected cells is displayed.</ahelp>"
msgstr "<ahelp hid=\".uno:StateTableCell\"> གིས་ད་ལྟོའི་ཡིག་ཆའི་སྐོར་ལས་བརྡ་དོན་ བཀྲམ་སྟོན་འབདཝ་ཨིན། སྔོན་སྒྲིག་གིས་ཐོག་ལས་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་ནང་ཐིག་ཚུའི་ ནང་དོན་ཚུ་གི་དངུལ་བསྡོམས་འདི་བཀྲམ་སྟོན་འབད་ཡོད། </ahelp>"
@@ -734,7 +684,6 @@ msgstr "<ahelp hid=\".uno:StateTableCell\"> གིས་ད་ལྟོའི་
msgctxt ""
"08080000.xhp\n"
"par_id3155061\n"
-"3\n"
"help.text"
msgid "To change the default formula that is displayed, right-click the field, and then choose the formula that you want. The available formulas are: Average, count of values (COUNTA), count of numbers (COUNT), Maximum, Minimum, Sum, or None."
msgstr "བཀྲམ་སྟོན་འབད་ཡོད་པའི་སྔོན་སྒྲིག་མན་ངག་བསྒྱུར་བཅོས་འབད་ནིའི་དོན་ལུ་ ས་སྒོ་གཡས་ལུ་ཨེབ་གཏང་ཞིནམ་ལས་ ཁྱོད་ཀྱིས་དགོས་མི་མན་ངག་གདམ། འཐོབ་ཚུགས་པའི་མན་ངག་ཚུ་ནི་:ཆ་སྙམས་ གནས་གོང་ཚུའི་གྱངས་ཁ་ (ཀའུན་ཊ་) ཨང་གྲངས་ཚུའི་གྱངས་ཁ་(གྱངས་ཁ) མང་མཐའ་ དངུལ་བསྡོམས་ ཡང་ན་ ཅི་མེད་ཚུ་ཨིན།"
@@ -743,7 +692,6 @@ msgstr "བཀྲམ་སྟོན་འབད་ཡོད་པའི་སྔ
msgctxt ""
"08080000.xhp\n"
"par_id3153969\n"
-"4\n"
"help.text"
msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">Error codes</link>"
msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">ཨང་རྟགས་ཚུ་འཛོལ་བ་་</link>"
@@ -768,7 +716,6 @@ msgstr "<bookmark_value>ཤོག་ལེབ་མཐོང་སྣང་ཚ
msgctxt ""
"10050000.xhp\n"
"hd_id3148491\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/10050000.xhp\" name=\"Zoom In\">Zoom In</link>"
msgstr "<link href=\"text/scalc/02/10050000.xhp\" name=\"Zoom In\">ནང་ན་རྒྱས་ཟུམ་འབད་</link>"
@@ -777,7 +724,6 @@ msgstr "<link href=\"text/scalc/02/10050000.xhp\" name=\"Zoom In\">ནང་ན
msgctxt ""
"10050000.xhp\n"
"par_id3145069\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ZoomIn\">Enlarges the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
msgstr "<ahelp hid=\".uno:ZoomIn\"> གིས་ད་ལྟོའི་ཡིག་ཆའི་གསལ་གཞི་བཀྲམ་སྟོན་འདི་ཆེར་བསྐྱེད་འབདཝ་ཨིན། ད་ལྟོའི་རྒྱས་ཟུམ་ཆ་རྐྱེན་འདི་ <emph>གནས་ཚད་ཕྲ་རིང་</emph> གུ་ལུ་བཀྲམ་སྟོན་འབད་དེ་ཡོད།.</ahelp>"
@@ -786,7 +732,6 @@ msgstr "<ahelp hid=\".uno:ZoomIn\"> གིས་ད་ལྟོའི་ཡི
msgctxt ""
"10050000.xhp\n"
"par_id3145171\n"
-"4\n"
"help.text"
msgid "The maximum zoom factor is 400%."
msgstr "རྒྱས་ཟུམ་ཆ་རྐྱེན་མང་མཐའ་འདི་༤༠༠% ཨིན།"
@@ -803,7 +748,6 @@ msgstr ""
msgctxt ""
"10050000.xhp\n"
"par_id3145273\n"
-"3\n"
"help.text"
msgid "Zoom In"
msgstr "ནང་ན་རྒྱས་ཟུམ་འབད།"
@@ -828,7 +772,6 @@ msgstr ""
msgctxt ""
"10060000.xhp\n"
"hd_id3153561\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/10060000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
msgstr "<link href=\"text/scalc/02/10060000.xhp\" name=\"Zoom Out\">ཕྱི་ཁར་རྒྱས་ཟུམ་འབད་ </link>"
@@ -837,7 +780,6 @@ msgstr "<link href=\"text/scalc/02/10060000.xhp\" name=\"Zoom Out\">ཕྱི་
msgctxt ""
"10060000.xhp\n"
"par_id3151246\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ZoomOut\">Reduces the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
msgstr "<ahelp hid=\".uno:ZoomOut\">གིས་ད་ལྟོའི་ཡིག་ཆ་གི་གསལ་གཞི་བཀྲམ་སྟོན་མར་ཕབ་འབདཝ་ཨིན། ད་ལྟོའི་རྒྱས་ཟུམ་ཆ་རྐྱེན་འདི་ <emph>གནས་ཚད་ཕྲ་རིང་</emph>.</ahelp>གུ་ལུ་བཀྲམ་སྟོན་འབད་དེ་ཡོད།"
@@ -846,7 +788,6 @@ msgstr "<ahelp hid=\".uno:ZoomOut\">གིས་ད་ལྟོའི་ཡི
msgctxt ""
"10060000.xhp\n"
"par_id3150398\n"
-"4\n"
"help.text"
msgid "The minimum zoom factor is 20%."
msgstr "རྒྱས་ཟུམ་ཆ་རྐྱེན་ཉུང་མཐའ་འདི་ ༢༠% ཨིན།"
@@ -863,7 +804,6 @@ msgstr "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"5.64mm\"
msgctxt ""
"10060000.xhp\n"
"par_id3150440\n"
-"3\n"
"help.text"
msgid "Zooming Out"
msgstr "ཕྱི་ཁར་རྒྱས་ཟུམ་འབད་དོ།"
@@ -888,7 +828,6 @@ msgstr "<bookmark_value>བཙུགས་ནི་; དངོས་པོ་ཚ
msgctxt ""
"18010000.xhp\n"
"hd_id3156329\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insert\">Insert</link>"
msgstr "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insert\">བཙུགས་ </link>"
@@ -897,7 +836,6 @@ msgstr "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insert\">བཙུག
msgctxt ""
"18010000.xhp\n"
"par_id3147336\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertCtrl\">Click the arrow next to the icon to open the <emph>Insert </emph>toolbar, where you can add graphics and special characters to the current sheet.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertCtrl\"><emph>བཙུགས་ </emph>ལག་ཆས་ཕྲ་རིང་ཁ་ཕྱེ་ནིའི་དོན་ལུ་ ཁྱོད་ཀྱིས་ད་ལྟོའི་ཤོག་ཁྲམ་ལུ་ ཚད་རིས་ཚུ་དང་དམིགས་བསལ་ཡིག་འབྲུ་ཚུ་ཁ་སྐོང་འབད་བཏུབ་ས་ལུ་</ahelp> ངོས་དཔར་གྱི་ཤུལ་མམ་གྱི་མདའ་རྟགས་འདི་ཨེབ་གཏང་།"
@@ -906,7 +844,6 @@ msgstr "<ahelp hid=\".uno:InsertCtrl\"><emph>བཙུགས་ </emph>ལག་
msgctxt ""
"18010000.xhp\n"
"par_id3148664\n"
-"3\n"
"help.text"
msgid "Tools bar icon:"
msgstr "ལག་ཆས་ཚུའི་ཕྲ་རིང་ངོས་དཔར།:"
@@ -923,7 +860,6 @@ msgstr "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.2
msgctxt ""
"18010000.xhp\n"
"par_id3146120\n"
-"4\n"
"help.text"
msgid "Insert"
msgstr "བཙུགས།"
@@ -932,13 +868,11 @@ msgstr "བཙུགས།"
msgctxt ""
"18010000.xhp\n"
"par_id3153188\n"
-"6\n"
"help.text"
msgid "You can select the following icons:"
msgstr "ཁྱོད་ཀྱིས་འོག་གི་ངོས་དཔར་ཚུ་སེལ་འཐུ་འབད་ཚུགསཔ་ཨིན།:"
#: 18010000.xhp
-#, fuzzy
msgctxt ""
"18010000.xhp\n"
"hd_id4283883\n"
@@ -950,7 +884,6 @@ msgstr "#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\\n<link href=\"text/s
msgctxt ""
"18010000.xhp\n"
"hd_id3149410\n"
-"8\n"
"help.text"
msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">དམིགས་བསལ་ ཡིག་འབྲུ་ </link>"
@@ -959,13 +892,11 @@ msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">
msgctxt ""
"18010000.xhp\n"
"hd_id3151117\n"
-"7\n"
"help.text"
msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
msgstr "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\"> ཡིག་སྣོད་ལས་ </link>"
#: 18010000.xhp
-#, fuzzy
msgctxt ""
"18010000.xhp\n"
"hd_id3633533\n"
@@ -982,7 +913,6 @@ msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Insert Chart\">Ch
msgstr ""
#: 18010000.xhp
-#, fuzzy
msgctxt ""
"18010000.xhp\n"
"hd_id7581408\n"
@@ -1010,7 +940,6 @@ msgstr "<bookmark_value>བཙུགས་ནི་; ནང་ཐིག་ཚུ
msgctxt ""
"18020000.xhp\n"
"hd_id3150275\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/18020000.xhp\" name=\"Insert Cells\">Insert Cells</link>"
msgstr "<link href=\"text/scalc/02/18020000.xhp\" name=\"Insert Cells\">ནང་ཐིག་ཚུ་བཙུགས་ </link>"
@@ -1019,7 +948,6 @@ msgstr "<link href=\"text/scalc/02/18020000.xhp\" name=\"Insert Cells\">ནང
msgctxt ""
"18020000.xhp\n"
"par_id3156024\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:InsCellsCtrl\">Click the arrow next to the icon to open the <emph>Insert Cells </emph>toolbar, where you can insert cells, rows, and columns into the current sheet.</ahelp>"
msgstr "<ahelp hid=\".uno:InsCellsCtrl\"> <emph>ཁ་ཕྱེ་ནིའི་དོན་ལུ་ནང་ཐིག་ཚུ་བཙུགས་ </emph>ལག་ཆས་ཚུ་ ད་ལྟོའི་ཤོག་ཁྲམ་ནང་ལུ་ཁྱོད་ཀྱིས་ནང་ཐིག་ཚུ་ གྲལ་ཐིག་ཚུ་ དང་ཀེར་ཐིག་ཚུ་བཙུགས་བཏུབ་ས་ནང་ ངོས་དཔར་གྱི་ཤུལ་མམ་གྱི་མདའ་རྟགས་འདི་ཨེབ་གཏང་</ahelp>"
@@ -1028,7 +956,6 @@ msgstr "<ahelp hid=\".uno:InsCellsCtrl\"> <emph>ཁ་ཕྱེ་ནིའི
msgctxt ""
"18020000.xhp\n"
"par_id3150398\n"
-"3\n"
"help.text"
msgid "Tools bar icon:"
msgstr "ལག་ཆས་ཚུའི་ཕྲ་རིང་ངོས་དཔར།:"
@@ -1037,7 +964,6 @@ msgstr "ལག་ཆས་ཚུའི་ཕྲ་རིང་ངོས་དཔ
msgctxt ""
"18020000.xhp\n"
"par_id3150767\n"
-"5\n"
"help.text"
msgid "You can select the following icons:"
msgstr "ཁྱོད་ཀྱིས་འོག་གི་ངོས་དཔར་ཚུ་སེལ་འཐུ་འབད་ཚུགསཔ་ཨིན།:"
@@ -1046,7 +972,6 @@ msgstr "ཁྱོད་ཀྱིས་འོག་གི་ངོས་དཔར
msgctxt ""
"18020000.xhp\n"
"hd_id3150439\n"
-"6\n"
"help.text"
msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Down\">Insert Cells Down</link>"
msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Down\">ནང་ཐིག་ཚུ་མར་བཙུགས་ </link>"
@@ -1055,7 +980,6 @@ msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Down\">ན
msgctxt ""
"18020000.xhp\n"
"hd_id3146119\n"
-"7\n"
"help.text"
msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">Insert Cells Right</link>"
msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">ནང་ཐིག་ཚུ་གཡས་ལུ་བཙུགས་ </link>"
@@ -1064,7 +988,6 @@ msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">
msgctxt ""
"18020000.xhp\n"
"hd_id3153190\n"
-"8\n"
"help.text"
msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">Rows</link>"
msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">གྲལ་ཐིག་ཚུ་ </link>"
@@ -1073,7 +996,6 @@ msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">གྲལ་ཐ
msgctxt ""
"18020000.xhp\n"
"hd_id3153726\n"
-"9\n"
"help.text"
msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columns\">Columns</link>"
msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columns\">ཀེར་ཐིག་ཚུ་ </link>"
diff --git a/source/dz/helpcontent2/source/text/scalc/04.po b/source/dz/helpcontent2/source/text/scalc/04.po
index 29335a50e68..6712da1fcc9 100644
--- a/source/dz/helpcontent2/source/text/scalc/04.po
+++ b/source/dz/helpcontent2/source/text/scalc/04.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-05 21:07+0000\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"PO-Revision-Date: 2016-03-10 00:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467752865.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1457569592.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -36,7 +36,6 @@ msgstr "<bookmark_value>ཤོག་ཁྲམ་ཚུ་ མགྱོགས་
msgctxt ""
"01020000.xhp\n"
"hd_id3145801\n"
-"1\n"
"help.text"
msgid "<variable id=\"calc_keys\"><link href=\"text/scalc/04/01020000.xhp\" name=\"Shortcut Keys for Spreadsheets\">Shortcut Keys for Spreadsheets</link></variable>"
msgstr "<variable id=\"calc_keys\"><link href=\"text/scalc/04/01020000.xhp\" name=\"Shortcut Keys for Spreadsheets\"> ཤོག་ཁྲམ་ཚུ་གི་དོན་ལུ་མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ་</link></variable>"
@@ -45,7 +44,6 @@ msgstr "<variable id=\"calc_keys\"><link href=\"text/scalc/04/01020000.xhp\" nam
msgctxt ""
"01020000.xhp\n"
"par_id3155067\n"
-"3\n"
"help.text"
msgid "To fill a selected cell range with the formula that you entered on the <emph>Input line</emph>, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter. Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter+Shift to apply the cell format of the input cell to the entire cell range."
msgstr "ཁྱོད་ཀྱིས་ ཨིན་པུཊི་གྲལ་ཐིག་<emph>གུ་ལུ་མན་ངག་དང་བཅས་པའི་སེལ་འཐུ་གྲུབ་ཚར་བའི་ནང་ཐིག་ཁྱབ་ཚད་ཐོ་བཀོད་འབད་དེ་ཡོད་མི་བཀང་ནིའི་དོན་ལུ་</emph>, འདི་ཨེབ་གཏང་ <switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་ </caseinline><defaultinline>གདམ་ལྡེ་ </defaultinline></switchinline>+ལོག་ལྡེ།.ཨིན་པུཊི་ནང་ཐིག་གི་ནང་ཐིག་རྩ་སྒྲིག་འདི་ ནང་ཐིག་ཁྱབ་ཚད་ཧྲིལ་བུ་ལུ་འཇུག་སྤྱོད་འབད་ནིའི་དོན་ལུ་ <switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་ </caseinline><defaultinline>གདམ་ལྡེ་ </defaultinline></switchinline>+ལོག་ལྡེ་+སོར་ལྡེ་མར་འཆང་།"
@@ -54,7 +52,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཨིན་པུཊི་གྲལ་
msgctxt ""
"01020000.xhp\n"
"par_id3153967\n"
-"84\n"
"help.text"
msgid "To create a matrix in which all the cells contain the same information as what you entered on the <emph>Input line</emph>, press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. You cannot edit the components of the matrix."
msgstr "ཁྱོད་ཀྱིས་<emph>Input line</emph>གུ་ལུ་ཐོ་བཀོད་འབད་དེ་ཡོད་དོ་བཟུམ་མའི་ནང་ཐིག་ཚུ་གི་ནང་ན་བརྡ་དོན་གཅིག་པ་ཤོམ་ཏེ་ཡོད་པའི་མེ་ཊིགསི་ གསར་བསྐྲུན་འབད་ནིའི་དོན་ལུ་ སོར་ལྡེ་+<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+ལོག་ལྡེ་ ཨེབ།. ཁྱོད་ཀྱིས་ མེ་ཊིགསི་གི་ཆ་ཤས་ཚུ་ཞུན་དག་འབད་མི་ཚུགས།"
@@ -63,7 +60,6 @@ msgstr "ཁྱོད་ཀྱིས་<emph>Input line</emph>གུ་ལུ་
msgctxt ""
"01020000.xhp\n"
"par_id3166426\n"
-"4\n"
"help.text"
msgid "To select multiple cells in different areas of a sheet, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and drag in the different areas."
msgstr ""
@@ -72,7 +68,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"par_id3150207\n"
-"127\n"
"help.text"
msgid "To select multiple sheets in a spreadsheet, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, and then click the name tabs at the lower edge of the workspace. To select only one sheet in a selection, hold down Shift, and then click the name tab of the sheet."
msgstr "ཤོག་ཁྲམ་ནང་ལུ་ཤོག་ཁྲམ་སྣ་མང་ཚུ་སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ <switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline> མར་འཆང་ཞིནམ་ལས་ ལཱ་གི་ས་སྟོང་འོག་གི་མཐའམ་ལུ་ མིང་བཏགས་མཆོང་ལྡེ་ཚུ་ཨེབ་གཏང་། སེལ་འཐུ་ནང་ལུ་ཤོག་ཁྲམ་གཅིག་རྐྱངམ་ཅིག་སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ སོར་ལྡེ་འདི་མར་འཆང་སྟེ་ ཤོག་ཁྲམ་གྱི་མིང་བཏགས་མཆོང་ལྡེ་ཨེབ་གཏང་།"
@@ -81,7 +76,6 @@ msgstr "ཤོག་ཁྲམ་ནང་ལུ་ཤོག་ཁྲམ་སྣ
msgctxt ""
"01020000.xhp\n"
"par_id3166432\n"
-"129\n"
"help.text"
msgid "To insert a manual line break in a cell, click in the cell, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
msgstr "ནང་ཐིག་ནང་ལུ་ ལག་དེབ་གྲལ་ཐིག་མཚམས་བཙུགས་ནིའི་དོན་ལུ་ , ནང་ཐིག་ཨེབ་གཏང་སྟེ་ <switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+ལོག་ལྡེ་ ཨེབ།"
@@ -90,7 +84,6 @@ msgstr "ནང་ཐིག་ནང་ལུ་ ལག་དེབ་གྲལ
msgctxt ""
"01020000.xhp\n"
"par_id3146978\n"
-"130\n"
"help.text"
msgid "To delete the contents of selected cells, press Backspace. This opens the <link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link> dialog, where you choose which contents of the cell you want to delete. To delete the contents of selected cells without a dialog, press the Delete key."
msgstr ""
@@ -99,7 +92,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"hd_id3145386\n"
-"85\n"
"help.text"
msgid "Navigating in Spreadsheets"
msgstr "ཤོག་ཁྲམ་ཚུ་ནང་འགྲུལ་བསྐྱོད་འབད་དོ།"
@@ -108,7 +100,6 @@ msgstr "ཤོག་ཁྲམ་ཚུ་ནང་འགྲུལ་བསྐྱ
msgctxt ""
"01020000.xhp\n"
"hd_id3149407\n"
-"86\n"
"help.text"
msgid "Shortcut Keys"
msgstr "མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ།"
@@ -117,7 +108,6 @@ msgstr "མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ།"
msgctxt ""
"01020000.xhp\n"
"par_id3153815\n"
-"87\n"
"help.text"
msgid "<emph>Effect</emph>"
msgstr "<emph>ནུས་པ།</emph>"
@@ -126,7 +116,6 @@ msgstr "<emph>ནུས་པ།</emph>"
msgctxt ""
"01020000.xhp\n"
"hd_id3146871\n"
-"88\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Home"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline> + ཁྱིམ།"
@@ -135,7 +124,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3159093\n"
-"89\n"
"help.text"
msgid "Moves the cursor to the first cell in the sheet (A1)."
msgstr "ཤོག་ཁྲམ་ནང་ལུ་འོད་རྟགས་འདི་ནང་ཐིག་དང་པམ་ནང་སྤོཝ་ཨིན།(ཨེ་ ༡)"
@@ -144,7 +132,6 @@ msgstr "ཤོག་ཁྲམ་ནང་ལུ་འོད་རྟགས་འ
msgctxt ""
"01020000.xhp\n"
"hd_id3145073\n"
-"90\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+End"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline> + མཇུག"
@@ -153,7 +140,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3153283\n"
-"91\n"
"help.text"
msgid "Moves the cursor to the last cell on the sheet that contains data."
msgstr "ནང་ན་གནད་སྡུད་ཤོམ་ཏེ་ཡོད་པའི་ཤོག་ཁྲམ་གུ་ལུ་འོད་རྟགས་འདི་མཇུག་གི་ནང་ཐིག་ལུ་སྤོཝ་ཨིན།"
@@ -162,7 +148,6 @@ msgstr "ནང་ན་གནད་སྡུད་ཤོམ་ཏེ་ཡོད
msgctxt ""
"01020000.xhp\n"
"hd_id3149127\n"
-"92\n"
"help.text"
msgid "Home"
msgstr "ཁྱིམ།"
@@ -171,7 +156,6 @@ msgstr "ཁྱིམ།"
msgctxt ""
"01020000.xhp\n"
"par_id3159205\n"
-"93\n"
"help.text"
msgid "Moves the cursor to the first cell of the current row."
msgstr "འོད་རྟགས་འདི་ད་ལྟོའི་གྲལ་ཐིག་གི་ནང་ཐིག་དང་པམ་ནང་ལུ་སྤོཝ་ཨིན།"
@@ -180,7 +164,6 @@ msgstr "འོད་རྟགས་འདི་ད་ལྟོའི་གྲལ
msgctxt ""
"01020000.xhp\n"
"hd_id3149897\n"
-"94\n"
"help.text"
msgid "End"
msgstr "མཇུག"
@@ -189,7 +172,6 @@ msgstr "མཇུག"
msgctxt ""
"01020000.xhp\n"
"par_id3155095\n"
-"95\n"
"help.text"
msgid "Moves the cursor to the last cell of the current row."
msgstr "འོད་རྟགས་འདི་ད་ལྟོའི་གྲལ་ཐིག་གི་མཇུག་གི་ནང་ཐིག་ནང་ལུ་སྤོཝ་ཨིན།"
@@ -198,7 +180,6 @@ msgstr "འོད་རྟགས་འདི་ད་ལྟོའི་གྲལ
msgctxt ""
"01020000.xhp\n"
"hd_id4149127\n"
-"92\n"
"help.text"
msgid "Shift+Home"
msgstr ""
@@ -207,7 +188,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"par_id4159205\n"
-"93\n"
"help.text"
msgid "Selects cells from the current cell to the first cell of the current row."
msgstr ""
@@ -216,7 +196,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"hd_id4149897\n"
-"94\n"
"help.text"
msgid "Shift+End"
msgstr ""
@@ -225,7 +204,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"par_id4155095\n"
-"95\n"
"help.text"
msgid "Selects cells from the current cell to the last cell of the current row."
msgstr ""
@@ -234,7 +212,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"hd_id5149127\n"
-"92\n"
"help.text"
msgid "Shift+Page Up"
msgstr ""
@@ -243,7 +220,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"par_id5159205\n"
-"93\n"
"help.text"
msgid "Selects cells from the current cell up to one page in the current column or extends the existing selection one page up."
msgstr ""
@@ -252,7 +228,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"hd_id5149897\n"
-"94\n"
"help.text"
msgid "Shift+Page Down"
msgstr ""
@@ -261,7 +236,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"par_id5155095\n"
-"95\n"
"help.text"
msgid "Selects cells from the current cell down to one page in the current column or extends the existing selection one page down."
msgstr ""
@@ -270,7 +244,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"hd_id3143220\n"
-"101\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Left Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline> +མདའ་རྟགས་གཡོན།"
@@ -279,7 +252,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3154766\n"
-"102\n"
"help.text"
msgid "Moves the cursor to the left edge of the current data range. If the column to the left of the cell that contains the cursor is empty, the cursor moves to the next column to the left that contains data."
msgstr "འོད་རྟགས་འདི་ད་ལྟོའི་གནད་སྡུད་ཁྱབ་ཚད་གཡོན་མཐའམ་ནང་ལུ་སྤོཝ་ཨིན། ནང་ན་འོད་རྟགས་ཤོམ་ཏེ་ཡོད་པའི་ནང་ཐིག་གི་གཡོན་གྱི་ཀེར་ཐིག་འདི་སྟོངམ་ཡོད་པ་ཅིན་ འོད་རྟགས་འདི་གནད་སྡུད་ནང་ན་ཤོམ་ཏེ་ཡོད་པའི་གཡོན་གྱི་ཤུལ་མམ་ཀེར་ཐིག་ནང་ལུ་སྤོཝ་ཨིན།"
@@ -288,7 +260,6 @@ msgstr "འོད་རྟགས་འདི་ད་ལྟོའི་གནད
msgctxt ""
"01020000.xhp\n"
"hd_id3153554\n"
-"103\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Right Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline> + མདའ་རྟགས་གཡས།"
@@ -297,7 +268,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3155593\n"
-"104\n"
"help.text"
msgid "Moves the cursor to the right edge of the current data range. If the column to the right of the cell that contains the cursor is empty, the cursor moves to the next column to the right that contains data."
msgstr "འོད་རྟགས་འདི་ད་ལྟོའི་གནད་སྡུད་ཁྱབ་ཚད་ཀྱི་མཐའམ་གཡས་ལུ་སྤོཝ་ཨིན། ནང་ན་འོད་རྟགས་ཤོམ་ཏེ་ཡོད་པའི་ནང་ཐིག་གི་གཡས་ལུ་ཡོད་པའི་ཀེར་ཐིག་འདི་སྟོངམ་ཨིན་པ་ཅིན་ འོད་རྟགས་འདི་ ནང་ན་གནད་སྡུད་ཤོམ་ཏེ་ཡོད་པའི་གཡས་ཀྱི་ཀེར་ཐིག་གཡས་ལུ་སྤོཝ་ཨིན།"
@@ -306,7 +276,6 @@ msgstr "འོད་རྟགས་འདི་ད་ལྟོའི་གནད
msgctxt ""
"01020000.xhp\n"
"hd_id3149317\n"
-"105\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Up Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline> + མདའ་རྟགས་ཡར།"
@@ -315,7 +284,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3153076\n"
-"106\n"
"help.text"
msgid "Moves the cursor to the top edge of the current data range. If the row above the cell that contains the cursor is empty, the cursor moves up to the next row that contains data."
msgstr "འོད་རྟགས་འདི་ད་ལྟོའི་གནད་སྡུད་ཁྱབ་ཚད་ཀྱི་སྤྱི་ཏོག་གི་མཐའམ་ལུ་སྤོཝ་ཨིན། ནང་ན་འོད་རྟགས་ཤོམ་ཏེ་ཡོད་པའི་ནང་ཐིག་གི་ལྟག་གི་གྲལ་ཐིག་འདི་སྟོངམ་ཨིན་པ་ཅིན་ འོད་རྟགས་འདི་ཡར་ ནང་ན་གནད་སྡུད་ཤོམ་ཏེ་ཡོད་པའི་ཤུལ་མམ་གྱི་གྲལ་ཐིག་ལུ་སྤོཝ་ཨིན།"
@@ -324,7 +292,6 @@ msgstr "འོད་རྟགས་འདི་ད་ལྟོའི་གནད
msgctxt ""
"01020000.xhp\n"
"hd_id3147250\n"
-"107\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Down Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline> + མདའ་རྟགས་མར།"
@@ -333,7 +300,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3149054\n"
-"108\n"
"help.text"
msgid "Moves the cursor to the bottom edge of the current data range. If the row below the cell that contains the cursor is empty, the cursor moves down to the next row that contains data."
msgstr "འོད་རྟགས་འདི་ད་ལྟོའི་གནད་སྡུད་ཁྱབ་ཚད་ཀྱི་ མཇུག་གི་མཐའམ་ལུ་སྤོཝ་ཨིན། ནང་ན་འོད་རྟགས་ཤོམ་ཏེ་ཡོད་པའི་ ནང་ཐིག་འོག་གི་གྲལ་ཐིག་འདི་སྟོངམ་ཨིན་པ་ཅིན་ འོད་རྟགས་འདི་མར་ ནང་ད་གནད་སྡུད་ཤོམ་ཏེ་ཡོད་པའི་ ཤུལ་མམ་གྱི་གྲལ་ཐིག་ལུ་སྤཝ་ཨིན།"
@@ -342,7 +308,6 @@ msgstr "འོད་རྟགས་འདི་ད་ལྟོའི་གནད
msgctxt ""
"01020000.xhp\n"
"hd_id3148744\n"
-"184\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline> + སོར་ལྡེ་ +མདའ་རྟགས།"
@@ -351,7 +316,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3159258\n"
-"185\n"
"help.text"
msgid "Selects all cells containing data from the current cell to the end of the continuous range of data cells, in the direction of the arrow pressed. If used to select rows and columns together, a rectangular cell range is selected."
msgstr "མདའ་རྟགས་ཨེབ་སྟེ་ཡོད་པའི་ཁ་ཕྱོགས་ནང་ ད་ལྟོའི་ནང་ཐིག་ལས་ གནད་སྡུད་ནང་ཐིག་ཚུ་གི་ཁྱབ་ཚད་ཀྱི་འཕྲོ་མཐུད་མཇུག་ཚུན་ ནང་ཐིག་ཚུ་ཆ་མཉམ་རང་ནང་ན་གནད་སྡུད་ཤོམ་ཏེ་ཡོད་མི་ཚུ་སེལ་འཐུ་འབདཝ་ཨིན། གྲལ་ཐིག་ཚུ་དང་ཀེར་ཐིག་ཚུ་གཅིག་ཁར་སེལ་འཐུ་འབད་ནི་ལུ་ལག་ལེན་འཐབ་པ་ཅིན་ ནང་ཐིག་ཁྱབ་ཚད་གྲུ་བཞི་ནར་མོ་ཅིག་སེལ་འཐུ་གྲུབ་ཡོདཔ་ཨིན།"
@@ -360,7 +324,6 @@ msgstr "མདའ་རྟགས་ཨེབ་སྟེ་ཡོད་པའི
msgctxt ""
"01020000.xhp\n"
"hd_id3156399\n"
-"109\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཤོག་ལེབ་ཡར།"
@@ -369,26 +332,22 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3145236\n"
-"110\n"
"help.text"
msgid "Moves one sheet to the left."
msgstr "ཤོག་ཁྲམ་གཅིག་གཡོན་ལུ་སྤོཝ་ཨིན།"
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"par_id3149725\n"
-"131\n"
"help.text"
msgid "In the print preview: Moves to the previous print page."
-msgstr "ཤོག་ལེབ་སྔོན་བལྟ་ནང་ལུ་:ཧེ་མ་གི་དཔར་བསྐྲུན་ཤོག་ལེབ་ལུ་སྤོཝ་ཨིན།"
+msgstr ""
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3147411\n"
-"111\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline> + ཤོག་ལེབ་མར།"
@@ -397,26 +356,22 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3150372\n"
-"112\n"
"help.text"
msgid "Moves one sheet to the right."
msgstr "ཤོག་ཁྲམ་གཅིག་གཡས་ལུ་སྤོཝ་ཨིན།"
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"par_id3159120\n"
-"132\n"
"help.text"
msgid "In the print preview: Moves to the next print page."
-msgstr "ཤོག་ལེབ་སྔོན་བལྟ་ནང་ལུ་ : ཤུལ་མམ་གྱི་དཔར་བསྐྲུན་ཤོག་ལེབ་ལུ་སྤོཝ་ཨིན།"
+msgstr ""
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3146885\n"
-"113\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Up"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་ </caseinline><defaultinline>གདམ་ལྡེ་ </defaultinline></switchinline>+༠།"
@@ -425,7 +380,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ
msgctxt ""
"01020000.xhp\n"
"par_id3152976\n"
-"114\n"
"help.text"
msgid "Moves one screen to the left."
msgstr "གསལ་གཞི་གཅིག་གཡོན་ལུ་སྤོཝ་ཨིན།"
@@ -434,7 +388,6 @@ msgstr "གསལ་གཞི་གཅིག་གཡོན་ལུ་སྤོ
msgctxt ""
"01020000.xhp\n"
"hd_id3149013\n"
-"115\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Down"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་ </caseinline><defaultinline>གདམ་ལྡེ་ </defaultinline></switchinline>+༠།"
@@ -443,7 +396,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ
msgctxt ""
"01020000.xhp\n"
"par_id3150477\n"
-"116\n"
"help.text"
msgid "Moves one screen page to the right."
msgstr "གསལ་གཞིའི་ཤོག་ལེབ་གཅིག་གཡས་ལུ་སྤོཝ་ཨིན།"
@@ -484,7 +436,6 @@ msgstr "ད་ལྟོའི་ཤོག་ཁྲམ་ཚུའི་སེལ
msgctxt ""
"01020000.xhp\n"
"hd_id3145826\n"
-"96\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ *"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+ཨེཕ་༡ །"
@@ -493,7 +444,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3148882\n"
-"97\n"
"help.text"
msgid "where (*) is the multiplication sign on the numeric key pad"
msgstr "ཨང་གྲངས་ལྡེ་མིག་གདན་གུ་ལུ་ དགུ་མཐའ་རྟགས་འདི་(*) ཨིན་ས།"
@@ -502,7 +452,6 @@ msgstr "ཨང་གྲངས་ལྡེ་མིག་གདན་གུ་ལ
msgctxt ""
"01020000.xhp\n"
"par_id3154847\n"
-"98\n"
"help.text"
msgid "Selects the data range that contains the cursor. A range is a contiguous cell range that contains data and is bounded by empty row and columns."
msgstr "ནང་ན་འོད་རྟགས་ཤོམ་ཏེ་ཡོད་པའི་གནད་སྡུད་ཁྱབ་ཚད་སེལ་འཐུ་འབདཝ་ཨིན། ཁྱབ་ཚད་འདི་ ནང་ན་གནད་སྡུད་ཤོམ་ཏེ་ཡོད་མི་དང་ གྲལ་ཐིག་དང་ཀེར་ཐིག་སྟོངམ་ཚུ་གི་བཅད་མཚམས་འབད་དེ་ཡོད་པའི་ཉེ་འདབས་ནང་ཐིག་ཁྱབ་ཚད་གཅིག་ཨིན།"
@@ -511,7 +460,6 @@ msgstr "ནང་ན་འོད་རྟགས་ཤོམ་ཏེ་ཡོད
msgctxt ""
"01020000.xhp\n"
"hd_id3151233\n"
-"180\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ /"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+ཨེཕ་༡ །"
@@ -520,7 +468,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3149949\n"
-"181\n"
"help.text"
msgid "where (/) is the division sign on the numeric key pad"
msgstr "ཨང་གྲངས་ཀྱི་ལྡེ་མིག་གདན་གུ་ལུ་བགོ་རྩིས་རྟགས་འདི་ (/) ཨིན་ས།"
@@ -529,7 +476,6 @@ msgstr "ཨང་གྲངས་ཀྱི་ལྡེ་མིག་གདན་
msgctxt ""
"01020000.xhp\n"
"par_id3150144\n"
-"182\n"
"help.text"
msgid "Selects the matrix formula range that contains the cursor."
msgstr "ནང་ན་འོད་རྟགས་ཤོམ་ཏེ་ཡོད་པའི་ མེ་ཊིགསི་མན་ངག་ཁྱབ་ཚད་ སེལ་འཐུ་འབདཝ་ཨིན།"
@@ -570,7 +516,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"hd_id3155825\n"
-"99\n"
"help.text"
msgid "Enter (in a selected range)"
msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཁྱབ་ཚད་གཅིག་ནང་བཙུགས།"
@@ -579,7 +524,6 @@ msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་ཁྱབ
msgctxt ""
"01020000.xhp\n"
"par_id3153935\n"
-"100\n"
"help.text"
msgid "Moves the cursor down one cell in a selected range. To specify the direction that the cursor moves, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - General</emph>."
msgstr ""
@@ -612,7 +556,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"hd_id3148756\n"
-"5\n"
"help.text"
msgid "Function Keys Used in Spreadsheets"
msgstr "ཤོག་ཁྲམ་ཚུ་ནང་ལག་ལེན་འཐབ་ཡོད་པའི་ལས་འགན་ལྡེ་མིག་ཚུ།"
@@ -621,7 +564,6 @@ msgstr "ཤོག་ཁྲམ་ཚུ་ནང་ལག་ལེན་འཐབ
msgctxt ""
"01020000.xhp\n"
"hd_id3148581\n"
-"6\n"
"help.text"
msgid "Shortcut Keys"
msgstr "མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ།"
@@ -630,7 +572,6 @@ msgstr "མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ།"
msgctxt ""
"01020000.xhp\n"
"par_id3152790\n"
-"8\n"
"help.text"
msgid "<emph>Effect</emph>"
msgstr "<emph>ནུས་པ།</emph>"
@@ -639,7 +580,6 @@ msgstr "<emph>ནུས་པ།</emph>"
msgctxt ""
"01020000.xhp\n"
"hd_id3154809\n"
-"139\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F1"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+ཨེཕ་༡ །"
@@ -648,7 +588,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3145140\n"
-"138\n"
"help.text"
msgid "Displays the comment that is attached to the current cell"
msgstr "ད་ལྟོའི་ནང་ཐིག་ལུ་མཉམ་སྦྲགས་གྲུབ་ཡོད་པའི་དྲན་འཛིན་བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -657,7 +596,6 @@ msgstr "ད་ལྟོའི་ནང་ཐིག་ལུ་མཉམ་སྦ
msgctxt ""
"01020000.xhp\n"
"hd_id3146142\n"
-"9\n"
"help.text"
msgid "F2"
msgstr "ཨེཕ་ ༢ །"
@@ -666,7 +604,6 @@ msgstr "ཨེཕ་ ༢ །"
msgctxt ""
"01020000.xhp\n"
"par_id3148568\n"
-"10\n"
"help.text"
msgid "Switches to Edit mode and places the cursor at the end of the contents of the current cell. Press again to exit Edit mode."
msgstr "ཞུན་དག་ཐབས་ལམ་ལུ་སོར་བསྒྱུར་འབད་དེ་འོད་རྟགས་འདི་ད་ལྟོའི་ནང་ཐིག་གི་ནང་དོན་ཚུའི་མཇུག་ལུ་ བཞགཔ་ཨིན། ཞུན་དག་ཐབས་ལམ་ཕྱིར་འཐོན་ནིའི་དོན་ལུ་ ལོག་སྟེ་རང་ཨེབ།"
@@ -675,7 +612,6 @@ msgstr "ཞུན་དག་ཐབས་ལམ་ལུ་སོར་བསྒ
msgctxt ""
"01020000.xhp\n"
"par_id3153108\n"
-"179\n"
"help.text"
msgid "If the cursor is in an input box in a dialog that has a <emph>Minimize </emph>button, the dialog is hidden and the input box remains visible. Press F2 again to show the whole dialog."
msgstr "འོད་རྟགས་འདི་ <emph>Minimize </emph>ཨེབ་རྟ་ཡོད་པའི་ཌའི་ལོག་ནང་ཨིན་པུཊི་ནང་ལུ་ཡོད་པ་ཅིན་ ཌའི་ལོག་འདི་གསང་སྟེ་ཡོདཔ་དང་ ཨིན་པུཊི་སྒྲོམ་དེ་མཐོང་ཚུགསཔ་སྦེ་ལུས་འོངམ་ཨིན། ཌའི་ལོག་ཧྲིལ་བུ་སྟོན་ནིའི་དོན་ལུ་ ཨེཕ་༢ ལོག་སྟེ་རང་ཨེབ།"
@@ -684,7 +620,6 @@ msgstr "འོད་རྟགས་འདི་ <emph>Minimize </emph>ཨེབ
msgctxt ""
"01020000.xhp\n"
"hd_id3146850\n"
-"11\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+ཨེཕ་ ༢ །"
@@ -693,7 +628,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3145162\n"
-"12\n"
"help.text"
msgid "Opens the Function Wizard."
msgstr "ལས་འགན་ཝི་ཛརཌི་ཁ་ཕྱེཝ་ཨིན།"
@@ -702,7 +636,6 @@ msgstr "ལས་འགན་ཝི་ཛརཌི་ཁ་ཕྱེཝ་ཨི
msgctxt ""
"01020000.xhp\n"
"hd_id3147366\n"
-"137\n"
"help.text"
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
msgstr "སོར་ལྡེ་+<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+ཨེཕ་ ༢ །"
@@ -711,7 +644,6 @@ msgstr "སོར་ལྡེ་+<switchinline select=\"sys\"><caseinline select
msgctxt ""
"01020000.xhp\n"
"par_id3155929\n"
-"136\n"
"help.text"
msgid "Moves the cursor to the <emph>Input line</emph> where you can enter a formula for the current cell."
msgstr "ཁྱོད་ཀྱིས་ད་ལྟོའི་ནང་ཐིག་གི་དོན་ལུ་མན་ངག་བཙུགས་བཏུབ་ས་ <emph>ཨིན་པུཊི་གྲལ་ཐིག་ </emph>ལུ་ འོད་རྟགས་འདི་སྤོཝ་ཨིན།"
@@ -720,7 +652,6 @@ msgstr "ཁྱོད་ཀྱིས་ད་ལྟོའི་ནང་ཐིག
msgctxt ""
"01020000.xhp\n"
"hd_id3153730\n"
-"15\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+ཨེཕ་ ༣ །"
@@ -729,7 +660,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3145245\n"
-"16\n"
"help.text"
msgid "Opens the <emph>Define Names</emph> dialog."
msgstr "<emph>Define Names</emph> ཌའི་ལོག་ཁ་ཕྱེཝ་ཨིན།"
@@ -738,7 +668,6 @@ msgstr "<emph>Define Names</emph> ཌའི་ལོག་ཁ་ཕྱེཝ་
msgctxt ""
"01020000.xhp\n"
"hd_id3148768\n"
-"17\n"
"help.text"
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F4"
msgstr ""
@@ -747,7 +676,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"par_id3153047\n"
-"18\n"
"help.text"
msgid "Shows or Hides the Database explorer."
msgstr "གནད་སྡུད་གཞི་རྟེན་ཐབས་འཚོལ་མི་སྟོན་ནི་ཡང་ན་སྦཝ་ཨིན།"
@@ -756,7 +684,6 @@ msgstr "གནད་སྡུད་གཞི་རྟེན་ཐབས་འཚ
msgctxt ""
"01020000.xhp\n"
"hd_id3145353\n"
-"19\n"
"help.text"
msgid "F4"
msgstr ""
@@ -765,7 +692,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"par_id3155620\n"
-"20\n"
"help.text"
msgid "Rearranges the relative or absolute references (for example, A1, $A$1, $A1, A$1) in the input field."
msgstr "ཨིན་པུཊི་ས་སྒོ་ནང་ལུ་ འབྲེལ་བའི་ཡང་ན་ ཡང་དག་གཞི་བསྟུན་ཚུ་ སླར་བདེ་ཞིབ་འབདཝ་ཨིན།(དཔེ་འབད་བ་ཅིན་ A1, $A$1, $A1, A$1)"
@@ -774,7 +700,6 @@ msgstr "ཨིན་པུཊི་ས་སྒོ་ནང་ལུ་ འབ
msgctxt ""
"01020000.xhp\n"
"hd_id3156063\n"
-"21\n"
"help.text"
msgid "F5"
msgstr "ཨེཕ་ ༥ །"
@@ -783,7 +708,6 @@ msgstr "ཨེཕ་ ༥ །"
msgctxt ""
"01020000.xhp\n"
"par_id3149540\n"
-"22\n"
"help.text"
msgid "Shows or hides the <emph>Navigator</emph>."
msgstr "<emph>འགྲུལ་བསྐྱོད་པ་</emph>སྟོན་ནི་ཡང་ན་སྦ་བཞགཔ་ཨིན།"
@@ -792,7 +716,6 @@ msgstr "<emph>འགྲུལ་བསྐྱོད་པ་</emph>སྟོན
msgctxt ""
"01020000.xhp\n"
"hd_id3148392\n"
-"23\n"
"help.text"
msgid "Shift+F5"
msgstr "སོར་ལྡེ་+ཨེཕ་ ༥ །"
@@ -801,7 +724,6 @@ msgstr "སོར་ལྡེ་+ཨེཕ་ ༥ །"
msgctxt ""
"01020000.xhp\n"
"par_id3150268\n"
-"24\n"
"help.text"
msgid "Traces dependents."
msgstr "གཞན་རྟེན་ཚུའི་བཤུལ་འཚོལ་ཚུ།"
@@ -810,7 +732,6 @@ msgstr "གཞན་རྟེན་ཚུའི་བཤུལ་འཚོལ་
msgctxt ""
"01020000.xhp\n"
"hd_id3148430\n"
-"27\n"
"help.text"
msgid "Shift+F7"
msgstr "སོར་ལྡེ་+ཨེཕ་ ༤ །"
@@ -819,7 +740,6 @@ msgstr "སོར་ལྡེ་+ཨེཕ་ ༤ །"
msgctxt ""
"01020000.xhp\n"
"par_id3153179\n"
-"28\n"
"help.text"
msgid "Traces precedents."
msgstr "མཚན་གཞི་ཚུའི་བཤུལ་འཚོལ་ཚུ།"
@@ -828,7 +748,6 @@ msgstr "མཚན་གཞི་ཚུའི་བཤུལ་འཚོལ་ཚ
msgctxt ""
"01020000.xhp\n"
"hd_id3150568\n"
-"135\n"
"help.text"
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F5"
msgstr "སོར་ལྡེ་+<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+ཨེཕ་ ༥ །"
@@ -837,7 +756,6 @@ msgstr "སོར་ལྡེ་+<switchinline select=\"sys\"><caseinline select
msgctxt ""
"01020000.xhp\n"
"par_id3153551\n"
-"134\n"
"help.text"
msgid "Moves the cursor from the <emph>Input line </emph>to the <emph>Sheet area</emph> box."
msgstr "འོད་རྟགས་འདི་<emph>ཨིན་པུཊི་གྲལ་ཐིག་ </emph>ལས་ <emph>ཤོག་ཁྲམ་མངའ་ཁོངས་</emph>སྒྲོམ་ལུ་སྤོཝ་ཨིན།"
@@ -846,7 +764,6 @@ msgstr "འོད་རྟགས་འདི་<emph>ཨིན་པུཊི་
msgctxt ""
"01020000.xhp\n"
"hd_id3155368\n"
-"29\n"
"help.text"
msgid "F7"
msgstr "ཨེཕ་ ༧ །"
@@ -855,7 +772,6 @@ msgstr "ཨེཕ་ ༧ །"
msgctxt ""
"01020000.xhp\n"
"par_id3154871\n"
-"30\n"
"help.text"
msgid "Checks spelling in the current sheet."
msgstr "ད་ལྟོའི་ཤོག་ཁྲམ་ནང་ཡིག་སྡེབ་ཞིབ་དཔྱད་འབདཝ་ཨིན།"
@@ -864,7 +780,6 @@ msgstr "ད་ལྟོའི་ཤོག་ཁྲམ་ནང་ཡིག་ས
msgctxt ""
"01020000.xhp\n"
"hd_id3150688\n"
-"31\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+ཨེཕ་ ༧ །"
@@ -873,7 +788,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3149781\n"
-"32\n"
"help.text"
msgid "Opens the Thesaurus if the current cell contains text."
msgstr "ད་ལྟོའི་ནང་ཐིག་ནང་ན་ཚིག་ཡིག་ཤོམ་ཏེ་ཡོད་པ་ཅིན་ མངོན་བརྗོད་ཁ་ཕྱེཝ་ཨིན།"
@@ -882,7 +796,6 @@ msgstr "ད་ལྟོའི་ནང་ཐིག་ནང་ན་ཚིག་
msgctxt ""
"01020000.xhp\n"
"hd_id3156257\n"
-"33\n"
"help.text"
msgid "F8"
msgstr "ཨེཕ་ ༨ །"
@@ -891,7 +804,6 @@ msgstr "ཨེཕ་ ༨ །"
msgctxt ""
"01020000.xhp\n"
"par_id3147482\n"
-"34\n"
"help.text"
msgid "Turns additional selection mode on or off. In this mode, you can use the arrow keys to extend the selection. You can also click in another cell to extend the selection."
msgstr "སེལ་འཐུ་ཁ་སྐོང་ཐབས་ལམ་འདི་ཨོཕ་ཡང་ན་ ཨཱོན་ཊཱན་འབདཝ་ཨིན། འ་ནི་ཐབས་ལམ་ནང་ལུ་ཁྱོད་ཀྱིས་ སེལ་འཐུ་རྒྱ་བསྐྱེད་གཏང་ནིའི་དོན་ལུ་ མདའ་རྟགས་ལྡེ་མིག་ཚུ་ལག་ལེན་འཐབ་བཏུབ་ཨིན། ཁྱོད་ཀྱིས་ སེལ་འཐུ་རྒྱ་བསྐྱེད་གཏང་ནི་ལུ་ ནང་ཐིག་གཞན་མི་གཅིག་ནང་ཡང་ ཨེབ་གཏང་བཏུབ་ཨིན།"
@@ -900,7 +812,6 @@ msgstr "སེལ་འཐུ་ཁ་སྐོང་ཐབས་ལམ་འད
msgctxt ""
"01020000.xhp\n"
"hd_id3154313\n"
-"37\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F8"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ཨེཕ་ ༨ །"
@@ -909,7 +820,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3150385\n"
-"38\n"
"help.text"
msgid "Highlights cells containing values."
msgstr "གནས་གོང་ཚུ་ནང་ན་ཤོམ་ཏེ་ཡོད་པའི་ནང་ཐིག་ཚུ་གཙོ་དམིགས་འབདཝ་ཨིན།"
@@ -918,7 +828,6 @@ msgstr "གནས་གོང་ཚུ་ནང་ན་ཤོམ་ཏེ་ཡ
msgctxt ""
"01020000.xhp\n"
"hd_id3152479\n"
-"39\n"
"help.text"
msgid "F9"
msgstr "ཨེཕ་ ༩ །"
@@ -927,7 +836,6 @@ msgstr "ཨེཕ་ ༩ །"
msgctxt ""
"01020000.xhp\n"
"par_id3163827\n"
-"40\n"
"help.text"
msgid "Recalculates changed formulas in the current sheet."
msgstr ""
@@ -952,7 +860,6 @@ msgstr "ཤོག་ཁྲམ་ནང་མན་ངག་ཚུ་ཆ་མཉ
msgctxt ""
"01020000.xhp\n"
"hd_id3156300\n"
-"41\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+ཨེཕ་ ༩ །"
@@ -961,7 +868,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3154817\n"
-"42\n"
"help.text"
msgid "Updates the selected chart."
msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་དཔེ་རིས་དུས་མཐུན་བཟོཝ་ཨིན།"
@@ -970,7 +876,6 @@ msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་དཔེ
msgctxt ""
"01020000.xhp\n"
"hd_id3149279\n"
-"46\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+ཨེཕ་༡ །"
@@ -979,7 +884,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3150967\n"
-"47\n"
"help.text"
msgid "Opens the <emph>Styles and Formatting</emph> window where you can apply a formatting style to the contents of the cell or to the current sheet."
msgstr "ད་ལྟོའི་ཤོག་ཁྲམ་འདི་ལུ་ཡང་ན་ནང་ཐིག་འདི་གི་ནང་དོན་ཚུ་ལུ་ <emph> ཁྱོད་ཀྱིས་ རྩ་སྒྲིག་འབད་ནི་བཟོ་རྣམ་འཇུག་སྤྱོད་འབད་ཚུགས་ནི་ལུ་ </emph> རྩ་སྒྲིག་འབད་ནིའི་སྒོ་སྒྲིག་དང་བཟོ་རྣམ་ཚུ་ཁ་ཕྱེཝ་ཨིན།"
@@ -988,7 +892,6 @@ msgstr "ད་ལྟོའི་ཤོག་ཁྲམ་འདི་ལུ་ཡ
msgctxt ""
"01020000.xhp\n"
"hd_id3156308\n"
-"48\n"
"help.text"
msgid "Shift+F11"
msgstr "སོར་ལྡེ་+ཨེཕ་ ༡༡ །"
@@ -997,7 +900,6 @@ msgstr "སོར་ལྡེ་+ཨེཕ་ ༡༡ །"
msgctxt ""
"01020000.xhp\n"
"par_id3145209\n"
-"49\n"
"help.text"
msgid "Creates a document template."
msgstr "ཡིག་ཆའི་ཊེམ་པེལེཊི་གཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན།"
@@ -1006,7 +908,6 @@ msgstr "ཡིག་ཆའི་ཊེམ་པེལེཊི་གཅིག་
msgctxt ""
"01020000.xhp\n"
"hd_id3147622\n"
-"50\n"
"help.text"
msgid "Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command</caseinline><defaultinline>+Ctrl</defaultinline></switchinline>+F11"
msgstr "སོར་ལྡེ་ <switchinline select=\"sys\"><caseinline select=\"MAC\">+བརྡ་བཀོད་ </caseinline><defaultinline>+ཚད་འཛིན་ </defaultinline></switchinline>+ཨེཕ་ ༡༡ །"
@@ -1015,7 +916,6 @@ msgstr "སོར་ལྡེ་ <switchinline select=\"sys\"><caseinline select
msgctxt ""
"01020000.xhp\n"
"par_id3153215\n"
-"51\n"
"help.text"
msgid "Updates the templates."
msgstr "ཊེམ་པེལེཊིསི་འདི་ དུས་མཐུན་བཟོཝ་ཨིན།"
@@ -1024,7 +924,6 @@ msgstr "ཊེམ་པེལེཊིསི་འདི་ དུས་མཐ
msgctxt ""
"01020000.xhp\n"
"hd_id3150760\n"
-"52\n"
"help.text"
msgid "F12"
msgstr "ཨེཕ་ ༡༢"
@@ -1033,7 +932,6 @@ msgstr "ཨེཕ་ ༡༢"
msgctxt ""
"01020000.xhp\n"
"par_id3156321\n"
-"53\n"
"help.text"
msgid "Groups the selected data range."
msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་གནད་སྡུད་ཁྱབ་ཚད་སྡེ་ཚན་བཟོཝ་ཨིན།"
@@ -1042,7 +940,6 @@ msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་གནད
msgctxt ""
"01020000.xhp\n"
"hd_id3146859\n"
-"54\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+ཨེཕ་ ༡༢ །"
@@ -1051,7 +948,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3156128\n"
-"55\n"
"help.text"
msgid "Ungroups the selected data range."
msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་གནད་སྡུད་ཁྱབ་ཚད་འདི་སྡེ་ཚན་བཟོཝ་ཨིན།"
@@ -1060,7 +956,6 @@ msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་གནད
msgctxt ""
"01020000.xhp\n"
"hd_id3151264\n"
-"117\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་ </caseinline><defaultinline>གདམ་ལྡེ་ </defaultinline></switchinline> + སོར་ལྡེ་ +མདའ་རྟགས་ལྡེ་མིག"
@@ -1069,7 +964,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ
msgctxt ""
"01020000.xhp\n"
"par_id3153155\n"
-"118\n"
"help.text"
msgid "Increases the height of current row (only in <link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">OpenOffice.org legacy compatibility mode</link>)."
msgstr ""
@@ -1078,7 +972,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"hd_id3151297\n"
-"119\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Up Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་ </caseinline><defaultinline>གདམ་ལྡེ་ </defaultinline></switchinline>+༠།"
@@ -1087,7 +980,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ
msgctxt ""
"01020000.xhp\n"
"par_id3155849\n"
-"120\n"
"help.text"
msgid "Decreases the height of current row (only in <link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">OpenOffice.org legacy compatibility mode</link>)."
msgstr ""
@@ -1096,7 +988,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"hd_id3155997\n"
-"121\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Right Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་ </caseinline><defaultinline>གདམ་ལྡེ་ </defaultinline></switchinline> + སོར་ལྡེ་ +མདའ་རྟགས་ལྡེ་མིག"
@@ -1105,7 +996,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ
msgctxt ""
"01020000.xhp\n"
"par_id3150256\n"
-"122\n"
"help.text"
msgid "Increases the width of the current column."
msgstr "ད་ལྟོའི་ཀེར་ཐིག་གི་རྒྱ་ཚད་ཡར་འཕར་འབདཝ་ཨིན།"
@@ -1114,7 +1004,6 @@ msgstr "ད་ལྟོའི་ཀེར་ཐིག་གི་རྒྱ་ཚ
msgctxt ""
"01020000.xhp\n"
"hd_id3154046\n"
-"123\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Left Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་ </caseinline><defaultinline>གདམ་ལྡེ་ </defaultinline></switchinline> + སོར་ལྡེ་ +མདའ་རྟགས་ལྡེ་མིག"
@@ -1123,7 +1012,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ
msgctxt ""
"01020000.xhp\n"
"par_id3150155\n"
-"124\n"
"help.text"
msgid "Decreases the width of the current column."
msgstr "ད་ལྟོའི་ཀེར་ཐིག་གི་ རྒྱ་ཚད་མར་ཕབ་འབདཝ་ཨིན།"
@@ -1132,7 +1020,6 @@ msgstr "ད་ལྟོའི་ཀེར་ཐིག་གི་ རྒྱ་
msgctxt ""
"01020000.xhp\n"
"hd_id3149293\n"
-"125\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift+Arrow Key"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་ </caseinline><defaultinline>གདམ་ལྡེ་ </defaultinline></switchinline> + སོར་ལྡེ་ +མདའ་རྟགས་ལྡེ་མིག"
@@ -1141,7 +1028,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ
msgctxt ""
"01020000.xhp\n"
"par_id3159180\n"
-"126\n"
"help.text"
msgid "Optimizes the column width or row height based on the current cell."
msgstr "ད་ལྟོའི་ནང་ཐིག་གུ་ལུ་གཞི་བཞག་སྟེ་ཀེར་ཐིག་རྒྱ་ཚད་ཡང་ན་ གྲལ་ཐིག་མཐོ་ཚད་ ལེགས་ལྡན་བཟོཝ་ཨིན།"
@@ -1150,7 +1036,6 @@ msgstr "ད་ལྟོའི་ནང་ཐིག་གུ་ལུ་གཞི
msgctxt ""
"01020000.xhp\n"
"hd_id3156013\n"
-"56\n"
"help.text"
msgid "Formatting Cells Using Shortcut Keys"
msgstr "མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ་ལག་ལེན་ཐོག་ལས་ནང་ཐིག་ཚུ་རྩ་སྒྲིག་འབད་ན།"
@@ -1159,7 +1044,6 @@ msgstr "མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ་ལག
msgctxt ""
"01020000.xhp\n"
"par_id3153979\n"
-"57\n"
"help.text"
msgid "The following cell formats can be applied with the keyboard:"
msgstr "འོག་ལུ་ཡོད་པའི་ནང་ཐིག་རྩ་སྒྲིག་ཚུ་ལྡེ་སྒྲོམ་དང་གཅིག་ཁར་འཇུག་སྤྱོད་འབད་བཏུབ་ཨིན།"
@@ -1168,7 +1052,6 @@ msgstr "འོག་ལུ་ཡོད་པའི་ནང་ཐིག་རྩ
msgctxt ""
"01020000.xhp\n"
"hd_id3147492\n"
-"58\n"
"help.text"
msgid "Shortcut Keys"
msgstr "མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ།"
@@ -1177,7 +1060,6 @@ msgstr "མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ།"
msgctxt ""
"01020000.xhp\n"
"par_id3154305\n"
-"60\n"
"help.text"
msgid "<emph>Effect</emph>"
msgstr "<emph>ནུས་པ།</emph>"
@@ -1202,7 +1084,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"hd_id3145668\n"
-"61\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+1 (not on the number pad)"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+སོར་ལྡེ་+༡ (ཨང་གདན་གུ་ལུ་མེན་།)"
@@ -1211,7 +1092,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3149196\n"
-"63\n"
"help.text"
msgid "Two decimal places, thousands separator"
msgstr "བཅུ་ཚག་ས་གནས་ཚུ་གཉིས་ དབྱེ་བྱེད་སྟོང་ཚུ།"
@@ -1220,7 +1100,6 @@ msgstr "བཅུ་ཚག་ས་གནས་ཚུ་གཉིས་ དབ
msgctxt ""
"01020000.xhp\n"
"hd_id3155331\n"
-"64\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+2 (not on the number pad)"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+སོར་ལྡེ་+༢ (ཨང་གདན་གུ་ལུ་མེན།)"
@@ -1229,7 +1108,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3150120\n"
-"66\n"
"help.text"
msgid "Standard exponential format"
msgstr "ཚད་ལྡན་བསྒྱུར་གྲངས་རྩ་སྒྲིག"
@@ -1238,7 +1116,6 @@ msgstr "ཚད་ལྡན་བསྒྱུར་གྲངས་རྩ་སྒ
msgctxt ""
"01020000.xhp\n"
"hd_id3154932\n"
-"67\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+3 (not on the number pad)"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+སོར་ལྡེ་+༣ (ཨང་གདན་གུ་ལུ་མེན།)"
@@ -1247,7 +1124,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3148822\n"
-"69\n"
"help.text"
msgid "Standard date format"
msgstr "ཚད་ལྡན་ཚེས་ཀྱི་རྩ་སྒྲིག"
@@ -1256,7 +1132,6 @@ msgstr "ཚད་ལྡན་ཚེས་ཀྱི་རྩ་སྒྲིག"
msgctxt ""
"01020000.xhp\n"
"hd_id3148829\n"
-"70\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+4 (not on the number pad)"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+སོར་ལྡེ་+༤ (ཨང་གདན་གུ་ལུ་མེན།)"
@@ -1265,7 +1140,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3159152\n"
-"72\n"
"help.text"
msgid "Standard currency format"
msgstr "ཚད་ལྡན་དངུལ་གྱི་རྩ་སྒྲིག"
@@ -1274,7 +1148,6 @@ msgstr "ཚད་ལྡན་དངུལ་གྱི་རྩ་སྒྲིག
msgctxt ""
"01020000.xhp\n"
"hd_id3150776\n"
-"73\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+5 (not on the number pad)"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+སོར་ལྡེ་+༥ (ཨང་གདན་གུ་ལུ་མེན།)"
@@ -1283,7 +1156,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3148800\n"
-"75\n"
"help.text"
msgid "Standard percentage format (two decimal places)"
msgstr "ཚད་ལྡན་བརྒྱ་ཆ་རྩ་སྒྲིག(བཅུ་ཚག་ས་གནས་ཚུ་གཉིས།)"
@@ -1292,7 +1164,6 @@ msgstr "ཚད་ལྡན་བརྒྱ་ཆ་རྩ་སྒྲིག(བ
msgctxt ""
"01020000.xhp\n"
"hd_id3158407\n"
-"76\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+6 (not on the number pad)"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+སོར་ལྡེ་+༦ (ཨང་གདན་གུ་མེན།)"
@@ -1301,7 +1172,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3148444\n"
-"78\n"
"help.text"
msgid "Standard format"
msgstr "ཚད་ལྡན་རྩ་སྒྲིག"
@@ -1310,7 +1180,6 @@ msgstr "ཚད་ལྡན་རྩ་སྒྲིག"
msgctxt ""
"01020000.xhp\n"
"hd_id3154205\n"
-"178\n"
"help.text"
msgid "Using the pivot table"
msgstr "གནད་སྡུད་པའི་ལོཊི་ ལག་ལེན་འཐབ་ནི།"
@@ -1335,7 +1204,6 @@ msgstr "ནུས་པ།"
msgctxt ""
"01020000.xhp\n"
"hd_id3153577\n"
-"177\n"
"help.text"
msgid "Tab"
msgstr "མཆོང་ལྡེ།"
@@ -1344,7 +1212,6 @@ msgstr "མཆོང་ལྡེ།"
msgctxt ""
"01020000.xhp\n"
"par_id3147511\n"
-"176\n"
"help.text"
msgid "Changes the focus by moving forwards through the areas and buttons of the dialog."
msgstr "ཌའི་ལོག་གི་ཨེབ་རྟ་ཚུ་དང་མངའ་ཁོངས་ཚུ་བརྒྱུད་དེ་གདོང་བསྐྱོད་སྤོ་ཐོག་ལས་ཆད་དམིགས་ཚུ་བསྒྱུར་བཅོས་འབདཝ་ཨིན།"
@@ -1353,7 +1220,6 @@ msgstr "ཌའི་ལོག་གི་ཨེབ་རྟ་ཚུ་དང་
msgctxt ""
"01020000.xhp\n"
"hd_id3154266\n"
-"175\n"
"help.text"
msgid "Shift+Tab"
msgstr "སོར་ལྡེ་+མཆོང་ལྡེ།"
@@ -1362,7 +1228,6 @@ msgstr "སོར་ལྡེ་+མཆོང་ལྡེ།"
msgctxt ""
"01020000.xhp\n"
"par_id3155362\n"
-"174\n"
"help.text"
msgid "Changes the focus by moving backwards through the areas and buttons of the dialog."
msgstr "དའི་ལོག་གི་མངའ་ཁོངས་ཚུ་དང་ཨེབ་རྟ་ཚུ་བརྒྱུད་དེ་རྒྱབ་བསྐྱོད་ལུ་ སྤོ་ཐོག་ལས་ཆད་དམིགས་ཚུ་བསྒྱུར་བཅོས་འབདཝ་ཨིན།"
@@ -1371,7 +1236,6 @@ msgstr "དའི་ལོག་གི་མངའ་ཁོངས་ཚུ་ད
msgctxt ""
"01020000.xhp\n"
"hd_id3148484\n"
-"173\n"
"help.text"
msgid "Up Arrow"
msgstr "མདའ་རྟགས་ཡར།"
@@ -1380,7 +1244,6 @@ msgstr "མདའ་རྟགས་ཡར།"
msgctxt ""
"01020000.xhp\n"
"par_id3149152\n"
-"172\n"
"help.text"
msgid "Moves the focus up one item in the current dialog area."
msgstr "ད་ལྟོའི་ཌའི་ལོག་མངའ་ཁོངས་ནང་ལུ་ཆད་དམིགས་འདི་རྣམ་གྲངས་གཅིག་ཡར་སྤོཝ་ཨིན།"
@@ -1389,7 +1252,6 @@ msgstr "ད་ལྟོའི་ཌའི་ལོག་མངའ་ཁོངས
msgctxt ""
"01020000.xhp\n"
"hd_id3154273\n"
-"171\n"
"help.text"
msgid "Down Arrow"
msgstr "མདའ་རྟགས་མར།"
@@ -1398,7 +1260,6 @@ msgstr "མདའ་རྟགས་མར།"
msgctxt ""
"01020000.xhp\n"
"par_id3158424\n"
-"170\n"
"help.text"
msgid "Moves the focus down one item in the current dialog area."
msgstr "ད་ལྟོའིི་ཌའི་ལོག་མངའ་ཁོངས་ནང་ལུ་ཆད་དམིགས་འདི་རྣམ་གྲངས་གཅིག་གི་མར་སྤོཝ་ཨིན།"
@@ -1407,7 +1268,6 @@ msgstr "ད་ལྟོའིི་ཌའི་ལོག་མངའ་ཁོང
msgctxt ""
"01020000.xhp\n"
"hd_id3148912\n"
-"169\n"
"help.text"
msgid "Left Arrow"
msgstr "མདའ་རྟགས་གཡོན།"
@@ -1416,7 +1276,6 @@ msgstr "མདའ་རྟགས་གཡོན།"
msgctxt ""
"01020000.xhp\n"
"par_id3153238\n"
-"168\n"
"help.text"
msgid "Moves the focus one item to the left in the current dialog area."
msgstr "ད་ལྟོའི་ཌའི་ལོག་མངའ་ཁོངས་ནང་ལུ་ཆད་དམིགས་འདི་རྣམ་གྲངས་གཅིག་གཡོན་ལུ་སྤོཝ་ཨིན།"
@@ -1425,7 +1284,6 @@ msgstr "ད་ལྟོའི་ཌའི་ལོག་མངའ་ཁོངས
msgctxt ""
"01020000.xhp\n"
"hd_id3150712\n"
-"167\n"
"help.text"
msgid "Right Arrow"
msgstr "མདའ་རྟགས་གཡས།"
@@ -1434,7 +1292,6 @@ msgstr "མདའ་རྟགས་གཡས།"
msgctxt ""
"01020000.xhp\n"
"par_id3166458\n"
-"166\n"
"help.text"
msgid "Moves the focus one item to the right in the current dialog area."
msgstr "ལྟོའི་ཌའི་ལོག་མངའ་ཁོངས་ནང་ལུ་ཆད་དམིགས་འདི་རྣམ་གྲངས་གཅིག་གཡས་ལུ་སྤོཝ་ཨིན།"
@@ -1443,7 +1300,6 @@ msgstr "ལྟོའི་ཌའི་ལོག་མངའ་ཁོངས་ན
msgctxt ""
"01020000.xhp\n"
"hd_id3146947\n"
-"165\n"
"help.text"
msgid "Home"
msgstr "ཁྱིམ།"
@@ -1452,7 +1308,6 @@ msgstr "ཁྱིམ།"
msgctxt ""
"01020000.xhp\n"
"par_id3153742\n"
-"164\n"
"help.text"
msgid "Selects the first item in the current dialog area."
msgstr "ད་ལྟོའི་ཌའི་ལོག་མངའ་ཁོངས་ནང་ལུ་ རྣམ་གྲངས་དང་པམ་འདི་སེལ་འཐུ་འབདཝ་ཨིན།"
@@ -1461,7 +1316,6 @@ msgstr "ད་ལྟོའི་ཌའི་ལོག་མངའ་ཁོངས
msgctxt ""
"01020000.xhp\n"
"hd_id3153387\n"
-"163\n"
"help.text"
msgid "End"
msgstr "མཇུག"
@@ -1470,7 +1324,6 @@ msgstr "མཇུག"
msgctxt ""
"01020000.xhp\n"
"par_id3153684\n"
-"162\n"
"help.text"
msgid "Selects the last item in the current dialog area."
msgstr "ད་ལྟོའི་ཌའི་ལོག་མངའ་ཁོངས་ནང་ལུ་ མཇུག་གི་རྣམ་གྲངས་སེལ་འཐུ་འབདཝ་ཨིན།"
@@ -1479,7 +1332,6 @@ msgstr "ད་ལྟོའི་ཌའི་ལོག་མངའ་ཁོངས
msgctxt ""
"01020000.xhp\n"
"hd_id3155584\n"
-"161\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Row\""
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་ </caseinline><defaultinline>གདམ་ལྡེ་ </defaultinline></switchinline>དང་མིང་ཚིག་ \"Row\" ནང་ལུ་འོག་ཐིག་ཐོན་ཡོད་པའི་ཡིག་འབྲུ།"
@@ -1488,7 +1340,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ
msgctxt ""
"01020000.xhp\n"
"par_id3152949\n"
-"160\n"
"help.text"
msgid "Copies or moves the current field into the \"Row\" area."
msgstr "ད་ལྟོའི་ས་སྒོ་འདི་ \"Row\" མངའ་ཁོངས་ནང་ལུ་འདྲ་བཤུས་སམ་ སྤོཝ་ཨིན།"
@@ -1497,7 +1348,6 @@ msgstr "ད་ལྟོའི་ས་སྒོ་འདི་ \"Row\" མངའ
msgctxt ""
"01020000.xhp\n"
"hd_id3159269\n"
-"159\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Column\""
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་ </caseinline><defaultinline>གདམ་ལྡེ་ </defaultinline></switchinline>དང་མིང་ཚིག་ \"Column\"་ནང་ལུ་འོག་ཐིག་ཐོན་ཡོད་པའི་ཡིག་འབྲུ།"
@@ -1506,7 +1356,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ
msgctxt ""
"01020000.xhp\n"
"par_id3149968\n"
-"158\n"
"help.text"
msgid "Copies or moves the current field into the \"Column\" area."
msgstr "ད་ལྟོའི་ས་སྒོ་འདི་ \"Column\" མངའ་ཁོངས་ནང་ལུ་འདྲ་བཤུས་སམ་སྤོཝ་ཨིན།"
@@ -1515,7 +1364,6 @@ msgstr "ད་ལྟོའི་ས་སྒོ་འདི་ \"Column\" མང
msgctxt ""
"01020000.xhp\n"
"hd_id3149923\n"
-"157\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Data\""
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་ </caseinline><defaultinline>གདམ་ལྡེ་ </defaultinline></switchinline> དང་མིང་ཚིག་ \"Data\" ནང་ལུ་འོག་ཐིག་ཐོན་ཡོད་པའི་ཡིག་འབྲུ།"
@@ -1524,7 +1372,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ
msgctxt ""
"01020000.xhp\n"
"par_id3148649\n"
-"156\n"
"help.text"
msgid "Copies or moves the current field into the \"Data\" area."
msgstr "ད་ལྟོའི་ས་སྒོ་འདི་ \"Data\"མངའ་ཁོངས་ནང་ལུ་འདྲ་བཤུས་སམ་སྤོཝ་ཨིན།"
@@ -1533,7 +1380,6 @@ msgstr "ད་ལྟོའི་ས་སྒོ་འདི་ \"Data\"མངའ
msgctxt ""
"01020000.xhp\n"
"hd_id3149418\n"
-"155\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Up Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline> + མདའ་རྟགས་ཡར།"
@@ -1542,7 +1388,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3154335\n"
-"154\n"
"help.text"
msgid "Moves the current field up one place."
msgstr "ད་ལྟོའི་ས་སྒོ་འདི་ ས་གནས་གཅིག་ཡར་སྤོཝ་ཨིན།"
@@ -1551,7 +1396,6 @@ msgstr "ད་ལྟོའི་ས་སྒོ་འདི་ ས་གནས
msgctxt ""
"01020000.xhp\n"
"hd_id3148462\n"
-"153\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Down Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline> + མདའ་རྟགས་མར།"
@@ -1560,7 +1404,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3154603\n"
-"152\n"
"help.text"
msgid "Moves the current field down one place."
msgstr "ད་ལྟོའི་ས་སྒོ་འདི་ས་གནས་གཅིག་མར་སྤོཝ་ཨིན།"
@@ -1569,7 +1412,6 @@ msgstr "ད་ལྟོའི་ས་སྒོ་འདི་ས་གནས་
msgctxt ""
"01020000.xhp\n"
"hd_id3145373\n"
-"151\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Left Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline> +མདའ་རྟགས་གཡོན།"
@@ -1578,7 +1420,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3151125\n"
-"150\n"
"help.text"
msgid "Moves the current field one place to the left."
msgstr "ད་ལྟོའི་ས་སྒོ་འདི་ ས་གནས་གཅིག་གཡོན་ལུ་སྤོཝ་ཨིན།"
@@ -1587,7 +1428,6 @@ msgstr "ད་ལྟོའི་ས་སྒོ་འདི་ ས་གནས
msgctxt ""
"01020000.xhp\n"
"hd_id3150423\n"
-"149\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Right Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline> + མདའ་རྟགས་གཡས།"
@@ -1596,7 +1436,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3153316\n"
-"148\n"
"help.text"
msgid "Moves the current field one place to the right."
msgstr "ད་ལྟོའི་ས་སྒོ་འདི་ས་གནས་གཅིག་གཡས་ལུ་སྤོཝ་ཨིན།"
@@ -1605,7 +1444,6 @@ msgstr "ད་ལྟོའི་ས་སྒོ་འདི་ས་གནས་
msgctxt ""
"01020000.xhp\n"
"hd_id3149519\n"
-"147\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Home"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline> + ཁྱིམ།"
@@ -1614,7 +1452,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3149237\n"
-"146\n"
"help.text"
msgid "Moves the current field to the first place."
msgstr "ད་ལྟོའི་ས་སྒོ་འདི་ས་གནས་མཇུག་ལུ་སྤོཝ་ཨིན།"
@@ -1623,7 +1460,6 @@ msgstr "ད་ལྟོའི་ས་སྒོ་འདི་ས་གནས་
msgctxt ""
"01020000.xhp\n"
"hd_id3145310\n"
-"145\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+End"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline> + མཇུག"
@@ -1632,7 +1468,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3153942\n"
-"144\n"
"help.text"
msgid "Moves the current field to the last place."
msgstr "ད་ལྟོའི་ས་སྒོ་འདི་ས་གནས་མཇུག་ལུ་སྤོཝ་ཨིན།"
@@ -1641,7 +1476,6 @@ msgstr "ད་ལྟོའི་ས་སྒོ་འདི་ས་གནས་
msgctxt ""
"01020000.xhp\n"
"hd_id3149933\n"
-"143\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+O"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་ </caseinline><defaultinline>གདམ་ལྡེ་ </defaultinline></switchinline>+༠།"
@@ -1650,7 +1484,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ
msgctxt ""
"01020000.xhp\n"
"par_id3154798\n"
-"142\n"
"help.text"
msgid "Displays the options for the current field."
msgstr "ད་ལྟོའི་ས་སྒོ་གི་དོན་ལུ་ གདམ་ཁ་ཚུ་ བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -1659,7 +1492,6 @@ msgstr "ད་ལྟོའི་ས་སྒོ་གི་དོན་ལུ་
msgctxt ""
"01020000.xhp\n"
"hd_id3148418\n"
-"141\n"
"help.text"
msgid "Delete"
msgstr "བཏོན་གཏང་།"
@@ -1668,7 +1500,6 @@ msgstr "བཏོན་གཏང་།"
msgctxt ""
"01020000.xhp\n"
"par_id3159251\n"
-"140\n"
"help.text"
msgid "Removes the current field from the area."
msgstr "མངའ་ཁོངས་ལས་ད་ལྟོའི་ས་སྒོ་འདི་རྩ་བསྐྲད་གཏངམ་ཨིན།"
@@ -1677,7 +1508,6 @@ msgstr "མངའ་ཁོངས་ལས་ད་ལྟོའི་ས་སྒ
msgctxt ""
"01020000.xhp\n"
"par_id3150630\n"
-"183\n"
"help.text"
msgid "<link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys in $[officename]\">Shortcut keys in $[officename]</link>"
msgstr "<link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys in $[officename]\"> $[officename]</link>ནང་མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ།"
diff --git a/source/dz/helpcontent2/source/text/scalc/05.po b/source/dz/helpcontent2/source/text/scalc/05.po
index defc4b8ff78..043ff3729eb 100644
--- a/source/dz/helpcontent2/source/text/scalc/05.po
+++ b/source/dz/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: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
"PO-Revision-Date: 2015-06-25 20:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1435264875.000000\n"
#: 02140000.xhp
@@ -36,7 +36,6 @@ msgstr "<bookmark_value>འཛོལ་བའི་ཨང་;ཐོ་ཡིག
msgctxt ""
"02140000.xhp\n"
"hd_id3146797\n"
-"1\n"
"help.text"
msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error Codes in %PRODUCTNAME Calc\">Error Codes in <item type=\"productname\">%PRODUCTNAME</item> Calc</link>"
msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error Codes in %PRODUCTNAME Calc\">ནང་ཨང་རྟགས་ཚུ་འཛོལ་བ་ <item type=\"productname\">%PRODUCTNAME</item> ཀེལ་སི་ </link>"
@@ -45,7 +44,6 @@ msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error Codes in %PRODUCT
msgctxt ""
"02140000.xhp\n"
"par_id3150275\n"
-"2\n"
"help.text"
msgid "The following table is an overview of the error messages for <item type=\"productname\">%PRODUCTNAME</item> Calc. If the error occurs in the cell that contains the cursor, the error message is displayed on the <emph>Status Bar</emph>."
msgstr "འོག་ལུ་ཡོད་པའི་འ་ནི་ཐིག་ཁྲམ་འདི་<item type=\"productname\">%PRODUCTNAME</item> ཀེལ་སི་ གི་དོན་ལུ་འཛོལ་བའི་འཕྲིན་དོན་ཚུ་གི་སྤྱི་མཐོང་ཨིན། འཛོལ་བ་འདི་ ནང་ན་འོད་རྟགས་ཤོམ་ཏེ་ཡོད་པའི་ནང་ཐིག་ནང་འབྱུང་པ་ཅིན་ འཕྲིན་དོན་འཛོལ་བ་འདི་ <emph>Status Bar</emph>གུ་ལུ་བཀྲམ་སྟོན་ཡོདཔ་ཨིན།"
@@ -78,7 +76,6 @@ msgstr "<bookmark_value>མིང་ཚུ་ནུས་ཅན་མིན་
msgctxt ""
"02140000.xhp\n"
"par_id3153968\n"
-"3\n"
"help.text"
msgid "Error Code"
msgstr "ཨང་རྟགས་འཛོལ་བ།"
@@ -87,7 +84,6 @@ msgstr "ཨང་རྟགས་འཛོལ་བ།"
msgctxt ""
"02140000.xhp\n"
"par_id3125863\n"
-"4\n"
"help.text"
msgid "Message"
msgstr "འཕྲིན་དོན།"
@@ -96,7 +92,6 @@ msgstr "འཕྲིན་དོན།"
msgctxt ""
"02140000.xhp\n"
"par_id3151112\n"
-"5\n"
"help.text"
msgid "Explanation"
msgstr "འགྲེལ་བཤད།"
@@ -113,7 +108,6 @@ msgstr "###"
msgctxt ""
"02140000.xhp\n"
"par_id3165766\n"
-"13\n"
"help.text"
msgid "none"
msgstr "ཅི་མེད།"
@@ -122,7 +116,6 @@ msgstr "ཅི་མེད།"
msgctxt ""
"02140000.xhp\n"
"par_id3169266\n"
-"14\n"
"help.text"
msgid "The cell is not wide enough to display the contents."
msgstr ""
@@ -131,7 +124,6 @@ msgstr ""
msgctxt ""
"02140000.xhp\n"
"par_id3153188\n"
-"6\n"
"help.text"
msgid "501"
msgstr "༥༠༡"
@@ -140,7 +132,6 @@ msgstr "༥༠༡"
msgctxt ""
"02140000.xhp\n"
"par_id3148645\n"
-"7\n"
"help.text"
msgid "Invalid character"
msgstr "ནུས་མེད་ཡིག་འབྲུ།"
@@ -149,7 +140,6 @@ msgstr "ནུས་མེད་ཡིག་འབྲུ།"
msgctxt ""
"02140000.xhp\n"
"par_id3155854\n"
-"8\n"
"help.text"
msgid "Character in a formula is not valid."
msgstr ""
@@ -158,7 +148,6 @@ msgstr ""
msgctxt ""
"02140000.xhp\n"
"par_id3145253\n"
-"9\n"
"help.text"
msgid "502"
msgstr "༥༠༢"
@@ -167,7 +156,6 @@ msgstr "༥༠༢"
msgctxt ""
"02140000.xhp\n"
"par_id3147397\n"
-"10\n"
"help.text"
msgid "Invalid argument"
msgstr "ནུས་མེད་སྒྲུབ་རྟགས།"
@@ -176,7 +164,6 @@ msgstr "ནུས་མེད་སྒྲུབ་རྟགས།"
msgctxt ""
"02140000.xhp\n"
"par_id3153160\n"
-"11\n"
"help.text"
msgid "Function argument is not valid. For example, a negative number for the SQRT() function, for this please use IMSQRT()."
msgstr ""
@@ -185,7 +172,6 @@ msgstr ""
msgctxt ""
"02140000.xhp\n"
"par_id3154015\n"
-"12\n"
"help.text"
msgid "503<br/>#NUM!"
msgstr ""
@@ -194,7 +180,6 @@ msgstr ""
msgctxt ""
"02140000.xhp\n"
"par_id3155766\n"
-"13\n"
"help.text"
msgid "Invalid floating point operation"
msgstr "ནུས་མེད་ འཕུར་ལྡིང་ས་ཚིགས་བཀོལ་སྤྱོད།"
@@ -203,7 +188,6 @@ msgstr "ནུས་མེད་ འཕུར་ལྡིང་ས་ཚིག
msgctxt ""
"02140000.xhp\n"
"par_id3159266\n"
-"14\n"
"help.text"
msgid "A calculation results in an overflow of the defined value range."
msgstr ""
@@ -212,7 +196,6 @@ msgstr ""
msgctxt ""
"02140000.xhp\n"
"par_id3149258\n"
-"15\n"
"help.text"
msgid "504"
msgstr "༥༠༤"
@@ -221,7 +204,6 @@ msgstr "༥༠༤"
msgctxt ""
"02140000.xhp\n"
"par_id3147344\n"
-"16\n"
"help.text"
msgid "Parameter list error"
msgstr "ཚད་བཟུང་ཐོ་ཡིག་འཛོལ་བ།"
@@ -230,7 +212,6 @@ msgstr "ཚད་བཟུང་ཐོ་ཡིག་འཛོལ་བ།"
msgctxt ""
"02140000.xhp\n"
"par_id3147003\n"
-"17\n"
"help.text"
msgid "Function parameter is not valid, for example, text instead of a number, or a domain reference instead of cell reference."
msgstr "ལས་འགན་ཚད་བཟུང་འདི་ནུས་ཅན་མིན་འདུག་ དཔེ་འབད་བ་ཅིན་ ཨང་གི་ཚབ་མ་ཚིག་ཡིག་ ཡང་ན་ ནང་ཐིག་གཞི་སྟུན་གྱི་ཚབ་མ་ཌོ་མེན་གཞི་སྟུན་བཟུམ་ཨིན།"
@@ -239,7 +220,6 @@ msgstr "ལས་འགན་ཚད་བཟུང་འདི་ནུས་ཅ
msgctxt ""
"02140000.xhp\n"
"par_id3154532\n"
-"27\n"
"help.text"
msgid "508"
msgstr "༥༠༨"
@@ -248,7 +228,6 @@ msgstr "༥༠༨"
msgctxt ""
"02140000.xhp\n"
"par_id3150107\n"
-"28\n"
"help.text"
msgid "Error: Pair missing"
msgstr "འཛོལ་བ་:ཟུང་བརླག་སྟོར་ཞུགས་པ།"
@@ -257,7 +236,6 @@ msgstr "འཛོལ་བ་:ཟུང་བརླག་སྟོར་ཞུ
msgctxt ""
"02140000.xhp\n"
"par_id3149129\n"
-"29\n"
"help.text"
msgid "Missing bracket, for example, closing brackets, but no opening brackets"
msgstr "གུག་ཤད་རླག་སྟོར་ཞུགས་ དཔེ་འབད་བ་ཅིན་ ཁ་བསྡམས་ནིའི་གུག་ཤད་ཚུ་ཡོད་རུང་ ཁ་ཕྱེ་ནིའི་གུག་ཤད་ཚུ་མེད་བཟུམ་ཨིན།"
@@ -266,7 +244,6 @@ msgstr "གུག་ཤད་རླག་སྟོར་ཞུགས་ དཔ
msgctxt ""
"02140000.xhp\n"
"par_id3149895\n"
-"30\n"
"help.text"
msgid "509"
msgstr "༥༠༩"
@@ -275,7 +252,6 @@ msgstr "༥༠༩"
msgctxt ""
"02140000.xhp\n"
"par_id3155097\n"
-"31\n"
"help.text"
msgid "Missing operator"
msgstr "བཀོལ་སྤྱོདཔ་བརླག་སྟོར་ཞུགས།"
@@ -284,7 +260,6 @@ msgstr "བཀོལ་སྤྱོདཔ་བརླག་སྟོར་ཞུ
msgctxt ""
"02140000.xhp\n"
"par_id3154649\n"
-"32\n"
"help.text"
msgid "Operator is missing, for example, \"=2(3+4) * \", where the operator between \"2\" and \"(\" is missing."
msgstr "བཀོལ་སྤྱོདཔ་འདི་བརླག་སྟོར་ཞུགས་སྟེ་འདུག་ དཔེ་འབད་བ་ཅིན་ \"=2(3+4) * \" བཀོལ་སྤྱོདཔ་\"2\"དང་ \"(\" གི་བར་ན་བརླག་སྟོར་ཞུགས་ཡོད་ས།"
@@ -293,7 +268,6 @@ msgstr "བཀོལ་སྤྱོདཔ་འདི་བརླག་སྟོ
msgctxt ""
"02140000.xhp\n"
"par_id3153813\n"
-"33\n"
"help.text"
msgid "510"
msgstr "༥༡༠"
@@ -302,7 +276,6 @@ msgstr "༥༡༠"
msgctxt ""
"02140000.xhp\n"
"par_id3153483\n"
-"34\n"
"help.text"
msgid "Missing variable"
msgstr "འགྱུར་ཅན་བརླག་སྟོར་ཞུགས།"
@@ -311,7 +284,6 @@ msgstr "འགྱུར་ཅན་བརླག་སྟོར་ཞུགས།
msgctxt ""
"02140000.xhp\n"
"par_id3154710\n"
-"35\n"
"help.text"
msgid "Variable is missing, for example when two operators are together \"=1+*2\"."
msgstr "འགྱུར་ཅན་འདི་བརླག་སྟོར་ཞུགས་ཡོད་ དཔེ་འབད་བ་ཅིན་ བཀོལ་སྤྱོདཔ་གཉིས་གཅིག་ཁར་ཡོདཔ་ད་\"=1+*2\""
@@ -320,7 +292,6 @@ msgstr "འགྱུར་ཅན་འདི་བརླག་སྟོར་ཞ
msgctxt ""
"02140000.xhp\n"
"par_id3154739\n"
-"36\n"
"help.text"
msgid "511"
msgstr "༥༡༡"
@@ -329,7 +300,6 @@ msgstr "༥༡༡"
msgctxt ""
"02140000.xhp\n"
"par_id3145112\n"
-"37\n"
"help.text"
msgid "Missing variable"
msgstr "འགྱུར་ཅན་བརླག་སྟོར་ཞུགས།"
@@ -338,7 +308,6 @@ msgstr "འགྱུར་ཅན་བརླག་སྟོར་ཞུགས།
msgctxt ""
"02140000.xhp\n"
"par_id3145319\n"
-"38\n"
"help.text"
msgid "Function requires more variables than are provided, for example, AND() and OR()."
msgstr "ལས་འགན་གྱི་བྱིན་ཏེ་ཡོད་པའི་འགྱུར་ཅན་ཚུ་ལས་ལྷག་སྟེ་དགོས་མཁོ་བས་ དཔེ་འབད་བ་ཅིན་ ཨེ་ཨེན་ཌི() དང་ཨོ་ཨར་()།"
@@ -347,7 +316,6 @@ msgstr "ལས་འགན་གྱི་བྱིན་ཏེ་ཡོད་པ
msgctxt ""
"02140000.xhp\n"
"par_id3149050\n"
-"39\n"
"help.text"
msgid "512"
msgstr "༥༡༢"
@@ -356,7 +324,6 @@ msgstr "༥༡༢"
msgctxt ""
"02140000.xhp\n"
"par_id3150393\n"
-"40\n"
"help.text"
msgid "Formula overflow"
msgstr "མན་ངག་ལུད་སོང་།"
@@ -365,7 +332,6 @@ msgstr "མན་ངག་ལུད་སོང་།"
msgctxt ""
"02140000.xhp\n"
"par_id3159259\n"
-"41\n"
"help.text"
msgid "<emph>Compiler:</emph> the total number of internal tokens, (that is, operators, variables, brackets) in the formula exceeds 8192."
msgstr ""
@@ -374,7 +340,6 @@ msgstr ""
msgctxt ""
"02140000.xhp\n"
"par_id3150537\n"
-"42\n"
"help.text"
msgid "513"
msgstr "༥༡༣"
@@ -383,7 +348,6 @@ msgstr "༥༡༣"
msgctxt ""
"02140000.xhp\n"
"par_id3147412\n"
-"43\n"
"help.text"
msgid "String overflow"
msgstr "ཡིག་རྒྱུན་ལུད་སོང་།"
@@ -392,7 +356,6 @@ msgstr "ཡིག་རྒྱུན་ལུད་སོང་།"
msgctxt ""
"02140000.xhp\n"
"par_id3145635\n"
-"44\n"
"help.text"
msgid "<emph>Compiler:</emph> an identifier in the formula exceeds 64 KB in size. <emph>Interpreter:</emph> a result of a string operation exceeds 64 KB in size."
msgstr "<emph>Compiler:</emph> མན་ངག་ནང་ངོས་འཛིན་པ་གིས་ ཚད་ནང་༦༤ ཀེ་བི་གི་ལྷགཔ་མས།<emph>ཁ་སྒྱུར་མི་ :</emph> ཡིག་རྒྱུན་བཀོལ་སྤྱོད་གི་གྲུབ་འབྲས་ཀྱི་ཚད་ནང་ ༦༤ ཀེ་བི་ལྷགཔ་མས།"
@@ -401,7 +364,6 @@ msgstr "<emph>Compiler:</emph> མན་ངག་ནང་ངོས་འཛི
msgctxt ""
"02140000.xhp\n"
"par_id3149147\n"
-"45\n"
"help.text"
msgid "514"
msgstr "༥༡༤"
@@ -410,7 +372,6 @@ msgstr "༥༡༤"
msgctxt ""
"02140000.xhp\n"
"par_id3157904\n"
-"46\n"
"help.text"
msgid "Internal overflow"
msgstr "ནང་འཁོད་ལུད་སོང་།"
@@ -419,7 +380,6 @@ msgstr "ནང་འཁོད་ལུད་སོང་།"
msgctxt ""
"02140000.xhp\n"
"par_id3149352\n"
-"47\n"
"help.text"
msgid "Sort operation attempted on too much numerical data (max. 100000) or a calculation stack overflow."
msgstr "དབྱེ་སེལ་བཀོལ་སྤྱོད་ཨང་གྲངས་ཀྱི་གནད་སྡུད་གནམ་མེད་ས་མེད་ཡོད་སའི་གུ་ལུ་དཔའ་བཅམ་ཡོདཔ་ (མང་མཐའ་ ༡༠༠༠༠༠) ཡང་ན་ རྩིས་སྟོན་བརྩེགས་ཕུང་ལུད་སོང་།"
@@ -428,7 +388,6 @@ msgstr "དབྱེ་སེལ་བཀོལ་སྤྱོད་ཨང་ག
msgctxt ""
"02140000.xhp\n"
"par_id3154841\n"
-"51\n"
"help.text"
msgid "516"
msgstr "༥༡༦"
@@ -437,7 +396,6 @@ msgstr "༥༡༦"
msgctxt ""
"02140000.xhp\n"
"par_id3147423\n"
-"52\n"
"help.text"
msgid "Internal syntax error"
msgstr "ནང་འཁོད་ཚིག་སྦྱོར་འཛོལ་བ།"
@@ -446,7 +404,6 @@ msgstr "ནང་འཁོད་ཚིག་སྦྱོར་འཛོལ་བ
msgctxt ""
"02140000.xhp\n"
"par_id3148437\n"
-"53\n"
"help.text"
msgid "Matrix is expected on the calculation stack, but is not available."
msgstr "རྩིས་སྟོན་བརྩེགས་ཕུང་གུ་ལུ་མེ་ཊིགསི་འདི་རེ་བ་བསྐྱེད་དེ་ཡོད་རུང་ འཐོབ་མི་ཚུགས་པས།"
@@ -455,7 +412,6 @@ msgstr "རྩིས་སྟོན་བརྩེགས་ཕུང་གུ་
msgctxt ""
"02140000.xhp\n"
"par_id3155261\n"
-"54\n"
"help.text"
msgid "517"
msgstr "༥༡༧"
@@ -464,7 +420,6 @@ msgstr "༥༡༧"
msgctxt ""
"02140000.xhp\n"
"par_id3153934\n"
-"55\n"
"help.text"
msgid "Internal syntax error"
msgstr "ནང་འཁོད་ཚིག་སྦྱོར་འཛོལ་བ།"
@@ -473,7 +428,6 @@ msgstr "ནང་འཁོད་ཚིག་སྦྱོར་འཛོལ་བ
msgctxt ""
"02140000.xhp\n"
"par_id3149507\n"
-"56\n"
"help.text"
msgid "Unknown code, for example, a document with a newer function is loaded in an older version that does not contain the function."
msgstr "མ་ཤེས་པའི་ཨང་རྟགས་ དཔེ་འབད་བ་ཅིན་ ལས་འགན་གསརཔ་དང་བཅས་པའི་ཡིག་ཆ་འདི་ ནང་ན་ལས་འགན་ཤོམ་ཏེ་མེད་མི་ཐོན་རིམ་རྙིངམ་གཅིག་ནང་མངོན་གསལ་འབད་ཡོདཔ་ཨིན།"
@@ -482,7 +436,6 @@ msgstr "མ་ཤེས་པའི་ཨང་རྟགས་ དཔེ་འ
msgctxt ""
"02140000.xhp\n"
"par_id3148585\n"
-"57\n"
"help.text"
msgid "518"
msgstr "༥༡༨"
@@ -491,7 +444,6 @@ msgstr "༥༡༨"
msgctxt ""
"02140000.xhp\n"
"par_id3149189\n"
-"58\n"
"help.text"
msgid "Internal syntax error"
msgstr "ནང་འཁོད་ཚིག་སྦྱོར་འཛོལ་བ།"
@@ -500,7 +452,6 @@ msgstr "ནང་འཁོད་ཚིག་སྦྱོར་འཛོལ་བ
msgctxt ""
"02140000.xhp\n"
"par_id3149545\n"
-"59\n"
"help.text"
msgid "Variable is not available"
msgstr "འགྱུར་ཅན་འདི་འཐོབ་མི་ཚུགས་པས།"
@@ -509,7 +460,6 @@ msgstr "འགྱུར་ཅན་འདི་འཐོབ་མི་ཚུག
msgctxt ""
"02140000.xhp\n"
"par_id3146142\n"
-"60\n"
"help.text"
msgid "519<br/>#VALUE"
msgstr ""
@@ -518,7 +468,6 @@ msgstr ""
msgctxt ""
"02140000.xhp\n"
"par_id3155954\n"
-"61\n"
"help.text"
msgid "No result (#VALUE is in the cell rather than Err:519!)"
msgstr "གྲུབ་འབྲས་མིན་འདུག་(#VALUE འདི་ཨི་ཨར་ཨར་:༥༡༩! ལས་ནང་ཐིག་ཨིན་པས།)"
@@ -527,7 +476,6 @@ msgstr "གྲུབ་འབྲས་མིན་འདུག་(#VALUE འད
msgctxt ""
"02140000.xhp\n"
"par_id3153108\n"
-"62\n"
"help.text"
msgid "The formula yields a value that does not correspond to the definition; or a cell that is referenced in the formula contains text instead of a number."
msgstr "མན་ངག་གིས་ངེས་ཚིག་དང་ཆ་མ་མཉམ་མི་གནས་གོང་གཅིག་འཐོན་འབྲས་འབདཝ་ཨིན་ ཡང་ན་ ཨང་གྲངས་ཀྱི་ཚབ་མ་མན་ངག་ནང་ཤོམ་ཡོད་པའི་ཚིག་ཡིག་ནང་གཞི་བསྟུན་འབད་ཡོདམི།"
@@ -536,7 +484,6 @@ msgstr "མན་ངག་གིས་ངེས་ཚིག་དང་ཆ་མ
msgctxt ""
"02140000.xhp\n"
"par_id3150338\n"
-"63\n"
"help.text"
msgid "520"
msgstr "༥༢༠"
@@ -545,7 +492,6 @@ msgstr "༥༢༠"
msgctxt ""
"02140000.xhp\n"
"par_id3150017\n"
-"64\n"
"help.text"
msgid "Internal syntax error"
msgstr "ནང་འཁོད་ཚིག་སྦྱོར་འཛོལ་བ།"
@@ -554,7 +500,6 @@ msgstr "ནང་འཁོད་ཚིག་སྦྱོར་འཛོལ་བ
msgctxt ""
"02140000.xhp\n"
"par_id3148758\n"
-"65\n"
"help.text"
msgid "Compiler creates an unknown compiler code."
msgstr "ཕྱོགས་སྒྲིག་འབད་མི་གིས་ ཕྱོགས་སྒྲིག་མ་ཤེསཔ་ཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན།"
@@ -563,7 +508,6 @@ msgstr "ཕྱོགས་སྒྲིག་འབད་མི་གིས་
msgctxt ""
"02140000.xhp\n"
"par_id3154324\n"
-"66\n"
"help.text"
msgid "521"
msgstr "༥༢༡"
@@ -572,7 +516,6 @@ msgstr "༥༢༡"
msgctxt ""
"02140000.xhp\n"
"par_id3153737\n"
-"67\n"
"help.text"
msgid "Internal syntax error"
msgstr "ནང་འཁོད་ཚིག་སྦྱོར་འཛོལ་བ།"
@@ -581,7 +524,6 @@ msgstr "ནང་འཁོད་ཚིག་སྦྱོར་འཛོལ་བ
msgctxt ""
"02140000.xhp\n"
"par_id3155436\n"
-"68\n"
"help.text"
msgid "No result."
msgstr "གྲུབ་འབྲས་མིན་འདུག"
@@ -590,7 +532,6 @@ msgstr "གྲུབ་འབྲས་མིན་འདུག"
msgctxt ""
"02140000.xhp\n"
"par_id3153045\n"
-"69\n"
"help.text"
msgid "522"
msgstr "༥༢༢"
@@ -599,7 +540,6 @@ msgstr "༥༢༢"
msgctxt ""
"02140000.xhp\n"
"par_id3149008\n"
-"70\n"
"help.text"
msgid "Circular reference"
msgstr "གཞི་བསྟུན་ཐད་སྒོརམ།"
@@ -608,7 +548,6 @@ msgstr "གཞི་བསྟུན་ཐད་སྒོརམ།"
msgctxt ""
"02140000.xhp\n"
"par_id3157972\n"
-"71\n"
"help.text"
msgid "Formula refers directly or indirectly to itself and the <emph>Iterations</emph> option is not set under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate."
msgstr ""
@@ -617,7 +556,6 @@ msgstr ""
msgctxt ""
"02140000.xhp\n"
"par_id3149538\n"
-"72\n"
"help.text"
msgid "523"
msgstr "༥༢༣"
@@ -626,7 +564,6 @@ msgstr "༥༢༣"
msgctxt ""
"02140000.xhp\n"
"par_id3150930\n"
-"73\n"
"help.text"
msgid "The calculation procedure does not converge"
msgstr "རྩིས་སྟོན་བྱ་སྒོའི་ལམ་ལུགས་འདི་གིས་གཅིག་ཏུ་མི་འདུ་བས།"
@@ -635,7 +572,6 @@ msgstr "རྩིས་སྟོན་བྱ་སྒོའི་ལམ་ལུ
msgctxt ""
"02140000.xhp\n"
"par_id3150272\n"
-"74\n"
"help.text"
msgid "Function missed a targeted value, or <link href=\"text/shared/optionen/01060500.xhp\">iterative references</link> do not reach the minimum change within the maximum steps that are set."
msgstr "ལས་འགན་གྱིས་དམིགས་གཏད་འབད་ཡོད་པའི་གནས་གོང་གཅིག་བརླག་སྟོར་ཞུགས་ཡི་ ཡང་ན་<link href=\"text/shared/optionen/01060500.xhp\">གཞི་བསྟུན་ཚུ་ཡང་བསྐྱར་ </link> གཞི་སྒྲིག་འབད་དེ་ཡོདཔའི་རིམ་པ་མང་མཐའ་ཚུའི་ནང་འཁོད་ནང་བསྒྱུར་བཅོས་ཉུང་མཐའ་ལུ་མ་ལྷོད།"
@@ -644,7 +580,6 @@ msgstr "ལས་འགན་གྱིས་དམིགས་གཏད་འབ
msgctxt ""
"02140000.xhp\n"
"par_id3153544\n"
-"75\n"
"help.text"
msgid "524<br/>#REF"
msgstr ""
@@ -653,7 +588,6 @@ msgstr ""
msgctxt ""
"02140000.xhp\n"
"par_id3154634\n"
-"76\n"
"help.text"
msgid "invalid references (instead of Err:524 cell contains #REF)"
msgstr "གཞི་བསྟུན་ཚུ་ནུས་ཅན་མིན་འདུག་(Err:524 ཚབ་མ་ནང་ཐིག་ནང་ན་#REF ཤོམ་ཏེ་འདུག)"
@@ -662,7 +596,6 @@ msgstr "གཞི་བསྟུན་ཚུ་ནུས་ཅན་མིན་
msgctxt ""
"02140000.xhp\n"
"par_id3147539\n"
-"77\n"
"help.text"
msgid "<emph>Compiler:</emph> a column or row description name could not be resolved. <emph>Interpreter:</emph> in a formula, the column, row, or sheet that contains a referenced cell is missing."
msgstr "<emph>Compiler:</emph> ཀེར་ཐིག་དང་ཡང་ན་ གྲལ་ཐིག་འགྲེལ་བཤད་མིང་འདི་མོས་མཐུན་འབད་མི་ཚུགས་པས། <emph>Interpreter:</emph> མན་ངག་གཅིག་གི་ནང་ན་ གཞི་བསྟུན་འབད་ཚར་ཚརཝ་བའི་ནང་ཐིག་ནང་ན་ཤོམ་ཏེ་ཡོད་མི་ ཀེར་ཐིག་ གྲལ་ཐིག་ དང་ཡང་ན་ ཤོག་ཁྲམ་འདི་བརླག་སྟོར་ཞུགས་ཡོད།"
@@ -671,7 +604,6 @@ msgstr "<emph>Compiler:</emph> ཀེར་ཐིག་དང་ཡང་ན་
msgctxt ""
"02140000.xhp\n"
"par_id3155984\n"
-"78\n"
"help.text"
msgid "525<br/>#NAME?"
msgstr ""
@@ -680,7 +612,6 @@ msgstr ""
msgctxt ""
"02140000.xhp\n"
"par_id3148428\n"
-"79\n"
"help.text"
msgid "invalid names (instead of Err:525 cell contains #NAME?)"
msgstr "མིང་ཚུ་ནུས་ཅན་མིན་འདུག་(ཨི་ཨར་ཨར་:༥༢༥ གི་ཚབ་མ་ནང་ཐིག་ནང་ན་#NAME ཤོམ་ཏེ་འདུག་ག?)"
@@ -689,7 +620,6 @@ msgstr "མིང་ཚུ་ནུས་ཅན་མིན་འདུག་(
msgctxt ""
"02140000.xhp\n"
"par_id3156259\n"
-"80\n"
"help.text"
msgid "An identifier could not be evaluated, for example, no valid reference, no valid domain name, no column/row label, no macro, incorrect decimal divider, add-in not found."
msgstr "ངེས་འཛིན་པ་འདི་བརྟག་ཞིབ་འབད་མི་བཏུབ་པས་ དཔེ་འབད་བ་ཅིན་ གཞི་བསྟུན་ནུས་ཅན་མེད་ ཌོ་མེན་མིང་ནུས་ཅན་མེད་ ཀེར་ཐིག་མེད་/གྲལ་ཐིག་ཁ་ཡིག་བཏགས་ནི་མེད་ མེཀོརོ་མེད་ བདེན་མེད་བཅུ་ཚག་བགོ་མི་ ནང་ན་ཁ་སྐོང་འཐོབ་མ་ཚུགསཔ།"
@@ -698,7 +628,6 @@ msgstr "ངེས་འཛིན་པ་འདི་བརྟག་ཞིབ་
msgctxt ""
"02140000.xhp\n"
"par_id3153720\n"
-"81\n"
"help.text"
msgid "526"
msgstr "༥༢༦"
@@ -707,7 +636,6 @@ msgstr "༥༢༦"
msgctxt ""
"02140000.xhp\n"
"par_id3154315\n"
-"82\n"
"help.text"
msgid "Internal syntax error"
msgstr "ནང་འཁོད་ཚིག་སྦྱོར་འཛོལ་བ།"
@@ -716,7 +644,6 @@ msgstr "ནང་འཁོད་ཚིག་སྦྱོར་འཛོལ་བ
msgctxt ""
"02140000.xhp\n"
"par_id3083286\n"
-"83\n"
"help.text"
msgid "Obsolete, no longer used, but could come from old documents if the result is a formula from a domain."
msgstr "ཕན་མེད་འདི་ ད་ལས་ཕར་ལག་ལེན་འཐབ་ནི་མེད་རུང་ གྲུབ་འབྲས་འདི་ཌོ་མེན་ནང་ལས་མན་ངག་ཨིན་པ་ཅིན་ ཡིག་ཆ་རྙིངམ་ཚུ་ནང་ལས་འོང་ཚུགསཔ་ཨིན།"
@@ -725,7 +652,6 @@ msgstr "ཕན་མེད་འདི་ ད་ལས་ཕར་ལག་ལ
msgctxt ""
"02140000.xhp\n"
"par_id3152483\n"
-"84\n"
"help.text"
msgid "527"
msgstr "༥༢༧"
@@ -734,7 +660,6 @@ msgstr "༥༢༧"
msgctxt ""
"02140000.xhp\n"
"par_id3152966\n"
-"85\n"
"help.text"
msgid "Internal overflow"
msgstr "ནང་འཁོད་ལུད་སོང་།"
@@ -743,7 +668,6 @@ msgstr "ནང་འཁོད་ལུད་སོང་།"
msgctxt ""
"02140000.xhp\n"
"par_id3149709\n"
-"86\n"
"help.text"
msgid "<emph>Interpreter: </emph>References, such as when a cell references a cell, are too encapsulated."
msgstr "<emph>Interpreter: </emph>གཞི་བསྟེན་ཚུ་ འདི་ཡང་ ནང་ཐིག་གི་ནང་ཐིག་གཞི་བསྟུན་ཚུ་གི་སྐབས་ དེ་ཚུ་གནམ་མེད་ས་མེད་བསྡུད་དོན་བཀོད་ཡོདཔ་ད།"
@@ -816,7 +740,6 @@ msgstr ""
msgctxt ""
"OpenCL_options.xhp\n"
"par_id2752992\n"
-"26\n"
"help.text"
msgid "<variable id=\"sam01\">Menu <emph>Tools - Options - LibreOffice Calc - Formula</emph>, and in section <emph>Detailed Calculation Settings</emph> press <emph>Details...</emph> button</variable>"
msgstr ""
diff --git a/source/dz/helpcontent2/source/text/scalc/guide.po b/source/dz/helpcontent2/source/text/scalc/guide.po
index 75735f8b698..14fbc5dcd63 100644
--- a/source/dz/helpcontent2/source/text/scalc/guide.po
+++ b/source/dz/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-05-12 14:35+0200\n"
"PO-Revision-Date: 2016-07-05 21:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25,7 +25,6 @@ msgid "Recognizing Names as Addressing"
msgstr "མིང་ཚུ་ཁ་བྱང་བཏགས་ནི་སྦེ་ ངོས་འཛིན་འབད་དོ།"
#: address_auto.xhp
-#, fuzzy
msgctxt ""
"address_auto.xhp\n"
"bm_id3148797\n"
@@ -50,13 +49,12 @@ msgid "You can use cells with text to refer to the rows or to the columns that c
msgstr "ཁྱོད་ཀྱིས་ གྲལ་ཐིག་ ཡང་ན་ ནང་ཐིག་དང་ལྡན་པའི་ཀེར་ཐིག་ལུ་ གཞི་བསྟུན་འབད་ནི་གི་དོན་ལས་ ནང་ཐིག་ཚུ་ཚིག་ཡིག་དང་བཅས་ལག་ལེན་འཐབ་བཏུབ།"
#: address_auto.xhp
-#, fuzzy
msgctxt ""
"address_auto.xhp\n"
"par_id3156283\n"
"help.text"
-msgid "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"5.408cm\" height=\"2.212cm\" localize=\"true\"><alt id=\"alt_id3154942\">Example spreadsheet</alt></image>"
-msgstr "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"4.2898inch\" height=\"1.6854inch\" localize=\"true\"><alt id=\"alt_id3154942\">དཔེར་བརྗོད་ཤོག་ཁྲམ་</alt></image>"
+msgid "<image id=\"img_id3154942\" src=\"media/helpimg/names_as_addressing.png\" width=\"5.408cm\" height=\"2.212cm\" localize=\"true\"><alt id=\"alt_id3154942\">Example spreadsheet</alt></image>"
+msgstr "<image id=\"img_id3154942\" src=\"media/helpimg/names_as_addressing.png\" width=\"4.2898inch\" height=\"1.6854inch\" localize=\"true\"><alt id=\"alt_id3154942\">དཔེར་བརྗོད་ཤོག་ཁྲམ་</alt></image>"
#: address_auto.xhp
msgctxt ""
@@ -95,32 +93,29 @@ msgctxt ""
"auto_off.xhp\n"
"bm_id3149456\n"
"help.text"
-msgid "<bookmark_value>deactivating; automatic changes</bookmark_value> <bookmark_value>tables; deactivating automatic changes in</bookmark_value> <bookmark_value>AutoInput function on/off</bookmark_value> <bookmark_value>text in cells;AutoInput function</bookmark_value> <bookmark_value>cells; AutoInput function of text</bookmark_value> <bookmark_value>input support in spreadsheets</bookmark_value> <bookmark_value>changing; input in cells</bookmark_value> <bookmark_value>AutoCorrect function;cell contents</bookmark_value> <bookmark_value>cell input;AutoInput function</bookmark_value> <bookmark_value>lowercase letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>capital letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>date formats;avoiding conversion to</bookmark_value> <bookmark_value>number completion on/off</bookmark_value> <bookmark_value>text completion on/off</bookmark_value> <bookmark_value>word completion on/off</bookmark_value>"
-msgstr "<bookmark_value>ཤུགས་ཤེད་བཟོ་དོ་ རང་བཞིན་བསྒྱུར་བཅོས་ཚུ་</bookmark_value><bookmark_value>ཐིག་ཁྲམ་ཚུ་ རང་བཞིན་བསྒྱུར་བཅོས་ཚུ་ </bookmark_value>ནང་ ཤུགས་མེད་བཟོ་དོ་<bookmark_value>རང་བཞིན་ཨིན་པུ༚་ལས་འགན་ཨཱོན་/ཨོཕ་</bookmark_value><bookmark_value>ནང་ཐིག་ཚུ་ནང་ཚིག་ཡིག་ རང་བཞིན་ཨིན་པུཊི་ལས་འགན་</bookmark_value><bookmark_value>ནང་ཐིག་ཚུ་ ཚིག་ཡིག་གི་རང་བཞིན་ཨིན་པུཊི་ལས་འགན་</bookmark_value><bookmark_value>ཨིན་པུཊི་རྒྱབ་སྐྱོར་ ཤོག་ཁྲམ་ཚུ་ནང་</bookmark_value><bookmark_value>བསྒྱུར་བཅོས་འབད་དོ་ ནང་ཐིག་ཚུ་ནང་ཨིན་པུཊི་</bookmark_value><bookmark_value>རང་བཞིན་ནོར་བཅོས་ལས་འགན་ ནང་ཐིག་ནང་དོན་</bookmark_value><bookmark_value>ནང་ཐིག་ཨིན་པུཊི་ རང་བཞིན་ཨིན་པུཊི་ལས་འགན་</bookmark_value><bookmark_value>མགྱོགས་ཡིག་ཡིག་གུ་ཚུ་ རང་བཞིན་ཨིན་པུཊི་ལས་འགན་ (ནང་ཐིག་ཚུ་ནང་)</bookmark_value><bookmark_value>ཚུགས་ཡིག་ཚུ་ རང་བཞིན་ཨིན་པུཊི་ལས་འགན་ (ནང་ཐིག་ནང་)</bookmark_value><bookmark_value>ཚེས་གྲངས་རྩ་སྒྲིག་ཚུ་ གཞི་བསྒྱུར་འདི་</bookmark_value>ཟུར་ཏེ་བཞག་དོ་<bookmark_value>ཨང་ཡོངས་སྒྲུབ་ཨཱོན་/ཨོཕ་</bookmark_value><bookmark_value>ཚིག་ཡིག་ཡོངས་སྒྲུབ་ཨཱོན་/ཨོཕ་</bookmark_value>"
+msgid "<bookmark_value>deactivating; automatic changes</bookmark_value> <bookmark_value>tables; deactivating automatic changes in</bookmark_value> <bookmark_value>AutoInput function on/off</bookmark_value> <bookmark_value>text in cells;AutoInput function</bookmark_value> <bookmark_value>cells; AutoInput function of text</bookmark_value> <bookmark_value>input support in spreadsheets</bookmark_value> <bookmark_value>changing; input in cells</bookmark_value> <bookmark_value>AutoCorrect function;cell contents</bookmark_value> <bookmark_value>cell input;AutoInput function</bookmark_value> <bookmark_value>lowercase letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>capital letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>date formats;avoiding conversion to</bookmark_value> <bookmark_value>number completion on/off</bookmark_value> <bookmark_value>text completion on/off</bookmark_value> <bookmark_value>word completion on/off</bookmark_value>"
+msgstr ""
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"hd_id3149456\n"
-"1\n"
"help.text"
-msgid "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Deactivating Automatic Changes\">Deactivating Automatic Changes</link></variable>"
-msgstr "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Deactivating Automatic Changes\">རང་བཞིན་བསྒྱུར་བཅོས་ཚུ་ ཤུགས་མེད་བཟོ་ནི་</link></variable>"
+msgid "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Deactivating Automatic Changes\">Deactivating Automatic Changes</link> </variable>"
+msgstr ""
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3156442\n"
-"2\n"
"help.text"
-msgid "By default, $[officename] automatically corrects many common typing errors and applies formatting while you type. You can immediately undo any automatic changes with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z."
-msgstr "སྔོན་སྒྲིག་གི་ཐོག་ལས་ $[officename] གིས་ ཐུན་མོང་ཡིག་དཔར་འཛོལ་བ་ཚུ་རང་བཞིན་གྱིས་ནོར་བཅོས་འབདཝ་ཨིན་པའི་ཁར་ ཡིག་དཔར་རྐྱབ་པའི་སྐབས་ལུ་ རྩ་སྒྲིག་འཇུག་སྤྱོད་འབདཝ་ཨིན། ཁྱོད་ཀྱིས་ འཕྲལ་མགྱོགས་ར་ <switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཛེཌི་ དང་གཅིག་ཁར་ གང་རུང་བསྒྱུར་བཅོས་འབད་བཤོལ་ཚུགས།"
+msgid "By default, $[officename] automatically corrects many common typing errors and applies formatting while you type. You can immediately undo any automatic changes with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z."
+msgstr ""
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3145273\n"
-"3\n"
"help.text"
msgid "The following shows you how to deactivate and reactivate the automatic changes in $[officename] Calc:"
msgstr "འོག་གི་ཚུ་གིས་ $[officename] ཀེལཀི་ནང་ རང་བཞིན་བསྒྱུར་བཅོས་ཚུ་ཤུགས་མེད་དང་ སླར་ཤུགས་ལྡན་ག་དེ་འབད་བཟོ་ནི་ཨིན་ན་ ཁྱོད་ལུ་སྟོནམ་ཨིན་:"
@@ -129,7 +124,6 @@ msgstr "འོག་གི་ཚུ་གིས་ $[officename] ཀེལཀི
msgctxt ""
"auto_off.xhp\n"
"hd_id3145748\n"
-"4\n"
"help.text"
msgid "Automatic Text or Number Completion"
msgstr "རང་བཞིན་གྱི་ཚིག་ཡིག་ ཡང་ན་ ཨང་གྲངས་མཇུག་བསྡུ།"
@@ -138,7 +132,6 @@ msgstr "རང་བཞིན་གྱི་ཚིག་ཡིག་ ཡང་
msgctxt ""
"auto_off.xhp\n"
"par_id3154730\n"
-"5\n"
"help.text"
msgid "When making an entry in a cell, $[officename] Calc automatically suggests matching input found in the same column. This function is known as <emph>AutoInput</emph>."
msgstr "ནང་ཐིག་ནང་ཐོ་བཀོད་བཟོ་བའི་བསྒང་ $[officename] ཀེལཀི་གིས་ ཀེར་ཐིག་གཅིག་པའི་ནང་ཡོད་པའི་མཐུན་སྒྲིག་ཨིན་པུཊི་འདི་ རང་བཞིན་གྱིས་བསམ་འཆར་བཀོདཔ་ཨིན། ལས་འགན་འདི་ <emph>རང་བཞིན་ཨིན་པུཊི་</emph> ཟེར་སླབ་ཨིན།"
@@ -147,16 +140,14 @@ msgstr "ནང་ཐིག་ནང་ཐོ་བཀོད་བཟོ་བའ
msgctxt ""
"auto_off.xhp\n"
"par_id3153878\n"
-"6\n"
"help.text"
-msgid "To turn the AutoInput on and off, set or remove the check mark in front of <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\"><emph>Tools - Cell Contents - AutoInput</emph></link>."
-msgstr "རང་བཞིན་ཨིན་པུཊི་འདི་ ཨཱོན་དང་ཨོཕ་སྦེ་བསྒྱིར་ནི་ལུ་ <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\"><emph>ལག་ཆས་ཚུ་ - ནང་ཐིག་ནང་དོན་ - རང་བཞིན་ཨིན་པུཊི་</emph></link> གི་གདོང་ཁར་ ཞིབ་དཔྱད་རྟགས་ གཞི་སྒྲིག་ ཡང་ན་ རྩ་བསྐྲད་གཏང་།"
+msgid "To turn the AutoInput on and off, set or remove the check mark in front of <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - AutoInput\"><emph>Tools - AutoInput</emph></link>."
+msgstr ""
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"hd_id3146972\n"
-"21\n"
"help.text"
msgid "Automatic Conversion to Date Format"
msgstr "ཚེས་གྲངས་རྩ་སྒྲིག་ལུ་ རང་བཞིན་གཞི་བསྒྱུར།"
@@ -165,7 +156,6 @@ msgstr "ཚེས་གྲངས་རྩ་སྒྲིག་ལུ་ རང
msgctxt ""
"auto_off.xhp\n"
"par_id3153707\n"
-"22\n"
"help.text"
msgid "$[officename] Calc automatically converts certain entries to dates. For example, the entry <emph>1.1</emph> may be interpreted as January 1 of the current year, according to the locale settings of your operating system, and then displayed according to the date format applied to the cell."
msgstr "$[officename] ཀེལཀི་གིས་ ཐོ་བཀོད་ལ་ལོ་ཅིག་ ཚེས་གྲངས་ལུ་ རང་བཞིན་གྱིས་ གཞི་བསྒྱུར་འབདཝ་ཨིན། དཔེར་ན་ ཁྱོད་རའི་བཀོལ་སྤྱོད་རིམ་ལུགས་ཀྱི་ལོ་ཀེལ་སྒྲིག་སྟངས་ཐོག་ལས་ ཐོ་བཀོད་ <emph>༡་༡</emph> འདི་ ལོ་འདི་གི་སྤྱི་ཟླ་དང་པ་སྦེ་ ཁ་བསྒྱུར་འབད་འབདཝ་ཨིནམ་འོང་ དེ་ལས་ ནང་ཐིག་ལུ་འཇུག་སྤྱོད་འབད་ཡོད་པའི་ཚེས་གྲངས་རྩ་སྒྲིག་དང་འཁྲིལ་ཏེ་ བཀྲམ་སྟོན་འབད་ནུག"
@@ -174,7 +164,6 @@ msgstr "$[officename] ཀེལཀི་གིས་ ཐོ་བཀོད་ལ
msgctxt ""
"auto_off.xhp\n"
"par_id3159267\n"
-"23\n"
"help.text"
msgid "To ensure that an entry is interpreted as text, add an apostrophe at the beginning of the entry. The apostrophe is not displayed in the cell."
msgstr "ཐོ་བཀོད་འདི་ཚིག་ཡིག་སྦེ་ཁ་བསྒྱུར་འབད་ནི་ལུ་ ཐོ་བཀོད་འགོ་བཙུགས་པའི་སྐབས་ལས་ར་ འབྲེལ་རྟགས་ཅིག་ཁ་སྐོང་རྐྱབས། དེ་འབདཝ་ད་ འབྲེལ་རྟགས་འདི་ ནང་ཐིག་ནང་བཀྲམ་སྟོན་མི་འབད།"
@@ -183,13 +172,11 @@ msgstr "ཐོ་བཀོད་འདི་ཚིག་ཡིག་སྦེ་
msgctxt ""
"auto_off.xhp\n"
"hd_id3150043\n"
-"7\n"
"help.text"
msgid "Quotation Marks Replaced by Custom Quotes"
msgstr "འདྲེན་ཚིག་རྟགས་ཚུ་ སྲོལ་སྒྲིག་འདྲེན་ཚིག་གིས་ ཚབ་མ་བཙུགས་ཡི།"
#: auto_off.xhp
-#, fuzzy
msgctxt ""
"auto_off.xhp\n"
"par_id3155333\n"
@@ -201,7 +188,6 @@ msgstr "<emph>ལག་ཆས་ - རང་བཞིན་བདེན་ནོ
msgctxt ""
"auto_off.xhp\n"
"hd_id3149565\n"
-"11\n"
"help.text"
msgid "Cell Content Always Begins With Uppercase"
msgstr "ནང་ཐིག་ནང་དོན་འདི་རྟག་བུ་ར་ ཚུགས་ཡིག་གིས་འགོ་བཙུགསཔ་ཨིན།"
@@ -218,7 +204,6 @@ msgstr ""
msgctxt ""
"auto_off.xhp\n"
"hd_id3150345\n"
-"15\n"
"help.text"
msgid "Replace Word With Another Word"
msgstr "མིང་ཚིག་འདི་མིང་ཚིག་གཞན་དང་གཅིག་ཁར་ ཚབ་མ་བཙུགས།"
@@ -235,13 +220,11 @@ msgstr ""
msgctxt ""
"auto_off.xhp\n"
"par_id3152992\n"
-"19\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\">Tools - Cell Contents - AutoInput</link>"
-msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\">ལག་ཆས་ཚུ་ - ནང་ཐིག་ནང་དོན་ - རང་བཞིན་ཨིན་པུཊི་</link>"
+msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - AutoInput\">Tools - AutoInput</link>"
+msgstr ""
#: auto_off.xhp
-#, fuzzy
msgctxt ""
"auto_off.xhp\n"
"par_id3154368\n"
@@ -269,7 +252,6 @@ msgstr "<bookmark_value>ཚགས་མ་ཚུ་, རང་བཞིན་ཚ
msgctxt ""
"autofilter.xhp\n"
"hd_id3156423\n"
-"6\n"
"help.text"
msgid "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Applying AutoFilter\">Applying AutoFilter</link></variable>"
msgstr "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Applying AutoFilter\">རང་བཞིན་ཚགས་མ་ལུ་འཇུག་སྤྱོད་འབད་ནི་</link></variable>"
@@ -278,7 +260,6 @@ msgstr "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
"par_id3147427\n"
-"7\n"
"help.text"
msgid "The <emph>AutoFilter</emph> function inserts a combo box on one or more data columns that lets you select the records (rows) to be displayed."
msgstr "<emph>AutoFilter</emph> ལས་འགན་གྱིས་ གནད་སྡུད་ཀེར་ཐིག་གཅིག་ ཡངན་ དེ་ལས་ལྷག་པའི་གུ་ བརྟག་སྒྲོམ་ཅིག་བཙུགསཔ་ཨིན་ དེ་གིས་ བཀྲམ་སྟོན་འབད་ནི་ལུ་ དྲན་ཐོ་(གྲལ་ཐིག་)ཚུ་སེལ་འཐུ་འབདཝ་ཨིན།"
@@ -287,7 +268,6 @@ msgstr "<emph>AutoFilter</emph> ལས་འགན་གྱིས་ གནད
msgctxt ""
"autofilter.xhp\n"
"par_id3152576\n"
-"9\n"
"help.text"
msgid "Select the columns you want to use AutoFilter on."
msgstr "ཁྱོད་ཀྱིས་ རང་བཞིན་ཚགས་མ་འདི་ཨཱོན་སྦེ་ལག་ལེན་འཐབ་ནི་ཨིན་པའི་ཀེར་ཐིག་ཚུ་ སེལ་འཐུ་འབད།"
@@ -296,7 +276,6 @@ msgstr "ཁྱོད་ཀྱིས་ རང་བཞིན་ཚགས་མ
msgctxt ""
"autofilter.xhp\n"
"par_id3153157\n"
-"10\n"
"help.text"
msgid "Choose <emph>Data - Filter - AutoFilter</emph>. The combo box arrows are visible in the first row of the range selected."
msgstr "<emph>གནད་སྡུད་ - ཚགས་མ་ - རང་བཞིན་ཚགས་མ་</emph> གདམ་ཁ་རྐྱབས། བརྟག་སྒྲོམ་མདའ་རྟགས་ཚུ་ ཁྱབ་ཚད་སེལ་འཐུ་འབད་ཡོད་པའི་གྲལ་ཐིག་དང་པམ་ནང་མཐོང་ཚུགས།"
@@ -305,7 +284,6 @@ msgstr "<emph>གནད་སྡུད་ - ཚགས་མ་ - རང་བཞ
msgctxt ""
"autofilter.xhp\n"
"par_id3154510\n"
-"11\n"
"help.text"
msgid "Run the filter by clicking the drop-down arrow in the column heading and choosing an item."
msgstr "ཀེར་ཐིག་མགོ་རྒྱན་ནང་ལུ་ གདམ་ཐོའི་མདའ་རྟགས་ལུ་ཨེབ་གཏང་འབད་ནི་དང་རྣམ་གྲངས་གདམ་ཐོག་ལས་ ཚགས་་མ་གཡོག་བཀོལ།"
@@ -314,7 +292,6 @@ msgstr "ཀེར་ཐིག་མགོ་རྒྱན་ནང་ལུ་
msgctxt ""
"autofilter.xhp\n"
"par_id3155064\n"
-"13\n"
"help.text"
msgid "Only those rows whose contents meet the filter criteria are displayed. The other rows are filtered. You can see if rows have been filtered from the discontinuous row numbers. The column that has been used for the filter is identified by a different color for the arrow button."
msgstr "ཚགས་མའི་ཁྱད་ཆོས་ཚང་མི་ གྲལ་ཐིག་ནང་དོན་ཚུ་རྐྱངམ་ཅིག་ བཀྲམ་སྟོན་འབདཝ་ཨིན། གྲལ་ཐིག་གཞན་མི་ཚུ་ བཙགས་ཅི། རྒྱུན་མཐུད་མིན་པའི་གྲལ་ཐིག་ཨང་གྲངས་ནང་ལས་ གྲལ་ཐིག་ཚུ་བཙགས་ཡོད་པ་ཅིན་ ཁྱོད་ཀྱིས་མཐོང་ཚུགས། ཚགས་མའི་དོན་ལུ་ ལག་ལེན་འཐབ་ཡོད་པའི་ཀེར་ཐིག་འདི་ མདའ་རྟགས་ཨེབ་རྟའི་དོན་ལུ་ ཚོས་གཞི་མ་འདྲཝ་ཚུ་གིས་ ངོས་འཛིན་འབད་ཡི།"
@@ -331,7 +308,6 @@ msgstr ""
msgctxt ""
"autofilter.xhp\n"
"par_id3153714\n"
-"12\n"
"help.text"
msgid "To display all records again, select the \"all<emph>\"</emph> entry in the AutoFilter combo box. If you choose \"Standard<emph>\"</emph>, the <item type=\"menuitem\">Standard Filter</item> dialog appears, allowing you to set up a standard filter. Choose \"Top 10\" to display the highest 10 values only."
msgstr "དྲན་ཐོ་ཆ་མཉམ་ལོག་སྟོན་ནི་གི་དོན་ལུ་ རང་བཞིན་ཚགས་མའི་བརྟག་སྒྲོམ་ནང་ <emph>-ཆ་མཉམ་-</emph> ཐོ་བཀོད་ སེལ་འཐུ་འབད། ཁྱོད་ཀྱིས་ <emph>-ཚད་ལྡན་-</emph> འདི་གདམ་པ་ཅིན་ ཁྱོད་ལུ་ཚད་ལྡན་ཚགས་མ་ཅིག་གཞི་སྒྲིག་འབད་བཅུག་པའི་ <emph>ཚད་ལྡན་ཚགས་མ་</emph> ཌའི་ལོག་འདི་འབྱུངམ་ཨིན། བེ་ལུསི་མཐོ་ཤོས་ ༡༠ རྐྱངམ་ཅིག་བཀྲམ་སྟོན་འབད་ནི་ལུ་ <emph>-མཐོ་ཤོས་ ༡༠-</emph> གདམ་ཁ་རྐྱབས།"
@@ -340,7 +316,6 @@ msgstr "དྲན་ཐོ་ཆ་མཉམ་ལོག་སྟོན་ནི
msgctxt ""
"autofilter.xhp\n"
"par_id3147340\n"
-"19\n"
"help.text"
msgid "To stop using AutoFilter, reselect all cells selected in step 1 and once again choose <emph>Data - Filter - AutoFilter</emph>."
msgstr "རང་བཞིན་ཚགས་མ་ལག་ལེན་འཐབ་ནི་ལས་བཀག་ནི་ལུ་ རིམ་པ་དང་པའི་ནང་སེལ་འཐུ་འབད་ཡོད་པའི་ནང་ཐིག་ཚུ་ཆ་མཉམ་ ལོག་སྟེ་སེལ་འཐུ་འབད་ཞིནམ་ལས་ དོ་རུང་ཚར་ཅིག་ <emph>གནད་སྡུད་ - ཚགས་མ་ - རང་བཞིན་ཚགས་མ་</emph> འིད་གདམ་ཁ་རྐྱབས།"
@@ -357,7 +332,6 @@ msgstr ""
msgctxt ""
"autofilter.xhp\n"
"par_id3159236\n"
-"14\n"
"help.text"
msgid "The arithmetic functions also take account of the cells that are not visible due to an applied filter. For example, a sum of an entire column will also total the values in the filtered cells. Apply the <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link> function if only the cells visible after the application of a filter are to be taken into account."
msgstr "ཨང་རྩིས་རིག་པའི་ལས་འགན་འདི་གིས་ཡང་ འཇུག་སྤྱོད་འབད་ཡོད་པའི་ཚགས་མ་ལུ་བརྟེན་མི་མཐོང་བའི་ནང་ཐིག་ཚུ་གི་རྩིས་རྐྱབ་ཨིན། དཔེར་ན་ ཀེར་ཐིག་ཧྲིལ་བུ་ཡོངས་བསྡོམས་ཀྱིས་ཡང་ བཙགས་ཡོད་པའི་ནང་ཐིག་ནང་ བེ་ལུསི་བསྡོམས་ཨིན། ཚགས་མའི་གློག་རིམ་ཚུ་རྩིས་རྐྱབ་ནི་ཨིན་པའི་ཤུལ་ལུ་ ནང་ཐིག་ཚུ་མཐོང་པ་ཅིན་རྐྱངམ་ཅིག་ the <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">ཡན་ལག་ཡོངས་བསྡོམས་</link> ལས་འགན་འཇུག་སྤྱོད་འབད།"
@@ -366,7 +340,6 @@ msgstr "ཨང་རྩིས་རིག་པའི་ལས་འགན་འ
msgctxt ""
"autofilter.xhp\n"
"par_id3152985\n"
-"16\n"
"help.text"
msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFilter\">Data - Filter - AutoFilter</link>"
msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFilter\">གནད་སྡུད་ - ཚགས་མ་ - རང་བཞིན་ཚགས་མ་</link>"
@@ -375,7 +348,6 @@ msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFil
msgctxt ""
"autofilter.xhp\n"
"par_id3154484\n"
-"17\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link>"
msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">དངུལ་བསྡོམས་ཡན་ལག་</link>"
@@ -400,7 +372,6 @@ msgstr "<bookmark_value>ཐིག་ཁྲམ་ཚུ་ རང་བཞིན
msgctxt ""
"autoformat.xhp\n"
"hd_id3155132\n"
-"11\n"
"help.text"
msgid "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\" name=\"Using AutoFormat for Tables\">Applying Automatic Formatting to a Selected Cell Range</link></variable>"
msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\" name=\"Using AutoFormat for Tables\">སེལ་འཐུ་འབད་ཡོད་པའི་ནང་ཐིག་ཁྱབ་ཚད་ཅིག་ལུ་ རང་བཞིན་རྩ་སྒྲིག་འཇུག་སྤྱོད་འབད་ནི་</link></variable>"
@@ -409,7 +380,6 @@ msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
"par_id3149401\n"
-"12\n"
"help.text"
msgid "You can use the AutoFormat feature to quickly apply a format to a sheet or a selected cell range."
msgstr "ཁྱོད་ཀྱིས་ རྩ་སྒྲིག་འདི་ལེབ་གྲངས་ ཡང་ན་ སེལ་འཐུ་འབད་ཡོད་པའི་ནང་ཐིག་ཁྱབ་ཚད་ལུ་མགྱོགས་པ་ར་འཇུག་སྤྱོད་འབད་ནི་གི་དོན་ལུ་ རང་བཞིན་རྩསྒྲིག་གི་ཁྱད་རྣམ་ ལག་ལེན་འཐབ་བཏུབ།"
@@ -442,7 +412,6 @@ msgstr "<item type=\"menuitem\">རྩ་སྒྲིག་ - རང་བཞི
msgctxt ""
"autoformat.xhp\n"
"par_id3151242\n"
-"27\n"
"help.text"
msgid "To select which properties to include in an AutoFormat, click <emph>More</emph>."
msgstr "རང་བཞིན་རྩ་སྒྲིག་ནང་རྒྱུ་དངོས་ག་ཅི་འདི་བཙུགས་ནི་ཨིན་ན་ སེལ་འཐུ་འབད་ནི་གི་དོན་ལུ་ <emph>ལེ་ཤ་</emph>ལུ་ ཨེབ་གཏང་འབད།"
@@ -467,7 +436,6 @@ msgstr "རྩ་སྒྲིག་འདི་ ནང་ཐིག་གི་
msgctxt ""
"autoformat.xhp\n"
"par_id3149210\n"
-"14\n"
"help.text"
msgid "If you do not see any change in color of the cell contents, choose <item type=\"menuitem\">View - Value Highlighting</item>."
msgstr "ཁྱོད་ཀྱིས་ ནང་ཐིག་ནང་དོན་གྱི་ཚོས་གཞི་ལུ་འགྱུར་བ་ག་ནི་ཡང་མ་མཐོང་པ་ཅིན་ <item type=\"menuitem\">བེ་ལུའི་གཙོ་དམིགས་-སྟོན་</item> འདི་གདམ་ཁ་རྐྱབས།"
@@ -476,7 +444,6 @@ msgstr "ཁྱོད་ཀྱིས་ ནང་ཐིག་ནང་དོན
msgctxt ""
"autoformat.xhp\n"
"par_id3155379\n"
-"22\n"
"help.text"
msgid "To Define an AutoFormat for Spreadsheets"
msgstr "ཤོག་ཁྲམ་དོན་ལས་ རང་བཞིན་རྩ་སྒྲིག་ངེས་འཛིན་འབད་ནི་གི་དོན་ལུ་"
@@ -485,7 +452,6 @@ msgstr "ཤོག་ཁྲམ་དོན་ལས་ རང་བཞིན་
msgctxt ""
"autoformat.xhp\n"
"par_id3148868\n"
-"26\n"
"help.text"
msgid "You can define a new AutoFormat that is available to all spreadsheets."
msgstr "ཁྱོད་ཀྱིས་ ཤོག་ཁྲམ་ཆ་མཉམ་ལུ་འཐོབ་ཚུགས་པའི་རང་བཞིན་རྩ་སྒྲིག་གསརཔ་ཅིག་ ངེས་འཛིན་འབད་ཚུགས།"
@@ -494,7 +460,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཤོག་ཁྲམ་ཆ་མཉམ
msgctxt ""
"autoformat.xhp\n"
"par_id3152985\n"
-"23\n"
"help.text"
msgid "Format a sheet."
msgstr "ལེབ་གྲངས་ཅིག་ རྩ་སྒྲིག་བཟོ།"
@@ -503,7 +468,6 @@ msgstr "ལེབ་གྲངས་ཅིག་ རྩ་སྒྲིག་བ
msgctxt ""
"autoformat.xhp\n"
"par_id3145384\n"
-"24\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Edit - Select All</item>."
msgstr "<item type=\"menuitem\">ཞུན་དག་ - ཆ་མཉམ་སེལ་འཐུ་འབད་</item>གདམ་ཁ་རྐྱབས།"
@@ -512,7 +476,6 @@ msgstr "<item type=\"menuitem\">ཞུན་དག་ - ཆ་མཉམ་སེ
msgctxt ""
"autoformat.xhp\n"
"par_id3153815\n"
-"25\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
msgstr "<item type=\"menuitem\">རྩ་སྒྲིག་ - རང་བཞིན་རྩ་སྒྲིག་</item> གདམ་ཁ་རྐྱབས།"
@@ -545,7 +508,6 @@ msgstr "<emph>བཏུབ་</emph> གུ་ཨེབ་གཏང་འབད
msgctxt ""
"autoformat.xhp\n"
"par_id3159203\n"
-"28\n"
"help.text"
msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"Format - AutoFormat\">Format - AutoFormat</link>"
msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"Format - AutoFormat\">རྩ་སྒྲིག་ - རང་བཞིན་རྩ་སྒྲིག་</link>"
@@ -570,7 +532,6 @@ msgstr ""
msgctxt ""
"background.xhp\n"
"hd_id3149346\n"
-"1\n"
"help.text"
msgid "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Defining Background Colors or Background Graphics\">Defining Background Colors or Background Graphics</link></variable>"
msgstr ""
@@ -587,7 +548,6 @@ msgstr ""
msgctxt ""
"background.xhp\n"
"hd_id3144760\n"
-"16\n"
"help.text"
msgid "Applying a Background Color to a $[officename] Calc Spreadsheet"
msgstr ""
@@ -596,7 +556,6 @@ msgstr ""
msgctxt ""
"background.xhp\n"
"par_id3155429\n"
-"17\n"
"help.text"
msgid "Select the cells."
msgstr ""
@@ -605,7 +564,6 @@ msgstr ""
msgctxt ""
"background.xhp\n"
"par_id3149260\n"
-"18\n"
"help.text"
msgid "Choose <emph>Format - Cells</emph> (or <emph>Format Cells</emph> from the context menu)."
msgstr ""
@@ -614,7 +572,6 @@ msgstr ""
msgctxt ""
"background.xhp\n"
"par_id3152938\n"
-"19\n"
"help.text"
msgid "On the <emph>Background</emph> tab page, select the background color."
msgstr ""
@@ -623,17 +580,14 @@ msgstr ""
msgctxt ""
"background.xhp\n"
"hd_id3146974\n"
-"20\n"
"help.text"
msgid "Graphics in the Background of Cells"
msgstr ""
#: background.xhp
-#, fuzzy
msgctxt ""
"background.xhp\n"
"par_id3155414\n"
-"21\n"
"help.text"
msgid "Choose <emph>Insert - Image - From File</emph>."
msgstr "#-#-#-#-# guide.po (PACKAGE VERSION) #-#-#-#-#\\n<emph>བཙུགས་-པར་</emph>གདམ་ཁ་རྐྱབས།\\n#-#-#-#-# guide.po (PACKAGE VERSION) #-#-#-#-#\\nབཙུགས་<emph> - པར་ - ཡིག་སྣོད་ལས་གདམ་ཁ་རྐྱབས།</emph>."
@@ -642,7 +596,6 @@ msgstr "#-#-#-#-# guide.po (PACKAGE VERSION) #-#-#-#-#\\n<emph>བཙུགས
msgctxt ""
"background.xhp\n"
"par_id3149664\n"
-"22\n"
"help.text"
msgid "Select the graphic and click <emph>Open</emph>."
msgstr ""
@@ -651,7 +604,6 @@ msgstr ""
msgctxt ""
"background.xhp\n"
"par_id3153575\n"
-"23\n"
"help.text"
msgid "The graphic is inserted anchored to the current cell. You can move and scale the graphic as you want. In your context menu you can use the <emph>Arrange - To Background</emph> command to place this in the background. To select a graphic that has been placed in the background, use the <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link></caseinline><defaultinline>Navigator</defaultinline></switchinline>."
msgstr ""
@@ -668,7 +620,6 @@ msgstr ""
msgctxt ""
"background.xhp\n"
"par_id3156180\n"
-"30\n"
"help.text"
msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\"><emph>Background</emph> tab page</link>"
msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\"><emph>རྒྱབ་གཞི་</emph> མཆོང་ལྡེ་ཤོག་ལེབ།</link>"
@@ -798,8 +749,8 @@ msgctxt ""
"borders.xhp\n"
"par_id8473464\n"
"help.text"
-msgid "<image id=\"img_id1737113\" src=\"res/helpimg/border_ca_1.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1737113\">borders with one cell selected</alt></image>"
-msgstr "<image id=\"img_id1737113\" src=\"res/helpimg/border_ca_1.png\" width=\"1.2709inch\" height=\"1.6146inch\"><alt id=\"alt_id1737113\">ནང་ཐིག་གཅིག་སེལ་འཐུ་འབད་ཡོད་དང་གཅིག་ཁར་མཐའ་མཚམསཚུ་</alt></image>"
+msgid "<image id=\"img_id1737113\" src=\"media/helpimg/border_ca_1.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1737113\">borders with one cell selected</alt></image>"
+msgstr "<image id=\"img_id1737113\" src=\"media/helpimg/border_ca_1.png\" width=\"1.2709inch\" height=\"1.6146inch\"><alt id=\"alt_id1737113\">ནང་ཐིག་གཅིག་སེལ་འཐུ་འབད་ཡོད་དང་གཅིག་ཁར་མཐའ་མཚམསཚུ་</alt></image>"
#: borders.xhp
msgctxt ""
@@ -814,8 +765,8 @@ msgctxt ""
"borders.xhp\n"
"par_id6635639\n"
"help.text"
-msgid "<image id=\"img_id1680959\" src=\"res/helpimg/border_ca_2.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1680959\">borders with a column selected</alt></image>"
-msgstr "<image id=\"img_id1680959\" src=\"res/helpimg/border_ca_2.png\" width=\"1.2917inch\" height=\"1.6146inch\"><alt id=\"alt_id1680959\">ཀེར་ཐིག་སེལ་འཐུ་འབད་ཡོད་མི་དང་གཅིག་ཁར་མཐའ་མཚམས་ཚུ་</alt></image>"
+msgid "<image id=\"img_id1680959\" src=\"media/helpimg/border_ca_2.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1680959\">borders with a column selected</alt></image>"
+msgstr "<image id=\"img_id1680959\" src=\"media/helpimg/border_ca_2.png\" width=\"1.2917inch\" height=\"1.6146inch\"><alt id=\"alt_id1680959\">ཀེར་ཐིག་སེལ་འཐུ་འབད་ཡོད་མི་དང་གཅིག་ཁར་མཐའ་མཚམས་ཚུ་</alt></image>"
#: borders.xhp
msgctxt ""
@@ -830,8 +781,8 @@ msgctxt ""
"borders.xhp\n"
"par_id6054567\n"
"help.text"
-msgid "<image id=\"img_id9623096\" src=\"res/helpimg/border_ca_3.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id9623096\">borders with a row selected</alt></image>"
-msgstr "<image id=\"img_id9623096\" src=\"res/helpimg/border_ca_3.png\" width=\"1.2811inch\" height=\"1.6146inch\"><alt id=\"alt_id9623096\">གྲལ་ཐིག་སེལ་འཐུ་འབད་ཡོད་མི་དང་གཅིག་ཁར་མཐའ་མཚམས་ཚུ་</alt></image>"
+msgid "<image id=\"img_id9623096\" src=\"media/helpimg/border_ca_3.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id9623096\">borders with a row selected</alt></image>"
+msgstr "<image id=\"img_id9623096\" src=\"media/helpimg/border_ca_3.png\" width=\"1.2811inch\" height=\"1.6146inch\"><alt id=\"alt_id9623096\">གྲལ་ཐིག་སེལ་འཐུ་འབད་ཡོད་མི་དང་གཅིག་ཁར་མཐའ་མཚམས་ཚུ་</alt></image>"
#: borders.xhp
msgctxt ""
@@ -846,8 +797,8 @@ msgctxt ""
"borders.xhp\n"
"par_id4511551\n"
"help.text"
-msgid "<image id=\"img_id8139591\" src=\"res/helpimg/border_ca_4.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id8139591\">borders with a block selected</alt></image>"
-msgstr "<image id=\"img_id8139591\" src=\"res/helpimg/border_ca_4.png\" width=\"1.2917inch\" height=\"1.6252inch\"><alt id=\"alt_id8139591\">སྡེབ་ཚན་སེལ་འཐུ་འབད་མི་དང་གཅིག་ཁར་མཐའ་མཚམས་ཚུ་</alt></image>"
+msgid "<image id=\"img_id8139591\" src=\"media/helpimg/border_ca_4.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id8139591\">borders with a block selected</alt></image>"
+msgstr "<image id=\"img_id8139591\" src=\"media/helpimg/border_ca_4.png\" width=\"1.2917inch\" height=\"1.6252inch\"><alt id=\"alt_id8139591\">སྡེབ་ཚན་སེལ་འཐུ་འབད་མི་དང་གཅིག་ཁར་མཐའ་མཚམས་ཚུ་</alt></image>"
#: borders.xhp
msgctxt ""
@@ -918,8 +869,8 @@ msgctxt ""
"borders.xhp\n"
"par_id8119754\n"
"help.text"
-msgid "<image id=\"img_id7261268\" src=\"res/helpimg/border_ca_5.png\" width=\"1.0937in\" height=\"0.2189in\"><alt id=\"alt_id7261268\">default icon row of Borders tab page</alt></image>"
-msgstr "<image id=\"img_id7261268\" src=\"res/helpimg/border_ca_5.png\" width=\"1.1354inch\" height=\"0.25inch\"><alt id=\"alt_id7261268\">མཐའ་མཚམས་ཀྱི་མཆོང་ལྡེ་ཤོག་ལེབ་ཀྱི་སྔོན་སྒྲིག་ངོས་དཔར་</alt></image>"
+msgid "<image id=\"img_id7261268\" src=\"media/helpimg/border_ca_5.png\" width=\"1.0937in\" height=\"0.2189in\"><alt id=\"alt_id7261268\">default icon row of Borders tab page</alt></image>"
+msgstr "<image id=\"img_id7261268\" src=\"media/helpimg/border_ca_5.png\" width=\"1.1354inch\" height=\"0.25inch\"><alt id=\"alt_id7261268\">མཐའ་མཚམས་ཀྱི་མཆོང་ལྡེ་ཤོག་ལེབ་ཀྱི་སྔོན་སྒྲིག་ངོས་དཔར་</alt></image>"
#: borders.xhp
msgctxt ""
@@ -1014,8 +965,8 @@ msgctxt ""
"borders.xhp\n"
"par_id4065065\n"
"help.text"
-msgid "<image id=\"img_id9379863\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9379863\">solid line for user defined border</alt></image>"
-msgstr "<image id=\"img_id9379863\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2811inch\" height=\"1.1354inch\"><alt id=\"alt_id9379863\">ལག་ལེན་པ་ངོས་འཛིན་འབད་ཡོད་པའི་མཐའ་མཚམས་ཀྱི་དོན་ལུ་ རགས་པ་གྲལ་ཐིག་</alt></image>"
+msgid "<image id=\"img_id9379863\" src=\"media/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9379863\">solid line for user defined border</alt></image>"
+msgstr "<image id=\"img_id9379863\" src=\"media/helpimg/border_ca_7.png\" width=\"1.2811inch\" height=\"1.1354inch\"><alt id=\"alt_id9379863\">ལག་ལེན་པ་ངོས་འཛིན་འབད་ཡོད་པའི་མཐའ་མཚམས་ཀྱི་དོན་ལུ་ རགས་པ་གྲལ་ཐིག་</alt></image>"
#: borders.xhp
msgctxt ""
@@ -1038,8 +989,8 @@ msgctxt ""
"borders.xhp\n"
"par_id6653340\n"
"help.text"
-msgid "<image id=\"img_id6972563\" src=\"res/helpimg/border_ca_gray.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id6972563\">gray line for user defined border</alt></image>"
-msgstr "<image id=\"img_id6972563\" src=\"res/helpimg/border_ca_gray.png\" width=\"1.2709inch\" height=\"1.1563inch\"><alt id=\"alt_id6972563\">ལག་ལེན་པ་ངོས་འཛིན་འབད་ཡོད་པའི་མཐའ་མཚམས་ཀྱི་དོན་ལུ་ སྐྱ་ཐལ་གྲལ་ཐིག་</alt></image>"
+msgid "<image id=\"img_id6972563\" src=\"media/helpimg/border_ca_gray.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id6972563\">gray line for user defined border</alt></image>"
+msgstr "<image id=\"img_id6972563\" src=\"media/helpimg/border_ca_gray.png\" width=\"1.2709inch\" height=\"1.1563inch\"><alt id=\"alt_id6972563\">ལག་ལེན་པ་ངོས་འཛིན་འབད་ཡོད་པའི་མཐའ་མཚམས་ཀྱི་དོན་ལུ་ སྐྱ་ཐལ་གྲལ་ཐིག་</alt></image>"
#: borders.xhp
msgctxt ""
@@ -1062,8 +1013,8 @@ msgctxt ""
"borders.xhp\n"
"par_id52491\n"
"help.text"
-msgid "<image id=\"img_id3801080\" src=\"res/helpimg/border_ca_white.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id3801080\">white line for user defined border</alt></image>"
-msgstr "<image id=\"img_id3801080\" src=\"res/helpimg/border_ca_white.png\" width=\"1.2811inch\" height=\"1.1354inch\"><alt id=\"alt_id3801080\">ལག་ལེན་པ་ངོས་འཛིན་འབད་ཡོད་པའི་མཐའ་མཚམས་ཚུ་གི་དོན་ལུ་ གྲལ་ཐིག་དཀརཔོ་</alt></image>"
+msgid "<image id=\"img_id3801080\" src=\"media/helpimg/border_ca_white.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id3801080\">white line for user defined border</alt></image>"
+msgstr "<image id=\"img_id3801080\" src=\"media/helpimg/border_ca_white.png\" width=\"1.2811inch\" height=\"1.1354inch\"><alt id=\"alt_id3801080\">ལག་ལེན་པ་ངོས་འཛིན་འབད་ཡོད་པའི་མཐའ་མཚམས་ཚུ་གི་དོན་ལུ་ གྲལ་ཐིག་དཀརཔོ་</alt></image>"
#: borders.xhp
msgctxt ""
@@ -1102,8 +1053,8 @@ msgctxt ""
"borders.xhp\n"
"par_id5149693\n"
"help.text"
-msgid "<image id=\"img_id9467452\" src=\"res/helpimg/border_ca_6.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9467452\">setting a thin lower border</alt></image>"
-msgstr "<image id=\"img_id9467452\" src=\"res/helpimg/border_ca_6.png\" width=\"1.2709inch\" height=\"1.1563inch\"><alt id=\"alt_id9467452\">སྲབ་མི་འོག་གི་མཐའ་མཚམས་ཅིག་གཞི་སྒྲིག་འབད་དོ་</alt></image>"
+msgid "<image id=\"img_id9467452\" src=\"media/helpimg/border_ca_6.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9467452\">setting a thin lower border</alt></image>"
+msgstr "<image id=\"img_id9467452\" src=\"media/helpimg/border_ca_6.png\" width=\"1.2709inch\" height=\"1.1563inch\"><alt id=\"alt_id9467452\">སྲབ་མི་འོག་གི་མཐའ་མཚམས་ཅིག་གཞི་སྒྲིག་འབད་དོ་</alt></image>"
#: borders.xhp
msgctxt ""
@@ -1118,8 +1069,8 @@ msgctxt ""
"borders.xhp\n"
"par_id6342051\n"
"help.text"
-msgid "<image id=\"img_id7431562\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id7431562\">setting a thick line as a border</alt></image>"
-msgstr "<image id=\"img_id7431562\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2811inch\" height=\"1.1354inch\"><alt id=\"alt_id7431562\">གྲལ་ཐིག་སྟུག་དྲག་ཅིག་མཐའ་མཚམས་སྦེ་གཞི་སྒྲིག་འབད་དོ་</alt></image>"
+msgid "<image id=\"img_id7431562\" src=\"media/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id7431562\">setting a thick line as a border</alt></image>"
+msgstr "<image id=\"img_id7431562\" src=\"media/helpimg/border_ca_7.png\" width=\"1.2811inch\" height=\"1.1354inch\"><alt id=\"alt_id7431562\">གྲལ་ཐིག་སྟུག་དྲག་ཅིག་མཐའ་མཚམས་སྦེ་གཞི་སྒྲིག་འབད་དོ་</alt></image>"
#: borders.xhp
msgctxt ""
@@ -1134,8 +1085,8 @@ msgctxt ""
"borders.xhp\n"
"par_id2882778\n"
"help.text"
-msgid "<image id=\"img_id8155766.00000001\" src=\"res/helpimg/border_ca_8.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id8155766.00000001\">removing lower border</alt></image>"
-msgstr "<image id=\"img_id8155766.00000001\" src=\"res/helpimg/border_ca_8.png\" width=\"1.2709inch\" height=\"1.1354inch\"><alt id=\"alt_id8155766.00000001\">འོག་གི་མཐའ་མཚམས་ཚུ་རྩ་བསྐྲད་གཏང་དོ་</alt></image>"
+msgid "<image id=\"img_id8155766.00000001\" src=\"media/helpimg/border_ca_8.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id8155766.00000001\">removing lower border</alt></image>"
+msgstr "<image id=\"img_id8155766.00000001\" src=\"media/helpimg/border_ca_8.png\" width=\"1.2709inch\" height=\"1.1354inch\"><alt id=\"alt_id8155766.00000001\">འོག་གི་མཐའ་མཚམས་ཚུ་རྩ་བསྐྲད་གཏང་དོ་</alt></image>"
#: borders.xhp
msgctxt ""
@@ -1150,8 +1101,8 @@ msgctxt ""
"borders.xhp\n"
"par_id2102420\n"
"help.text"
-msgid "<image id=\"img_id5380718\" src=\"res/helpimg/border_ca_9.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id5380718\">advanced example for cell borders</alt></image>"
-msgstr "<image id=\"img_id5380718\" src=\"res/helpimg/border_ca_9.png\" width=\"1.2709inch\" height=\"1.1563inch\"><alt id=\"alt_id5380718\">ནང་ཐིག་མཐའ་ཚུ་གི་དོན་ལུ་མཐོ་རིམ་དཔེར་བརྗོད་</alt></image>"
+msgid "<image id=\"img_id5380718\" src=\"media/helpimg/border_ca_9.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id5380718\">advanced example for cell borders</alt></image>"
+msgstr "<image id=\"img_id5380718\" src=\"media/helpimg/border_ca_9.png\" width=\"1.2709inch\" height=\"1.1563inch\"><alt id=\"alt_id5380718\">ནང་ཐིག་མཐའ་ཚུ་གི་དོན་ལུ་མཐོ་རིམ་དཔེར་བརྗོད་</alt></image>"
#: calc_date.xhp
msgctxt ""
@@ -1162,7 +1113,6 @@ msgid "Calculating With Dates and Times"
msgstr "ཚེས་གྲངས་དང་ཆུ་ཚོད་ཀྱི་ཐོག་ལས་ རྩིས་སྟོན།"
#: calc_date.xhp
-#, fuzzy
msgctxt ""
"calc_date.xhp\n"
"bm_id3146120\n"
@@ -1203,7 +1153,6 @@ msgid "Enter the following formula in cell A3: <item type=\"literal\">=NOW()-A1<
msgstr ""
#: calc_date.xhp
-#, fuzzy
msgctxt ""
"calc_date.xhp\n"
"par_id3149020\n"
@@ -1236,7 +1185,6 @@ msgid "The number of days between today's date and the specified date is display
msgstr "ད་རིས་ཀྱི་ཚེས་གྲངས་དང་གསལ་བཀོད་འབད་ཡོད་པའི་ཚེས་གྲངས་གཉིས་ཀྱི་བར་ནའི་ཉིན་གྲངས་ཚུ་ ནང་ཐིག་ ཨེ༣་ པའི་ནང་བཀྲམ་སྟོན་འབདཝ་ཨིན།"
#: calc_date.xhp
-#, fuzzy
msgctxt ""
"calc_date.xhp\n"
"par_id3150304\n"
@@ -1272,7 +1220,6 @@ msgstr "<bookmark_value>རྒྱུན་རིམ་; རྩིས་སྟོ
msgctxt ""
"calc_series.xhp\n"
"hd_id3150769\n"
-"6\n"
"help.text"
msgid "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Automatically Calculating Series\">Automatically Filling in Data Based on Adjacent Cells</link></variable>"
msgstr "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Automatically Calculating Series\">ཉེ་འདབ་ནང་ཐིག་གུ་གི་གནད་སྡུད་གཞི་རྟེན་ནང་ རང་བཞིན་གྱིས་བཀང་བ་</link></variable>"
@@ -1305,7 +1252,6 @@ msgstr "རང་བཞིན་བཀང་བ་གིས་ རང་བཞ
msgctxt ""
"calc_series.xhp\n"
"par_id3154319\n"
-"7\n"
"help.text"
msgid "On a sheet, click in a cell, and type a number."
msgstr "ལེབ་གྲངས་གུ་སྦེ་ནང་ཐིག་ནང་ཨེབ་གཏང་་འབད་ཞིནམ་ལས་ ཨང་གྲངས་ཅིག་ཡིག་དཔར་རྐྱབས།"
@@ -1322,7 +1268,6 @@ msgstr "ནང་ཐིག་གཞན་མི་ཅིག་ལུ་ཨེབ
msgctxt ""
"calc_series.xhp\n"
"par_id3145272\n"
-"16\n"
"help.text"
msgid "Drag the fill handle in the bottom right corner of the cell across the cells that you want to fill, and release the mouse button."
msgstr "ནང་ཐིག་གི་མཇུག་ལུ་ གཡས་ཀྱི་ཟུར་ཁ་ཡོད་མི་བཀང་ནིའི་བཤེད་བཟུང་འདི་འདྲུད་དེ་ ཁྱོད་ཀྱིས་བཀང་དགོ་མནོ་མི་ ནང་ཐིག་ཆ་མཉམ་ལུ་ བཀལ་ཞིནམ་ལས་ མཱའུསི་ཨེབ་རྟ་འདི་གཏང་།"
@@ -1331,7 +1276,6 @@ msgstr "ནང་ཐིག་གི་མཇུག་ལུ་ གཡས་ཀ
msgctxt ""
"calc_series.xhp\n"
"par_id3145801\n"
-"17\n"
"help.text"
msgid "The cells are filled with ascending numbers."
msgstr "ནང་ཐིག་ཚུ་ནང་ཡར་འཛེགས་ཨང་གྲངས་ བཀང་ཡི།"
@@ -1356,7 +1300,6 @@ msgstr ""
msgctxt ""
"calc_series.xhp\n"
"par_id3154490\n"
-"18\n"
"help.text"
msgid "If you select two or more adjacent cells that contain different numbers, and drag, the remaining cells are filled with the arithmetic pattern that is recognized in the numbers. The AutoFill function also recognizes customized lists that are defined under <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Calc - Sort Lists</item>."
msgstr ""
@@ -1381,17 +1324,14 @@ msgstr "ངེས་འཛིན་འབད་ཡོད་པའི་རྒྱ
msgctxt ""
"calc_series.xhp\n"
"par_id3150749\n"
-"9\n"
"help.text"
msgid "Select the cell range in the sheet that you want to fill."
msgstr "ཁྱོད་ཀྱིས་ ལེབ་གྲངས་ནང་ལུ་བཀང་ནི་ཨིན་མི་ནང་ཐིག་ཁྱབ་ཚད་འདི་སེལ་འཐུ་འབད།"
#: calc_series.xhp
-#, fuzzy
msgctxt ""
"calc_series.xhp\n"
"par_id3154754\n"
-"19\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Sheet - Fill Cells - Series</item>."
msgstr "<item type=\"menuitem\">ཞུན་དག་ - བཀང་བ་ - རྒྱུན་རིམ་</item>གདམ་ཁ་རྐྱབས།"
@@ -1432,7 +1372,6 @@ msgstr "ཁྱོད་ཀྱིས་ <emph>ཚེས་གྲངས་</emph>
msgctxt ""
"calc_series.xhp\n"
"par_id3159173\n"
-"20\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
msgstr "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">ཐོ་ཡིག་ཚུ་དབྱེ་སེལ་འབད་</link>"
@@ -1457,7 +1396,6 @@ msgstr "<bookmark_value>རྩིས་སྟོན་དོ་ ཆུ་ཚོ
msgctxt ""
"calc_timevalues.xhp\n"
"hd_id3150769\n"
-"53\n"
"help.text"
msgid "<variable id=\"calc_timevalues\"><link href=\"text/scalc/guide/calc_timevalues.xhp\" name=\"Calculating Time Differences\">Calculating Time Differences</link></variable>"
msgstr "<variable id=\"calc_timevalues\"><link href=\"text/scalc/guide/calc_timevalues.xhp\" name=\"Calculating Time Differences\">ཆུ་ཚོད་ཀྱི་ཁྱད་པར་ཚུ་རྩིས་སྟོན་དོ།</link></variable>"
@@ -1466,7 +1404,6 @@ msgstr "<variable id=\"calc_timevalues\"><link href=\"text/scalc/guide/calc_time
msgctxt ""
"calc_timevalues.xhp\n"
"par_id3149263\n"
-"54\n"
"help.text"
msgid "If you want to calculate time differences, for example, the time between 23:30 and 01:10 in the same night, use the following formula:"
msgstr "ཆུ་ཚོད་ཁྱད་པར་གྱི་རྩིས་སྟོན་དགོ་པ་ཅིན་ དཔེར་ན་ ཆུ་ཚོད་ ༢༣:༣༠ དང་ ༠༡:༡༠ གཉིས་ཀྱི་བར་ན་ ནུབ་གཅིག་ལུ་ར་རྩིས་སྟོན་དགོ་་པ་ཅིན་ འོག་གི་མན་ངག་འདི་ལག་ལེན་འཐབ་ཨིན་:"
@@ -1475,7 +1412,6 @@ msgstr "ཆུ་ཚོད་ཁྱད་པར་གྱི་རྩིས་ས
msgctxt ""
"calc_timevalues.xhp\n"
"par_id3159153\n"
-"55\n"
"help.text"
msgid "=(B2<A2)+B2-A2"
msgstr "=(B2<A2)+B2-A2"
@@ -1484,7 +1420,6 @@ msgstr "=(B2<A2)+B2-A2"
msgctxt ""
"calc_timevalues.xhp\n"
"par_id3152598\n"
-"56\n"
"help.text"
msgid "The later time is B2 and the earlier time is A2. The result of the example is 01:40 or 1 hour and 40 minutes."
msgstr "ཤུལ་མའི་ཆུ་ཚོད་འདི་ བི་༢་ དང་ ཧེ་མའི་ཆུ་ཚོད་འདི་ ཨེ་༢ ཨིན། དཔེར་བརྗོད་འདི་གི་གྲུབ་འབྲས་འདི་ ༠༡:༤༠ ཡང་ན་ ཆུ་ཚོད་ ༡་དང་སྐར་མ་ ༤༠ ཨིན།"
@@ -1493,7 +1428,6 @@ msgstr "ཤུལ་མའི་ཆུ་ཚོད་འདི་ བི་༢
msgctxt ""
"calc_timevalues.xhp\n"
"par_id3145271\n"
-"57\n"
"help.text"
msgid "In the formula, an entire 24-hour day has a value of 1 and one hour has a value of 1/24. The logical value in parentheses is 0 or 1, corresponding to 0 or 24 hours. The result returned by the formula is automatically issued in time format due to the sequence of the operands."
msgstr "མན་ངག་ནང་ ཆུ་ཚོད་ཉེར་བཞི་ཧྲིལ་བུ་ལུ་ ༡ གི་བེ་ལུ་དང་ ཆུ་ཚོད་གཅིག་ལུ་ ༡/༢༤ གི་བེ་ལུ་ཡོད། གུག་ཤད་ནང་གཏན་ཚིགས་ཅན་གྱི་བེ་ལུ་འདི་ ༠ ཡང་ན་ ༢༤ དང་འབྲེལ་ཏེ་ ༠ ཡངན་ ༡ ཨིན། མན་ངག་གིས་ལོག་སྤྲོད་ཡོད་པའི་གྲུབ་འབྲས་འདི་ ཨོ་པི་རེནཌིསི་གི་རྒྱུན་རིམ་ལས་བརྟེན་ཏེ་ རང་བཞིན་གྱིས་ ཆུ་ཚོད་རྩ་སྒྲིག་ནང་སྤྲོདཔ་ཨིན།"
@@ -1679,7 +1613,7 @@ msgctxt ""
"cell_enter.xhp\n"
"par_id6196783\n"
"help.text"
-msgid "<image id=\"img_id6473586\" src=\"res/helpimg/area1.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id6473586\">area detection</alt></image>"
+msgid "<image id=\"img_id6473586\" src=\"media/helpimg/area1.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id6473586\">area detection</alt></image>"
msgstr ""
#: cell_enter.xhp
@@ -1711,7 +1645,7 @@ msgctxt ""
"cell_enter.xhp\n"
"par_id7044282\n"
"help.text"
-msgid "<image id=\"img_id2811365\" src=\"res/helpimg/area2.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id2811365\">area selection</alt></image>"
+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 ""
#: cell_enter.xhp
@@ -1758,7 +1692,6 @@ msgstr "<bookmark_value>ཉེན་སྐྱོབ་འབད་དོ་;ན
msgctxt ""
"cell_protect.xhp\n"
"hd_id3146119\n"
-"5\n"
"help.text"
msgid "<variable id=\"cell_protect\"><link href=\"text/scalc/guide/cell_protect.xhp\" name=\"Protecting Cells from Changes\">Protecting Cells from Changes</link></variable>"
msgstr "<variable id=\"cell_protect\"><link href=\"text/scalc/guide/cell_protect.xhp\" name=\"Protecting Cells from Changes\">ནང་ཐིག་ཚུ་བསྒྱུར་བཅོས་འབད་ནི་ལས་ ཉེན་སྐྱོབ་འབད་ནི་</link></variable>"
@@ -1767,7 +1700,6 @@ msgstr "<variable id=\"cell_protect\"><link href=\"text/scalc/guide/cell_protect
msgctxt ""
"cell_protect.xhp\n"
"par_id3153368\n"
-"17\n"
"help.text"
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can protect sheets and the document as a whole. You can choose whether the cells are protected against accidental changes, whether the formulas can be viewed from within Calc, whether the cells are visible or whether the cells can be printed."
msgstr ""
@@ -1776,7 +1708,6 @@ msgstr ""
msgctxt ""
"cell_protect.xhp\n"
"par_id3145261\n"
-"18\n"
"help.text"
msgid "Protection can be provided by means of a password, but it does not have to be. If you have assigned a password, protection can only be removed once the correct password has been entered."
msgstr ""
@@ -1785,7 +1716,6 @@ msgstr ""
msgctxt ""
"cell_protect.xhp\n"
"par_id3148576\n"
-"19\n"
"help.text"
msgid "Note that the cell protection for cells with the <emph>Protected</emph> attribute is only effective when you protect the whole sheet. In the default condition, every cell has the <emph>Protected</emph> attribute. Therefore you must remove the attribute selectively for those cells where the user may make changes. You then protect the whole sheet and save the document."
msgstr ""
@@ -1810,7 +1740,6 @@ msgstr "ཁྱོད་ཀྱིས་ ནང་ཐིག་ཉེན་སྐ
msgctxt ""
"cell_protect.xhp\n"
"par_id3149019\n"
-"7\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Cells</item> and click the <emph>Cell Protection</emph> tab."
msgstr "<item type=\"menuitem\">རྩ་སྒྲིག་ - ནང་ཐིག་ཚུ་</item>གདམ་ཞིནམ་ལས་ <emph>ནང་ཐིག་ཉེན་སྐྱོབ་</emph> མཆོང་ལྡེ་གུ་ ཨེབ་གཏང་འབད།"
@@ -1819,7 +1748,6 @@ msgstr "<item type=\"menuitem\">རྩ་སྒྲིག་ - ནང་ཐིག
msgctxt ""
"cell_protect.xhp\n"
"par_id3152985\n"
-"9\n"
"help.text"
msgid "Select the protection options that you want. All options will be applied only after you protect the sheet from the Tools menu - see below."
msgstr ""
@@ -1836,7 +1764,6 @@ msgstr "ནང་དོན་དང་ནང་ཐིག་རྩ་སྒྲི
msgctxt ""
"cell_protect.xhp\n"
"par_id3152898\n"
-"10\n"
"help.text"
msgid "Select <emph>Protected</emph> to prevent changes to the contents and the format of a cell."
msgstr "ནང་དོན་དང་ནང་ཐིག་རྩ་སྒྲིག་ལུ་ བསྒྱུར་བཅོས་འབད་ནི་ལས་ཉེན་སྐྱོབ་འབད་ནི་གི་དོན་ལུ་ <emph>ཉེན་སྐྱོབ་འབད་ཡོད་མི་ཚུ་</emph>སེལ་འཐུ་འབད།"
@@ -1861,7 +1788,6 @@ msgstr "ཉེན་སྐྱོབ་འབད་ཡོད་པའི་ནང
msgctxt ""
"cell_protect.xhp\n"
"par_id3152872\n"
-"11\n"
"help.text"
msgid "Click <emph>OK</emph>."
msgstr "<emph>བཏུབ་</emph> གུ་ཨེབ་གཏང་འབད།"
@@ -1870,7 +1796,6 @@ msgstr "<emph>བཏུབ་</emph> གུ་ཨེབ་གཏང་འབད
msgctxt ""
"cell_protect.xhp\n"
"par_id3145362\n"
-"12\n"
"help.text"
msgid "Apply the protection options."
msgstr "ཉེན་སྐྱོབ་གདམ་ཁ་ཚུ་ལུ་འཇུག་སྤྱོད་འབད།"
@@ -1911,7 +1836,6 @@ msgstr "ཁྱོདརའི་ཆོག་ཡིག་བརྗེད་སོ
msgctxt ""
"cell_protect.xhp\n"
"par_id3153810\n"
-"13\n"
"help.text"
msgid "Click <emph>OK</emph>."
msgstr "<emph>བཏུབ་</emph> གུ་ཨེབ་གཏང་འབད།"
@@ -1936,7 +1860,6 @@ msgstr "<bookmark_value>ནང་ཐིག་ཉེན་སྐྱོབ་ ཉ
msgctxt ""
"cell_unprotect.xhp\n"
"hd_id3153252\n"
-"14\n"
"help.text"
msgid "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Unprotecting Cells\">Unprotecting Cells</link> </variable>"
msgstr "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Unprotecting Cells\">ཉེན་སྐྱོབ་མེད་ནི་མེད་པའི་ནང་ཐིག་ཚུ་</link></variable>"
@@ -1945,7 +1868,6 @@ msgstr "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unpro
msgctxt ""
"cell_unprotect.xhp\n"
"par_id3151112\n"
-"15\n"
"help.text"
msgid "Click the sheet for which you want to cancel the protection."
msgstr "ཁྱོད་ཀྱིས་ ཉེན་སྐྱོབ་ཆ་མེད་གཏང་ནི་ཨིན་པའི་ལེབ་གྲངས་གུ་ ཨེབ་གཏང་འབད།"
@@ -1962,7 +1884,6 @@ msgstr ""
msgctxt ""
"cell_unprotect.xhp\n"
"par_id3145171\n"
-"17\n"
"help.text"
msgid "If you have assigned a password, enter it in this dialog and click <emph>OK</emph>."
msgstr "ཁྱོད་ཀྱིས་ ཆོག་ཡིག་ཅིག་འགན་སྤྲོད་འབད་དེ་ཡོད་པ་ཅིན་ ཌའི་ལོག་འདི་ནང་བཙུགས་ཞིནམ་ལས་ <emph>བཏུབ་</emph>ལུ་ཨེབ་གཏང་འབད།"
@@ -1971,7 +1892,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཆོག་ཡིག་ཅིག་འ
msgctxt ""
"cell_unprotect.xhp\n"
"par_id3153771\n"
-"18\n"
"help.text"
msgid "The cells can now be edited, the formulas can be viewed, and all cells can be printed until you reactivate the protection for the sheet or document."
msgstr "ད་ལས་ཕར་ ནང་ཐིག་ཚུ་ཞུན་དག་འབད་བཏུབ་པའི་ཁར་ མན་ངག་ཚུ་ཡང་སྟོན་བཏུབ་ དེ་ལས་ནང་ཐིག་ཚུ་ཆ་མཉམ་ར་ ལེབ་གྲངས་ ཡངན་ ཡིག་ཆའི་དོན་ལུ་ ཉེན་སྐྱོབ་སླར་ཤུགས་ལྡན་མ་བཟོ་ཚུན་ དཔར་བསྐྲུན་འབད་བཏུབ།"
@@ -1996,7 +1916,6 @@ msgstr "<bookmark_value>ནང་ཐིག་ཚུ་ འདྲ་བཤུས
msgctxt ""
"cellcopy.xhp\n"
"hd_id3150440\n"
-"1\n"
"help.text"
msgid "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" name=\"Only Copy Visible Cells\">Only Copy Visible Cells</link></variable>"
msgstr "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" name=\"Only Copy Visible Cells\">མཐོང་ཚུགས་པའི་ནང་ཐིག་ཚུ་རྐྱངམ་ཅིག་ འདྲ་བཤུས་རྐྱབས་</link></variable>"
@@ -2005,7 +1924,6 @@ msgstr "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" n
msgctxt ""
"cellcopy.xhp\n"
"par_id3148577\n"
-"2\n"
"help.text"
msgid "Assume you have hidden a few rows in a cell range. Now you want to copy, delete, or format only the remaining visible rows."
msgstr "ཁྱོད་ཀྱིས་ ནང་ཐིག་ཁྱབ་ཚད་ཅིག་ནང་ལུ་ གྲལ་ཐིག་དག་པ་ཅིག་སྦ་ཡོདཔ་སྦེ་ཚུལ་འཛིན་འབད། ད་ཁྱོད་ཀྱིས་ མཐོང་ཚུགས་པའི་གྲལ་ཐིག་ལྷག་ལུས་མི་རྐྱངམ་ཅིག་ འདྲ་བཤུས་བརྐྱབ་ནི་དང་བཏོན་གཏང་ནི་ ཡང་ན་ རྩ་སྒྲིག་འབད་ནི་ཨིན་པས།"
@@ -2014,7 +1932,6 @@ msgstr "ཁྱོད་ཀྱིས་ ནང་ཐིག་ཁྱབ་ཚད
msgctxt ""
"cellcopy.xhp\n"
"par_id3154729\n"
-"3\n"
"help.text"
msgid "$[officename] behavior depends on how the cells were made invisible, by a filter or manually."
msgstr "$[officename] སྤྱོད་ལམ་འདི་ ཚགས་མ་ཅིག་ ཡང་ན་ ལག་ཐོག་ལས་ ནང་ཐིག་ཚུ་ག་དེ་སྦེ་མཐོང་མ་ཚུགསཔ་བཟོ་ཡོདཔ་ཨིན་ན་ལུ་ རག་ལསཔ་ཨིན།"
@@ -2023,7 +1940,6 @@ msgstr "$[officename] སྤྱོད་ལམ་འདི་ ཚགས་མ་
msgctxt ""
"cellcopy.xhp\n"
"par_id3155603\n"
-"4\n"
"help.text"
msgid "Method and Action"
msgstr "ཐབས་ལམ་དང་བྱ་བ།"
@@ -2032,7 +1948,6 @@ msgstr "ཐབས་ལམ་དང་བྱ་བ།"
msgctxt ""
"cellcopy.xhp\n"
"par_id3150751\n"
-"5\n"
"help.text"
msgid "Result"
msgstr "གྲུབ་འབྲས།"
@@ -2041,7 +1956,6 @@ msgstr "གྲུབ་འབྲས།"
msgctxt ""
"cellcopy.xhp\n"
"par_id3149018\n"
-"6\n"
"help.text"
msgid "Cells were filtered by AutoFilters, standard filters or advanced filters."
msgstr "ནང་ཐིག་ཚུ་ རང་བཞིན་ཚགས་མ་དང་ཚད་ལྡན་ཚགས་མ་ ཡང་ན་ མཐོ་རིམ་ཅན་གྱི་ཚགས་མ་གིས་ བཙགས་ཡོདཔ།"
@@ -2050,7 +1964,6 @@ msgstr "ནང་ཐིག་ཚུ་ རང་བཞིན་ཚགས་མ
msgctxt ""
"cellcopy.xhp\n"
"par_id3150044\n"
-"7\n"
"help.text"
msgid "Copy, delete, move, or format a selection of currently visible cells."
msgstr "ད་ལྟོ་མཐོང་ཚུགས་མི་ནང་ཐིག་ཚུ་གི་སེལ་འཐུ་ཅིག་ འདྲ་བཤུས་རྐྱབས་ བཏོན་གཏང་ སྤོ་བཤུད་འབད་ ཡང་ན་ རྩ་སྒྲིག་འབད།"
@@ -2059,7 +1972,6 @@ msgstr "ད་ལྟོ་མཐོང་ཚུགས་མི་ནང་ཐི
msgctxt ""
"cellcopy.xhp\n"
"par_id3146918\n"
-"8\n"
"help.text"
msgid "Only the visible cells of the selection are copied, deleted, moved, or formatted."
msgstr "སེལ་འཐུའི་མཐོང་ཚུགས་པའི་ནང་ཐིག་ཚུ་རྐྱངམ་ཅིག་ འདྲ་བཤུས་དང་བཏོན་གཏང་ནི་ དེ་ལས་སྤོ་བཤུད་ ཡང་ན་ རྩ་སྒྲིག་འབད་ཡི།"
@@ -2068,7 +1980,6 @@ msgstr "སེལ་འཐུའི་མཐོང་ཚུགས་པའི་
msgctxt ""
"cellcopy.xhp\n"
"par_id3166427\n"
-"12\n"
"help.text"
msgid "Cells were hidden using the <emph>Hide</emph> command in the context menu of the row or column headers, or through an <link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">outline</link>."
msgstr "ནང་ཐིག་ཚུ་སྦ་ནུག་ ལག་ལེན་འཐབ་ཐོག་ལས་<emph>སྦ</emph>གྲལ་ཐིག་ཡང་ན་ཀེར་ཐིག་མགོ་ཡིག་གི་སྐབས་དོན་དཀར་ཆག་ནང་གི་བརྡ་བཀོད་ ཡང་ན་ <link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">མཐའ་ཐིག་</link>ལས་བརྒྱུད་དེ།"
@@ -2077,7 +1988,6 @@ msgstr "ནང་ཐིག་ཚུ་སྦ་ནུག་ ལག་ལེན
msgctxt ""
"cellcopy.xhp\n"
"par_id3152990\n"
-"13\n"
"help.text"
msgid "Copy, delete, move, or format a selection of currently visible cells."
msgstr "ད་ལྟོ་མཐོང་ཚུགས་མི་ནང་ཐིག་ཚུ་གི་སེལ་འཐུ་ཅིག་ འདྲ་བཤུས་རྐྱབས་ བཏོན་གཏང་ སྤོ་བཤུད་འབད་ ཡང་ན་ རྩ་སྒྲིག་འབད།"
@@ -2086,7 +1996,6 @@ msgstr "ད་ལྟོ་མཐོང་ཚུགས་མི་ནང་ཐི
msgctxt ""
"cellcopy.xhp\n"
"par_id3154371\n"
-"14\n"
"help.text"
msgid "All cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted."
msgstr "སྦ་ཡོད་པའི་ནང་ཐིག་ཚུ་རྩིས་ཏེ་ སེལའཐུའི་ནང་ཐིག་ཆ་མཉམ་ འདྲ་བཤུས་དང་བཏོན་གཏང་ནི་ དེ་ལས་སྤོ་བཤུད་ ཡངན་ རྩ་སྒྲིག་འབད་ཡོདཔ།"
@@ -2111,7 +2020,6 @@ msgstr "<bookmark_value>འདྲུད་ནི་དང་བཀོག་བ
msgctxt ""
"cellreference_dragdrop.xhp\n"
"hd_id3154686\n"
-"16\n"
"help.text"
msgid "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\" name=\"Referencing Cells by Drag-and-Drop\">Referencing Cells by Drag-and-Drop</link></variable>"
msgstr "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\" name=\"Referencing Cells by Drag-and-Drop\">འདྲུད་ནི་དང་བཀོག་བཞག་གི་ཐོག་ལས་ ནང་ཐིག་ཚུ་གཞི་བསྟུན་འབད་དོ་</link></variable>"
@@ -2120,7 +2028,6 @@ msgstr "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/ce
msgctxt ""
"cellreference_dragdrop.xhp\n"
"par_id3156444\n"
-"17\n"
"help.text"
msgid "With the help of the Navigator you can reference cells from one sheet to another sheet in the same document or in a different document. The cells can be inserted as a copy, link, or hyperlink. The range to be inserted must be defined with a name in the original file so that it can be inserted in the target file."
msgstr "འགྲུལ་བསྐྱོད་གྲོགས་རམ་ལུ་བརྟེན་ ཁྱོད་ཀྱིས་ ཡིག་ཆ་ཅོག་གཅིགཔ་ནང་ ཡངན་ སོ་སོར་ནང་ལུ་ ཤོག་ཁྲམ་གཅིག་ནང་ལས་སོ་སོར་ནང་ ནང་ཐིག་གཞི་བསྟུན་འབད་ཚུགས། ནང་ཐིག་ཚུ་ འདྲ་བཤུས་དང་འབྲེལ་ལམ་ ཡངན་ ཧའི་པར་ལིངཀ་སྦེ་བཙུགས་བཏུབ། བཙུགས་ནི་ཨིན་པའི་ཁྱབ་ཚད་འདི་ ཡིག་སྣོད་ངོ་མ་ནང་ མིང་དང་གཅིག་ཁར་ངེས་འཛིན་འབད་དགོ་ དེ་འབད་བ་ཅིན་ དམིགས་གཏད་ཡིག་སྣོད་ནང་བཙུགས་ཚུགས།"
@@ -2129,7 +2036,6 @@ msgstr "འགྲུལ་བསྐྱོད་གྲོགས་རམ་ལུ
msgctxt ""
"cellreference_dragdrop.xhp\n"
"par_id3152576\n"
-"25\n"
"help.text"
msgid "Open the document that contains the source cells."
msgstr "འབྱུང་ཁུངས་ནང་ཐིག་དང་ལྡན་པའི་ཡིག་ཆ་ ཁ་ཕྱེ།"
@@ -2138,7 +2044,6 @@ msgstr "འབྱུང་ཁུངས་ནང་ཐིག་དང་ལྡན
msgctxt ""
"cellreference_dragdrop.xhp\n"
"par_id3154011\n"
-"26\n"
"help.text"
msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
msgstr ""
@@ -2147,7 +2052,6 @@ msgstr ""
msgctxt ""
"cellreference_dragdrop.xhp\n"
"par_id3151073\n"
-"18\n"
"help.text"
msgid "Open the sheet in which you want to insert something."
msgstr "ཁྱོད་ཀྱིས་ ག་ཅི་འབད་རུང་ཅིག་བཙུགས་ནི་ཨིན་པའི་ལེབ་གྲངས་འདི་ ཁ་ཕྱེ།"
@@ -2156,7 +2060,6 @@ msgstr "ཁྱོད་ཀྱིས་ ག་ཅི་འབད་རུང་
msgctxt ""
"cellreference_dragdrop.xhp\n"
"par_id3154732\n"
-"19\n"
"help.text"
msgid "Open the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>. In the lower box of the Navigator select the source file."
msgstr "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">འགྲུལ་བསྐྱོདཔ་</link> ཁ་ཕྱེ། འགྲུལ་བསྐྱོད་པའི་འོག་གི་སྒྲོམ་ནང་ལུ་ འབྱུང་ཁུངས་ཡིག་སྣོད་ སེལ་འཐུ་འབད།"
@@ -2165,7 +2068,6 @@ msgstr "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">འགྲ
msgctxt ""
"cellreference_dragdrop.xhp\n"
"par_id3150752\n"
-"22\n"
"help.text"
msgid "In the Navigator, the source file object appears under \"Range names\"."
msgstr "འགྲུལ་བསྐྱོདཔ་ནང་ འབྱུང་ཁུངས་ཡིག་སྣོད་ཀྱི་དངོས་པོ་འདི་ \"Range names\"གི་འོག་ལུ་འབྱུངམ་ཨིན།"
@@ -2174,7 +2076,6 @@ msgstr "འགྲུལ་བསྐྱོདཔ་ནང་ འབྱུང་
msgctxt ""
"cellreference_dragdrop.xhp\n"
"par_id3154754\n"
-"27\n"
"help.text"
msgid "Using the <emph>Drag Mode</emph> icon in Navigator, choose whether you want the reference to be a hyperlink, link, or copy."
msgstr "འགྲུལ་བསྐྱོདཔ་ནང་ <emph>Drag Mode</emph> ངོས་པར་ལག་ལེན་གྱི་ཐོག་ལས་ གཞི་བསྟུན་འདི་ཧའི་པར་ལིངཀི་དང་འབྲེལ་ལམ་ ཡང་ན་ འདྲ་བཤུས་སྦེ་དགོ་ནི་ཨིན་ན་ གདམ་ཁ་རྐྱབས།"
@@ -2183,7 +2084,6 @@ msgstr "འགྲུལ་བསྐྱོདཔ་ནང་ <emph>Drag Mode</emp
msgctxt ""
"cellreference_dragdrop.xhp\n"
"par_id3154256\n"
-"23\n"
"help.text"
msgid "Click the name under \"Range names\" in the Navigator, and drag into the cell of the current sheet where you want to insert the reference."
msgstr "འགྲུལ་བསྐྱོད་ནང་ \"Range names\"གི་འོག་ལུ་ མིང་གུ་ཨེབ་གཏང་འབད་ དེ་ལས་ གཞི་བསྟུན་འདི་ག་སྟེ་ལུ་བཙུགས་ནི་ཨིན་ན་ ད་ལྟོའི་ལེབ་གྲངས་ཀྱི་ནང་ཐིག་ནང་འདྲུད།"
@@ -2192,7 +2092,6 @@ msgstr "འགྲུལ་བསྐྱོད་ནང་ \"Range names\"གི
msgctxt ""
"cellreference_dragdrop.xhp\n"
"par_id3149565\n"
-"24\n"
"help.text"
msgid "This method can also be used to insert a range from another sheet of the same document into the current sheet. Select the active document as source in step 4 above."
msgstr "ཐབས་ལམ་འདི་ ད་ལྟོའི་ལེབ་གྲངས་ནང་ལུ་ ཡིག་ཆ་ཅོག་འཐད་པའི་ལེབ་གྲངས་གཞན་མི་ཅིག་ནང་ལས་ ཁྱབ་ཚད་ཅིག་བཙུགས་ནི་གི་དོན་ལུ་ ལག་ལེན་འཐབ་བཏུབ། ལྟག་གི་རིམ་པ་ ༤ པའི་ནང་ ཤུགས་ལྡན་ཡིག་ཆ་འདི་འབྱུང་ཁུངས་སྦེ་ སེལ་འཐུ་འབད།"
@@ -2217,7 +2116,6 @@ msgstr ""
msgctxt ""
"cellreferences.xhp\n"
"hd_id3147436\n"
-"9\n"
"help.text"
msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Referencing Other Sheets\">Referencing Other Sheets</link></variable>"
msgstr "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Referencing Other Sheets\">གཞན་མི་ལེབ་གྲངས་ཚུ་གཞི་བསྟུན་འབད་དོ་</link></variable>"
@@ -2378,7 +2276,6 @@ msgstr "<bookmark_value>ཨེཆ་ཊི་ཨེམ་ཨེལ་ ལེབ
msgctxt ""
"cellreferences_url.xhp\n"
"hd_id3150441\n"
-"15\n"
"help.text"
msgid "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\" name=\"Referencing URLs\">Referencing URLs</link></variable>"
msgstr "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\" name=\"Referencing URLs\">གཞི་བསྟུན་འབད་ནིའི་ཡུ་ཨར་ཨེལསི་</link></variable>"
@@ -2395,7 +2292,6 @@ msgstr "དཔེར་ན་ ཁྱོད་ཀྱིས་ ཤགོ་ཁྲ
msgctxt ""
"cellreferences_url.xhp\n"
"par_id3152993\n"
-"39\n"
"help.text"
msgid "In a $[officename] Calc document, position the cursor in the cell into which you want to insert the external data."
msgstr "$[officename] ཀེལཀི་ཡིག་ཆའི་ནང་ ཁྱོད་ཀྱིས་ཕྱི་ཁའི་གནད་སྡུད་བཙུགས་ནི་ཨིན་པའི་ནང་ཐིག་ནང་ལུ་ འོད་རྟགས་ཀྱི་གནས་ས་བཟོ།"
@@ -2404,7 +2300,6 @@ msgstr "$[officename] ཀེལཀི་ཡིག་ཆའི་ནང་ ཁྱ
msgctxt ""
"cellreferences_url.xhp\n"
"par_id3145384\n"
-"40\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."
msgstr ""
@@ -2413,7 +2308,6 @@ msgstr ""
msgctxt ""
"cellreferences_url.xhp\n"
"par_id3152892\n"
-"41\n"
"help.text"
msgid "Enter the URL of the document or Web page in the dialog. The URL must be in the format: http://www.my-bank.com/table.html. The URL for local or local area network files is the path seen in the <item type=\"menuitem\">File - Open</item> dialog."
msgstr "ཡིག་ཆའི་ཡུ་ཨར་ཨེལ་ ཡངན་ ཝེབ་ཤོག་ལེབ་གང་རུང་ཅིག་ ཌའི་ལོག་ནང་བཙུགས། དེ་འབདཝ་ད་ ཡུ་ཨར་ཨེལ་འདི་ རྩ་སྒྲིག་ནང་ཨིན་དགོ་:http://www.my-bank.com/table.html. ཉེ་གནས་ ཡངན་ ཉེ་གནས་མངའ་ཁོངས་ཡོངས་འབྲེལ་ཡིག་སྣོད་ཚུའི་དོན་ལུ་ཨིན་པའི་ ཡུ་ཨར་ཨེལ་འདི་ <emph>ཡིག་སྣོད་ - ཁ་ཕྱེ་</emph> ཌའི་ལོག་ནང་མཐོང་མི་འགྲུལ་ལམ་འདི་ཨིན།"
@@ -2422,7 +2316,6 @@ msgstr "ཡིག་ཆའི་ཡུ་ཨར་ཨེལ་ ཡངན་ ཝ
msgctxt ""
"cellreferences_url.xhp\n"
"par_id3153068\n"
-"42\n"
"help.text"
msgid "$[officename] loads the Web page or file in the \"background\", that is, without displaying it. In the large list box of the <item type=\"menuitem\">External Data</item> dialog, you can see the name of all the sheets or named ranges you can choose from."
msgstr "$[officename] གིས་ ཕྱིར་འགྱངས་ནི་མེད་པའི་ \"background\"ནང་ལུ་ ཝེབ་ཤོག་ལེབ་ ཡངན་ ཡིག་སྣོད་མངོན་གསལ་འབདཝ་ཨིན། <emph>ཕྱི་ཁའི་གནད་སྡུད་</emph> ཌའི་ལོག་གི་ཐོ་ཡིག་སྒྲོམ་སྦོམ་ནང་ལུ་ ཁྱོད་ཀྱིས་ ལེབ་གྲངས་ཆ་མཉམ་གྱི་མིང་ ཡང་ན་ གདམ་ཁ་རྐྱབ་བཏུབ་པའི་མིང་བཏགས་ཡོད་མི་ཁྱབ་ཚད་ཚུ་ མཐོང་ཚུགས།"
@@ -2431,7 +2324,6 @@ msgstr "$[officename] གིས་ ཕྱིར་འགྱངས་ནི་མ
msgctxt ""
"cellreferences_url.xhp\n"
"par_id3153914\n"
-"43\n"
"help.text"
msgid "Select one or more sheets or named ranges. You can also activate the automatic update function every \"n\" seconds and click <item type=\"menuitem\">OK</item>."
msgstr "ལེབ་གྲངས་གཅིག་ ཡངན་ ལེ་ཤ་དང་ ཡང་ན་ མིང་བཏགས་ཡོད་པའི་ཁྱབ་ཚད་ཚུ་སེལ་འཐུ་འབད། དེ་མ་ཚད་ཁྱོད་ཀྱིས་ སྐར་མ་ \"n\" རེ་རེའི་ནང་ལུ་ རང་བཞིན་དུས་མཐུན་གྱི་ལས་འགན་ ཤུགས་ལྡན་བཟོ་ཚུགསཔ་དང་ བཏུབ་ལུ་ཨེབ་གཏང་འབད།"
@@ -2440,7 +2332,6 @@ msgstr "ལེབ་གྲངས་གཅིག་ ཡངན་ ལེ་ཤ་
msgctxt ""
"cellreferences_url.xhp\n"
"par_id3157979\n"
-"44\n"
"help.text"
msgid "The contents will be inserted as a link in the $[officename] Calc document."
msgstr "ནང་དོན་ཚུ་ $[officename] ཀེལཀི་ཡིག་ཆ་ནང་ འབྲེལ་ལམ་སྦེ་བཙུགས་འོང་།"
@@ -2449,7 +2340,6 @@ msgstr "ནང་དོན་ཚུ་ $[officename] ཀེལཀི་ཡིག
msgctxt ""
"cellreferences_url.xhp\n"
"par_id3144768\n"
-"30\n"
"help.text"
msgid "Save your spreadsheet. When you open it again later, $[officename] Calc will update the linked cells following an inquiry."
msgstr "ཁྱོད་རའི་ཤོག་ཁྲམ་སྲུངས། དོ་རུང་ཤུལ་ལས་ཁ་ཕྱེ་བའི་སྐབས་ལུ་ $[officename] ཀེལཀི་གིས་ འདྲི་དཔྱད་རྗེས་སུ་འཇུག་སྟེ་ འབྲེལ་མཐུད་ཅན་གྱི་ནང་ཐིག་ཚུ་དུས་མཐུན་བཟོ་འོང་།"
@@ -2458,7 +2348,6 @@ msgstr "ཁྱོད་རའི་ཤོག་ཁྲམ་སྲུངས།
msgctxt ""
"cellreferences_url.xhp\n"
"par_id3159204\n"
-"38\n"
"help.text"
msgid "Under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040900.xhp\" name=\"Spreadsheet - General\"><item type=\"menuitem\">%PRODUCTNAME Calc - General</item></link> you can choose to have the update, when opened, automatically carried out either always, upon request or never. The update can be started manually in the dialog under <item type=\"menuitem\">Edit - Links</item>."
msgstr ""
@@ -2472,7 +2361,6 @@ msgid "Assigning Formats by Formula"
msgstr "མན་ངག་གི་ཐོག་ལས་ རྩ་སྒྲིག་འགན་སྤྲོད་འབད་ནི།"
#: cellstyle_by_formula.xhp
-#, fuzzy
msgctxt ""
"cellstyle_by_formula.xhp\n"
"bm_id3145673\n"
@@ -2481,7 +2369,6 @@ msgid "<bookmark_value>formats; assigning by formulas</bookmark_value> <bookmar
msgstr "<bookmark_value>རྩ་སྒྲིག་ཚུ་ མན་ངག་ཚུ་གིས་འགན་སྤྲོད་འབད་ཡོད་</bookmark_value><bookmark_value>ནང་ཐིག་རྩ་སྒྲིག་ཚུ་ མན་ངག་ཚུ་གིས་འགན་སྤྲོད་འབད་ཡོད་</bookmark_value><bookmark_value>STYLE ལས་འགན་དཔེར་བརྗོད་</bookmark_value><bookmark_value>ནང་ཐིག་བཟོ་རྣམ་ཚུ་ མན་ངག་ཚུ་གིས་འགན་སྤྲོད་འབད་ཡོད་</bookmark_value><bookmark_value>མན་ངག་ཚུ་ ནང་ཐིག་རྩ་སྒྲིག་ཚུ་འགན་སྤྲོད་འབད་དོ་</bookmark_value><bookmark_value>འཇུག་སྤྱོད་འབད་དོ་ ནང་ཐིག་རྩ་སྒྲིག་ཚུ་</bookmark_value>"
#: cellstyle_by_formula.xhp
-#, fuzzy
msgctxt ""
"cellstyle_by_formula.xhp\n"
"hd_id3145673\n"
@@ -2498,7 +2385,6 @@ msgid "The STYLE() function can be added to an existing formula in a cell. For e
msgstr "STYLE() ལས་འགན་འདི་ ནང་ཐིག་ཅིག་ནང་ལུ་ཡོད་བཞིན་པའི་མན་ངག་ཅིག་ལུ་ ཁ་སྐོང་རྐྱབས་བཏུབ། དཔེར་ན་ CURRENT ལས་འགན་དང་གཅིག་ཁར་ ཁྱོད་ཀྱིས་ དེའི་གནས་གོང་དང་འཁྲིལ་ཏེ་ ནང་ཐིག་ཅིག་ཚོན་བཏང་བཏུབ། མན་ངག་ =...+STYLE(IF(CURRENT()>3; \"Red\"; \"Green\")) གིས་ ནང་ཐིག་བཟོ་རྣམ་ \"Red\" འདི་ གནས་གོང་འདི་ ༣ ལས་སྦོམ་ཨིན་པ་ཅིན་ ནང་ཐིག་ཚུ་ལུ་འཇུག་སྤྱོད་འབདཝ་ཨིན་ དེ་མེན་པ་ཅིན་ ནང་ཐིག་བཟོ་རྣམ་ \"Green\" འདི་འཇུག་སྤྱོད་འབདཝ་ཨིན།"
#: cellstyle_by_formula.xhp
-#, fuzzy
msgctxt ""
"cellstyle_by_formula.xhp\n"
"par_id3151385\n"
@@ -2571,7 +2457,6 @@ msgid "All cells with contents that were included in the selection are now highl
msgstr "སེལ་འཐུའི་གྲངས་སུ་ཚུད་ཡོད་པའི་ནང་དོན་དང་ལྡན་པའི་ནང་ཐིག་ཆ་མཉམ་ གཙོ་དམིགས་འབད་ཡི།"
#: cellstyle_by_formula.xhp
-#, fuzzy
msgctxt ""
"cellstyle_by_formula.xhp\n"
"par_id3147127\n"
@@ -2599,7 +2484,6 @@ msgstr "<bookmark_value>གནས་སྟངས་རྩ་སྒྲིག་
msgctxt ""
"cellstyle_conditional.xhp\n"
"hd_id3149263\n"
-"24\n"
"help.text"
msgid "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\" name=\"Applying Conditional Formatting\">Applying Conditional Formatting</link></variable>"
msgstr "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\" name=\"Applying Conditional Formatting\">གནས་སྟངས་ཅན་གྱི་རྩ་སྒྲིག་འཇུག་སྤྱོད་འབད་དོ་</link></variable>"
@@ -2613,7 +2497,6 @@ msgid "Using the menu command <emph>Format - Conditional formatting</emph>, the
msgstr ""
#: cellstyle_conditional.xhp
-#, fuzzy
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id8039796\n"
@@ -2625,7 +2508,6 @@ msgstr "གནས་སྟངས་ཅན་གྱི་རྩ་སྒྲིག
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3154944\n"
-"26\n"
"help.text"
msgid "With conditional formatting, you can, for example, highlight the totals that exceed the average value of all totals. If the totals change, the formatting changes correspondingly, without having to apply other styles manually."
msgstr "གནས་སྟངས་ཅན་གྱི་རྩ་སྒྲིག་ཐོག་ལས་ ཁྱོད་ཀྱིས་ དཔེར་ན་ བསྡོམས་ཆ་མཉམ་གྱི་ཆ་སྙོམས་བེ་ལུ་ལས་ལྷག་པའི་བསྡོམས་ཚུ་ལུ་ གཙོ་དམིགས་འབདཝ་ཨིན། བསྡོམས་འདི་འགྱུར་བ་ཅིན་ རྩ་སྒྲིག་འདི་ བཟོ་རྣམ་གཞན་ཚུ་ལུ་ལག་ཐོག་ལས་འཇུག་སྤྱོད་འབད་མ་དགོ་པར་ མཉམ་པའི་ཐོག་ལས་འགྱུརཝ་ཨིན།"
@@ -2642,7 +2524,6 @@ msgstr ""
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3154490\n"
-"27\n"
"help.text"
msgid "Select the cells to which you want to apply a conditional style."
msgstr "ཁྱོད་ཀྱིས་ གནས་སྟངསཅན་གྱི་བཟོ་རྣམ་ཅིག་འཇུག་སྤྱོད་འབད་དགོ་མནོ་མི་འདི་ལུ་ ནང་ཐིག་སེལ་འཐུ་འབད།"
@@ -2651,7 +2532,6 @@ msgstr "ཁྱོད་ཀྱིས་ གནས་སྟངསཅན་གྱ
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3155603\n"
-"28\n"
"help.text"
msgid "Choose <emph>Format - Conditional Formatting</emph>."
msgstr "<emph>རྩ་སྒྲིག་ - གནས་སྟངས་ཅན་གྱི་རྩ་སྒྲིག་</emph> གདམ་ཁ་རྐྱབས།"
@@ -2660,7 +2540,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - གནས་སྟངས་ཅན་
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3146969\n"
-"29\n"
"help.text"
msgid "Enter the condition(s) into the dialog box. The dialog is described in detail in <link href=\"text/scalc/01/05120000.xhp\" name=\"$[officename] Help\">$[officename] Help</link>, and an example is provided below:"
msgstr "ཌའི་ལོག་སྒྲོམ་ནང་ལུ་ གནས་སྟངས་(ཚུ་)བཙུགས། ཌའི་ལོག་འདི་ <link href=\"text/scalc/01/05120000.xhp\" name=\"$[officename] Help\">$[officename] Help</link> ནང་ལུ་ རྒྱས་ཤིང་རྒྱསཔ་སྦེ་འགྲེལ་བཤད་འབད་དེ་ཡོདཔ་དང་ དཔེར་བརྗོད་འདི་འོག་ལུ་བྱིན་ཏེ་ཡོད་:"
@@ -2669,7 +2548,6 @@ msgstr "ཌའི་ལོག་སྒྲོམ་ནང་ལུ་ གནས
msgctxt ""
"cellstyle_conditional.xhp\n"
"hd_id3155766\n"
-"38\n"
"help.text"
msgid "Example of Conditional Formatting: Highlighting Totals Above/Under the Average Value"
msgstr ""
@@ -2686,7 +2564,6 @@ msgstr ""
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3150043\n"
-"39\n"
"help.text"
msgid "You want to give certain values in your tables particular emphasis. For example, in a table of turnovers, you can show all the values above the average in green and all those below the average in red. This is possible with conditional formatting."
msgstr "ཁྱོད་ཀྱིས་ ཐིག་ཁྲམ་གྱི་གཙོ་བཏོན་ནང་ བེ་ལུསི་ལ་ལོ་ཅིག་བྱིན་དགོ་པ་ཅིན་ དཔེར་ན་ འོང་འབབ་བསྡོམས་ཀྱི་ཐིག་ཁྲམ་ཅིག་ནང་ ཁྱོད་ཀྱིས་ ཆ་སྙོམས་ཀྱི་ལྟག་ལས་ཡོད་པའི་བེ་ལུསི་ཆ་མཉམ་ ཚོས་གཞི་ལྗང་ཁུ་དང་དེའི་འོག་ལས་ཨིན་མི་ཚུ་ དམརཔ་སྦེ་བཏོན་བཏུབ། འདི་ཡང་ གནས་སྟངས་ཅན་གྱི་རྩ་སྒྲིག་ཐོག་ལས་འབད་ཚུགསཔ་ཨིན།"
@@ -2695,7 +2572,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཐིག་ཁྲམ་གྱི་ག
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3155337\n"
-"40\n"
"help.text"
msgid "First of all, write a table in which a few different values occur. For your test you can create tables with any random numbers:"
msgstr "དང་པ་ར་ བེ་ལུསི་མ་འདྲཝ་དག་པ་ཅིག་འབྱུང་ས་ལུ་ ཐིག་ཁྲམ་ཅིག་བྲིས། བརྟག་དཔྱད་ཀྱི་དོན་ལུ་ གང་འབྱུང་ཨང་གྲངས་གང་རུང་གི་ཐོག་ལས་ ཐིག་ཁྲམ་གསར་བསྐྲུན་འབད་བཏུབ་:"
@@ -2704,7 +2580,6 @@ msgstr "དང་པ་ར་ བེ་ལུསི་མ་འདྲཝ་ད
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3149565\n"
-"41\n"
"help.text"
msgid "In one of the cells enter the formula =RAND(), and you will obtain a random number between 0 and 1. If you want integers of between 0 and 50, enter the formula =INT(RAND()*50)."
msgstr "ནང་ཐིག་གཅིག་ནང་ མན་ངག་ =RAND() འདི་བཙུགས་ཞིནམ་ལས་ ཁྱོད་ཀྱིས་ ༠ དང་ ༡ གི་བར་ན་གང་འབྱུང་ཨང་གྲངས་ཐོབ་འོང་། ༠ དང་ ༥༠ འི་བར་ནའི་ཧྲིལ་གྲངས་དགོ་པ་ཅིན་ མན་ངག་ =INT(RAND()*50) འདི་བཙུགས།"
@@ -2713,7 +2588,6 @@ msgstr "ནང་ཐིག་གཅིག་ནང་ མན་ངག་ =RAND()
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3149258\n"
-"42\n"
"help.text"
msgid "Copy the formula to create a row of random numbers. Click the bottom right corner of the selected cell, and drag to the right until the desired cell range is selected."
msgstr "གང་འབྱུང་ཨང་གྲངས་ཀྱི་གྲལ་ཐིག་ཅིག་གསར་བསྐྲུན་འབད་ནི་ལུ་ མན་ངག་འདྲ་བཤུས་རྐྱབས། སེལ་འཐུ་འབད་ཡོད་པའི་གཤམ་གྱི་གཡས་ཕྱོགས་ སྒྱིད་ཁུག་གུ་ཨེབ་གཏང་འབད་ཞིནམ་ལས་ རེ་འདུན་བསྐྱེད་པའི་ཁྱབ་ཚད་འདི་སེལ་འཐུ་མ་འབད་ཚུན་ གཡས་ཁ་ཐུག་ལུ་འདྲུད།"
@@ -2722,7 +2596,6 @@ msgstr "གང་འབྱུང་ཨང་གྲངས་ཀྱི་གྲལ
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3159236\n"
-"43\n"
"help.text"
msgid "In the same way as described above, drag down the corner of the rightmost cell in order to create more rows of random numbers."
msgstr "གོང་ལུ་འགྲེལ་བཤད་འབད་ཡོད་དོ་བཟུམ་སྦེ་ གང་འབྱུང་ཨང་གྲངས་གྲལ་ཐིག་ལེ་ཤ་གསར་བསྐྲུན་འབད་ནི་ལུ་ ནང་ཐིག་གི་གཡས་ཀྱི་སྒྱིད་ཁུག་ལུ་འདྲུད།"
@@ -2731,7 +2604,6 @@ msgstr "གོང་ལུ་འགྲེལ་བཤད་འབད་ཡོད
msgctxt ""
"cellstyle_conditional.xhp\n"
"hd_id3149211\n"
-"44\n"
"help.text"
msgid "Step 2: Define Cell Styles"
msgstr ""
@@ -2740,7 +2612,6 @@ msgstr ""
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3154659\n"
-"45\n"
"help.text"
msgid "The next step is to apply a cell style to all values that represent above-average turnover, and one to those that are below the average. Ensure that the Styles and Formatting window is visible before proceeding."
msgstr "གོ་རིམ་ཤུལ་མམ་འདི་ ལྟག་གི་ཆ་སྙོམས་འོང་འབབ་བསྡོམས་སྟོན་འབད་ནི་དང་ཆ་སྙོམས་འོག་ལུ་ཡོད་པའི་གནས་གོང་ཆ་མཉམ་ལུ་ ནང་ཐིག་བཟོ་རྣམ་ཅིག་འཇུག་སྤྱོད་འབད་ནི་གི་དོན་ལུ་ཨིན། དེ་འབདཝ་ད་ འཕྲོ་མ་མཐུད་པའི་ཧེ་མ་ལས་ར་ བཟོ་རྣམ་དང་རྩ་སྒྲིག་སྒོ་སྒྲིག་གཉིས་ ངེས་བརྟན་སྦེ་བཟོ་དགོ"
@@ -2749,7 +2620,6 @@ msgstr "གོ་རིམ་ཤུལ་མམ་འདི་ ལྟག་ག
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3150883\n"
-"46\n"
"help.text"
msgid "Click in a blank cell and select the command <emph>Format Cells</emph> in the context menu."
msgstr "ནང་ཐིག་སྟོངམ་ཅིག་ནང་ཨེབ་གཏང་འབད་བའི་ཤུལ་ལས་ སྐབས་དོན་ཚིག་དོན་ནང་ལུ་ བརྡ་བཀོད་ <emph>རྩ་སྒྲིག་ནང་ཐིག་ཚུ་</emph> སེལ་འཐུ་འབད།"
@@ -2758,7 +2628,6 @@ msgstr "ནང་ཐིག་སྟོངམ་ཅིག་ནང་ཨེབ་
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3155529\n"
-"47\n"
"help.text"
msgid "In the <emph>Format Cells</emph> dialog on the <emph>Background</emph> tab, select a background color. Click <emph>OK</emph>."
msgstr "<emph>རྒྱབ་གཞི་</emph> མཆོང་ལྡེ་གུ་གི་ <emph>རྩ་སྒྲིག་ནིང་ཐིག་</emph> ཌའི་ལོག་ནང་ལུ་ རྒྱབ་གཞིའི་ཚོས་གཞི་ཅིག་སེལ་འཐུ་འབད། <emph>བཏུབ་</emph> གུ་ཨེབ་གཏང་འབད།"
@@ -2767,7 +2636,6 @@ msgstr "<emph>རྒྱབ་གཞི་</emph> མཆོང་ལྡེ་ག
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3154484\n"
-"48\n"
"help.text"
msgid "In the Styles and Formatting window, click the <emph>New Style from Selection</emph> icon. Enter the name of the new style. For this example, name the style \"Above\"."
msgstr "བཟོ་རྣམ་དང་རྩ་སྒྲིག་སྒོ་སྒྲིག་ནང་ སེལ་འཐུ་ <emph> ངོས་པར་ནང་ལས་ </emph> བཟོ་རྣམ་གསརཔ་གུ་ཨེབ་གཏང་འབད། བཟོ་རྣམ་གསརཔ་གི་མིང་བཙུགས། དཔེར་ན་ བཟོ་རྣམ་ \"Above\" ལུ་མིང་བཏགས།"
@@ -2776,7 +2644,6 @@ msgstr "བཟོ་རྣམ་དང་རྩ་སྒྲིག་སྒོ་
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3152889\n"
-"49\n"
"help.text"
msgid "To define a second style, click again in a blank cell and proceed as described above. Assign a different background color for the cell and assign a name (for this example, \"Below\")."
msgstr "བཟོ་རྣམ་གཉིས་པམ་འདི་ངེས་འཛིན་འབད་ནི་ལུ་ དོ་རུང་ནང་ཐིག་ས་སྟོང་ཅིག་གུ་ཨེབ་གཏང་འབད་ཞིནམ་ལས་ གོང་ལུ་འགྲེལ་བཤད་བརྐྱབས་ཡོདཔ་བཟུམ་སྦེ་ འཕྲོ་མཐུད་དེ་འབད། ནང་ཐིག་གི་དོན་ལུ་ རྒྱབ་གཞིའི་ཚོས་གཞི་མ་འདྲཝ་ཅིག་འགན་སྤྲོད་འབད་ཞིནམ་ལས་ མིང་ཅིག་འགན་སྤྲོད་འབད་(དཔེར་ན་ \"Below\")།"
@@ -2785,7 +2652,6 @@ msgstr "བཟོ་རྣམ་གཉིས་པམ་འདི་ངེས་
msgctxt ""
"cellstyle_conditional.xhp\n"
"hd_id3148704\n"
-"60\n"
"help.text"
msgid "Step 3: Calculate Average"
msgstr ""
@@ -2794,7 +2660,6 @@ msgstr ""
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3148837\n"
-"51\n"
"help.text"
msgid "In our particular example, we are calculating the average of the random values. The result is placed in a cell:"
msgstr "ང་བཅས་ཀྱི་་དཔེར་བརྗོད་ནང་ གང་འབྱུང་བེ་ལུསི་གི་ཆ་སྙོམས་རྩིས་སྟོན་དོ། གྲུབ་འབྲས་འདི་ནང་ཐིག་ཅིག་ནང་བཞག་ཅི་:"
@@ -2803,7 +2668,6 @@ msgstr "ང་བཅས་ཀྱི་་དཔེར་བརྗོད་ནང
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3144768\n"
-"52\n"
"help.text"
msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
msgstr "ནང་ཐིག་སྟོངམ་ཅིག་ནང་ལུ་ འོད་རྟགས་གཞི་སྒྲིག་འབད་ དཔེར་ན་ ཇེ་༡༤ དེ་ལས་ <emph>བཙུགས་ - ལས་འགན་</emph> གདམ་ཁ་རྐྱབས།"
@@ -2812,7 +2676,6 @@ msgstr "ནང་ཐིག་སྟོངམ་ཅིག་ནང་ལུ་
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3156016\n"
-"53\n"
"help.text"
msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink / Maximize</item></link> icon."
msgstr "ཆ་སྙོམས་ལས་འགན་ སེལ་འཐུ་འབད། ཁྱོད་རའི་གང་འབྱུང་ཨང་གྲངས་སེལ་འཐུ་འབད་དགོ་པ་ཅིན་ མཱའུསི་ལག་ལེན་འཐབ། ཁྱབ་ཚད་ཧྲིལ་བུ་མ་མཐོང་པ་ཅིན་ ལས་འགན་ཝི་ཛརཌི་འདི་ རབ་རིབ་བཟོ་དོ་ཡོདཔ་མས་ དེ་འབདཝ་ལས་ གནས་སྐབས་ཅིག་ <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\" བསྐུམ་ནི་དང་ \">Shrink / Maximize</link> ངོས་པར་ འཕར་བའི་ཐོག་ལས་ ཌའི་ལོག་བསྐུམ་ཚུགས།"
@@ -2821,7 +2684,6 @@ msgstr "ཆ་སྙོམས་ལས་འགན་ སེལ་འཐུ་
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3153246\n"
-"54\n"
"help.text"
msgid "Close the Function Wizard with <item type=\"menuitem\">OK</item>."
msgstr ""
@@ -2830,7 +2692,6 @@ msgstr ""
msgctxt ""
"cellstyle_conditional.xhp\n"
"hd_id3149898\n"
-"50\n"
"help.text"
msgid "Step 4: Apply Cell Styles"
msgstr ""
@@ -2839,7 +2700,6 @@ msgstr ""
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3149126\n"
-"55\n"
"help.text"
msgid "Now you can apply the conditional formatting to the sheet:"
msgstr "ད་འབདན་ཁྱོད་ཀྱིས་ ལེབ་གྲངས་ལུ་ གནས་སྟངས་ཅན་གྱི་རྩ་སྒྲིག་འདི་ འཇུག་སྤྱོད་འབད་:"
@@ -2848,7 +2708,6 @@ msgstr "ད་འབདན་ཁྱོད་ཀྱིས་ ལེབ་གྲ
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3150049\n"
-"56\n"
"help.text"
msgid "Select all cells with the random numbers."
msgstr "གང་འབྱུང་ཨང་གྲངས་དང་བཅས་ ནང་ཐིག་ཆ་མཉམ་སེལ་འཐུ་འབད།"
@@ -2857,7 +2716,6 @@ msgstr "གང་འབྱུང་ཨང་གྲངས་དང་བཅས་
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3153801\n"
-"57\n"
"help.text"
msgid "Choose the <emph>Format - Conditional Formatting</emph> command to open the corresponding dialog."
msgstr "ཆ་མཉམ་པའི་ཌའི་ལོག་ཁ་ཕྱེ་ནི་གི་དོན་ལུ་ <emph>Format - Conditional Formatting</emph> བརྡ་བཀོད་ གདམ་ཁ་རྐྱབས།"
@@ -2866,7 +2724,6 @@ msgstr "ཆ་མཉམ་པའི་ཌའི་ལོག་ཁ་ཕྱེ་
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3153013\n"
-"58\n"
"help.text"
msgid "Define the condition as follows: If cell value is less than J14, format with cell style \"Below\", and if cell value is greater than or equal to J14, format with cell style \"Above\"."
msgstr "འོག་གི་ཚུ་བཟུམ་སྦེ་ངེས་འཛིན་འབད་: ནང་ཐིག་བེ་ལུ་འདི་ ཇེ་༡༤་ ལས་ཉུང་པ་ཅིན་ ནང་ཐིག་བཟོ་རྣམ་ \"Below\"གི་ཐོག་ལས་རྩ་སྒྲིག་འབད་ དེ་ལས་ དེ་དང་འདྲཝ་སྦེ་ ནང་ཐིག་བེ་ལུ་འདི་ ཇེ་ ༡༤ དང་མཉམ་པ་ ཡང་ན་ མང་པ་ཅིན་ ནང་ཐིག་བཟོ་རྣམ་ \"Above\" གི་ཐོག་ལས་ རྩ་སྒྲིག་འབད།"
@@ -2875,7 +2732,6 @@ msgstr "འོག་གི་ཚུ་བཟུམ་སྦེ་ངེས་འ
msgctxt ""
"cellstyle_conditional.xhp\n"
"hd_id3155761\n"
-"61\n"
"help.text"
msgid "Step 5: Copy Cell Style"
msgstr ""
@@ -2884,7 +2740,6 @@ msgstr ""
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3145320\n"
-"62\n"
"help.text"
msgid "To apply the conditional formatting to other cells later:"
msgstr "ནང་ཐིག་གཞན་མི་ཚུ་ལུ་ཤུལ་ལས་ གནས་སྟངས་ཅན་གྱི་རྩ་སྒྲིག་འཇུག་སྤྱོད་འབད་ནི་གི་དོན་ལུ་:"
@@ -2893,7 +2748,6 @@ msgstr "ནང་ཐིག་གཞན་མི་ཚུ་ལུ་ཤུལ་
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3153074\n"
-"63\n"
"help.text"
msgid "Click one of the cells that has been assigned conditional formatting."
msgstr "གནས་སྟངས་ཅན་གྱི་རྩ་སྒྲིག་སྦེ་འགན་སྤྲོད་འབད་དེ་ཡོད་མི་ནང་ཐིག་ནང་ལས་གཅིག་གུ་ ཨེབ་གཏང་འབད།"
@@ -2902,7 +2756,6 @@ msgstr "གནས་སྟངས་ཅན་གྱི་རྩ་སྒྲིག
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3149051\n"
-"64\n"
"help.text"
msgid "Copy the cell to the clipboard."
msgstr "ནང་ཐིག་འདི་ འཛིན་པང་ལུ་འདྲ་བཤུས་རྐྱབས།"
@@ -2911,7 +2764,6 @@ msgstr "ནང་ཐིག་འདི་ འཛིན་པང་ལུ་འ
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3150436\n"
-"65\n"
"help.text"
msgid "Select the cells that are to receive this same formatting."
msgstr "རྩ་སྒྲིག་ཅོག་འཐདཔ་ཐོབ་ནི་ཨིན་པའི་ནང་ཐིག་ཚུ་ སེལའཐུ་འབད།"
@@ -2920,7 +2772,6 @@ msgstr "རྩ་སྒྲིག་ཅོག་འཐདཔ་ཐོབ་ནི
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3147298\n"
-"66\n"
"help.text"
msgid "Choose <emph>Edit - Paste Special</emph>. The <emph>Paste Special</emph> dialog appears."
msgstr "<emph>ཞུན་དག་ - དམིགས་བསལ་སྦྱར་</emph> གདམ་ཁ་རྐྱབས། <emph>དམིགས་བསལ་སྦྱར་</emph> ཌའི་ལོག་འདི་འབྱུངམ་ཨིན།"
@@ -2929,7 +2780,6 @@ msgstr "<emph>ཞུན་དག་ - དམིགས་བསལ་སྦྱར
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3166465\n"
-"67\n"
"help.text"
msgid "In the <emph>Selection</emph> area, check only the <emph>Formats</emph> box. All other boxes must be unchecked. Click <emph>OK</emph>."
msgstr "<emph>སེལ་འཐུ་</emph> མངའ་ཁོངས་ནང་ <emph>རྩ་སྒྲིག་ཚུ་</emph> སྒྲོམ་རྐྱངམ་ཅིག་ཞིབ་དཔྱད་འབད། གཞན་སྒྲོམ་ཚུ་ཞིབ་དཔྱད་མ་འབད་བར་བཞག་དགོ <emph>བཏུབ་</emph>གུ་ ཨེབ་གཏང་འབད།"
@@ -2938,7 +2788,6 @@ msgstr "<emph>སེལ་འཐུ་</emph> མངའ་ཁོངས་ནང
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3159123\n"
-"68\n"
"help.text"
msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Format - Conditional formatting\">Format - Conditional formatting</link>"
msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Format - Conditional formatting\">རྩ་སྒྲིག་ གནས་སྟངས་ཅན་གྱི་རྩ་སྒྲིག་</link>"
@@ -2963,7 +2812,6 @@ msgstr "<bookmark_value>མེད་ཆའི་ཨང་གྲངས་ གཙ
msgctxt ""
"cellstyle_minusvalue.xhp\n"
"hd_id3147434\n"
-"31\n"
"help.text"
msgid "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\" name=\"Highlighting Negative Numbers\">Highlighting Negative Numbers</link></variable>"
msgstr "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\" name=\"Highlighting Negative Numbers\">མེད་ཆའི་ཨང་གྲངས་ཚུ་ གཙོ་དམིགས་འབད་དོ་</link></variable>"
@@ -2972,7 +2820,6 @@ msgstr "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cell
msgctxt ""
"cellstyle_minusvalue.xhp\n"
"par_id3153878\n"
-"33\n"
"help.text"
msgid "You can format cells with a number format that highlights negative numbers in red. Alternatively, you can define your own number format in which negative numbers are highlighted in other colors."
msgstr "མེད་ཆའི་ཨང་གྲངས་དམརཔོ་སྦེ་གཙོ་དམིགས་འབད་མི་ཨང་གྲངས་རྩ་སྒྲིག་ཅིག་དང་བཅས་ ནང་ཐིག་ཚུ་རྩ་སྒྲིག་འབད་ཚུགས། ཁྱོད་ཀྱིས་ ཐབས་གཞན་གྱི་ཐོག་ལས་ མེད་ཆ་ཨང་གྲངས་ཚུ་ཚོས་གཞི་སོ་སོར་ནང་གཙོ་དམིགས་འབད་དེ་ ཁྱོད་རའི་ཨང་གྲངས་རྩ་སྒྲིག་འདི་ངེས་འཛིན་འབད་བཏུབ།"
@@ -2981,7 +2828,6 @@ msgstr "མེད་ཆའི་ཨང་གྲངས་དམརཔོ་སྦ
msgctxt ""
"cellstyle_minusvalue.xhp\n"
"par_id3155600\n"
-"34\n"
"help.text"
msgid "Select the cells and choose <emph>Format - Cells</emph>."
msgstr "ནང་ཐིག་སེལ་འཐུ་འབད་ཞིནམ་ལས་ <emph>རྩ་སྒྲིག་ - ནང་ཐིག་</emph> གདམ་ཁ་རྐྱབས།"
@@ -2990,7 +2836,6 @@ msgstr "ནང་ཐིག་སེལ་འཐུ་འབད་ཞིནམ་
msgctxt ""
"cellstyle_minusvalue.xhp\n"
"par_id3146969\n"
-"35\n"
"help.text"
msgid "On the <emph>Numbers</emph> tab, select a number format and mark <emph>Negative numbers red</emph> check box. Click <emph>OK</emph>."
msgstr "<emph>ཨང་གྲངས་ཚུ་</emph> མཆོང་ལྡེ་གུ་ ཨང་གྲངས་རྩ་སྒྲིག་ཅིག་སེལ་འཐུ་འབད་ཞིནམ་ལས་ <emph>ཆེད་ཆ་ཨང་གྲངས་དམརཔོ་</emph> ཞིབ་དཔྱད་སྒྲོམ་གུ་ རྟགས་བཀལ། <emph>བཏུབ་</emph> གུ་ཨེབ་གཏང་འབད།"
@@ -2999,7 +2844,6 @@ msgstr "<emph>ཨང་གྲངས་ཚུ་</emph> མཆོང་ལྡེ
msgctxt ""
"cellstyle_minusvalue.xhp\n"
"par_id3145640\n"
-"36\n"
"help.text"
msgid "The cell number format is defined in two parts. The format for positive numbers and zero is defined in front of the semicolon; after the semicolon the formula for negative numbers is defined. You can change the code (RED) under <item type=\"menuitem\">Format code</item>. For example, instead of RED, enter <item type=\"literal\">YELLOW</item>. If the new code appears in the list after clicking the <item type=\"menuitem\">Add</item> icon, this is a valid entry."
msgstr "ནང་ཐིག་ཨང་གྲངས་རྩ་སྒྲིག་འདི་ ཁག་གཉིས་ནང་སྦེ་ངེས་འཛིན་འབད་དེ་ཡོད། ཡོད་ཆའི་ཨང་གྲངས་དང་ཀླད་ཀོར་དོན་ལུ་ རྩ་སྒྲིག་འདི་སེ་མི་ཀོ་ལཱོན་གི་གདོང་ཁར་ངེས་འཛིན་འབད་དེ་ཡོད་ སེ་མི་ཀོ་ལཱོན་གྱི་ཤུལ་མ་ མེད་ཆའི་ཨང་གྲངས་ཀྱི་མན་ངག་འདི་ ངེས་འཛིན་འབད་ཡི། ཁྱོད་ཀྱིས་ <emph>རྩ་སྒྲིག་ཨང་</emph> འོག་ལུ་ ཨང་རྟགས་(དམརཔོ་)སོར་བཏུབ། དཔེར་ན་ \"RED,\" གི་ཚབ་ལུ་ \"YELLOW\" བཙུགས། <emph>ཁ་སྐོང་</emph> ངོས་པར་གུ་ཨེབ་གཏང་འབད་བའི་ཤུལ་ལུ་ ཐོ་ཡིག་ནང་ཨང་རྟགས་གསརཔ་འབྱུང་པ་ཅིན་ འདི་ནུས་ཅན་ཐོ་བཀོད་ཅིག་ཨིན།"
@@ -3024,7 +2868,6 @@ msgstr "<bookmark_value>གནས་གོང་ཚུ་ རྩ་བརྟན
msgctxt ""
"consolidate.xhp\n"
"hd_id3150791\n"
-"5\n"
"help.text"
msgid "<variable id=\"consolidate\"><link href=\"text/scalc/guide/consolidate.xhp\" name=\"Consolidating Data\">Consolidating Data</link></variable>"
msgstr "<variable id=\"consolidate\"><link href=\"text/scalc/guide/consolidate.xhp\" name=\"Consolidating Data\">གནད་སྡུད་རྩ་བརྟན་བཟོ་ནི་</link></variable>"
@@ -3033,7 +2876,6 @@ msgstr "<variable id=\"consolidate\"><link href=\"text/scalc/guide/consolidate.x
msgctxt ""
"consolidate.xhp\n"
"par_id3153191\n"
-"34\n"
"help.text"
msgid "During consolidation, the contents of the cells from several sheets will be combined in one place."
msgstr "རྩ་བརྟན་བཟོ་བའི་སྐབས་ལུ་ ལེབ་གྲངས་ལེ་ཤ་ཅིག་ནང་ལས་ཨིན་མི་ ནང་ཐིག་གི་ནང་དོན་ཚུ་ ས་གནས་སོ་སོར་ཅིག་ནང་ལུ་ མཉམ་མུཐད་འབད་དེ་བཞག་འོང་།"
@@ -3050,7 +2892,6 @@ msgstr ""
msgctxt ""
"consolidate.xhp\n"
"par_id3151073\n"
-"6\n"
"help.text"
msgid "Open the document that contains the cell ranges to be consolidated."
msgstr "རྩ་བརྟན་བཟོ་ནི་ཨིན་མི་ནང་ཐིག་ཁྱབ་ཚད་དང་ལྡན་པའི་ཡིག་ཆ་ ཁ་ཕྱེ།"
@@ -3059,7 +2900,6 @@ msgstr "རྩ་བརྟན་བཟོ་ནི་ཨིན་མི་ནང
msgctxt ""
"consolidate.xhp\n"
"par_id3154513\n"
-"7\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Data - Consolidate</item> to open the <emph>Consolidate</emph> dialog."
msgstr "གདམ་ཁ་བརྐྱབ་ <item type=\"menuitem\">གནས་སྡུད་ - རྩ་བརྟན་བཟོ་ནི་</item> ཁ་ཕྱེ་ནི་ལུ་ <emph>རྩ་བརྟན་བཟོ་ནི་</emph> ཌའི་ལོག།"
@@ -3068,7 +2908,6 @@ msgstr "གདམ་ཁ་བརྐྱབ་ <item type=\"menuitem\">གནས
msgctxt ""
"consolidate.xhp\n"
"par_id3147345\n"
-"8\n"
"help.text"
msgid "From the <emph>Source data area</emph> box select a source cell range to consolidate with other areas."
msgstr "<emph>འབྱུང་ཁུངས་གནད་སྡུད་མངའ་ཁོངས་</emph>སྒྲོམ་ནང་ལས་ མངའ་ཁོངས་སོ་སོ་དང་རྩ་བརྟན་བཟོ་ནི་གི་དོན་ལུ་ འབྱུང་ཁུངས་ནང་ཐིག་ཁྱབ་ཚད་ཅིག་སེལ་འཐུ་འབད།"
@@ -3077,7 +2916,6 @@ msgstr "<emph>འབྱུང་ཁུངས་གནད་སྡུད་མང
msgctxt ""
"consolidate.xhp\n"
"par_id3149209\n"
-"9\n"
"help.text"
msgid "If the range is not named, click in the field next to the <emph>Source data area</emph>. A blinking text cursor appears. Type a reference for the first source data range or select the range with the mouse."
msgstr "ཁྱབ་ཚད་འདི་མིང་མ་བཏགས་པ་ཅིན་ <emph>འབྱུང་ཁུངས་གནད་སྡུད་མངའ་ཁོངས་</emph> ཀྱི་སྦོ་ལོགས་ཁར་ ནང་ཐིག་ནང་ ཨེབ་གཏང་འབད། འགུལ་ཅན་ཚིག་ཡིག་འོད་རྟགས་ཅིག་འབྱུངམ་ཨིན། འབྱུང་ཁུངས་གནད་སྡུད་ཁྱབ་ཚད་དང་པམ་གྱི་དོན་ལུ་ གཞི་བསྟུན་ཅིག་ཡིག་དཔར་རྐྱབས་ ཡང་ན་ མཱའུསི་གི་ཐོག་ལས་ ཁྱབ་ཚད་སེལ་འཐུ་འབད།"
@@ -3086,7 +2924,6 @@ msgstr "ཁྱབ་ཚད་འདི་མིང་མ་བཏགས་པ་
msgctxt ""
"consolidate.xhp\n"
"par_id3155529\n"
-"10\n"
"help.text"
msgid "Click <emph>Add</emph> to insert the selected range in the <emph>Consolidation areas</emph> field."
msgstr "<emph>རྩ་བརྟན་མངའ་ཁོངས་</emph> ས་སྒོའི་ནང་ སེལ་འཐུ་འབད་ཡོད་པའི་ཁྱབ་ཚད་བཙུགས་ནིའི་དོན་ལས་ <emph>ཁ་སྐོང་</emph> གུ་ཨེབ་གཏང་འབད།"
@@ -3095,7 +2932,6 @@ msgstr "<emph>རྩ་བརྟན་མངའ་ཁོངས་</emph> ས་
msgctxt ""
"consolidate.xhp\n"
"par_id3153816\n"
-"11\n"
"help.text"
msgid "Select additional ranges and click <emph>Add</emph> after each selection."
msgstr "ཁ་སྐོང་ཅན་གྱི་ཁྱབ་ཚད་ཚུ་སེལ་འཐུ་འབད་ཞིནམ་ལས་ སེལ་འཐུ་རེ་རེ་བཞིན་གྱི་ཤུལ་མ་ <emph>ཁ་སྐོང་</emph> གུ་ཨེབ་གཏང་འབད།"
@@ -3104,7 +2940,6 @@ msgstr "ཁ་སྐོང་ཅན་གྱི་ཁྱབ་ཚད་ཚུ་
msgctxt ""
"consolidate.xhp\n"
"par_id3157983\n"
-"12\n"
"help.text"
msgid "Specify where you want to display the result by selecting a target range from the <emph>Copy results to</emph> box."
msgstr "ཁྱོད་ཀྱིས་ གྲུབ་འབྲས་ག་སྟེ་ལུ་བཀྲམ་སྟོན་འབད་ནི་ཨིན་ན་ <emph>འདྲ་བཤུས་གྲུབ་འབྲས་ལས་</emph> སྒྲོམ་གྱི་ནང་ལས་ དམིགས་གཏད་ཁྱབ་ཚད་ཅིག་ སེལ་འཐུ་འབད་བའི་ཐོག་ལས་ གསལ་བཀོད་འབད།"
@@ -3113,7 +2948,6 @@ msgstr "ཁྱོད་ཀྱིས་ གྲུབ་འབྲས་ག་ས
msgctxt ""
"consolidate.xhp\n"
"par_id3150215\n"
-"13\n"
"help.text"
msgid "If the target range is not named, click in the field next to <emph>Copy results to</emph> and enter the reference of the target range. Alternatively, you can select the range using the mouse or position the cursor in the top left cell of the target range."
msgstr "ག་དེམ་ཅིག་འབད་དམིགས་གཏད་ཁྱབ་ཚད་ལུ་མིང་མ་བཏགས་པ་ཅིན་ <emph>གྲུབ་འབྲས་འདྲ་བཤུས་རྐྱབས་</emph> ཀྱི་སྦོ་ལོགས་ཁའི་ས་སྒོ་ནང་ ཨེབ་གཏང་འབད་ དེ་ལས་དམིགས་གཏད་ཁྱབ་ཚད་ཀྱི་གཞི་བསྟུན་བཙུགས། ཐབས་གཞན་ཐོག་ལས་ མཱའུསི་ལག་ལེན་འཐབ་སྟེ་ ཁྱབ་ཚད་སེལ་འཐུ་འབད་བཏུབ་ ཡང་ན་ དམིགས་གཏད་ཁྱབ་ཚད་ཀྱི་མགུ་ལུ་ཡོད་པའི་ནང་ཐིག་གི་གཡོན་ཁ་ཐུག་ལུ་ འོད་རྟགས་ཀྱི་གནས་ས་བཟོ་བཏུབ།"
@@ -3122,7 +2956,6 @@ msgstr "ག་དེམ་ཅིག་འབད་དམིགས་གཏད་
msgctxt ""
"consolidate.xhp\n"
"par_id3153813\n"
-"14\n"
"help.text"
msgid "Select a function from the <emph>Function</emph> box. The function specifies how the values of the consolidation ranges are linked. The \"Sum\" function is the default setting."
msgstr "<emph>ལས་འགན་</emph> སྒྲོམ་ནང་ལས་ ལས་འགན་ཅིག་སེལ་འཐུ་འབད། ལས་འགན་འདི་གིས་ རྩ་བརྟན་ཁྱབ་ཚད་ཀྱི་བེ་ལུསི་ཚུ་ག་དེ་འབད་འབྲེལ་མཐུད་འབད་ཡོདཔ་ཨིན་ན་ གསལ་བཀོད་འབདཝ་ཨིན། \"Sum\" ལས་འགན་འདི་ སྔོན་སྒྲིག་སྒྲིག་སྟངས་ཨིན།"
@@ -3131,7 +2964,6 @@ msgstr "<emph>ལས་འགན་</emph> སྒྲོམ་ནང་ལས་
msgctxt ""
"consolidate.xhp\n"
"par_id3149315\n"
-"15\n"
"help.text"
msgid "Click <emph>OK</emph> to consolidate the ranges."
msgstr "ཁྱབ་ཚད་ཚུ་རྩ་བརྟན་བཟོ་ནི་ལུ་ <emph>བཏུབ་</emph> གུ་ཨེབ་གཏང་འབད།"
@@ -3148,7 +2980,6 @@ msgstr "ཁ་སྐོང་ཅན་གྱི་སྒྲིག་སྟངས
msgctxt ""
"consolidate.xhp\n"
"par_id3147250\n"
-"16\n"
"help.text"
msgid "Click <emph>More</emph> in the <emph>Consolidate</emph> dialog to display additional settings:"
msgstr "ཁ་སྐོང་ཅན་གྱི་སྒྲིག་སྟངས་ཚུ་བཀྲམ་སྟོན་འབད་ནི་གི་དོན་ལུ་ <emph>རྩ་བརྟན་</emph> ཌའི་ལོག་ནང་ <emph>ལེ་ཤ་</emph> གུ་ཨེབ་གཏང་འབད།"
@@ -3157,7 +2988,6 @@ msgstr "ཁ་སྐོང་ཅན་གྱི་སྒྲིག་སྟངས
msgctxt ""
"consolidate.xhp\n"
"par_id3156400\n"
-"17\n"
"help.text"
msgid "Select <emph>Link to source data</emph> to insert the formulas that generate the results in the target range, rather than the actual results. If you link the data, any values modified in the source range are automatically updated in the target range."
msgstr "དམིགས་གཏད་ཁྱབ་ཚད་ནང་ ངོ་མ་མིན་པའི་གྲུབ་འབྲས་ཚུ་བཟོ་བཏོན་འབད་མི་མན་ངག་ཚུ་བཙུགས་ནི་གི་དོན་ལུ་ <emph>འབྱུང་ཁུངས་གནད་སྡུད་ཀྱི་འབྲེལ་ལམ་</emph> སེལ་འཐུ་འབད། གནད་སྡུད་འདི་འབྲེལ་མཐུད་བཟོ་བ་ཅིན་ འབྱུང་ཁུངས་ཁྱབ་ཚད་ནང་ལེགས་བཅོས་འབད་ཡོད་པའི་བེ་ལུསི་ག་ཅི་ར་ཨིན་རུང་ དམིགས་གཏད་ཁྱབ་ཚ་ད་ནང་ལུ་ དུས་མཐུན་བཟོ་འོང་།"
@@ -3166,7 +2996,6 @@ msgstr "དམིགས་གཏད་ཁྱབ་ཚད་ནང་ ངོ་
msgctxt ""
"consolidate.xhp\n"
"par_id3150538\n"
-"18\n"
"help.text"
msgid "The corresponding cell references in the target range are inserted in consecutive rows, which are automatically ordered and then hidden from view. Only the final result, based on the selected function, is displayed."
msgstr "དམིགས་གཏད་ཁྱབ་ཚད་ནང་གི་ཆ་མཉམ་ནང་ཐིག་གཞི་བསྟུན་ཚུ་ རིམ་མཐུད་གྲལ་ཐིག་ནང་བཙུགས་ཡོདཔ་དང་ དེ་ཚུ་རང་བཞིན་གྱིས་གོ་རིམ་ཅན་དང་མཐོང་སྣང་ལས་སྦ་ཡོདཔ། སེལ་འཐུ་འབད་ཡོད་མི་ལས་འགན་ལུ་བརྟེན་པའི་མཐའ་མཇུག་གི་གྲུབ་འབྲས་འདི་ བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -3175,7 +3004,6 @@ msgstr "དམིགས་གཏད་ཁྱབ་ཚད་ནང་གི་ཆ
msgctxt ""
"consolidate.xhp\n"
"par_id3149945\n"
-"19\n"
"help.text"
msgid "Under <emph>Consolidate by</emph>, select either <emph>Row labels</emph> or <emph>Column labels</emph> if the cells of the source data range are not to be consolidated corresponding to the identical position of the cell in the range, but instead according to a matching row label or column label."
msgstr "ག་དེམ་ཅིག་འབད་ འབྱུང་ཁུངས་གནད་སྡུད་ཁྱབ་ཚད་ཀྱི་ནང་ཐིག་ཚུ་ ཁྱབ་ཚད་ནང་ལུ་ནང་ཐིག་དབྱེར་མེད་གནས་ས་དང་མཉམ་ རྩ་བརྟན་བཟོ་མ་ཚུགས་པ་ཅིན་དང་ དེ་མིན་པའི་མཐུན་སྒྲིག་གྲལ་ཐིག་ཁ་ཡིག་ཅིག་ ཡང་ན་ ཀེར་ཐིག་ཁ་ཡིག་ཅིག་དང་འཁྲིལ་ཏེ་ <emph>རྩ་བརྟན་བཟོ་ནིའི་འོག་གི་</emph>གཉིས་ལས་གང་རུང་ཅིག་ གདམ་ཁ་རྐྱབས་<emph>དེ་ཡང་གྲལ་ཐིག་ཁ་ཡིག་</emph> ཡང་ན་ <emph>ཀེར་ཐིག་ཁ་ཡིག་</emph> ཨིན།"
@@ -3184,7 +3012,6 @@ msgstr "ག་དེམ་ཅིག་འབད་ འབྱུང་ཁུང
msgctxt ""
"consolidate.xhp\n"
"par_id3157871\n"
-"20\n"
"help.text"
msgid "To consolidate by row labels or column labels, the label must be contained in the selected source ranges."
msgstr "གྲལ་་ཐིག་ཁ་ཡིག་ ཡང་ན་ ཀེར་ཐིག་ཁ་ཡིག་གྱི་་ཐོག་ལས་རྩ་བརྟན་བཟོ་ནི་ལུ་ ཁ་ཡིག་འདི་སེལ་འཐུ་འབད་ཡོད་པའི་འབྱུང་ཁུངས་ཁྱབ་ཚད་ནང་ལུ་ ཡོད་དགོཔ་ཨིན།"
@@ -3193,7 +3020,6 @@ msgstr "གྲལ་་ཐིག་ཁ་ཡིག་ ཡང་ན་ ཀེར
msgctxt ""
"consolidate.xhp\n"
"par_id3150478\n"
-"21\n"
"help.text"
msgid "The text in the labels must be identical, so that rows or columns can be accurately matched. If the row or column label does not match any that exist in the target range, it will be appended as a new row or column."
msgstr "ཚིག་ཡིག་འདི་ ཁ་ཡིག་ནང་ལུ་དབྱེ་བ་མེདཔ་སྦེ་དགོ་ དེ་འབད་བ་ཅིན་ གྲལ་ཐིག་ ཡངན་ ཀེར་ཐིག་ཚུ་ཀྲིག་ཀྲི་འབད་མཐུན་སྒྲིག་འབད་འོང་། ག་དེམ་ཅིག་འབད་གྲལ་ཐིག་ ཡངན་ ཀེར་ཐིག་ཁ་ཡིག་འདི་མཐུན་སྒྲིག་མེད་པ་ཅིན་ དམིགས་གཏད་ཁྱབ་ཚད་ནང་གང་རུང་ཅིག་ཡོད་པ་ཅིན་ འདི་གྲལ་ཐིག་ ཡངན་ ཀེར་ཐིག་གསརཔ་སྦེ་ མཇུག་བསྣོན་འབད་འོང་།"
@@ -3202,7 +3028,6 @@ msgstr "ཚིག་ཡིག་འདི་ ཁ་ཡིག་ནང་ལུ
msgctxt ""
"consolidate.xhp\n"
"par_id3147468\n"
-"22\n"
"help.text"
msgid "The data from the consolidation ranges and target range will be saved when you save the document. If you later open a document in which consolidation has been defined, this data will again be available."
msgstr "ཁྱོད་ཀྱིས་ ཡིག་ཆ་སྲུང་བཞག་འབད་བའི་སྐབས་ལུ་ རྩ་བརྟན་ཁྱབ་ཚད་དང་དམིགས་གཏད་ཁྱབ་ཚད་གཉིས་ལས་ གནད་སྡུད་ཡང་སྲུང་བཞག་འབད་འོང་། ཤུལ་ལས་ རྩ་བརྟན་ངེས་འཛིན་འབད་ཡོད་པའི་ཡིག་ཆ་ཅིག་ཁ་ཕྱེ་བ་ཅིན་ གནད་སྡུད་འདི་དོ་རུང་ཐོབ་ཚུགས།"
@@ -3211,7 +3036,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཡིག་ཆ་སྲུང་བཞ
msgctxt ""
"consolidate.xhp\n"
"par_id3153039\n"
-"33\n"
"help.text"
msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Data - Consolidate\">Data - Consolidate</link>"
msgstr "<link href=\"text/scalc/01/12070000.xhp\" name=\"Data - Consolidate\">གནད་སྡུད་ - རྩ་བརྟན་</link>"
@@ -3452,7 +3276,6 @@ msgstr "<item type=\"menuitem\">གནད་སྡུད་ - དབྱེ་ས
msgctxt ""
"csv_files.xhp\n"
"par_id3153487\n"
-"20\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
msgstr ""
@@ -3461,7 +3284,6 @@ msgstr ""
msgctxt ""
"csv_files.xhp\n"
"par_id3153008\n"
-"21\n"
"help.text"
msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Export text files</link>"
msgstr "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">ཚིག་ཡིག་ཡིག་སྣོད་ཚུ་ ཕྱིར་འདྲེན་འབད།</link>"
@@ -3470,7 +3292,6 @@ msgstr "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">
msgctxt ""
"csv_files.xhp\n"
"par_id3155595\n"
-"22\n"
"help.text"
msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
msgstr "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">ཚིག་ཡིག་ཡིག་སྣོད་ཚུ་ ནང་འདྲེན་འབད་</link>"
@@ -3495,7 +3316,6 @@ msgstr ""
msgctxt ""
"csv_formula.xhp\n"
"hd_id3153726\n"
-"1\n"
"help.text"
msgid "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\" name=\"Importing and Exporting Text Files\">Importing and Exporting CSV Text Files with Formulas</link></variable>"
msgstr "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\" name=\"Importing and Exporting Text Files\">ཚིག་ཡིག་ཡིག་སྣོད་ཚུ་ ནང་འདྲེན་དང་ཕྱིར་འདྲེན་འབད་ནི་</link></variable>"
@@ -3504,7 +3324,6 @@ msgstr "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.x
msgctxt ""
"csv_formula.xhp\n"
"par_id3149402\n"
-"2\n"
"help.text"
msgid "Comma separated values (CSV) files are text files that contain the cell contents of a single sheet. Commas, semicolons, or other characters can be used as the field delimiters between the cells. Text strings are put in quotation marks, numbers are written without quotation marks."
msgstr "ལྷད་རྟགས་ཀྱིས་སོ་སོ་འཕྱལ་བའི་བེ་ལུསི་(སི་ཨེསི་ཝི་) ཡིག་སྣོད་ཚུ་ ལེབ་གྲངས་རྐྱང་པའི་ནང་ཐིག་ནང་དོན་དང་ལྡན་པའི་ཚིག་ཡིག་ཡིག་སྣོད་ཨིན། ལྷད་རྟགས་དང་ སེ་མི་ཀོ་ལཱོན་ ཡང་ན་ ཡིག་འབྲུ་གཞན་ཚུ་ ནང་ཐིག་བར་ན་ ས་སྒོའི་དབྱེ་རྟགས་སྦེ་ལགལེན་འཐབ་བཏུབ། ཚིག་ཡིག་ཡིག་རྒྱུན་ཚུ་ འདྲེན་རྟགས་ནང་བཙུགསཔ་ཨིནམ་དང་ ཨང་གྲངས་ཚུ་འདྲེན་རྟགས་མེད་པར་བྲིསཝ་ཨིན།"
@@ -3513,7 +3332,6 @@ msgstr "ལྷད་རྟགས་ཀྱིས་སོ་སོ་འཕྱལ
msgctxt ""
"csv_formula.xhp\n"
"hd_id3150715\n"
-"15\n"
"help.text"
msgid "To Import a CSV File"
msgstr ""
@@ -3522,7 +3340,6 @@ msgstr ""
msgctxt ""
"csv_formula.xhp\n"
"par_id3153709\n"
-"16\n"
"help.text"
msgid "Choose <emph>File - Open</emph>."
msgstr "<emph>ཡིག་སྣོད་ - ཁ་ཕྱེ་</emph> གདམ་ཁ་རྐྱབས།"
@@ -3531,7 +3348,6 @@ msgstr "<emph>ཡིག་སྣོད་ - ཁ་ཕྱེ་</emph> གདམ
msgctxt ""
"csv_formula.xhp\n"
"par_id3155445\n"
-"17\n"
"help.text"
msgid "In the <emph>File type</emph> field, select the format \"Text CSV\". Select the file and click <emph>Open</emph>. When a file has the .csv extension, the file type is automatically recognized."
msgstr "<emph>ཡིག་སྣོད་དབྱེ་བ་</emph> ས་སྒོ་ནང་ རྩ་སྒྲིག་ \"Text CSV\" སེལ་འཐུ་འབད། ཡིག་སྣོད་སེལ་འཐུ་འབད་དེ་ <emph>ཁ་ཕྱེ་</emph> གུ་ཨེབ་གཏང་འབད། ཡིག་སྣོད་ཅིག་ལུ་ .csv རྒྱ་བསྐྱེད་ཡོད་པའི་སྐབས་ལུ་ ཡིག་སྣོད་དབྱེ་བ་འདི་རང་བཞིན་གྱིས་ ངོས་འཛིན་འབད་ཚུགས།"
@@ -3540,7 +3356,6 @@ msgstr "<emph>ཡིག་སྣོད་དབྱེ་བ་</emph> ས་ས
msgctxt ""
"csv_formula.xhp\n"
"par_id3149565\n"
-"18\n"
"help.text"
msgid "You will see the <item type=\"menuitem\">Text Import</item> dialog. Click <item type=\"menuitem\">OK</item>."
msgstr ""
@@ -3549,7 +3364,6 @@ msgstr ""
msgctxt ""
"csv_formula.xhp\n"
"par_id3149255\n"
-"19\n"
"help.text"
msgid "If the csv file contains formulas, but you want to import the results of those formulas, then choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - View</emph> and clear the <emph>Formulas</emph> check box."
msgstr ""
@@ -3558,7 +3372,6 @@ msgstr ""
msgctxt ""
"csv_formula.xhp\n"
"hd_id3154022\n"
-"3\n"
"help.text"
msgid "To Export Formulas and Values as CSV Files"
msgstr "མན་ངག་དང་བེ་ལུསི་ཚུ་ སི་ཨེསི་ཝི་ཡིག་སྣོད་སྦེ་ ཕྱིར་འདྲེན་འབད་དོ།"
@@ -3567,7 +3380,6 @@ msgstr "མན་ངག་དང་བེ་ལུསི་ཚུ་ སི་
msgctxt ""
"csv_formula.xhp\n"
"par_id3150342\n"
-"4\n"
"help.text"
msgid "Click the sheet to be written as a csv file."
msgstr "ལེབ་གྲངས་འདི་ སི་ཨེེསི་ཝི་ཡིག་སྣོད་སྦེ་འབྲི་ནི་ལུ་ ཨེབ་གཏང་འབད།"
@@ -3576,17 +3388,14 @@ msgstr "ལེབ་གྲངས་འདི་ སི་ཨེེསི་ཝ
msgctxt ""
"csv_formula.xhp\n"
"par_id3166423\n"
-"5\n"
"help.text"
msgid "If you want to export the formulas as formulas, for example, in the form =SUM(A1:B5), proceed as follows:"
msgstr "ཁྱོད་ཀྱིས་ མན་ངག་ཚུ་མན་ངག་སྦེ་ཕྱིར་འདྲེན་འབད་དགོ་མནོ་བ་ཅིན་ དཔེར་ན་ འབྲི་ཤོག་ནང་ =SUM(A1:B5) འོག་གི་ཚུ་བཟུམ་སྦེ་འཕྲོ་མཐུད་འབད་:"
#: csv_formula.xhp
-#, fuzzy
msgctxt ""
"csv_formula.xhp\n"
"par_id3155111\n"
-"6\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - View</emph>."
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཨེཕ་༦ དང་བཅས་ཡིག་ཆ་སེལ་འཐུ་འབད་ཞིནམ་ལས་ མཆོང་ལྡེ་ལུ་ཨེབས།"
@@ -3595,7 +3404,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"csv_formula.xhp\n"
"par_id3150200\n"
-"7\n"
"help.text"
msgid "Under <emph>Display</emph>, mark the <emph>Formulas</emph> check box. Click <emph>OK</emph>."
msgstr "<emph>Display</emph> བཀྲམ་སྟོན་འོག་ལུ་ <emph>མན་ངག་</emph> ཞིབ་དཔྱད་སྒྲོམ་གུ་རྟགས་བཀལ། <emph>བཏུབ་</emph> གུ་ཨེབ་གཏང་འབད།"
@@ -3604,7 +3412,6 @@ msgstr "<emph>Display</emph> བཀྲམ་སྟོན་འོག་ལུ་
msgctxt ""
"csv_formula.xhp\n"
"par_id3154484\n"
-"8\n"
"help.text"
msgid "If you want to export the calculation results instead of the formulas, do not mark <emph>Formulas</emph>."
msgstr "ཁྱོད་ཀྱིས་ མན་ངག་གི་ཚབ་ལུ་ རྩིས་སྟོན་གྲུབ་འབྲས་ཕྱིར་འདྲེན་འབད་ནི་ཨིན་པ་ཅིན་ <emph>མན་ངག་</emph> གུ་རྟགས་བཀལ་ནི་མི་འོང་།"
@@ -3613,7 +3420,6 @@ msgstr "ཁྱོད་ཀྱིས་ མན་ངག་གི་ཚབ་ལ
msgctxt ""
"csv_formula.xhp\n"
"par_id3148702\n"
-"9\n"
"help.text"
msgid "Choose <emph>File - Save as</emph>. You will see the <emph>Save as</emph> dialog."
msgstr "<emph>ཡིག་སྣོད་ - བཟུམ་སྦེེ་སྲུངས་</emph> གདམ་ཁ་རྐྱབས། ཁྱོད་ཀྱིས་ <emph>བཟུམ་སྦེ་སྲུངས་</emph> ཌའི་ལོག་མཐོང་ཚུགས།"
@@ -3622,7 +3428,6 @@ msgstr "<emph>ཡིག་སྣོད་ - བཟུམ་སྦེེ་སྲ
msgctxt ""
"csv_formula.xhp\n"
"par_id3153912\n"
-"10\n"
"help.text"
msgid "In the <item type=\"menuitem\">File type</item> field select the format \"Text CSV\"."
msgstr ""
@@ -3631,7 +3436,6 @@ msgstr ""
msgctxt ""
"csv_formula.xhp\n"
"par_id3157978\n"
-"13\n"
"help.text"
msgid "Enter a name and click <emph>Save</emph>."
msgstr "མིང་ཅིག་བཙུགས་ཞིནམ་ལས་ <emph>སྲུང་ནི་</emph> གུ་ཨེབ་གཏང་འབད།"
@@ -3640,7 +3444,6 @@ msgstr "མིང་ཅིག་བཙུགས་ཞིནམ་ལས་ <emph
msgctxt ""
"csv_formula.xhp\n"
"par_id3152869\n"
-"23\n"
"help.text"
msgid "From the <emph>Export of text files</emph> dialog that appears, select the character set and the field and text delimiters for the data to be exported, and confirm with <emph>OK</emph>."
msgstr "<emph>ཚིག་ཡིག་ཡིག་སྣོད་ ཕྱིར་འདྲེན་འབད་ནིའི་</emph> ཌའི་ལོག་ནང་ལས་ དེ་འབྱུངམ་ཨིན་ གནད་སྡུད་ཕྱིར་འདྲེན་འབད་ནི་ལུ་ ཡིག་འབྲུའི་ཆ་ཚན་དང་ས་སྒོ་ དེ་ལས་ཚིག་ཡིག་དབྱེ་རྟགས་སེལ་འཐུ་འབད་འབད་ཞིནམ་ལས་ <emph>བཏུབ་</emph> ཀྱིས་ངེས་དཔྱད་འབད།"
@@ -3649,7 +3452,6 @@ msgstr "<emph>ཚིག་ཡིག་ཡིག་སྣོད་ ཕྱིར
msgctxt ""
"csv_formula.xhp\n"
"par_id3150050\n"
-"14\n"
"help.text"
msgid "If necessary, after you have saved, clear the <emph>Formulas</emph> check box to see the calculated results in the table again."
msgstr "ཁག་ཆེཝ་ཨིན་པ་ཅིན་ དེ་སྲུངས་པའི་ཤུལ་མ་ རྩིས་སྟོན་འབད་ཡོད་པའི་གྲུབ་འབྲས་ཚུ་ དོ་རུང་ལོག་སྟེ་ཐིག་ཁྲམ་ནང་བལྟ་ནིའི་དོན་ལུ་ <emph>མན་ངག་</emph> ཞིབ་དཔྱད་སྒྲོམ་འདི་བསལ།"
@@ -3658,7 +3460,6 @@ msgstr "ཁག་ཆེཝ་ཨིན་པ་ཅིན་ དེ་སྲུ
msgctxt ""
"csv_formula.xhp\n"
"par_id3153487\n"
-"20\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
msgstr ""
@@ -3667,7 +3468,6 @@ msgstr ""
msgctxt ""
"csv_formula.xhp\n"
"par_id3153008\n"
-"21\n"
"help.text"
msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Export text files</link>"
msgstr "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">ཚིག་ཡིག་ཡིག་སྣོད་ཚུ་ ཕྱིར་འདྲེན་འབད།</link>"
@@ -3676,7 +3476,6 @@ msgstr "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">
msgctxt ""
"csv_formula.xhp\n"
"par_id3155595\n"
-"22\n"
"help.text"
msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
msgstr "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">ཚིག་ཡིག་ཡིག་སྣོད་ཚུ་ ནང་འདྲེན་འབད་</link>"
@@ -3701,7 +3500,6 @@ msgstr "<bookmark_value>དངུལ་གྱི་རྩ་སྒྲིག་
msgctxt ""
"currency_format.xhp\n"
"hd_id3156329\n"
-"46\n"
"help.text"
msgid "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\" name=\"Cells in Currency Format\">Cells in Currency Format</link></variable>"
msgstr "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\" name=\"Cells in Currency Format\">ད་ལྟོའི་རྩ་སྒྲིག་ནང་གི་ནང་ཐིག་ཚུ་</link></variable>"
@@ -3710,7 +3508,6 @@ msgstr "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_
msgctxt ""
"currency_format.xhp\n"
"par_id3153968\n"
-"47\n"
"help.text"
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can give numbers any currency format. When you click the <item type=\"menuitem\">Currency</item> icon <image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\">Icon</alt></image> in the <item type=\"menuitem\">Formatting</item> bar to format a number, the cell is given the default currency format set under <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - Language Settings - Languages</item>."
msgstr ""
@@ -3719,7 +3516,6 @@ msgstr ""
msgctxt ""
"currency_format.xhp\n"
"par_id3150010\n"
-"48\n"
"help.text"
msgid "Exchanging of <item type=\"productname\">%PRODUCTNAME</item> Calc documents can lead to misunderstandings, if your <item type=\"productname\">%PRODUCTNAME</item> Calc document is loaded by a user who uses a different default currency format."
msgstr "ཁྱོད་ཀྱི་ <item type=\"productname\">%PRODUCTNAME</item> ཀེལཀི་ཡིག་ཆ་འདི་ སྔོན་སྒྲིག་དངུལ་གྱི་རྩ་སྒྲིག་སོ་སོར་ཅིག་ལག་ལེན་འཐབ་ཨིན་པའི་ལག་ལེན་པ་ཅིག་གིས་ མངོན་གསལ་འབད་ཡོད་པ་ཅིན་ <item type=\"productname\">%PRODUCTNAME</item> ཀེལཀི་ཡིག་ཆ་ བརྗེ་སོར་འབད་མི་གིས་ གོ་ལོག་ཆགས་འོང་།"
@@ -3728,7 +3524,6 @@ msgstr "ཁྱོད་ཀྱི་ <item type=\"productname\">%PRODUCTNAME</ite
msgctxt ""
"currency_format.xhp\n"
"par_id3156442\n"
-"52\n"
"help.text"
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can define that a number that you have formatted as \"1,234.50 €\", still remains in euros in another country and does not become dollars."
msgstr "<item type=\"productname\">%PRODUCTNAME</item> ཀེལཀི་ནང་ ཁྱོད་ཀྱིས་\"1,234.50 €\" སྦེ་རྩ སྒྲིག་འབད་དེ་ཡོད་པའི་ཨང་གྲངས་འདི་, ད་ལྟོ་ཡང་རྒྱལ་ཁབ་གཞན་མི་ནང་ཡུ་རོསི་སྦེ་ཡོད་པ་དང་ ཌོ་ལརསི་ལུ་མ་འགྱུར་བས་ཟེར་ངོས་འཛིན་འབད།"
@@ -3737,7 +3532,6 @@ msgstr "<item type=\"productname\">%PRODUCTNAME</item> ཀེལཀི་ནང
msgctxt ""
"currency_format.xhp\n"
"par_id3151075\n"
-"49\n"
"help.text"
msgid "You can change the currency format in the <item type=\"menuitem\">Format Cells</item> dialog (choose <item type=\"menuitem\">Format - Cells - Numbers</item> tab) by two country settings. In the <item type=\"menuitem\">Language</item> combo box select the basic setting for decimal and thousands separators. In the <item type=\"menuitem\">Format</item> list box you can select the currency symbol and its position."
msgstr ""
@@ -3746,7 +3540,6 @@ msgstr ""
msgctxt ""
"currency_format.xhp\n"
"par_id3150749\n"
-"50\n"
"help.text"
msgid "For example, if the language is set to \"Default\" and you are using a german locale setting, the currency format will be \"1.234,00 €\". A point is used before the thousand digits and a comma before the decimal places. If you now select the subordinate currency format \"$ English (US)\" from the <item type=\"menuitem\">Format</item> list box , you will get the following format: \"$ 1.234,00\". As you can see, the separators have remained the same. Only the currency symbol has been changed and converted, but the underlying format of the notation remains the same as in the locale setting."
msgstr "དཔེར་ན་ ཁྱོད་ཀྱིས་ སྐད་ཡིག་འདི་ \"Default\" ལུ་གཞི་སྒྲིག་འབད་ཞིནམ་ལས་ ཇར་མཱན་ལོ་ཀེལ་སྒྲིག་སྟངས་ཅིག་ལག་ལེན་འཐབ་པ་ཅིན་ དངུལ་གྱི་སྒྲིག་སྟངས་འདི་ \"1.234,00 €\" ཨིན། ཚགས་མ་འདི་ སྟོང་ཕྲག་བཅུ་ཚག་གི་གདོང་ཁར་ལག་ལེན་འཐབ་ཨིནམ་དང་ ལྷད་རྟགས་འདི་བཅུ་ཚག་ས་སྒོའི་གདོང་ཁར་ལག་ལེན་འཐབ་ཨིན། ད་འབདན་ཁྱོད་ཀྱིས་ <emph>Format</emph> ཐོ་ཡིག་སྒྲོམ་ནང་ལས་ གལ་ཆུང་བའི་དངུལ་གྱི་རྩ་སྒྲིག་ \"$ English (US)\" སེལ་འཐུ་འབད་བ་ཅིན་ འོག་གི་རྩ་སྒྲིག་འདི་འཐོབ་: \"$ 1.234,00\". དབྱེ་བྱེད་ཚུ་ཧེ་མ་ག་ཨིནམ་སྦེ་མཐོང་ཚུགས། དངུལ་གྱི་བརྡ་མཚོེན་རྐྱངམ་ཅིག་བསྒྱུར་ཡོདཔ་དང་གཞི་བསྒྱུར་འབད་ཡོདཔ་ཨིན་རུང་ དབྱངས་རྟགས་ཀྱི་འོག་ཐིག་བཅས་པའི་རྩ་སྒྲིག་འདི་ ལོ་ཀེལ་སྒྲིག་སྟངས་ནང་བཟུམ་སྦེ་ཡོདཔ་ཨིན།"
@@ -3755,7 +3548,6 @@ msgstr "དཔེར་ན་ ཁྱོད་ཀྱིས་ སྐད་ཡི
msgctxt ""
"currency_format.xhp\n"
"par_id3145640\n"
-"51\n"
"help.text"
msgid "If, under <item type=\"menuitem\">Language</item>, you convert the cells to \"English (US)\", the English-language locale setting is also transferred and the default currency format is now \"$ 1,234.00\"."
msgstr "<emph>སྐད་ཡིག་</emph> ཀྱི་འོག་ལུ་ཨིན་པ་ཅིན་ ནང་ཐིག་ཚུ་ \"English (US)\" ལུ་གཞི་བསྒྱུར་འབད་ ཨིང་ལིཤི་-སྐད་ཡིག་ལོ་ཀེལ་སྒྲིག་སྟངས་འདི་ཡང་གནས་སོར་བཏང་ཡོདཔ་ལས་ སྔོན་སྒྲིག་དངུལ་གྱི་རྩ་སྒྲིག་འདི་ད་ལས་ཕར་ \"$ 1,234.00\" ཨིན།"
@@ -3764,7 +3556,6 @@ msgstr "<emph>སྐད་ཡིག་</emph> ཀྱི་འོག་ལུ་
msgctxt ""
"currency_format.xhp\n"
"par_id3154255\n"
-"53\n"
"help.text"
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">རྩ་སྒྲིག་ - ནང་ཐིག་ - ཨང་གྲངས་ཚུ་</link>"
@@ -3789,7 +3580,6 @@ msgstr "<bookmark_value>ཐིག་ཁྲམ་ཚུ་ གནད་སྡུ
msgctxt ""
"database_define.xhp\n"
"hd_id3154758\n"
-"31\n"
"help.text"
msgid "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Defining Database Ranges\">Defining a Database Range</link></variable>"
msgstr "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Defining Database Ranges\">གནད་སྡུད་གཞི་རྟེན་གྱི་ཁྱབ་ཚད་ཅིག་ ངེས་འཛིན་འབད་དོ་</link></variable>"
@@ -3798,7 +3588,6 @@ msgstr "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_
msgctxt ""
"database_define.xhp\n"
"par_id3153768\n"
-"81\n"
"help.text"
msgid "You can define a range of cells in a spreadsheet to use as a database. Each row in this database range corresponds to a database record and each cell in a row corresponds to a database field. You can sort, group, search, and perform calculations on the range as you would in a database."
msgstr "ཁྱོད་ཀྱིས་ ནང་ཐིག་ཁྱབ་ཚད་ཅིག་ གནད་སྡུད་གཞི་རྟེན་སྦེ་ལག་ལེན་འཐབ་ནི་གི་དོན་ལུ་ ཤོག་ཁྲམ་ཅིག་ནང་ངེས་འཛིན་འབདཝ་ཨིན། གནད་སྡུད་གཞི་རྟེན་གྱི་ཁྱབ་ཚད་ཀྱི་གྲལ་ཐིག་རེ་རེ་བཞིན་ གནད་སྡུད་གཞི་རྟེན་གྱི་དྲན་ཐོ་དང་ཆ་མཉམ་ཨིནམ་དང་ གྲལ་ཐིག་ནང་གི་ནང་ཐིག་རེ་རེ་བཞིན་ གནད་སྡུད་གཞི་རྟེན་གྱི་ས་སྒོ་དང་ཆ་མཉམ་ཨིན། ཁྱོད་ཀྱིས་ གནད་སྡུད་གཞི་རྟེན་ནང་བཟུམ་སྦེ་ དབྱེ་སེལ་དང་སྡེ་ཚན་བཟོ་ནི་ དེ་ལས་གཞན་འཚོལ་ཞིབ་དང་ཁྱབ་ཚད་གུ་ལུ་རྩིས་སྟོན་འབད་ཚུགས།"
@@ -3807,7 +3596,6 @@ msgstr "ཁྱོད་ཀྱིས་ ནང་ཐིག་ཁྱབ་ཚད
msgctxt ""
"database_define.xhp\n"
"par_id3145801\n"
-"82\n"
"help.text"
msgid "You can only edit and access a database range in the spreadsheet that contains the range. You cannot access the database range in the %PRODUCTNAME Data Sources view."
msgstr "ཁྱོད་ཀྱིས་ ཞུན་དག་རྐྱངམ་ཅིག་འབད་ཚུགསཔ་དང་ ཁྱབ་ཚད་དང་ལྡན་པའི་ཤོག་ཁྲམ་ནང་ལུ་ གནད་སྡུད་གཞི་རྟེན་གྱི་ཁྱབ་ཚད་ཅིག་འཛུལ་སྤྱོད་འབད་ཚུགས། དེ་འབདཝ་ད་ གནད་སྡུད་གཞི་རྟེན་གྱི་ཁྱབ་ཚད་འདི་ %PRODUCTNAME གནད་སྡུད་འབྱུང་ཁུངས་ཀྱི་མཐོང་སྣང་ནང་ལུ་ འཛུལ་སྤྱོད་འབད་མི་ཚུགས།"
@@ -3824,7 +3612,6 @@ msgstr "གནད་སྡུད་གཞི་རྟེན་གྱི་ཁྱ
msgctxt ""
"database_define.xhp\n"
"par_id3155064\n"
-"41\n"
"help.text"
msgid "Select the range of cells that you want to define as a database range."
msgstr "གནད་སྡུད་གཞི་རྟེན་གྱི་ཁྱབ་ཚད་སྦེ་ངེས་འཛིན་འབད་དགོ་མནོ་མི་ ནང་ཐིག་གི་ཁྱབ་ཚད་སེལ་འཐུ་འབད།"
@@ -3841,7 +3628,6 @@ msgstr "<item type=\"menuitem\">གནད་སྡུད་ - ཁྱབ་ཚད
msgctxt ""
"database_define.xhp\n"
"par_id3153715\n"
-"72\n"
"help.text"
msgid "In the <emph>Name</emph> box, enter a name for the database range."
msgstr "<emph>Name</emph> སྒྲོམ་ནང་ལུ་ གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་ཀྱི་དོན་ལུ་ མིང་ཅིག་བཙུགས།"
@@ -3858,7 +3644,6 @@ msgstr "<emph>ལེ་ཤ་</emph> གུ་ཨེབ་གཏང་འབད
msgctxt ""
"database_define.xhp\n"
"par_id3154253\n"
-"42\n"
"help.text"
msgid "Specify the options for the database range."
msgstr "གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་ཀྱི་དོན་ལུ་ གདམ་ཁ་ཚུ་གསལ་བཀོད་འབད།"
@@ -3891,7 +3676,6 @@ msgstr ""
msgctxt ""
"database_filter.xhp\n"
"hd_id3153541\n"
-"47\n"
"help.text"
msgid "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\" name=\"Filtering Cell Ranges\">Filtering Cell Ranges</link></variable>"
msgstr "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\" name=\"Filtering Cell Ranges\">ནང་ཐིག་ཁྱབ་ཚད་ཚུ་བཙགས་དོ་</link></variable>"
@@ -3900,7 +3684,6 @@ msgstr "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_
msgctxt ""
"database_filter.xhp\n"
"par_id3145069\n"
-"48\n"
"help.text"
msgid "You can use several filters to filter cell ranges in spreadsheets. A standard filter uses the options that you specify to filter the data. An AutoFilter filters data according to a specific value or string. An advanced filter uses filter criteria from specified cells."
msgstr "ཁྱོད་ཀྱིས་ ཤོག་ཁྲམ་ཚུ་ནང་ ཚགས་མ་ནང་ཐིག་ཁྱབ་ཚད་ཚུ་ལུ་ ཚགས་མ་ལེ་ཤ་ཅིག་ལག་ལེན་འཐབ་བཏུབ། ཚད་ལྡན་ཚགས་མ་ཅིག་གིས་ ཁྱོད་ཀྱིས་གནད་སྡུད་འདི་བཙགས་ནིའི་དོན་ལས་གསལ་བཀོད་འབད་མི་གདམ་ཁ་འདི་ལག་ལེན་འཐབ་ཨིན། དམིགས་བསལ་གྱི་གནས་གོང་ཡང་ན་ཡིག་རྒྱུན་ཅིག་དང་འཁྲིལ་ཏེ་ རང་བཞིན་ཚགས་མའི་གནད་སྡུད། མཐོ་རིམ་ཚགས་མ་ཅིག་གིས་ གསལ་བཀོད་འབད་ཡོད་པའི་ནང་ཐིག་ཚུ་ལས་ ཚགས་མའི་ཁྱད་ཚད་ལག་ལེན་འཐབ་ཨིན།"
@@ -3917,7 +3700,6 @@ msgstr "ཚད་ལྡན་ཚགས་མ་ཅིག་ ནང་ཐིག
msgctxt ""
"database_filter.xhp\n"
"par_id3150398\n"
-"50\n"
"help.text"
msgid "Click in a cell range."
msgstr "ནང་ཐིག་ཁྱབ་ཚད་ཅིག་ནང་ཨེབ་གཏང་།"
@@ -3934,7 +3716,6 @@ msgstr "<item type=\"menuitem\">གནད་སྡུད་ - ཚགས་མ་
msgctxt ""
"database_filter.xhp\n"
"par_id3156422\n"
-"51\n"
"help.text"
msgid "In the <emph>Standard Filter</emph> dialog, specify the filter options that you want."
msgstr "<emph>ཚད་ལྡན་ཚགས་མ་</emph> ཌའི་ལོག་ནང་ ཁྱོད་ཀྱིས་དགོ་མི་ཚགས་མའི་གདམ་ཁ་འདི་གསལ་བཀོད་འབད།"
@@ -3951,7 +3732,6 @@ msgstr "<emph>བཏུབ་</emph> གུ་ཨེབ་གཏང་འབད
msgctxt ""
"database_filter.xhp\n"
"par_id3153143\n"
-"52\n"
"help.text"
msgid "The records that match the filter options that you specified are shown."
msgstr "ཚགས་མའི་གདམ་ཁ་དང་མཐུན་སྒྲིག་ཡོད་མི་དྲན་ཐོ་ གསལ་བཀོད་འབད་ཡོད་མི་ཚུ་ སྟོན་ཡི།"
@@ -3960,7 +3740,6 @@ msgstr "ཚགས་མའི་གདམ་ཁ་དང་མཐུན་སྒ
msgctxt ""
"database_filter.xhp\n"
"par_id3153728\n"
-"53\n"
"help.text"
msgid "To Apply an AutoFilter to a Cell Range"
msgstr "རང་བཞིན་ཚགས་མ་ཅིག་ ནང་ཐིག་ཁྱབ་ཚད་ཅིག་ལུ་འཇུག་སྤྱོད་འབད་ནིའི་དོན་ལས་"
@@ -3969,7 +3748,6 @@ msgstr "རང་བཞིན་ཚགས་མ་ཅིག་ ནང་ཐི
msgctxt ""
"database_filter.xhp\n"
"par_id3144764\n"
-"54\n"
"help.text"
msgid "Click in a cell range or a database range."
msgstr "ནང་ཐིག་ཁྱབ་ཚད་ཅིག་ ཡང་ན་གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་ཅིག་ནང་ལུ་ཨེབ་གཏང་།"
@@ -3986,7 +3764,6 @@ msgstr "ཁྱོད་ཀྱིས་སྣ་མང་རང་བཞིན་
msgctxt ""
"database_filter.xhp\n"
"par_id3154944\n"
-"55\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Data - Filter - AutoFilter</item>."
msgstr "<item type=\"menuitem\">གནད་སྡུད་ - ཚགས་མ་ - རག་བཞིན་ཚགས་མ་</item> གདམ་ཁ་རྐྱབས།"
@@ -4003,7 +3780,6 @@ msgstr "མདའ་རྟགས་ཨེབ་རྟ་འདི་ གནད
msgctxt ""
"database_filter.xhp\n"
"par_id3153878\n"
-"56\n"
"help.text"
msgid "Click the arrow button in the column that contains the value or string that you want to set as the filter criteria."
msgstr "ཀེར་ཐིག་ནང་ ཁྱོད་ཀྱིས་ ཚགས་མའི་ཁྱད་ཚད་སྦེ་གཞི་སྒྲིག་འབད་དགོ་མནོ་མི་ བེ་ལུ་ ཡངན་ ཡིག་རྒྱུན་དང་ལྡན་པའི་མདའ་རྟགས་ཨེབ་རྟ་གུ་ ཨེབ་གཏང་འབད།"
@@ -4041,7 +3817,6 @@ msgid "Click in a filtered cell range."
msgstr "བཙགས་ཡོད་པའི་ནང་ཐིག་ཁྱབ་ཚད་ཆིག་ནང་ཨེབ་གཏང་།"
#: database_filter.xhp
-#, fuzzy
msgctxt ""
"database_filter.xhp\n"
"par_idN106EC\n"
@@ -4077,7 +3852,6 @@ msgstr "<bookmark_value>གནད་སྡུད་གཞི་རྟེན་
msgctxt ""
"database_sort.xhp\n"
"hd_id3150767\n"
-"44\n"
"help.text"
msgid "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Sorting Database Ranges\">Sorting Data</link></variable>"
msgstr "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Sorting Database Ranges\">གནད་སྡུད་གཞི་རྟེན་གྱི་ཁྱབ་ཚད་ཚུ་ དབྱེ་སེལ་འབད་དོ་</link></variable>"
@@ -4086,7 +3860,6 @@ msgstr "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_so
msgctxt ""
"database_sort.xhp\n"
"par_id3145751\n"
-"45\n"
"help.text"
msgid "Click in a database range."
msgstr "གནད་སྡུད་གཞི་རྟེན་ཁྱབ་ཚད་ཅིག་ནང་ཨེབ་གཏང་།"
@@ -4159,7 +3932,6 @@ msgstr "<bookmark_value>DataPilot function; introduction</bookmark_value><bookma
msgctxt ""
"datapilot.xhp\n"
"hd_id3150448\n"
-"7\n"
"help.text"
msgid "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">Pivot Table</link></variable>"
msgstr "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"DataPilot\">ཌ་ཊ་པའི་ལོཊི་</link></variable>"
@@ -4168,7 +3940,6 @@ msgstr "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\"
msgctxt ""
"datapilot.xhp\n"
"par_id3156024\n"
-"2\n"
"help.text"
msgid "The <emph>pivot table</emph> (formerly known as <emph>DataPilot</emph>) allows you to combine, compare, and analyze large amounts of data. You can view different summaries of the source data, you can display the details of areas of interest, and you can create reports."
msgstr "<emph>ཌ་ཊ་པའི་ལོཊི་</emph>(རེ་ཅིག་སྐབས་ <emph>ལྟེ་ཤིང་ཐིག་ཁྲམ་</emph> ཟེར་སླབ་ཨིན་)གིས་ ཁྱོད་ལུ་ མཉམ་མཐུད་དང་ག་བསྡུར་ དེ་ལས་གནད་སྡུད་ལེ་ཤ་དཔྱད་ཞིབ་འབད་བཅུགཔ་ཨིན། དེ་གིས་མ་ཚད་པར་ཁྱོད་ཀྱིས་ འབྱུང་ཁུངས་གནད་སྡུད་ཀྱི་བཅུད་དོན་མ་འདྲཝ་མཐོང་ཚུགསཔ་དང་ དང་འདོད་མངའ་ཁོངས་ཀྱི་རྒྱས་བཤད་བཀྲམ་སྟོན་འབད་ཚུགས་ དེ་ལས་གཞན་ཡང་ སྙན་ཞུ་གསར་བསྐྲུན་འབད་ཚུགས།"
@@ -4177,7 +3948,6 @@ msgstr "<emph>ཌ་ཊ་པའི་ལོཊི་</emph>(རེ་ཅིག
msgctxt ""
"datapilot.xhp\n"
"par_id3145069\n"
-"9\n"
"help.text"
msgid "A table that has been created as a <link href=\"text/scalc/01/12090000.xhp\" name=\"pivot table\">pivot table</link> is an interactive table. Data can be arranged, rearranged or summarized according to different points of view."
msgstr "<link href=\"text/scalc/01/12090000.xhp\" name=\"DataPilot\">DataPilot</link> དང་གཅིག་ཁར་གསར་བསྐྲུན་འབད་ཡོད་པའི་ཐིག་ཁྲམ་འདི་ ཕན་ཚུན་འབྲེལ་ལྡན་གྱི་ཐིག་ཁྲམ་ཨིན། གནད་སྡུད་འདི་ བསམ་འཆར་ཁག་མ་འདྲཝ་བཀོད་ཡོད་མི་ནང་ལུ་ བདེ་ཞིབ་དང་བསྐྱར་བདེ་ཞིབ་འབད་བཏུབ་ ཡང་ན་ བཅུད་དོན་བསྡུ་བཏུབ་ཨིན།"
@@ -4202,7 +3972,6 @@ msgstr "<bookmark_value>ཌ་ཊ་པའི་ལོཊི་ཐིག་ཁ
msgctxt ""
"datapilot_createtable.xhp\n"
"hd_id3148491\n"
-"7\n"
"help.text"
msgid "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Creating Pivot Tables\">Creating Pivot Tables</link></variable>"
msgstr "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Creating DataPilot Tables\">ཌ་ཊ་པའི་ལོཊི་ཐིག་ཁྲམ་ཚུ་ གསར་བསྐྲུན་འབད་དོ་</link></variable>"
@@ -4211,17 +3980,14 @@ msgstr "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/dat
msgctxt ""
"datapilot_createtable.xhp\n"
"par_id3156023\n"
-"8\n"
"help.text"
msgid "Position the cursor within a range of cells containing values, row and column headings."
msgstr "བེ་ལུསི་དང་གྲལ་ཐིག་ དེ་ལས་ཀེར་ཐིག་མགུ་རྒྱན་ཚུ་དང་ལྡན་པའི་ཁྱབ་ཚད་ཅིག་གི་ནང་ འོད་རྟགས་ཀྱི་གནས་ས་བཟོ།"
#: datapilot_createtable.xhp
-#, fuzzy
msgctxt ""
"datapilot_createtable.xhp\n"
"par_id3147264\n"
-"9\n"
"help.text"
msgid "Choose <emph>Insert - Pivot Table</emph>. The <emph>Select Source</emph> dialog appears. Choose <emph>Current selection</emph> and confirm with <emph>OK</emph>. The table headings are shown as buttons in the <emph>Pivot Table</emph> dialog. Drag these buttons as required and drop them into the layout areas \"Page Fields\", \"Column Fields\", \"Row Fields\" and \"Data Fields\"."
msgstr "<emph> གནད་སྡུད་ - ཌ་ཊ་པའི་ལོཊི་ - འགོ་བཙུགས་</emph> གདམ་ཁ་རྐྱབས། <emph>འབྱུང་ཁུངས་སེལའཐུ་འབད་</emph> ཌའི་ལོག་འབྱུངམ་ཨིན། <emph>ད་ལྟོའི་སེལ་འཐུ་</emph>གདམས་་ཞིནམ་ལས་ <emph>བཏུབ་</emph> ཀྱི་ཐོག་ལས་ ངེས་དཔྱད་འབད། ཐིག་ཁྲམ་མགུ་རྒྱན་ཚུ་ <emph>ཌ་ཊ་པའི་ལོཊི་</emph> ཌའི་ལོག་ནང་ ཨེབ་རྟ་སྦེ་སྟོནམ་ཨིན། དགོས་མཁོ་ཡོདཔ་ལས་ ཨེབ་རྟ་ཚུ་འདྲུད་ཞིནམ་ལས་ དེ་ཚུ་ སྒྲིག་བཀོད་མངའ་ཁོངས་ \"Page Fields\", \"Column Fields\", \"Row Fields\" དང་ \"Data Fields\" ཚུ་ནང་ལུ་ བཀོག་བཞག"
@@ -4230,7 +3996,6 @@ msgstr "<emph> གནད་སྡུད་ - ཌ་ཊ་པའི་ལོཊ
msgctxt ""
"datapilot_createtable.xhp\n"
"par_id3150868\n"
-"10\n"
"help.text"
msgid "Drag the desired buttons into one of the four areas."
msgstr "རེ་འདུན་བསྐྱེད་ཡོད་པའི་ཨེབ་རྟ་ཚུ་ མངའ་ཁོངས་བཞི་གི་ནང་ལས་ གཅིག་ནང་འདྲུད།"
@@ -4247,7 +4012,6 @@ msgstr "བཟོ་བཏོན་འབད་ཡོད་པའི་ཌ་ཊ
msgctxt ""
"datapilot_createtable.xhp\n"
"par_id3154011\n"
-"11\n"
"help.text"
msgid "If the button is dropped in the <emph>Data Fields</emph> area it will be given a caption that also shows the formula that will be used to calculate the data."
msgstr "ག་དེམ་ཅིག་འབད་ཨེབ་རྟ་འདི་ <emph>Data Fields</emph> མངའ་ཁོངས་ནང་ བཀོག་བཞག་ཡོད་པ་ཅིན་ གནད་སྡུད་རྩིས་སྟོན་འབད་ནི་ལུ་ལག་ལེན་འཐབ་ནི་ཨིན་པའི་མན་ངག་སྟོན་པའི་འགོ་བརྗོད་ཅིག་བྱིན་འོང་།"
@@ -4256,7 +4020,6 @@ msgstr "ག་དེམ་ཅིག་འབད་ཨེབ་རྟ་འདི
msgctxt ""
"datapilot_createtable.xhp\n"
"par_id3146974\n"
-"16\n"
"help.text"
msgid "By double-clicking on one of the fields in the <emph>Data Fields</emph> area you can call up the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog."
msgstr "<emph>Data Fields</emph> མངའ་ཁོངས་ནང་ ས་སྒོ་ཚུ་ནང་ལས་གཅིག་ལུ་ཚར་གཉིས་ཨེབ་གཏང་འབད་བའི་ཐོག་ལས་ <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>གནད་སྡུད་ས་སྒོ་</emph></link> ཌའི་ལོག་ལུ་བོད་བརྡ་འབད་བཏུབ།"
@@ -4265,7 +4028,6 @@ msgstr "<emph>Data Fields</emph> མངའ་ཁོངས་ནང་ ས་ས
msgctxt ""
"datapilot_createtable.xhp\n"
"par_id3156286\n"
-"17\n"
"help.text"
msgid "Use the <item type=\"menuitem\">Data Field</item> dialog to select the calculations to be used for the data. To make a multiple selection, press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while clicking the desired calculation."
msgstr ""
@@ -4274,7 +4036,6 @@ msgstr ""
msgctxt ""
"datapilot_createtable.xhp\n"
"par_id3150329\n"
-"13\n"
"help.text"
msgid "The order of the buttons can be changed at any time by moving them to a different position in the area with the mouse."
msgstr "ཨེབ་རྟའི་རིམ་པ་ཚུ་ ནམ་འབད་རུང་ མཱའུསི་གིས་མངའ་ཁོངས་ས་སྒོ་སོ་སོ་ཅིག་ནང་སྤོ་བཤུད་འབད་ཐགོ་ལས་ བསྒྱུར་བཅོས་འབད་ཚུགས།"
@@ -4283,7 +4044,6 @@ msgstr "ཨེབ་རྟའི་རིམ་པ་ཚུ་ ནམ་འབ
msgctxt ""
"datapilot_createtable.xhp\n"
"par_id3153714\n"
-"14\n"
"help.text"
msgid "Remove a button by dragging it back to the area of the other buttons at the right of the dialog."
msgstr "ཨེབ་རྟ་འདི་ ཨེབ་རྟ་གཞན་ཚུའི་མངའ་ཁོངས་རྒྱབ་ཁར་ ཌའི་ལོག་གི་གཡས་ཕྱོགས་ལུ་འདྲུད་ཐོག་ལས་ རྩ་བསྐྲད་གཏང།"
@@ -4292,7 +4052,6 @@ msgstr "ཨེབ་རྟ་འདི་ ཨེབ་རྟ་གཞན་ཚ
msgctxt ""
"datapilot_createtable.xhp\n"
"par_id3147338\n"
-"15\n"
"help.text"
msgid "To open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog, double-click one of the buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> area. Use the dialog to select if and to what extent <item type=\"productname\">%PRODUCTNAME</item> calculates display subtotals."
msgstr ""
@@ -4301,7 +4060,6 @@ msgstr ""
msgctxt ""
"datapilot_createtable.xhp\n"
"par_id3154020\n"
-"18\n"
"help.text"
msgid "Exit the Pivot Table dialog by pressing OK. A <emph>Filter</emph> button will now be inserted, or a page button for every data field that you dropped in the <emph>Page Fields</emph> area. The pivot table is inserted further down."
msgstr "བཏུབ་གུ་ཨེབ་གཏང་འབད་ཐོག་ལས་ ཌ་ཊ་པའི་ལོཊི་ཌའི་ལོག་ཕྱིར་འཐོན་འབད། ད་ <emph>ཚགས་མ་</emph> /ཨེབ་རྟ་འདི་བཙུགས་འོང་ ཡང་ན་ <emph>ཤོག་ལེབ་ས་སྒོ་</emph> མངའ་ཁོངས་ནང་བཞག་མི་ གནད་སྡུད་ས་སྒོ་རེ་རེ་གི་དོན་ལུ་ ཤོག་ལེབ་ཨེབ་རྟ་རེ་བཙུགས་འོང་།"
@@ -4326,7 +4084,6 @@ msgstr "<bookmark_value>ཌ་ཊ་པའི་ལོཊི་ལས་འག
msgctxt ""
"datapilot_deletetable.xhp\n"
"hd_id3153726\n"
-"31\n"
"help.text"
msgid "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Deleting Pivot Tables\">Deleting Pivot Tables</link></variable>"
msgstr "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Deleting DataPilot Tables\">ཌ་ཊ་པའི་ལོཊི་ཐིག་ཁྲམ་ཚུ་ བཏོན་གཏང་དོ་</link></variable>"
@@ -4335,7 +4092,6 @@ msgstr "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/dat
msgctxt ""
"datapilot_deletetable.xhp\n"
"par_id3154014\n"
-"32\n"
"help.text"
msgid "In order to delete a pivot table, click any cell in the pivot table, then choose <emph>Delete</emph> in the context menu."
msgstr "ཌ་ཊ་པའི་ལོཊི་ཐིག་ཁྲམ་འདི་བཏོན་གཏང་དགོ་པ་ཅིན་ ཌ་ཊ་པའི་ལོཊི་ཐིག་ཁྲམ་ནང་ལས་ནང་ཐིག་གང་རུང་ཅིག་སེལ་འཐུ་འབད་ཞིནམ་ལས་ སྐབས་དོན་དཀར་ཆག་ནང་ལུ་ <emph>བཏོན་གཏང་</emph> གདམ་ཁ་རྐྱབས།"
@@ -4360,7 +4116,6 @@ msgstr "<bookmark_value>ཌ་ཊ་པའི་ལོཊི་ལས་འག
msgctxt ""
"datapilot_edittable.xhp\n"
"hd_id3148663\n"
-"25\n"
"help.text"
msgid "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapilot_edittable.xhp\" name=\"Editing Pivot Tables\">Editing Pivot Tables</link></variable>"
msgstr "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapilot_edittable.xhp\" name=\"Editing DataPilot Tables\">ཌ་ཊ་པའི་ལོཊི་ཐིག་ཁྲམ་ཚུ་ ཞུན་དག་འབད་དོ་</link></variable>"
@@ -4369,7 +4124,6 @@ msgstr "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datap
msgctxt ""
"datapilot_edittable.xhp\n"
"par_id3150868\n"
-"26\n"
"help.text"
msgid "Click one of the buttons in the pivot table and hold the mouse button down. A special symbol will appear next to the mouse pointer."
msgstr "ཌ་ཊ་པའི་ལོཊི་གིས་གསར་བསྐྲུན་འབད་ཡོད་པའི་ཐིག་ཁྲམ་ནང་ལས་ ཨེབ་རྟ་གང་རུངཅིག་གུ་ཨེབ་གཏང་འབད་ དེ་ལས་ མཱའུསི་ཨེབ་རྟ་འདི་མར་སྦེ་བཟུང་། མཱའུསི་དཔག་བྱེད་གཞན་མི་ཅིག་ལུ་ དམིགས་བསལ་གྱི་བརྡ་མཚོན་ཅིག་འབྱུང་འོང་།"
@@ -4378,7 +4132,6 @@ msgstr "ཌ་ཊ་པའི་ལོཊི་གིས་གསར་བསྐ
msgctxt ""
"datapilot_edittable.xhp\n"
"par_id3145786\n"
-"27\n"
"help.text"
msgid "By dragging the button to a different position in the same row you can alter the order of the columns. If you drag a button to the left edge of the table into the row headings area, you can change a column into a row."
msgstr "ཨེབ་རྟ་འདི་ གྲལ་ཐིག་ཅོག་འཐད་པའི་གནས་ས་སོ་སོ་ཅིག་ནང་ལུ་ འདྲུད་པའི་ཐོག་ལས་ ཁྱོད་ཀྱིས་ ཀེར་ཐིག་གི་གོ་རིམ་ཚུ་བསྒྱུར་བཅོས་འབད་ཚུགས། ཨེབ་རྟ་འདི་ གྲལ་ཐིག་མགུ་རྒྱན་མངའ་ཁོངས་ གཡོན་གྱི་ཐིག་ཁྲམ་ཟུར་ཁ་ལུ་འདྲུད་པ་ཅིན་ ཁྱོད་ཀྱིས་ ཀེར་ཐིག་འདི་གྲལ་ཐིག་ཅིག་ལུ་ བསྒྱུར་བཅོས་འབད་ཚུགས།"
@@ -4395,7 +4148,6 @@ msgstr "ཌ་ཊ་པའི་ལོག་ཌའི་ལོག་ནང་
msgctxt ""
"datapilot_edittable.xhp\n"
"par_id3147434\n"
-"29\n"
"help.text"
msgid "To remove a button from the table, just drag it out of the pivot table. Release the mouse button when the mouse pointer positioned within the sheet has become a 'not allowed' icon. The button is deleted."
msgstr "ཨེབ་རྟ་འདི་ཐིག་ཁྲམ་ནང་ལས་རྩ་བསྐྲད་གཏང་དགོ་པ་ཅིན་ ཌ་ཊ་པའི་ལོཊི་ཐིག་ཁྲམ་གྱི་ཕྱི་ཁར་འདྲུད། མཱའུསི་དཔག་བྱེད་འདི་ལེབ་གྲངས་ནང་གནས་ཏེ་ཡོད་མི་འདི་'not allowed' ངོས་པར་ལུ་འགྱུརཝ་ད་ མཱའུསི་ཨེབ་རྟ་འདི་འཛིན་གྲོལ་འབད། ཨེབ་རྟ་འདི་བཏོན་གཏང་ཡི།"
@@ -4404,7 +4156,6 @@ msgstr "ཨེབ་རྟ་འདི་ཐིག་ཁྲམ་ནང་ལས
msgctxt ""
"datapilot_edittable.xhp\n"
"par_id3156442\n"
-"40\n"
"help.text"
msgid "To edit the pivot table, click a cell inside the pivot table and open the context menu. In the context menu you find the command <emph>Edit Layout</emph>, which displays the <emph>Pivot Table</emph> dialog for the current pivot table."
msgstr "ཌ་ཊ་པའི་ལོཊི་ཐིག་ཁྲམ་འདི་ཞུན་དག་འབད་དགོ་པ་ཅིན་ ཌ་ཊ་པའི་ལོཊི་ཐིག་ཁྲམ་ནང་གི་ནང་ཐིག་ཅིག་ལུ་ཨེབ་གཏང་འབད་ཞིནམ་ལས་ སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ། སྐབ་དོན་དཀར་ཆག་ནང་ལུ་ ད་ལྟོའི་ཌ་ཊ་པའི་ལོཊི་ཐིག་ཁྲམ་དོན་ལུ་ <emph>ཌ་ཊ་པའི་ལོཊི་</emph> ཌའི་ལོག་ བཀྲམ་སྟོན་འབད་མི་བརྡ་བཀོད་ <emph>འགོ་བཙུགས་</emph> འདི་མཐོང་ཚུགས།"
@@ -4637,7 +4388,6 @@ msgstr "<bookmark_value>ཌ་ཊ་པའི་ལོཊི་ལས་འག
msgctxt ""
"datapilot_tipps.xhp\n"
"hd_id3148663\n"
-"19\n"
"help.text"
msgid "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Selecting Pivot Table Output Ranges\">Selecting Pivot Table Output Ranges</link></variable>"
msgstr "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Selecting DataPilot Output Ranges\">ཌ་ཊ༌པའི་ལོཊི་ཨའུཊི་པུཊི་ཁྱབ་ཚད་ སེལ་འཐུ་འབད་དོ་</link></variable>"
@@ -4646,7 +4396,6 @@ msgstr "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot
msgctxt ""
"datapilot_tipps.xhp\n"
"par_id3154123\n"
-"20\n"
"help.text"
msgid "Click the button <emph>More</emph> in the <emph>Pivot Table</emph> dialog. The dialog will be extended."
msgstr "<emph>ཌ་ཊ་པའི་ལོཊི་</emph> ཌའི་ལོག་ནང་ལུ་ ཨེབ་རྟ་ <emph>ལེ་ཤ་</emph> གུ་ཨེབ་གཏང་འབད། ཌའི་ལོག་འདི་རྒྱ་བསྐྱེད་འབད་འོང་།"
@@ -4655,7 +4404,6 @@ msgstr "<emph>ཌ་ཊ་པའི་ལོཊི་</emph> ཌའི་ལོ
msgctxt ""
"datapilot_tipps.xhp\n"
"par_id3153771\n"
-"21\n"
"help.text"
msgid "You can select a named range in which the pivot table is to be created, from the <emph>Results to</emph> box. If the results range does not have a name, enter the coordinates of the upper left cell of the range into the field to the right of the <emph>Results to</emph> box. You can also click on the appropriate cell to have the coordinates entered accordingly."
msgstr "ཁྱོད་ཀྱིས་ <emph>གྲུབ་འབྲས་</emph>སྒྲོམ་ནང་ལས་ ཌ་ཊ་པའི་ལོཊི་ཐིག་ཁྲམ་འདི་གསར་བསྐྲུན་འབད་ནི་ཨིན་པའི་མིང་བཏགས་ཡོད་པའི་ཁྱབ་ཚད་ཅིག་ སེལ་འཐུ་འབད་ཚུགས། གྲུབ་འབྲས་ལུ་མིང་ཅིག་མེདཔ་ཨིན་པ་ཅིན་ ཁྱབ་ཚད་ཀྱི་ལྟག་་གི་གཡོཅན་ལུ་ཡོད་པའི་ནང་ཐིག་གི་ཆ་སྙོམ་འདི་ <emph>གྲུབ་འབྲས་</emph> སྒྲོམ་གྱི་གཡས་ཁ་ཐུག་གི་ས་སྒོའི་ནང་ལུ་བཙུགས། དེ་མ་ཚད་ ཆ་སྙོམ་ཚུ་ཚུལ་མཐུནམ་སྦེ་བཙུགས་ནི་ལུ་ འོས་ལྡན་གྱི་ནང་ཐིག་གུ་ཨེབ་གཏང་འབད།"
@@ -4664,7 +4412,6 @@ msgstr "ཁྱོད་ཀྱིས་ <emph>གྲུབ་འབྲས་</emp
msgctxt ""
"datapilot_tipps.xhp\n"
"par_id3146974\n"
-"23\n"
"help.text"
msgid "If you mark the <emph>Ignore empty rows</emph> check box, they will not be taken into account when the pivot table is created."
msgstr "ཁྱོད་ཀྱིས་ <emph>སྣང་མེད་་གྲལ་ཐིག་སྟོངམ་ </emph> གྱི་སྒྲོམ་འདི་རྟགས་བཀལ་བ་ཅིན་ ཌ་ཊ་པའི་ལོཊི་ཐིག་ཁྲམ་འདི་གསར་བསྐྲུན་འབད་བའི་ཚེ་ལས་ དེ་ཚུ་གིས་ རྩིས་མི་རྐྱབ།"
@@ -4673,7 +4420,6 @@ msgstr "ཁྱོད་ཀྱིས་ <emph>སྣང་མེད་་གྲ
msgctxt ""
"datapilot_tipps.xhp\n"
"par_id3145273\n"
-"24\n"
"help.text"
msgid "If the <emph>Identify categories</emph> check box is marked, the categories will be identified by their headings and assigned accordingly when the pivot table is created."
msgstr "<emph>ངེས་འཛིན་དབྱེ་རིམ་གྱི་</emph> ཞིབ་་དཔྱད་སྒྲོམ་འདི་རྟགས་བཀལ་ཡོད་པ་ཅིན་ ཊ་ཌ་པའི་ལོཊི་ཐིག་ཁྲམ་འདི་གསར་བསྐྲུན་འབད་བའི་ཚེ་ལས་ དབྱེ་རིམ་ཚུ་ མགོ་རྒྱན་ཚུ་གིས་ངེས་འཛིན་འབད་ནི་ཨིནམ་དང་ དེ་དང་འཁྲིལ་ཏེ་འགན་སྤྲོད་འབད་འོང་།"
@@ -4698,7 +4444,6 @@ msgstr "<bookmark_value>ལྟེ་ཤིང་ཐིག་ཁྲམ་ནང
msgctxt ""
"datapilot_updatetable.xhp\n"
"hd_id3150792\n"
-"33\n"
"help.text"
msgid "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Updating Pivot Tables\">Updating Pivot Tables</link></variable>"
msgstr "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Updating DataPilot Tables\">ཌ་ཊ་པའི་ལོཊི་ཐིག་ཁྲམ་ཚུ་ དུས་མཐུན་བཟོ་དོ་</link></variable>"
@@ -4707,7 +4452,6 @@ msgstr "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/dat
msgctxt ""
"datapilot_updatetable.xhp\n"
"par_id3154684\n"
-"34\n"
"help.text"
msgid "If the data of the source sheet has been changed, $[officename] recalculates the pivot table. To recalculate the table, choose <emph>Data - Pivot Table - Refresh</emph>. Do the same after you have imported an Excel pivot table into $[officename] Calc."
msgstr "འབྱུང་ཁུངས་ལེབ་གྲངས་ཀྱི་གནད་སྡུད་འདི་བསྒྱུར་བཅོས་འབད་ཡོད་པ་ཅིན་ $[officename] གིས་ ཌ་ཊ་པའི་ལོཊི་ཐིག་ཁྲམ་འདི་ལོག་རྩིས་བཏོནམ་ཨིན། ཐིག་ཁྲམ་ཚུ་ལོག་རྩིས་བཏོན་ནི་གི་དོན་ལུ་ <emph>གནད་སྡུད་ - ཌ༌ཊ་པའི་ལོཊི་ - ཡང་སེལ་</emph> ཚུ་གདམ་ཁ་རྐྱབས། ཨེག་སིལ་ལྟེ་ཤིང་ཐིག་ཁྲམ་འདི་ $[officename] ཀེལཀི་ནང་ལུ་ནང་འདྲེན་འབད་བའི་ཤུལ་ལུ་ དེ་དང་ཅོག་འཐདཔ་སྦེ་འབད།"
@@ -4956,7 +4700,6 @@ msgstr "<bookmark_value>ལེབ་གྲངས་ཚུ་གི་དོན
msgctxt ""
"design.xhp\n"
"hd_id3150791\n"
-"6\n"
"help.text"
msgid "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Selecting Themes for Sheets\">Selecting Themes for Sheets</link> </variable>"
msgstr "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Selecting Themes for Sheets\">ལེབ་གྲངས་དོན་ལུ་ བརྗོད་དོན་ཚུ་སེལ་འཐུ་འབད་དོ་</link></variable>"
@@ -4965,7 +4708,6 @@ msgstr "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=
msgctxt ""
"design.xhp\n"
"par_id3145786\n"
-"13\n"
"help.text"
msgid "$[officename] Calc comes with a predefined set of formatting themes that you can apply to your spreadsheets."
msgstr "$[officename] ཀེལཀི་འདི་ ཁྱོད་རའི་ཤོག་ཁྲམ་ལུ་འཇུག་སྤྱོད་འབད་བཏུབ་པའི་རྩ་སྒྲིག་བརྗོད་དོན་གྱི་ སྔ་གོང་ལས་ངེས་འཛིན་འབད་ཡོད་པའི་ཆ་ཚན་ཅིག་གི་ཐོག་ལས་ འབྱུངམ་ཨིན།"
@@ -4974,7 +4716,6 @@ msgstr "$[officename] ཀེལཀི་འདི་ ཁྱོད་རའི་
msgctxt ""
"design.xhp\n"
"par_id3154490\n"
-"16\n"
"help.text"
msgid "It is not possible to add themes to Calc, and they cannot be modified. However, you can modify their styles after you apply them to a spreadsheet."
msgstr "ཀེལཀི་ལུ་བརྗོད་དོན་ཚུ་ཁ་སྐོང་དང་ལེགས་བཅོས་འབད་མི་ཚུགསཔ། ག་དེ་འབད་རུང་ དེ་ཚུ་ཁྱོད་རའི་ཤོག་ཁྲམ་ལུ་འཇུག་སྤྱོད་འབད་བའི་ཤུལ་ལས་ ཁྱོད་ཀྱིས་ དེའི་བཟོ་རྣམ་ཚུ་ལེགས་བཅོས་འབད་ཚུགས།"
@@ -4983,7 +4724,6 @@ msgstr "ཀེལཀི་ལུ་བརྗོད་དོན་ཚུ་ཁ་
msgctxt ""
"design.xhp\n"
"par_id3154757\n"
-"17\n"
"help.text"
msgid "Before you format a sheet with a theme, you have to apply at least one custom cell style to the cells on the sheet. You can then change the cell formatting by selecting and applying a theme in the <emph>Theme Selection</emph> dialog."
msgstr "ཁྱོད་ཀྱིས་ བརྗོད་དོན་དང་གཅིཁ་་ཁར་ལེབ་གྲངས་ཅིག་རྩ་སྒྲིག་མ་འབད་བའི་ཧེ་མ་ ལེབ་གྲངས་གུ་གི་ནང་ཐིག་ཚུ་ལུ་ སྲོལ་སྒྲིག་ནང་ཐིག་གཅིག་ག་དེ་འབད་རུང་འཇུག་སྤྱོད་འབད་དགོ དེ་ལས་ <emph>བརྗོད་དོན་སེལ་འཐུ་</emph> ཌའི་ལོག་ནང་ལུ་ སེལ་འཐུ་དང་འཇུག་སྤྱོད་འབད་བའི་ཐོག་ལས་ ནང་ཐིག་རྩ་སྒྲིག་འདི་བསྒྱུར་བཅོས་འབད་ཚུགས།"
@@ -4992,7 +4732,6 @@ msgstr "ཁྱོད་ཀྱིས་ བརྗོད་དོན་དང་
msgctxt ""
"design.xhp\n"
"par_id3156382\n"
-"18\n"
"help.text"
msgid "To apply a custom cell style to a cell, you can open the Styles and Formatting window and, in its lower list box, set the Custom Styles view. A list of the existing custom defined cell styles will be displayed. Double click a name from the Styles and Formatting window to apply this style to the selected cells."
msgstr "ནང་ཐིག་ཅིག་ལུ་ སྲོལ་སྒྲིག་ནང་ཐིག་བཟོ་རྣམ་ཅིག་འཇུག་སྤྱོད་འབད་ནི་ལུ་ ཁྱོད་ཀྱིས་ བཟོ་རྣམ་དང་རྩ་སྒྲིག་སྒོ་སྒྲིག་གཉིས་ཁ་ཕྱེ་ཚུགསཔ་དང་ འདི་གི་འོག་གི་ཐོ་ཡིག་སྒྲོམ་ནང་ལུ་ སྲོལ་སྒྲིག་བཟོ་རྣམ་གྱི་མཐོང་སྣང་ཚུ་གཞི་སྒྲིག་འབད་ཚུགས། ཡོད་བཞིན་པའི་སྲོལ་སྒྲིག་ ངེས་འཛིན་འབད་ཡོད་པའི་ནང་ཐིག་གི་བཟོ་རྣམ་ཚུའི་ཐོ་ཡིག་ཅིག་ བཀྲམ་སྟོན་འབད་ནི་ཨིན། བཟོ་རྣམ་འདི་སེལ་འཐུ་འབད་ཡོད་པའི་ནང་ཐིག་ཚུ་ལུ་ འཇུག་སྤྱོད་འབད་ནི་གི་དོན་ལས་ བཟོ་རྣམ་དང་རྩ་སྒྲིག་སྒོ་སྒྲིག་ནང་ལས་ མིང་ཅིག་གུ་ཚར་གཉིས་ཨེབ་གཏང་འབད།"
@@ -5001,7 +4740,6 @@ msgstr "ནང་ཐིག་ཅིག་ལུ་ སྲོལ་སྒྲི
msgctxt ""
"design.xhp\n"
"par_id3153963\n"
-"19\n"
"help.text"
msgid "To apply a theme to a spreadsheet:"
msgstr "ཤོག་ཁྲམ་ལུ་བརྗོད་དོན་ཅིག་འཇུག་སྤྱོད་འབད་ནི་གི་དོན་ལུ་:"
@@ -5010,7 +4748,6 @@ msgstr "ཤོག་ཁྲམ་ལུ་བརྗོད་དོན་ཅིག
msgctxt ""
"design.xhp\n"
"par_id3146920\n"
-"15\n"
"help.text"
msgid "Click the <emph>Choose Themes</emph> icon in the <emph>Tools</emph> bar."
msgstr "<emph>ལག་ཆས་ཚུ་</emph> ཕྲ་རིང་ནང་ <emph>བརྗོད་དོན་གདམ་ཁ་རྐྱབས་</emph> ངོས་པར་གུ་ ཨེབ་གཏང་འབད།"
@@ -5019,7 +4756,6 @@ msgstr "<emph>ལག་ཆས་ཚུ་</emph> ཕྲ་རིང་ནང་
msgctxt ""
"design.xhp\n"
"par_id3148488\n"
-"20\n"
"help.text"
msgid "The <emph>Theme Selection</emph> dialog appears. This dialog lists the available themes for the whole spreadsheet and the Styles and Formatting window lists the custom styles for specific cells."
msgstr "<emph> བརྗོད་དོན་སེལ་འཐུ་</emph> ཌའི་ལོག་འབྱུངམ་ཨིན། ཌའི་ལོག་འདི་གིས་ ཤོག་ཁྲམ་ཧྲིལ་བུམ་གྱི་དོན་ལུ་འཐོབ་ཚུགས་པའི་བརྗོད་དོན་ཚུ་ཐོ་བཀོད་འབདཝ་ཨིནམ་དང་ བཟོ་རྣམ་དང་རྩ་སྒྲིག་སྒོ་སྒྲིག་གིས་ དམིགས་བསལ་ནང་ཐིག་གི་དོན་ལུ་ སྲོལ་སྒྲིག་བཟོ་རྣམ་ཚུ་ཐོ་བཀོད་འབདཝ་ཨིན།"
@@ -5028,7 +4764,6 @@ msgstr "<emph> བརྗོད་དོན་སེལ་འཐུ་</emph> ཌ
msgctxt ""
"design.xhp\n"
"par_id3155114\n"
-"9\n"
"help.text"
msgid "In the <emph>Theme Selection </emph>dialog, select the theme that you want to apply to the spreadsheet."
msgstr "<emph>བརྗོད་དོན་སེལ་འཐུ་ </emph> ཌའི་ལོག་ནང་ ཤོག་ཁྲམ་ལུ་འཇུག་སྤྱོད་འབད་དགོ་མནོ་མི་་བརྗོད་དོན་འདི་ སེལ་འཐུ་འབད།"
@@ -5037,7 +4772,6 @@ msgstr "<emph>བརྗོད་དོན་སེལ་འཐུ་ </emph> ཌ
msgctxt ""
"design.xhp\n"
"par_id3150090\n"
-"21\n"
"help.text"
msgid "Click OK"
msgstr "བཏུབ་ལུ་ཨེབ་གཏང་འབད།"
@@ -5046,7 +4780,6 @@ msgstr "བཏུབ་ལུ་ཨེབ་གཏང་འབད།"
msgctxt ""
"design.xhp\n"
"par_id3150201\n"
-"22\n"
"help.text"
msgid "As soon as you select another theme in the <emph>Theme Selection</emph> dialog, some of the properties of the custom style will be applied to the current spreadsheet. The modifications will be immediately visible in your spreadsheet."
msgstr "ཁྱོད་ཀྱིས་ <emph>བརྗོད་དོན་སེལ་འཐུ་</emph> ཌའི་ལོག་ནང་ བརྗོད་དོན་གཞན་ཅིག་སེལ་འཐུ་འབད་བའི་ཚེ་ར་ སྲོལ་སྒྲིག་བཟོ་རྣམ་གྱི་རྒྱུ་དངོས་ལ་ལོ་ཅིག་ ད་ལྟོའི་ཤོག་ཁྲམ་ལུ་འཇུག་སྤྱོད་འབད་འོང་། ལེགས་བཅོས་ཚུ་མགྱོགས་པ་ར་ ཁྱོད་རའི་ཤོག་ཁྲམ་ནང་མཐོང་ཚུགས།"
@@ -5055,7 +4788,6 @@ msgstr "ཁྱོད་ཀྱིས་ <emph>བརྗོད་དོན་ས
msgctxt ""
"design.xhp\n"
"par_id3146979\n"
-"12\n"
"help.text"
msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme selection\">Theme selection</link>"
msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme selection\">བརྗོད་དོན་སེལ་འཐུ་</link>"
@@ -5080,7 +4812,6 @@ msgstr ""
msgctxt ""
"edit_multitables.xhp\n"
"hd_id3149456\n"
-"3\n"
"help.text"
msgid "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\" name=\"Copying to Multiple Sheets\">Copying to Multiple Sheets</link> </variable>"
msgstr "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\" name=\"Copying to Multiple Sheets\">སྣ་མང་ལེབ་གྲངས་ལུ་ འདྲ་བཤུས་རྐྱབ་དོ་</link></variable>"
@@ -5089,7 +4820,6 @@ msgstr "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_mul
msgctxt ""
"edit_multitables.xhp\n"
"par_id3150868\n"
-"6\n"
"help.text"
msgid "In $[officename] Calc, you can insert values, text or formulas that are simultaneously copied to other selected sheets of your document."
msgstr "$[officename] ཀེལཀི་ནང་ ཁྱོད་ཀྱིས་ ཁྱོད་རའི་ཡིག་ཆ་ནང་ སེལ་འཐུ་འབད་ཡོད་པའི་ལེབ་གྲངས་ལ་ལོ་ཅིག་ལུ་ དུས་མཉམ་སྦེ་འདྲ་བཤུས་བརྐྱབས་ཡོད་པའི་ བེ་ལུསི་དང་ཚིག་ཡིག་ ཡང་ན་ མན་ངག་ཚུ་བཙུགས་ཚུགས།"
@@ -5098,7 +4828,6 @@ msgstr "$[officename] ཀེལཀི་ནང་ ཁྱོད་ཀྱིས་
msgctxt ""
"edit_multitables.xhp\n"
"par_id3153768\n"
-"8\n"
"help.text"
msgid "Select all desired sheets by holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key and clicking the corresponding register tabs that are still gray at the bottom margin of the workspace. All selected register tabs are now white."
msgstr ""
@@ -5115,7 +4844,6 @@ msgstr ""
msgctxt ""
"edit_multitables.xhp\n"
"par_id3147435\n"
-"7\n"
"help.text"
msgid "Now when you insert values, text or formulas into the active sheet, they will also appear in the identical positions in the other selected sheets. For example, data entered in cell A1 of the active sheet is automatically entered into cell A1 of any other seleted sheet."
msgstr ""
@@ -5140,7 +4868,6 @@ msgstr ""
msgctxt ""
"filters.xhp\n"
"hd_id3153896\n"
-"70\n"
"help.text"
msgid "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Applying Filters\">Applying Filters</link></variable>"
msgstr "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Applying Filters\">ཚགས་མ་འཇུག་སྤྱོད་འབད་དོ་</link></variable>"
@@ -5149,7 +4876,6 @@ msgstr "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" nam
msgctxt ""
"filters.xhp\n"
"par_id3150869\n"
-"2\n"
"help.text"
msgid "Filters and advanced filters allow you to work on certain filtered rows (records) of a data range. In the spreadsheets in $[officename] there are various possibilities for applying filters."
msgstr "ཚགས་མ་དང་མཐོ་རིམ་ཅན་གྱི་ཚགས་མ་ཚུ་གིས་ཁྱོད་ གནད་སྡུད་ཁྱབ་ཚད་ཀྱི་བཙགས་ཡོད་པའི་གྲལ་ཐིག་(དྲན་ཐོ་)ལ་ལོ་ཅིག་གུ་ལཱ་འབད་བཅུགཔ་ཨིན། $[officename] ནང་གི་ཤོག་ཁྲམ་ནང་ ཚགས་མ་འཇུག་སྤྱོད་འབད་ཚུགས་པའི་གནད་དོན་སྣ་ཚོགས་ཡོདཔ་ཨིན།"
@@ -5158,7 +4884,6 @@ msgstr "ཚགས་མ་དང་མཐོ་རིམ་ཅན་གྱི་
msgctxt ""
"filters.xhp\n"
"par_id3155131\n"
-"3\n"
"help.text"
msgid "One use for the <emph>AutoFilter</emph> function is to quickly restrict the display to records with identical entries in a data field."
msgstr "<emph>རང་བཞིན་ཚགས་མ་</emph> ལས་འགན་གྱི་དོན་ལུ་ ལག་ལེན་གཅིག་འདི་ གནད་སྡུད་ས་སྒོ་ནང་ཅོག་འཐད་པའི་ཐོ་བཀོད་ཚུ་དང་གཅིག་ཁར་དྲན་ཐོ་བཞག་ནི་ལུ་ བཀྲམ་སྟོན་འབད་ནི་ལས་མགྱོགས་པ་ར་ བཀག་དམ་འབད་ནི་འདི་ཨིན།"
@@ -5167,7 +4892,6 @@ msgstr "<emph>རང་བཞིན་ཚགས་མ་</emph> ལས་འག
msgctxt ""
"filters.xhp\n"
"par_id3146119\n"
-"4\n"
"help.text"
msgid "In the <emph>Standard Filter</emph> dialog, you can also define ranges which contain the values in particular data fields. You can use the standard filter to connect the conditions with either a logical AND or a logical OR operator."
msgstr "<emph>ཚགས་མ་</emph> ཌའི་ལོག་ནང་ དམིགས་བསལ་གྱི་གནད་སྡུད་ས་སྒོ་ནང་ བེ་ལུསི་དང་ལྡན་པའི་ཁྱབ་ཚད་ཡང་ངེས་འཛིན་འབད་ཚུགས། ཚད་ལྡན་གྱི་ཚགས་མ་འདི་ གཏན་ཚིགས་ཅན་གྱི་ཨེ་ཨེན་ཌི་ ཡང་ན་ གཏན་ཚིགས་ཅན་གྱི་ཨོ་ཨར་བཀོལ་སྤྱོད་པ་ཅིག་གི་ཐོག་ལས་ གནས་སྟངས་གསུམ་གྱི་བར་ ལག་ལེན་འཐབ་བཏུབ།"
@@ -5176,7 +4900,6 @@ msgstr "<emph>ཚགས་མ་</emph> ཌའི་ལོག་ནང་ དམ
msgctxt ""
"filters.xhp\n"
"par_id3150010\n"
-"5\n"
"help.text"
msgid "The <emph>Advanced filter</emph> allows up to a total of eight filter conditions. With advanced filters you enter the conditions directly into the sheet."
msgstr "<emph>མཐོ་རིམ་ཅན་གྱི་ཚགས་མ་</emph> གིས་ བཅད་མཚམས་ཀྱི་གནས་སྟངས་གསུམ་ ལྷགཔ་ཨིནམ་དང་ ཚགས་མའི་གནས་སྟངས་བརྒྱད་ཚུན་འབད་བཅུགཔ་ཨིན། མཐོ་རིམ་ཅན་གྱི་ཚགས་མ་དང་བཅས་ གནས་སྟངས་ཚུ་ཐད་ཀར་དུ་ལེབ་གྲངས་ནང་ལུ་བཙུགས།"
@@ -5342,7 +5065,6 @@ msgid "Enter the text to find in the <emph>Find</emph> text box."
msgstr ""
#: finding.xhp
-#, fuzzy
msgctxt ""
"finding.xhp\n"
"par_id9121982\n"
@@ -5351,7 +5073,6 @@ msgid "Either click <emph>Find Next</emph> or <emph>Find All</emph>."
msgstr "ཡང་ཅིན་ <emph>འཚོལ་</emph> ཡང་ན་ <emph>ཆ་མཉམ་འཚོལ་</emph>ཨེབ་གཏང་།"
#: finding.xhp
-#, fuzzy
msgctxt ""
"finding.xhp\n"
"par_id3808404\n"
@@ -5435,7 +5156,6 @@ msgstr ""
msgctxt ""
"format_table.xhp\n"
"hd_id3154125\n"
-"6\n"
"help.text"
msgid "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Designing Spreadsheets\">Formatting Spreadsheets</link></variable>"
msgstr "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Designing Spreadsheets\">ཤོག་ཁྲམཚུ་ རྩ་སྒྲིག་འབད་དོ་</link></variable>"
@@ -5444,7 +5164,6 @@ msgstr "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table
msgctxt ""
"format_table.xhp\n"
"hd_id3153912\n"
-"13\n"
"help.text"
msgid "Formatting Text in a Spreadsheet"
msgstr "ཚིག་ཡིག་འདི་ ཤོག་ཁྲམ་ཅིག་ནང་ རྩ་སྒྲིག་བཟོ་དོ་"
@@ -5453,7 +5172,6 @@ msgstr "ཚིག་ཡིག་འདི་ ཤོག་ཁྲམ་ཅིག
msgctxt ""
"format_table.xhp\n"
"par_id3144772\n"
-"14\n"
"help.text"
msgid "Select the text you want to format."
msgstr "ཁྱོད་ཀྱིས་རྩ་སྒྲིག་འབད་ནི་ཨིན་མི་ཚིག་ཡིག་འདི་ སེལ་འཐུ་འབད།"
@@ -5462,7 +5180,6 @@ msgstr "ཁྱོད་ཀྱིས་རྩ་སྒྲིག་འབད་ན
msgctxt ""
"format_table.xhp\n"
"par_id3155268\n"
-"15\n"
"help.text"
msgid "Choose the desired text attributes from the <emph>Formatting </emph>Bar. You can also choose <emph>Format - Cells</emph>. The <emph>Format Cells</emph> dialog will appear in which you can choose various text attributes on the <emph>Font</emph> tab page."
msgstr "<emph> རྩ་སྒྲིག་ </emph> ཕྲ་རིང་ནང་ལས་ རེ་འདུན་བསྐྱེད་ཡོད་པའི་ཚིག་ཡིག་ཁྱད་ཆོས་ཚུ་གདམ་ཁ་རྐྱབས། དེ་གིས་མ་ཚད་པར་ <emph>རྩ་སྒྲིག་ - ནང་ཐིག་ཚུ་</emph> ཡང་གདམ་ཁ་རྐྱབས། <emph> རྩ་སྒྲིག་ནང་ཐིག་</emph> ཌའི་ལོག་འདི་འབྱུང་འོང་ དེ་བསྒང་ཁྱོད་ཀྱིས་ <emph> རྩ་སྒྲིག་ནང་ཐིག་</emph> མཆོང་ལྡེ་ཤོག་ལེབ་གུ་ ཚིག་ཡིག་ཁྱད་ཆོས་སྣ་ཚོགས་ གདམ་ཁ་རྐྱབས་ཚུགས།"
@@ -5471,7 +5188,6 @@ msgstr "<emph> རྩ་སྒྲིག་ </emph> ཕྲ་རིང་ནང
msgctxt ""
"format_table.xhp\n"
"hd_id3149899\n"
-"16\n"
"help.text"
msgid "Formatting Numbers in a Spreadsheet"
msgstr "ཤོག་ཁྲམ་ཅིག་ནང་ལུ་ ཨང་གྲངས་ཚུ་རྩ་སྒྲིག་འབད་དོ།"
@@ -5480,7 +5196,6 @@ msgstr "ཤོག་ཁྲམ་ཅིག་ནང་ལུ་ ཨང་གྲ
msgctxt ""
"format_table.xhp\n"
"par_id3159226\n"
-"17\n"
"help.text"
msgid "Select the cells containing the numbers you want to format."
msgstr "ཁྱོད་ཀྱིས་ རྩ་སྒྲིག་འབད་དགོ་མནོ་མི་ ཨང་གྲངས་དང་ལྡན་པའི་ནང་ཐིག་ཚུ་ སེལ་འཐུ་འབད།"
@@ -5489,7 +5204,6 @@ msgstr "ཁྱོད་ཀྱིས་ རྩ་སྒྲིག་འབད་
msgctxt ""
"format_table.xhp\n"
"par_id3150046\n"
-"18\n"
"help.text"
msgid "To format numbers in the default currency format or as percentages, use the icons on the <emph>Formatting </emph>Bar. For other formats, choose <emph>Format - Cells</emph>. You can choose from the preset formats or define your own on the <emph>Numbers</emph> tab page."
msgstr "སྔོན་སྒྲིག་དངུལ་གྱི་རྩ་སྒྲིག་ནང་ཨང་གྲངས་རྩ་སྒྲིག་ ཡང་ན་ བརྒྱ་ཆ་སྦེ་བཏོན་ནི་ལུ་ <emph> རྩ་སྒྲིག་ </emph> ཕྲ་རིང་གུ་ལུ་ ངོས་པར་ཚུ་ལག་ལེན་འཐབ། གཞན་རྩ་སྒྲིག་གི་དོན་ལུ་ <emph> རྩ་སྒྲིག་ - ནང་ཐིག་</emph> འདི་གདམ་ཁ་རྐྱབས། ཁྱོད་ཀྱིས་ སྔར་སྒྲིག་མན་ངག་ནང་ལས་ གདམ་ཁ་རྐྱབས་བཏུབ་དང་ ཡང་ན་ <emph>Numbers</emph> མཆོང་ལྡེ་ཤོག་ལེབ་གུ་ལུ་ རང་རང་གིས་ ངེས་འཛིན་འབད་བཏུབ།"
@@ -5498,7 +5212,6 @@ msgstr "སྔོན་སྒྲིག་དངུལ་གྱི་རྩ་ས
msgctxt ""
"format_table.xhp\n"
"hd_id3153483\n"
-"19\n"
"help.text"
msgid "Formatting Borders and Backgrounds for Cells and Pages"
msgstr "ནང་ཐིག་དང་ཤོག་ལེབ་ཚུའི་དོན་ལུ་ རྩ་སྒྲ྄ིག་མཐའ་མཚམས་དང་རྒྱབ་གཞི་ཚུ།"
@@ -5507,7 +5220,6 @@ msgstr "ནང་ཐིག་དང་ཤོག་ལེབ་ཚུའི་ད
msgctxt ""
"format_table.xhp\n"
"par_id3154733\n"
-"20\n"
"help.text"
msgid "You can assign a format to any group of cells by first selecting the cells (for multiple selection, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when clicking), and then activating the <emph>Format Cells</emph> dialog in <item type=\"menuitem\">Format - Cell</item>. In this dialog, you can select attributes such as shadows and backgrounds."
msgstr ""
@@ -5516,17 +5228,14 @@ msgstr ""
msgctxt ""
"format_table.xhp\n"
"par_id3145116\n"
-"21\n"
"help.text"
msgid "To apply formatting attributes to an entire sheet, choose <emph>Format - Page</emph>. You can define headers and footers, for example, to appear on each printed page."
msgstr "ལེབ་གྲངས་ཧྲིལ་བུ་ལུ་ རྩ་སྒྲིག་ཁྱད་ཆོས་ཚུ་འཇུག་སྤྱོད་འབད་ནི་ལུ་ <emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་</emph> གདམ་ཁ་རྐྱབས། ཁྱོད་ཀྱིས་ དཔེར་ན་ དཔར་བསྐྲུན་འབད་ཡོད་པའི་ཤོག་ལེབ་རེ་རེའི་གུ་འབྱུང་ནི་གི་དོན་ལུ་ མགོ་ཡིག་དང་མཇུག་ཡིག་གཉིས་ ངེས་འཛིན་འབད་ཚུགས།"
#: format_table.xhp
-#, fuzzy
msgctxt ""
"format_table.xhp\n"
"par_id3145389\n"
-"22\n"
"help.text"
msgid "An image that you have loaded with <item type=\"menuitem\">Format - Page - Background</item> is only visible in print or in the print preview. To display a background image on screen as well, insert the graphic image by choosing <item type=\"menuitem\">Insert - Image - From File</item> and arrange the image behind the cells by choosing <item type=\"menuitem\">Format - Arrange - To Background</item>. Use the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> to select the background image."
msgstr "ཁྱོད་ཀྱིས་ <item type=\"menuitem\">རྩ་སྒྲིག་ - ཤོག་ལེབ་ - རྒྱབ་་གཞི་</item> དང་གཅིག་ཁར་མངོན་གསལ་འབད་ཡོད་པའི་གཟུགས་བརྙན་འདི་ དཔར་བསྐྲུན་ ཡང་ན་ ཤོག་ལེབ་སྔོན་ལྟའི་ནང་རྐྱངམ་ཅིག་མཐོང་ཚུགས། རྒྱབ་གཞིའི་གཟུགས་བརྙན་ཅིག་ གསལ་གཞིའི་གུ་ བཀྲམ་སྟོན་འབད་ནི་ལུ་ <item type=\"menuitem\">བཙུགས་ - པར་ - ཡིག་སྣོད་ནང་ལས་</item> གདམ་ཁ་རྐྱབས་པའི་ཐོག་ལས་ ཚད་རིས་གཟུགས་བརྙན་བཙུགས་ དེ་ལས་ <item type=\"menuitem\">རྩ་སྒྲིག་ - བདེ་ཞིབ་ - རྒྱབ་གཞི་ལུ་</item> གདམ་ཁ་རྐྱབས་པའི་ཐོག་ལས་ གཟུགས་བརྙན་འདི་ནང་ཐིག་གི་རྒྱབ་ཁར་བདེ་ཞིབ་འབད། རྒྱབ་གཞིའི་གཟུགས་བརྙན་སེལ་འཐུ་འབད་ནི་གི་དོན་ལུ་ <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">འགྲུལ་བསྐྱོད་</link> འདི་ལག་ལེན་འཐབ།"
@@ -5567,7 +5276,6 @@ msgstr "<bookmark_value>ཨང་ཚུ་ ཐིག་ཁྲམ་ཚུ་ན
msgctxt ""
"format_value.xhp\n"
"hd_id3145367\n"
-"4\n"
"help.text"
msgid "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\" name=\"Formatting Numbers With Decimals\">Formatting Numbers With Decimals</link></variable>"
msgstr "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\" name=\"Formatting Numbers With Decimals\">བཅུ་ཚག་དང་བཅས་ཨང་གྲངས་ཚུ་ རྩ་སྒྲིག་འབད་དོ་</link></variable>"
@@ -5576,7 +5284,6 @@ msgstr "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value
msgctxt ""
"format_value.xhp\n"
"par_id3148576\n"
-"5\n"
"help.text"
msgid "Enter a number into the sheet, for example, 1234.5678. This number will be displayed in the default number format, with two decimal places. You will see 1234.57 when you confirm the entry. Only the display in the document will be rounded off; internally, the number retains all four decimal places after the decimal point."
msgstr "ལེབ་གྲངས་ནང་ཨང་གྲངས་བཙུགས་ དཔེར་ན་ ༡༢༣༤་༥༦༧༨། ཨང་གྲངས་འདི་ བཅུ་ཚག་ས་གནས་གཉིས་དང་གཅིག་ཁར་ སྔོན་སྒྲིག་ཨང་གྲངས་རྩ་སྒྲིག་ནང་ལུ་ བཀྲམ་སྟོན་འབད་འོང་། ཐོ་བཀོད་འདི་ངེས་དཔྱད་འབད་བའི་སྐབས་ལུ་ ༡༢༣༤་༥༧ འདི་མཐོང་འོང་། ཡིག་ཆ་ནང་བཀྲམ་སྟོན་འབད་མི་རྐྱངམ་ཅིག་ ཧྲིལ་ཨང་བཟོ་ཚུགས་ བཅུ་ཚག་ས་ཚིགས་ཀྱི་ཤུལ་ལུ་ ཨང་གྲངས་ཚུ་ནང་ལུ་སྦེ་ བཅུ་ཚག་ས་གནས་བཞིཔ་ཆ་མཉམ་ར་ བདག་བཟུང་འབདཝ་ཨིན།"
@@ -5585,7 +5292,6 @@ msgstr "ལེབ་གྲངས་ནང་ཨང་གྲངས་བཙུག
msgctxt ""
"format_value.xhp\n"
"par_id3154012\n"
-"12\n"
"help.text"
msgid "To format numbers with decimals:"
msgstr "ཨང་གྲསང་ཚུ་བཅུ་ཚག་དང་བཅས་ རྩ་སྒྲིག་འབད་ནི་ལུ་:"
@@ -5594,7 +5300,6 @@ msgstr "ཨང་གྲསང་ཚུ་བཅུ་ཚག་དང་བཅས
msgctxt ""
"format_value.xhp\n"
"par_id3147394\n"
-"6\n"
"help.text"
msgid "Set the cursor at the number and choose <emph>Format - Cells</emph> to start the <emph>Format Cells</emph> dialog."
msgstr "ཨང་གྲངས་ལུ་འོད་རྟགས་གཞི་སྒྲིག་འབད་ཞིནམ་ལས་ <emph>རྩ་སྒྲིག་ནང་ཐིག་</emph> ཌའི་ལོག་འགོ་བཙུགས་ནི་གི་དོན་ལུ་ <emph>རྩ་སྒྲིག་ - ནང་ཐིག་ཚུ་</emph> གདམ་ཁ་རྐྱབས།"
@@ -5603,7 +5308,6 @@ msgstr "ཨང་གྲངས་ལུ་འོད་རྟགས་གཞི་
msgctxt ""
"format_value.xhp\n"
"par_id3153157\n"
-"9\n"
"help.text"
msgid "On the <emph>Numbers</emph> tab you will see a selection of predefined number formats. In the bottom right in the dialog you will see a preview of how your current number would look if you were to give it a particular format."
msgstr "ཁྱོད་ཀྱིས་ <emph>ཨང་གྲངས་</emph> མཆོང་ལྡེ་གུ་ སྔ་གོང་ལས་ངེས་འཛིན་འབད་ཡོད་པའི་ཨང་གྲངས་རྩ་སྒྲིག་ཚུ་ མཐོང་ཚུགས། དོ་རུང་ ཌའི་ལོག་གི་གཤམ་གྱི་གཡས་ལུ་ ཁྱོད་ཀྱིས་ དེ་ལུ་དམིགས་བསལ་གྱི་རྩ་སྒྲིག་ཅིག་བྱིན་པ་ཅིན་ ད་ལྟོའི་ཨང་གྲངས་འདི་ག་དེ་སྦེ་མཐོང་ནི་ཨིན་ནའི་སྔོན་ལྟ་ཅིག་ མཐོང་ཚུགས།"
@@ -5620,7 +5324,6 @@ msgstr "<image id=\"img_id3149021\" src=\"cmd/sc_numberformatincdecimals.png\" w
msgctxt ""
"format_value.xhp\n"
"par_id3149256\n"
-"10\n"
"help.text"
msgid "If you only want to modify the number of the decimal places displayed, the easiest method is to use the <emph>Number Format: Add Decimal Place</emph> or <emph>Number Format: Delete Decimal Place</emph> icons on the Formatting Bar."
msgstr "ཁྱོད་ཀྱིས་ བཀྲམ་སྟོན་འབད་ཡོད་པའི༌བཅུ་ཚག་ས་གནས་ཀྱི་ཨང་གྲངས་ཚུ་རྐྱངམ་ཅིག་ལེགས་བཅོས་འབད་དགོ་མནོ་བ་ཅིན་ ཐབས་ལམ་འཇམ་ཤོས་ར་ <emph>ཨང་གྲངས་རྩ་སྒྲིག་འདི་ལག་ལེན་འཐབ་ནི་དང་ : བཅུ་ཚག་ས་གནས་ </emph> ཡང་ན་ <emph> ཨངགྲངས་རྩ་སྒྲིག་ཁ་སྐོང་བརྐྱབ་ནི་: དེ་ལས་ རྩ་སྒྲིག་ཕྲ་རིང་གུ་ བཅུ་ཚག་ས་གནས་ </emph> ངོས་པར་ཚུ་བཏོན་གཏང་ནི་འདི་ཨིན།"
@@ -5645,7 +5348,6 @@ msgstr ""
msgctxt ""
"format_value_userdef.xhp\n"
"hd_id3143268\n"
-"26\n"
"help.text"
msgid "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\" name=\"User-defined Number Formats\">User-defined Number Formats</link></variable>"
msgstr "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\" name=\"User-defined Number Formats\">ལག་ལེན་པ་ངེས་འཛིན་འབད་ཡོད་པའི་ཨང་གྲངས་རྩ་སྒྲིག་</link></variable>"
@@ -5654,7 +5356,6 @@ msgstr "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/form
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3150400\n"
-"1\n"
"help.text"
msgid "You can define your own number formats to display numbers in <item type=\"productname\">%PRODUCTNAME</item> Calc."
msgstr "ཁྱོད་ཀྱིས་ <item type=\"productname\">%PRODUCTNAME</item> ཀེལཀི་ནང་ལུ་ ཨང་གྲངས་ཚུ་བཀྲམ་སྟོད་འབད་ནི་གི་དོན་ལུ་ ཁྱོད་རའི་ཨང་གྲངས་རྩ་སྒྲིག་འདི་ངེས་འཛིན་འབད་ཚུགས།"
@@ -5663,7 +5364,6 @@ msgstr "ཁྱོད་ཀྱིས་ <item type=\"productname\">%PRODUCTNAME<
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3150767\n"
-"2\n"
"help.text"
msgid "As an example, to display the number 10,200,000 as 10.2 Million:"
msgstr "དཔེར་ན་ ཨང་གྲངས་ ༡༠༢༠༠༠༠༠ འདི་ ༡༠་༢ ས་ཡ་ཅིག་སྦེ་ བཀྲམ་སྟོན་འབད་ནི་གི་དོན་ལུ་:"
@@ -5672,7 +5372,6 @@ msgstr "དཔེར་ན་ ཨང་གྲངས་ ༡༠༢༠༠༠༠༠
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3150868\n"
-"3\n"
"help.text"
msgid "Select the cells to which you want to apply a new, user-defined format."
msgstr "ཁྱོད་ཀྱིས་ ལག་ལེན་པ་ངེས་འཛིན་འབད་ཡོད་མི་རྩ་སྒྲིག་གསརཔ་ཅིག་ འཇུག་སྤྱོད་འབད་དགོ་མནོ་མི་ནང་ཐིག་ཚུ་སེལའ་ཐུ་འབད།"
@@ -5681,7 +5380,6 @@ msgstr "ཁྱོད་ཀྱིས་ ལག་ལེན་པ་ངེས་
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3149664\n"
-"4\n"
"help.text"
msgid "Choose <emph>Format - Cells - Numbers</emph>."
msgstr "<emph>རྩ་སྒྲིག་ - ནང་ཐིག་ - ཨང་གྲངས་</emph> གདམ་ཁ་རྐྱབས།"
@@ -5690,7 +5388,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ནང་ཐིག་ - ཨང་ག
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3149260\n"
-"5\n"
"help.text"
msgid "In the <emph>Categories</emph> list box select \"User-defined\"."
msgstr "<emph>དབྱེ་རིམ་</emph> ཐོ་ཡིག་སྒྲོམ་ནང་ \"User-defined\" སེལ་འཐུ་འབད།"
@@ -5699,7 +5396,6 @@ msgstr "<emph>དབྱེ་རིམ་</emph> ཐོ་ཡིག་སྒྲ
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3148646\n"
-"6\n"
"help.text"
msgid "In the <emph>Format code</emph> text box enter the following code:"
msgstr "<emph>རྩ་སྒྲིག་ཨང་</emph> ཚིག་ཡིག་སྒྲོམ་ནང་ལུ་ འོག་གི་ཨང་རྟགས་ཚུ་བཙུགས་:"
@@ -5708,7 +5404,6 @@ msgstr "<emph>རྩ་སྒྲིག་ཨང་</emph> ཚིག་ཡིག
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3152596\n"
-"7\n"
"help.text"
msgid "0.0,, \"Million\""
msgstr "༠,༠,, \"Million\""
@@ -5717,7 +5412,6 @@ msgstr "༠,༠,, \"Million\""
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3144764\n"
-"8\n"
"help.text"
msgid "Click OK."
msgstr "བཏུབ་ལུ་ཨེབ་གཏང་འབད།"
@@ -5726,7 +5420,6 @@ msgstr "བཏུབ་ལུ་ཨེབ་གཏང་འབད།"
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3155417\n"
-"9\n"
"help.text"
msgid "The following table shows the effects of rounding, thousands delimiters (,), decimal delimiters (.) and the placeholders # and 0."
msgstr "འོག་གི་ཐིག་ཁྲམ་འདི་གིས་ དབྱེ་རྟགས་སྟོང་ཕྲག་ (,), དང་ དབྱེ་རྟགས་བཅུ་ཚག་ (.) དེ་ལས་ ས་གནས་འཛིན་མི་ཚུ་ # དང་ ཀླད་ཀོར་ཚུ་ ཧྲིལ་གྲངས་བཟོ་བའི་ནུས་པ་ཚུ་ སྟོནམ་ཨིན།"
@@ -5735,7 +5428,6 @@ msgstr "འོག་གི་ཐིག་ཁྲམ་འདི་གིས་
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3146971\n"
-"10\n"
"help.text"
msgid "Number"
msgstr "ཨང་གྲངས།"
@@ -5744,7 +5436,6 @@ msgstr "ཨང་གྲངས།"
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3154757\n"
-"11\n"
"help.text"
msgid ".#,, \"Million\""
msgstr ".#,, \"Million\""
@@ -5753,7 +5444,6 @@ msgstr ".#,, \"Million\""
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3147338\n"
-"12\n"
"help.text"
msgid "0.0,, \"Million\""
msgstr "༠,༠,, \"Million\""
@@ -5762,7 +5452,6 @@ msgstr "༠,༠,, \"Million\""
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3146920\n"
-"13\n"
"help.text"
msgid "#,, \"Million\""
msgstr "#,, \"Million\""
@@ -5771,7 +5460,6 @@ msgstr "#,, \"Million\""
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3147344\n"
-"14\n"
"help.text"
msgid "10200000"
msgstr "༡༠༢༠༠༠༠༠།"
@@ -5780,7 +5468,6 @@ msgstr "༡༠༢༠༠༠༠༠།"
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3147003\n"
-"15\n"
"help.text"
msgid "10.2 Million"
msgstr "ས་ཡ་ ༡༠་༢།"
@@ -5789,7 +5476,6 @@ msgstr "ས་ཡ་ ༡༠་༢།"
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3166426\n"
-"16\n"
"help.text"
msgid "10.2 Million"
msgstr "ས་ཡ་ ༡༠་༢།"
@@ -5798,7 +5484,6 @@ msgstr "ས་ཡ་ ༡༠་༢།"
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3155113\n"
-"17\n"
"help.text"
msgid "10 Million"
msgstr "ས་ཡ་ བཅུ་ཐམས།"
@@ -5807,7 +5492,6 @@ msgstr "ས་ཡ་ བཅུ་ཐམས།"
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3150369\n"
-"18\n"
"help.text"
msgid "500000"
msgstr "༥༠༠༠༠༠།"
@@ -5816,7 +5500,6 @@ msgstr "༥༠༠༠༠༠།"
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3145585\n"
-"19\n"
"help.text"
msgid ".5 Million"
msgstr "ས་ཡ་ ་༥།"
@@ -5825,7 +5508,6 @@ msgstr "ས་ཡ་ ་༥།"
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3154486\n"
-"20\n"
"help.text"
msgid "0.5 Million"
msgstr "ས་ཡ་ ༠་༥།"
@@ -5834,7 +5516,6 @@ msgstr "ས་ཡ་ ༠་༥།"
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3146114\n"
-"21\n"
"help.text"
msgid "1 Million"
msgstr "ས་ཡ་གཅིག"
@@ -5843,7 +5524,6 @@ msgstr "ས་ཡ་གཅིག"
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3155810\n"
-"22\n"
"help.text"
msgid "100000000"
msgstr "༡༠༠༠༠༠༠༠༠"
@@ -5852,7 +5532,6 @@ msgstr "༡༠༠༠༠༠༠༠༠"
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3153818\n"
-"23\n"
"help.text"
msgid "100. Million"
msgstr "ས་ཡ་ ༡༠༠་"
@@ -5861,7 +5540,6 @@ msgstr "ས་ཡ་ ༡༠༠་"
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3151241\n"
-"24\n"
"help.text"
msgid "100.0 Million"
msgstr "ས་ཡ་ ༡༠༠་༠།"
@@ -5870,7 +5548,6 @@ msgstr "ས་ཡ་ ༡༠༠་༠།"
msgctxt ""
"format_value_userdef.xhp\n"
"par_id3144771\n"
-"25\n"
"help.text"
msgid "100 Million"
msgstr "ས་ཡ་ ༡༠༠།"
@@ -5895,7 +5572,6 @@ msgstr "<bookmark_value>མན་ངག་ཚུ་ འདྲ་བཤུས་
msgctxt ""
"formula_copy.xhp\n"
"hd_id3151113\n"
-"54\n"
"help.text"
msgid "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Copying Formulas\">Copying Formulas</link></variable>"
msgstr "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Copying Formulas\">མན་ངག་ཚུ་འདྲ་བཤུས་རྐྱབ་དོ་</link></variable>"
@@ -5904,7 +5580,6 @@ msgstr "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy
msgctxt ""
"formula_copy.xhp\n"
"par_id3156424\n"
-"11\n"
"help.text"
msgid "There are various ways to copy a formula. One suggested method is:"
msgstr "མན་ངག་འདྲ་བཤུས་འབད་ནི་གི་ཐབས་ལམ་ལེ་ཤ་ར་ཡོདཔ་ཨིན། བསམ་འཆར་བཀོད་ཡོད་པའི་ཐབས་ལམ་གཅིག་འདི་:"
@@ -5913,7 +5588,6 @@ msgstr "མན་ངག་འདྲ་བཤུས་འབད་ནི་གི
msgctxt ""
"formula_copy.xhp\n"
"par_id3150439\n"
-"30\n"
"help.text"
msgid "Select the cell containing the formula."
msgstr "མན་ངག་དང་ལྡན་པའི་ནང་ཐིག་ སེལ་འཐུ་འབད།"
@@ -5922,7 +5596,6 @@ msgstr "མན་ངག་དང་ལྡན་པའི་ནང་ཐིག་
msgctxt ""
"formula_copy.xhp\n"
"par_id3154319\n"
-"31\n"
"help.text"
msgid "Choose <emph>Edit - Copy</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C to copy it."
msgstr "<emph>ཞུན་དག་ - འདྲ་བཤུས་</emph>གདམ་ཁ་རྐྱབས་ ཡང་ན་ <switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་</caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ C འདི་འདྲ་བཤུས་རྐྱབས་ནིའི་དོན་ལས་ཨེབ།"
@@ -5931,7 +5604,6 @@ msgstr "<emph>ཞུན་དག་ - འདྲ་བཤུས་</emph>གད
msgctxt ""
"formula_copy.xhp\n"
"par_id3159155\n"
-"32\n"
"help.text"
msgid "Select the cell into which you want the formula to be copied."
msgstr "ཁྱོད་ཀྱིས་ མན་ངག་འདྲ་བཤུས་བརྐྱབ་དགོ་མནོ་མི་ནང་ཐིག་འདི་ སེལ་འཐུ་འབད།"
@@ -5940,7 +5612,6 @@ msgstr "ཁྱོད་ཀྱིས་ མན་ངག་འདྲ་བཤུ
msgctxt ""
"formula_copy.xhp\n"
"par_id3153728\n"
-"33\n"
"help.text"
msgid "Choose <emph>Edit - Paste</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V. The formula will be positioned in the new cell."
msgstr "<emph>ཞིན་དག་ - སྦྱར་</emph>གདམ་ཁ་རྐྱབས་ ཡང་ན་ <switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་</caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+V ཨེབ། མན་ངག་འདི་ ནང་ཐིག་གསརཔ་ནང་ལུ་གནས་ས་བཟོ་འོང་།"
@@ -5949,7 +5620,6 @@ msgstr "<emph>ཞིན་དག་ - སྦྱར་</emph>གདམ་ཁ་
msgctxt ""
"formula_copy.xhp\n"
"par_id3149961\n"
-"34\n"
"help.text"
msgid "If you want to copy a formula into multiple cells, there is a quick and easy way to copy into adjacent cell areas:"
msgstr "སྣ་མང་ནང་ཐིག་ནང་ མན་ངག་ཅིག་འདྲ་བཤུས་བརྐྱབ་དགོ་མནོ་བ་ཅིན་ ཉེ་འདབ་ནང་ཐིག་མངའ་ཁོངས་ཚུ་ནང་འདྲ་བཤུས་བརྐྱབ་ནིའི་ཐབས་ཤེས་མགྱོགས་དྲགས་ཅིག་ཡོད་:"
@@ -5958,7 +5628,6 @@ msgstr "སྣ་མང་ནང་ཐིག་ནང་ མན་ངག་ཅ
msgctxt ""
"formula_copy.xhp\n"
"par_id3149400\n"
-"12\n"
"help.text"
msgid "Select the cell containing the formula."
msgstr "མན་ངག་དང་ལྡན་པའི་ནང་ཐིག་ སེལ་འཐུ་འབད།"
@@ -5967,7 +5636,6 @@ msgstr "མན་ངག་དང་ལྡན་པའི་ནང་ཐིག་
msgctxt ""
"formula_copy.xhp\n"
"par_id3154018\n"
-"13\n"
"help.text"
msgid "Position the mouse on the bottom right of the highlighted border of the cell, and continue holding down the mouse button until the pointer changes to a cross-hair symbol."
msgstr "གཙོ་དམིགས་འབད་ཡོད་པའི་མཐའ་མཚམས་ནང་ཐིག་གི་གཤམ་གྱི་གཡས་ལུ་ མཱའུསི་གི་གནས་ས་བཟོ་ཞིནམ་ལས་ དཔག་བྱེད་འདི་ ཀོརོསི་-ཧེའར་ལུ་བསྒྱུར་བཅོས་མ་འབད་ཚུན་ མཱའུསི་ཨེབ་རྟ་འདི་བཟུང་བཞག"
@@ -5976,7 +5644,6 @@ msgstr "གཙོ་དམིགས་འབད་ཡོད་པའི་མཐ
msgctxt ""
"formula_copy.xhp\n"
"par_id3150749\n"
-"14\n"
"help.text"
msgid "With the mouse button pressed, drag it down or to the right over all the cells into which you want to copy the formula."
msgstr "མཱའུསི་ཨེབ་རྟ་ལུ་ཨེབ་པའི་ཐོག་ལས་ དེ་མར་འདྲུད་ ཡང་ན་ ཁྱོད་ཀྱིས་ མན་ངག་འདྲ་བཤུས་བརྐྱབ་དགོ་མནོ་མི་ ནང་ཐིག་གི་ལྟག་ལས་གཡས་ཁ་ཐུག་ལུ་འདྲུད།"
@@ -5985,7 +5652,6 @@ msgstr "མཱའུསི་ཨེབ་རྟ་ལུ་ཨེབ་པའི
msgctxt ""
"formula_copy.xhp\n"
"par_id3153714\n"
-"15\n"
"help.text"
msgid "When you release the mouse button, the formula will be copied into the cells and automatically adjusted."
msgstr "མཱའུསི་ཨེབ་རྟ་འདི་འཛིན་གྲོལ་འབད་བའི་སྐབས་ལུ་ མན་ངག་འདི་ནང་ཐིག་ནང་འདྲ་བཤུས་དང་རང་བཞིན་གྱིས་ བདེ་སྒྲིག་འབད་འོང་།"
@@ -5994,7 +5660,6 @@ msgstr "མཱའུསི་ཨེབ་རྟ་འདི་འཛིན་ག
msgctxt ""
"formula_copy.xhp\n"
"par_id3156385\n"
-"53\n"
"help.text"
msgid "If you do not want values and texts to be automatically adjusted, then hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when dragging. Formulas, however, are always adjusted accordingly."
msgstr "ཁྱོད་ཀྱིས་གནས་གོང་ཚུ་དང་ཚིག་ཡིག་ཚུ་ རང་བཞིན་གྱིས་བདེ་སྒྲིག་འབད་མ་དགོ་ནི་ཨིན་པ་ཅིན་ <switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་</caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline> ལྡེ་མིག་འདི་ འདྲུད་པའི་སྐབས་འཆང་བཞག། མན་ངག་ཚུ་ གང་ལྟར་ཡང་ ཨ་རྟག་རང་འཁྲིལ་ཏེ་བདེ་སྒྲིག་འབདཝ་ཨིན།"
@@ -6019,7 +5684,6 @@ msgstr "<bookmark_value>མན་ངག་ཕྲ་རིང་ ཨིན་པ
msgctxt ""
"formula_enter.xhp\n"
"hd_id3150868\n"
-"9\n"
"help.text"
msgid "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\" name=\"Entering Formulas\">Entering Formulas</link></variable>"
msgstr "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Copying Formulas\">མན་ངག་ཚུ་འདྲ་བཤུས་རྐྱབ་དོ་</link></variable>"
@@ -6036,7 +5700,6 @@ msgstr ""
msgctxt ""
"formula_enter.xhp\n"
"par_id3145364\n"
-"10\n"
"help.text"
msgid "Click the cell in which you want to enter the formula."
msgstr "མན་ངག་བཙུགས་ནི་ཨིན་པའི་ནང་ཐིག་གུ་ ཨེབ་གཏང་འབད།"
@@ -6045,7 +5708,6 @@ msgstr "མན་ངག་བཙུགས་ནི་ཨིན་པའི་ན
msgctxt ""
"formula_enter.xhp\n"
"par_id3150012\n"
-"11\n"
"help.text"
msgid "Click the <emph>Function</emph> icon on the Formula Bar."
msgstr "མན་ངག་ཕྲ་རིང་གུའི་ <emph>ལས་འགན་</emph> ངོས་པར་གུ་ཨེབ་གཏང་འབད།"
@@ -6054,7 +5716,6 @@ msgstr "མན་ངག་ཕྲ་རིང་གུའི་ <emph>ལས་
msgctxt ""
"formula_enter.xhp\n"
"par_id3156441\n"
-"12\n"
"help.text"
msgid "You will now see an equals sign in the input line and you can begin to input the formula."
msgstr "ད་ལས་ཕར་ཁྱོད་ཀྱིས་ ཨིན་པུཊི་གྲལ་ཐིག་ནང་ མཉམ་རྟགས་མཐོང་ཚུགསཔ་དང་ མན་ངག་ཨིན་པུཊི་འབད་ནི་འགོ་བཙུགས་ཚུགས།"
@@ -6063,7 +5724,6 @@ msgstr "ད་ལས་ཕར་ཁྱོད་ཀྱིས་ ཨིན་པ
msgctxt ""
"formula_enter.xhp\n"
"par_id3153726\n"
-"3\n"
"help.text"
msgid "After entering the required values, press Enter or click <emph>Accept</emph> to insert the result in the active cell. If you want to clear your entry in the input line, press Escape or click <emph>Cancel</emph>."
msgstr "དགོས་མཁོ་ཡོད་པའི་བེ་ལུསི་ཚུ་བཙུགས་པའི་ཤུལ་ལས་ གྲུབ་འབྲས་ཚུ་ཤུགས་ལྡན་ནང་ཐིག་ནང་བཙུགས་ནི་གི་དོན་ལུ་ བཙུགས་ལུ་ཨེབས་ ཡང་ན་ <emph>དང་ལེན་འབད་</emph> ལུ་ཨེབ་གཏང་འབད། ཁྱོད་ཀྱིས་ ཨིན་པུཊི་གྲལ་ཐིག་ནང་ ཁྱོད་རའི་ཐོ་བཀོད་འདི་བསལ་དགོ་མནོ་བ་ཅིན་ ཐར་ལུ་ཨེབས་ ཡང་ན་ <emph>ཆ་མེད་གཏང་</emph> ལུ་ཨེབ་གཏང་འབད།"
@@ -6072,7 +5732,6 @@ msgstr "དགོས་མཁོ་ཡོད་པའི་བེ་ལུསི
msgctxt ""
"formula_enter.xhp\n"
"par_id3147394\n"
-"8\n"
"help.text"
msgid "You can also enter the values and the formulas directly into the cells, even if you cannot see an input cursor. Formulas must always begin with an equals sign."
msgstr "དེ་མ་ཚད་ཁྱོད་ཀྱིས་ ཨིན་པུཊི་འོད་རྟགས་འདི་མ་མཐོང་སྟེ་འབད་རུང་ བེ་ལུསི་དང་ མན་ངག་ཚུ་ཐད་ཀར་དུ་ནང་ཐིག་ནང་ལུ་བཙུགས་ཚུགས། མན་ངག་ཚུ་མཉམ་རྟགས་ཀྱིས་འགོ་བཙུགས་དགོཔ་ཨིན།"
@@ -6105,7 +5764,6 @@ msgstr ""
msgctxt ""
"formula_enter.xhp\n"
"par_id3155764\n"
-"6\n"
"help.text"
msgid "If you are editing a formula with references, the references and the associated cells will be highlighted with the same color. You can now resize the reference border using the mouse, and the reference in the formula displayed in the input line also changes. <emph>Show references in color</emph> can be deactivated under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>."
msgstr ""
@@ -6114,7 +5772,6 @@ msgstr ""
msgctxt ""
"formula_enter.xhp\n"
"par_id3149210\n"
-"7\n"
"help.text"
msgid "<variable id=\"tip\">If you would like to view the calculation of individual elements of a formula, select the respective elements and press F9. For example, in the formula =SUM(A1:B12)*SUM(C1:D12) select the section SUM(C1:D12) and press F9 to view the subtotal for this area. </variable>"
msgstr "<variable id=\"tip\"> ཁྱོད་ཀྱིས་ མན་ངག་རེ་རེའི་ཆ་ཤས་ཀྱི་རྩིས་སྟོན་ བལྟ་དགོ་མནོ་བ་ཅིན་ རིམ་བཞིན་ཆ་ཤས་ཚུ་སེལ་འཐུ་འབད་ དེ་ལས་ ཨེཕ་༩ ལུ་ཨེབས། དཔེར་ན་ མན་ངག་ནང་ =SUM(A1:B12)*SUM(C1:D12)མངའ་ཁོངས་འདི་གི་དོན་ལས་ ཡན་ལག་བསྡོམས་སྟོན་གྱི་དོན་ལུ་ དབྱེ་ཚན་ SUM(C1:D12) སེལ་འཐུ་འབད་ཞིནམ་ལས་ ཨེཕ་༩ ལུ་ཨེབས། </variable>"
@@ -6123,7 +5780,6 @@ msgstr "<variable id=\"tip\"> ཁྱོད་ཀྱིས་ མན་ངག་
msgctxt ""
"formula_enter.xhp\n"
"par_id3150304\n"
-"5\n"
"help.text"
msgid "If an error occurs when creating the formula, an <link href=\"text/scalc/05/02140000.xhp\" name=\"error message\">error message</link> appears in the active cell."
msgstr "མན་ངག་གསར་བསྐྲུན་འབད་བའི་སྐབས་ལུ་ འཛོལ་བ་འབྱུང་པ་ཅིན་ ཤུགས་ལྡན་ནང་ཐིག་ནང་ <link href=\"text/scalc/05/02140000.xhp\" name=\"error message\">འཛོལ་བའི་འཕྲིན་དོན་</link> འབྱུངམ་ཨིན།"
@@ -6132,7 +5788,6 @@ msgstr "མན་ངག་གསར་བསྐྲུན་འབད་བའི
msgctxt ""
"formula_enter.xhp\n"
"par_id3152993\n"
-"13\n"
"help.text"
msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula bar\">Formula bar</link>"
msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Formula bar\">མན་ངག་ཕྲ་རིང་</link>"
@@ -6157,7 +5812,6 @@ msgstr "<bookmark_value>མན་ངག་ཚུ་ ནང་ཐིག་ཚུ
msgctxt ""
"formula_value.xhp\n"
"hd_id3153195\n"
-"1\n"
"help.text"
msgid "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\" name=\"Displaying Formulas or Values\">Displaying Formulas or Values</link></variable>"
msgstr "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\" name=\"Displaying Formulas or Values\">མན་ངག་ ཡང་ན་ བེ་ལུསི་བཀྲམ་སྟོན་འབད་དོ་</link></variable>"
@@ -6166,17 +5820,14 @@ msgstr "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_val
msgctxt ""
"formula_value.xhp\n"
"par_id3150010\n"
-"2\n"
"help.text"
msgid "If you want to display the formulas in the cells, for example in the form =SUM(A1:B5), proceed as follows:"
msgstr "ཁྱོད་ཀྱིས་ ནང་ཐིག་ནང་ལུ་ མན་ངག་བཀྲམ་སྟོན་ དཔེར་ན་ འབྲི་ཤོག་ནང་ =SUM(A1:B5) བཟུམ་ཅིག་ བཀྲམ་སྟོན་འབད་དགོ་མནོ་བ་ཅིན་ འོག་གི་བཟུམ་སྦེ་འབད་དགོ་:"
#: formula_value.xhp
-#, fuzzy
msgctxt ""
"formula_value.xhp\n"
"par_id3151116\n"
-"3\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - View</emph>."
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཨེཕ་༦ དང་བཅས་ཡིག་ཆ་སེལ་འཐུ་འབད་ཞིནམ་ལས་ མཆོང་ལྡེ་ལུ་ཨེབས།"
@@ -6185,7 +5836,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"formula_value.xhp\n"
"par_id3146120\n"
-"4\n"
"help.text"
msgid "In the <emph>Display</emph> area mark the <emph>Formulas</emph> box. Click OK."
msgstr "<emph>བཀྲམསྟོན་</emph> མངའ་ཁོངས་ནང་ <emph>མན་ངག་ཚུ་</emph> སྒྲོམ་ལུ་ རྟགས་བཀལ། བཏུབ་གུ་ཨེབ་གཏང་འབད།"
@@ -6194,7 +5844,6 @@ msgstr "<emph>བཀྲམསྟོན་</emph> མངའ་ཁོངས་ན
msgctxt ""
"formula_value.xhp\n"
"par_id3147396\n"
-"5\n"
"help.text"
msgid "If you want to view the calculation results instead of the formula, do not mark the Formulas box."
msgstr "ཁྱོད་ཀྱིས་ མན་ངག་གི་ཚབ་ལུ་ རྩིས་སྟོན་གྲུབ་འབྲས་བལྟ་དགོ་མནོ་བ་ཅིན་ མན་ངག་སྒྲོམ་གུ་རྟགས་མ་བཀལ།"
@@ -6203,7 +5852,6 @@ msgstr "ཁྱོད་ཀྱིས་ མན་ངག་གི་ཚབ་ལ
msgctxt ""
"formula_value.xhp\n"
"par_id3153157\n"
-"6\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
msgstr ""
@@ -6228,7 +5876,6 @@ msgstr "<bookmark_value>མན་ངག་ཚུ་ </bookmark_value>དང་
msgctxt ""
"formulas.xhp\n"
"hd_id3155411\n"
-"20\n"
"help.text"
msgid "<variable id=\"formulas\"><link href=\"text/scalc/guide/formulas.xhp\" name=\"Calculating With Formulas\">Calculating With Formulas</link></variable>"
msgstr "<variable id=\"formulas\"><link href=\"text/scalc/guide/formulas.xhp\" name=\"Calculating With Formulas\">མན་ངག་དང་བཅས་ རྩིས་སྟོད་དོ་</link></variable>"
@@ -6237,7 +5884,6 @@ msgstr "<variable id=\"formulas\"><link href=\"text/scalc/guide/formulas.xhp\" n
msgctxt ""
"formulas.xhp\n"
"par_id3156281\n"
-"21\n"
"help.text"
msgid "All formulas begin with an equals sign. The formulas can contain numbers, text, arithmetic operators, logic operators, or functions."
msgstr ""
@@ -6246,7 +5892,6 @@ msgstr ""
msgctxt ""
"formulas.xhp\n"
"par_id3145272\n"
-"39\n"
"help.text"
msgid "Remember that the basic arithmetic operators (+, -, *, /) can be used in formulas using the \"Multiplication and Division before Addition and Subtraction\" rule. Instead of writing =SUM(A1:B1) you can write =A1+B1."
msgstr "གཞི་རིམ་ཨང་རྩིས་ཀྱི་རྟགས་ (+, -, *, /)ཚུ་ \"Multiplication and Division before Addition and Subtraction\" ལམ་ལུགས་ལག་ལེན་གྱི་ཐོག་ལས་ མན་ངག་ནང་ལག་ལེན་འཐབ་བཏུབ་ཨིན། =SUM(A1:B1) གི་ཚབ་ལུ་ =A1+B1འབྲི་བ་ཅིན་ ལེགས་ཤོམ་འོང་།"
@@ -6255,7 +5900,6 @@ msgstr "གཞི་རིམ་ཨང་རྩིས་ཀྱི་རྟགས
msgctxt ""
"formulas.xhp\n"
"par_id3146119\n"
-"42\n"
"help.text"
msgid "Parentheses can also be used. The result of the formula =(1+2)*3 produces a different result than =1+2*3."
msgstr "གུག་ཤད་ཡང་ལག་ལེན་འཐབ་བཏུབ་ཨིན། མན་ངག་གི་གྲུབ་འབྲས་ =(1+2)*3 གིས་ =1+2*3 ལས་ཡང་ལྷགཔ་སྦེ་ གྲུབ་འབྲས་མ་འདྲཝ་བཟོ་སྟོན་འབདཝ་ཨིན།"
@@ -6264,7 +5908,6 @@ msgstr "གུག་ཤད་ཡང་ལག་ལེན་འཐབ་བཏུ
msgctxt ""
"formulas.xhp\n"
"par_id3156285\n"
-"23\n"
"help.text"
msgid "Here are a few examples of $[officename] Calc formulas:"
msgstr "$[officename] ཀེལཀི་མན་ངག་ཚུའི་དཔེར་བརྗོད་དག་པ་ཅིན་ ནཱ་ལུ་སྟོན་ནི་ཨིན་:"
@@ -6273,7 +5916,6 @@ msgstr "$[officename] ཀེལཀི་མན་ངག་ཚུའི་དཔ
msgctxt ""
"formulas.xhp\n"
"par_id3154015\n"
-"24\n"
"help.text"
msgid "=A1+10"
msgstr "=A1+10"
@@ -6282,7 +5924,6 @@ msgstr "=A1+10"
msgctxt ""
"formulas.xhp\n"
"par_id3146972\n"
-"25\n"
"help.text"
msgid "Displays the contents of cell A1 plus 10."
msgstr "ནང་ཐིག་ ཨེ་ ༡ དང་ ༡༠ གི་ནང་དོན་ཚུ་ བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -6291,7 +5932,6 @@ msgstr "ནང་ཐིག་ ཨེ་ ༡ དང་ ༡༠ གི་ནང་
msgctxt ""
"formulas.xhp\n"
"par_id3145643\n"
-"45\n"
"help.text"
msgid "=A1*16%"
msgstr "=A1*16%"
@@ -6300,7 +5940,6 @@ msgstr "=A1*16%"
msgctxt ""
"formulas.xhp\n"
"par_id3154255\n"
-"46\n"
"help.text"
msgid "Displays 16% of the contents of A1."
msgstr "ཨེ་ ༡ གི་ནང་དོན་ཚུ་ནང་ལས་ བརྒྱ་ཆ་ ༡༦% བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -6309,7 +5948,6 @@ msgstr "ཨེ་ ༡ གི་ནང་དོན་ཚུ་ནང་ལས་
msgctxt ""
"formulas.xhp\n"
"par_id3146917\n"
-"47\n"
"help.text"
msgid "=A1 * A2"
msgstr "=A1 * A2"
@@ -6318,7 +5956,6 @@ msgstr "=A1 * A2"
msgctxt ""
"formulas.xhp\n"
"par_id3146315\n"
-"48\n"
"help.text"
msgid "Displays the result of the multiplication of A1 and A2."
msgstr "ཨེ་ ༡ དང་ཨེ་ ༢ ཀྱི་དགུ་མཐའ་རྐྱབ་པའི་གྲུབ་འབྲས་ བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -6327,7 +5964,6 @@ msgstr "ཨེ་ ༡ དང་ཨེ་ ༢ ཀྱི་དགུ་མཐའ
msgctxt ""
"formulas.xhp\n"
"par_id3154022\n"
-"26\n"
"help.text"
msgid "=ROUND(A1;1)"
msgstr "=ROUND(A1;1)"
@@ -6336,7 +5972,6 @@ msgstr "=ROUND(A1;1)"
msgctxt ""
"formulas.xhp\n"
"par_id3150363\n"
-"27\n"
"help.text"
msgid "Displays the contents of cell A1 rounded to one decimal place."
msgstr "ནང་ཐིག་ A1 འདི་ བཅུ་ཚག་གནས་ས་གཅིག་ལུ་སྐོར་ཏེ་ཡོད་པའི་ནང་དོན་ཚུ་བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -6345,7 +5980,6 @@ msgstr "ནང་ཐིག་ A1 འདི་ བཅུ་ཚག་གནས་
msgctxt ""
"formulas.xhp\n"
"par_id3150209\n"
-"28\n"
"help.text"
msgid "=EFFECTIVE(5%;12)"
msgstr "=EFFECTIVE(5%;12)"
@@ -6354,7 +5988,6 @@ msgstr "=EFFECTIVE(5%;12)"
msgctxt ""
"formulas.xhp\n"
"par_id3150883\n"
-"29\n"
"help.text"
msgid "Calculates the effective interest for 5% annual nominal interest with 12 payments a year."
msgstr "ལོ་རེ་ནང་གླ་དངུལ་ ༡༢་ དང་ཅིག་ཁར་5% ལོ་སྟར་དངུལ་སྐྱེད་ཀྱི་དོན་ལུ་ ནུས་ཅན་ཡོད་པའི་སྐྱེད་འདི་རྩིས་སྟོནམ་ཨིན།"
@@ -6363,7 +5996,6 @@ msgstr "ལོ་རེ་ནང་གླ་དངུལ་ ༡༢་ དང་
msgctxt ""
"formulas.xhp\n"
"par_id3146114\n"
-"33\n"
"help.text"
msgid "=B8-SUM(B10:B14)"
msgstr "=B8-SUM(B10:B14)"
@@ -6372,7 +6004,6 @@ msgstr "=B8-SUM(B10:B14)"
msgctxt ""
"formulas.xhp\n"
"par_id3154486\n"
-"34\n"
"help.text"
msgid "Calculates B8 minus the sum of the cells B10 to B14."
msgstr "ནང་ཐིག་ བི་ ༡༠་ ལས་ བི་ ༡༤ གི་བར་ནའི་་དངུལ་བསྡོམས་ཀྱི་ བི་ ༨ འདི་ རྩིས་སྟོན་འབདཝ་ཨིན།"
@@ -6381,7 +6012,6 @@ msgstr "ནང་ཐིག་ བི་ ༡༠་ ལས་ བི་ ༡༤ ག
msgctxt ""
"formulas.xhp\n"
"par_id3152890\n"
-"35\n"
"help.text"
msgid "=SUM(B8;SUM(B10:B14))"
msgstr "=SUM(B8;SUM(B10:B14))"
@@ -6390,7 +6020,6 @@ msgstr "=SUM(B8;SUM(B10:B14))"
msgctxt ""
"formulas.xhp\n"
"par_id3159171\n"
-"36\n"
"help.text"
msgid "Calculates the sum of cells B10 to B14 and adds the value to B8."
msgstr "ནང་ཐིག་ བི་ ༡༠ ལས་ བི་ ༡༤ གི་བར་ནའི་དངུལ་བསྡོམས་ རྩིས་སྟོན་འབདཝ་མ་ཚད་ བེ་ལུ་འདི་ བི་ ༨ ལུ་ཁ་སྐོང་རྐྱབ་ཨིན།"
@@ -6399,7 +6028,6 @@ msgstr "ནང་ཐིག་ བི་ ༡༠ ལས་ བི་ ༡༤ གི
msgctxt ""
"formulas.xhp\n"
"par_id3150109\n"
-"30\n"
"help.text"
msgid "It is also possible to nest functions in formulas, as shown in the example. You can also nest functions within functions. The Function Wizard assists you with nested functions."
msgstr "དཔེ་སྟོན་ནང་བཟུམ་སྦེ་ མན་ངག་ནང་ ལས་འགན་ཚུ་ཡང་ ཡན་ལག་སྦེ་བཟོ་བཏུབ་ཨིན། དེ་མ་ཚད་ཁྱོད་ཀྱིས་ ལས་འགན་ནང་འཁོད་ལུ་ ཡན་ལག་བཟོ་བཏུབ། ལས་འགན་ཝི་ཛརཌི་གིས་ ཁྱོད་ལུ་ཡན་ལག་བཟོ་ཡོད་པའི་ལས་འགན་དང་བཅས་ གྲོགས་རམ་འབདཝ་ཨིན།"
@@ -6408,7 +6036,6 @@ msgstr "དཔེ་སྟོན་ནང་བཟུམ་སྦེ་ མན
msgctxt ""
"formulas.xhp\n"
"par_id3150213\n"
-"44\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"Functions list\">Functions list</link>"
msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"Functions list\">ལས་འགན་ཐོ་ཡིག་</link>"
@@ -6417,7 +6044,6 @@ msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"Functions list\">ལས
msgctxt ""
"formulas.xhp\n"
"par_id3152869\n"
-"43\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">ལས་འགན་ཝི་ཛརཌི་</link>"
@@ -6442,7 +6068,6 @@ msgstr "<bookmark_value>དཔྱ་ཕྲན་ བཙུགས་དོ་</bo
msgctxt ""
"fraction_enter.xhp\n"
"hd_id3155411\n"
-"41\n"
"help.text"
msgid "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Entering Fractions \">Entering Fractions </link></variable>"
msgstr "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Entering Fractions \">དཔྱ་ཕྲན་བཙུགས་དོ་</link></variable>"
@@ -6451,7 +6076,6 @@ msgstr "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_e
msgctxt ""
"fraction_enter.xhp\n"
"par_id3153968\n"
-"40\n"
"help.text"
msgid "You can enter a fractional number in a cell and use it for calculation:"
msgstr "ཁྱོད་ཀྱིས་ ནང་ཐིག་གཅིག་ནང་ དཔྱ་ཕྲན་བཟོ་བཏུབ་པའི་ཨང་གྲངས་ཅིག་བཙུགས་བཏུབ་པའི་ཁར་ རྩིས་སྟོན་གྱི་དོན་ལུ་ཡང་ ལག་ལེན་འཐབ་བཏུབ་ཨིན།"
@@ -6460,13 +6084,11 @@ msgstr "ཁྱོད་ཀྱིས་ ནང་ཐིག་གཅིག་ན
msgctxt ""
"fraction_enter.xhp\n"
"par_id3155133\n"
-"42\n"
"help.text"
msgid "Enter \"0 1/5\" in a cell (without the quotation marks) and press the input key. In the input line above the spreadsheet you will see the value 0.2, which is used for the calculation."
msgstr "ནང་ཐིག་(འདྲེན་རྟགས་མེད་པར་)ཅིག་ནང་ \"0 1/5\" བཙུགས་ཞིནམ་ལས་ ཨིན་པུཊི་ལྡེ་མིག་ལུ་ཨེབས། ཁྱོད་ཀྱིས་ ཤོག་ཁྲམ་ལྟག་གི་ཨིན་པུཊི་གྲལ་ཐིག་ནང་ རྩིས་སྟོན་ནང་ལག་ལེན་འཐབ་ཡོད་མི་ བེ་ལུ་ ༠་༢ འདི་མཐོང་འོང་།"
#: fraction_enter.xhp
-#, fuzzy
msgctxt ""
"fraction_enter.xhp\n"
"par_id3145750\n"
@@ -6478,7 +6100,6 @@ msgstr "ཁྱོད་ཀྱིས་ \"0 1/2\" འདི་བཙུགས་
msgctxt ""
"fraction_enter.xhp\n"
"par_id3145367\n"
-"44\n"
"help.text"
msgid "If you want to see multi-digit fractions such as \"1/10\", you must change the cell format to the multi-digit fraction view. Open the context menu of the cell, and choose <emph>Format cells. </emph>Select \"Fraction\" from the <emph>Category</emph> field, and then select \"-1234 10/81\". You can then enter fractions such as 12/31 or 12/32 - the fractions are, however, automatically reduced, so that in the last example you would see 3/8."
msgstr "ཁྱོད་ཀྱིས་ \"1/10\" བཟུམ་གྱི་སྣ་མང་-ཨང་ཡིག་བལྟ་དགོ་མནོ་བ་ཅིན་ ནང་ཐིག་རྩ་སྒྲིག་འདི་ སྣ་མང་-ཨང་ཡིག་དཔྱ་ཕྲན་མཐོང་སྣང་ལུ་ བསྒྱུར་བཅོས་འབད་དགོ ནང་ཐིག་གི་ཚིག་ཡིག་དཀར་ཆག་ཁ་ཕྱེ་ཞིནམ་ལས་ <emph> རྩ་སྒྲིག་ནང་ཐིག་ཚུ་ གདམ་ཁ་རྐྱབས། </emph> \"Fraction\" འདི་ <emph>དབྱེ་རིམ་</emph> ས་སྒོ་ནང་ལས་ སེལ་འཐུ་འབད་ དེ་ལས་ \"-1234 10/81\" སེལ་འཐུ་འབད། དེ་ལས་དོ་རུང་ ༡༢/༣༡ ཡང་ན་ ༡༢/༣༢ བཟུམ་གྱི་དཔྱ་ཕྲན་ཚུ་བཙུགས་- དཔྱ་་ཕྲན་ཚུ་རང་བཞིན་གྱིས་མར་ཕབ་འབད་འོང་ དེ་འབདཝ་ལས་ མཇུག་གི་དཔེའི་ནང་ ཁྱོད་ཀྱིས་ ༣༨/༨ འདི་མཐོང་ཚུགས།"
@@ -6503,7 +6124,6 @@ msgstr "<bookmark_value>དམིགས་ཡུལ་འཚོལ་ནིའ
msgctxt ""
"goalseek.xhp\n"
"hd_id3145068\n"
-"22\n"
"help.text"
msgid "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Applying Goal Seek\">Applying Goal Seek</link></variable>"
msgstr "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Applying Goal Seek\">དམིགས་གཏད་འཚོལ་བ་ འཇུག་སྤྱོད་འབད་དོ་</link></variable>"
@@ -6512,7 +6132,6 @@ msgstr "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" n
msgctxt ""
"goalseek.xhp\n"
"par_id3145171\n"
-"2\n"
"help.text"
msgid "With the help of Goal Seek you can calculate a value that, as part of a formula, leads to the result you specify for the formula. You thus define the formula with several fixed values and one variable value and the result of the formula."
msgstr "དམིགས་གཏད་འཚོལ་བ་གི་ཐོག་ལས་ ཁྱོད་ཀྱིས་བེ་ལུའི་རྩིས་ སྟོན་ཚུགས་ དེ་ཡང་ མན་ངག་གི་ཡན་ལག་ཨིནམ་ལས་ ཁྱོད་ཀྱིས་གསལ་བཀོད་འབད་མི་མན་ངག་གི་གྲུབ་འབྲས་ སྔོན་བསྐྱོད་འབདཝ་ཨིན། དེ་འབདཝ་ལས་ གཏན་བཟོས་བེ་ལུསི་ལེ་ཤ་ཅིག་དང་འགྱུར་ཅན་གྱི་བེ་ལུ་གཅིག་ དེ་ལས་མན་ངག་གི་གྲུབ་འབྲས་དང་བཅས་ མན་ངག་ངེས་འཛིན་འབད།"
@@ -6521,7 +6140,6 @@ msgstr "དམིགས་གཏད་འཚོལ་བ་གི་ཐོག་
msgctxt ""
"goalseek.xhp\n"
"hd_id3153966\n"
-"14\n"
"help.text"
msgid "Goal Seek Example"
msgstr "དམིགས་གཏད་འཚོལ་བའི་དཔེ།"
@@ -6530,7 +6148,6 @@ msgstr "དམིགས་གཏད་འཚོལ་བའི་དཔེ།"
msgctxt ""
"goalseek.xhp\n"
"par_id3150871\n"
-"4\n"
"help.text"
msgid "To calculate annual interest (I), create a table with the values for the capital (C), number of years (n), and interest rate (i). The formula is:"
msgstr "ལོ་བསྟར་གྱི་བསྐྱེད་རྩིས་ (I)སྟོན་དགོ་པ་ཅིན་ དངུལ་ (C) དང་ ལོ་གྲངས་ (n) དེ་ལས་ བསྐྱེད་ཚད་ (i) ཀྱི་དོན་ལུ་ བེ་ལུསི་དང་གཅིག་ཁར་ ཐིག་ཁྲམ་ཅིག་གསར་བསྐྲུན་འབད། མན་ངག་འདི་ཡང་:"
@@ -6539,7 +6156,6 @@ msgstr "ལོ་བསྟར་གྱི་བསྐྱེད་རྩིས་
msgctxt ""
"goalseek.xhp\n"
"par_id3152596\n"
-"5\n"
"help.text"
msgid "I = C * n* i"
msgstr "I = C * n* i"
@@ -6548,7 +6164,6 @@ msgstr "I = C * n* i"
msgctxt ""
"goalseek.xhp\n"
"par_id3155335\n"
-"15\n"
"help.text"
msgid "Let us assume that the interest rate <item type=\"literal\">i</item> of 7.5% and the number of years <item type=\"literal\">n</item> (1) will remain constant. However, you want to know how much the investment capital <item type=\"literal\">C</item> would have to be modified in order to attain a particular return <item type=\"literal\">I</item>. For this example, calculate how much capital <item type=\"literal\">C</item> would be required if you want an annual return of $15,000."
msgstr "ང་བཅས་ར་ <item type=\"literal\">i</item> བསྐྱེད་ཚད་འདི་ ༧་༥% དང་ ལོ་གྲངས་<item type=\"literal\">n</item> སྦེ་ (1) ལུ་འགྱུར་བ་མེད་པའི་དབང་ལུ་གཏང་། ག་དེ་འབད་རུང་ ག་ཅི་འབད་རུང་ཅིག་ལོག་འཐོབ་ནི་གི་དོན་ལུ་ <item type=\"literal\">I</item> ཁྱོད་ཀྱིས་ མ་རྩ་མ་དངུལ་ <item type=\"literal\">C</item> ག་དེམ་ཅིག་ ལེགས་བཅོས་འབད་དགོཔ་ཨིན་ན་ ཤེས་འདོད་འདུག དཔེ་འདི་གི་དོན་ལུ་ ཁྱོད་ཀྱིས་ ལོ་བསྟར་བཞིན་ དངུལ་ $15,000 ལོག་འཐོབ་དགོ་པ་ཅིན་ མ་དངུལ་ <item type=\"literal\">C</item> ག་དེམ་ཅིག་དགོཔ་ཨིན་ན་ རྩིས་སྟོན།"
@@ -6557,7 +6172,6 @@ msgstr "ང་བཅས་ར་ <item type=\"literal\">i</item> བསྐྱེ
msgctxt ""
"goalseek.xhp\n"
"par_id3155960\n"
-"6\n"
"help.text"
msgid "Enter each of the values for Capital <item type=\"literal\">C</item> (an arbitrary value like <item type=\"literal\">$100,000</item>), number of years <item type=\"literal\">n </item>(<item type=\"literal\">1</item>), and interest rate <item type=\"literal\">i</item> (<item type=\"literal\">7.5%</item>) in one cell each. Enter the formula to calculate the interest <item type=\"literal\">I</item> in another cell. Instead of <item type=\"literal\">C</item>, <item type=\"literal\">n</item>, and <item type=\"literal\">i</item> use the <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">reference to the cell</link> with the corresponding value."
msgstr "དངུལ་ <item type=\"literal\">C</item> (མཐུན་སྒྲིག་བེ་ལུ་ དཔེར་ན་ <item type=\"literal\">$100,000</item>བཟུམ་) དང་ ལོ་གྲངས་ <item type=\"literal\">n </item>(<item type=\"literal\">1</item>) དེ་ལས་ སྐྱེད་ཚད་ <item type=\"literal\">i</item> (<item type=\"literal\">༧་༥%</item>) གི་དོན་ལུ་ ནང་ཐིག་རེ་རེ་ནང་ བེ་ལུསི་རེ་རེ་བཙུགས། ནང་ཐིག་གཞན་ཅིག་ནང་ སྐྱེད་ <item type=\"literal\">I</item> རྩིས་སྟོན་ནི་གི་དོན་ལུ་ མན་ངག་བཙུགས། <item type=\"literal\">C</item>, <item type=\"literal\">n</item>, དང་ <item type=\"literal\">i</item> གི་ཚབ་ལུ་ མཉམ་པའི་བེ་ལུ་གི་ཐོག་ལས་ <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">ནང་ཐིག་ལུ་གཞི་བསྟུན་ </link> ལག་ལེན་འཐབ།"
@@ -6566,7 +6180,6 @@ msgstr "དངུལ་ <item type=\"literal\">C</item> (མཐུན་སྒ
msgctxt ""
"goalseek.xhp\n"
"par_id3147001\n"
-"16\n"
"help.text"
msgid "Place the cursor in the cell containing the interest <item type=\"literal\">I</item>, and choose <emph>Tools - Goal Seek</emph>. The <emph>Goal Seek</emph> dialog appears."
msgstr "སྐྱེད་ <item type=\"literal\">I</item> ཡོད་པའི་ནང་ཐིག་ནང་ འོད་རྟགས་བཙུགས་བཞག་ དེ་ལས་ <emph>ལག་ཆས་ཚུ་ - དམིགས་གཏད་འཚོལ་བ་</emph> གདམ་ཁ་རྐྱབས། <emph>དམིགས་གཏད་འཚོལ་བ་</emph> ཌའི་ལོག་འབྱུངམ་ཨིན།"
@@ -6575,7 +6188,6 @@ msgstr "སྐྱེད་ <item type=\"literal\">I</item> ཡོད་པའི
msgctxt ""
"goalseek.xhp\n"
"par_id3150088\n"
-"17\n"
"help.text"
msgid "The correct cell is already entered in the field <emph>Formula Cell</emph>."
msgstr "ངེས་ལྡན་གྱི་ནང་ཐིག་འདི་ཧེ་མ་ལས་ར་ ས་སྒོ་<emph>མན་ངག་ནང་ཐིག་</emph>ནང་འཇུལ་ནུག"
@@ -6584,7 +6196,6 @@ msgstr "ངེས་ལྡན་གྱི་ནང་ཐིག་འདི་ཧ
msgctxt ""
"goalseek.xhp\n"
"par_id3166426\n"
-"18\n"
"help.text"
msgid "Place the cursor in the field <emph>Variable Cell</emph>. In the sheet, click in the cell that contains the value to be changed, in this example it is the cell with the capital value <item type=\"literal\">C</item>."
msgstr "ས་སྒོ་ <emph>འགྱུར་ཅན་ནང་ཐིག་</emph> ནང་ལུ་ འོད་རྟགས་བཙུགས་བཞག ལེབ་གྲངས་ནང་ བསྒྱུར་བཅོས་འབད་ནི་ཨིན་མི་བེ་ལུ་དང་ལྡན་པའི་ནང་ཐིག་ནང་ ཨེབ་གཏང་འབད་ དཔེ་དེ་ནང་ དངུལ་གྱི་བེ་ལུ་ <item type=\"literal\">C</item> ཨིན་པའི་ནང་ཐིག་ཅིག་ཨིན།"
@@ -6593,7 +6204,6 @@ msgstr "ས་སྒོ་ <emph>འགྱུར་ཅན་ནང་ཐིག
msgctxt ""
"goalseek.xhp\n"
"par_id3150369\n"
-"19\n"
"help.text"
msgid "Enter the expected result of the formula in the <emph>Target Value</emph> text box. In this example, the value is 15,000. Click <emph>OK</emph>."
msgstr "རེ་བ་བསྐྱེད་ཡོད་པའི་མན་ངག་གི་གྲུབ་འབྲས་འདི་ <emph>དམིགས་གཏད་བེ་ལུ་</emph> ཚིག་ཡིག་སྒྲོམ་ནང་བཙུགས། དཔེ་འདི་ནང་ བེ་ལུ་འདི་ ༡༥,༠༠༠ ཨིན་པས། <emph>བཏུབ་</emph> ལུ་ཨེབ་གཏང་འབད།"
@@ -6602,7 +6212,6 @@ msgstr "རེ་བ་བསྐྱེད་ཡོད་པའི་མན་ང
msgctxt ""
"goalseek.xhp\n"
"par_id3146978\n"
-"20\n"
"help.text"
msgid "A dialog appears informing you that the Goal Seek was successful. Click <emph>Yes</emph> to enter the result in the cell with the variable value."
msgstr "ཌའི་ལོག་གིས་ཁྱོད་ལུ་ དམིགས་གཏད་འཚོལ་བ་འདི་མཐར་འཁྱོལ་བྱུང་ནུག་ཟེར་ བརྡ་སླབ་འབད་དེ་འབྱུངམ་ཨིན། གྲུབ་འབྲས་འདི་ འགྱུར་ཅན་བེ་ལུ་དང་གཅིག་ཁར་ནང་ཐིག་ནང་བཙུགས་ནི་གི་དོན་ལུ་ <emph>ཨིན་</emph> ལུ་ཨུབ་གཏང་འབད།"
@@ -6611,7 +6220,6 @@ msgstr "ཌའི་ལོག་གིས་ཁྱོད་ལུ་ དམི
msgctxt ""
"goalseek.xhp\n"
"par_id3149409\n"
-"23\n"
"help.text"
msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">དམིགས་གཏད་འཚོལ་བ་</link>"
@@ -6636,7 +6244,6 @@ msgstr "<bookmark_value>ཨེཅ་ཊི་ཨེམ་ཨེལ་ ལེབ
msgctxt ""
"html_doc.xhp\n"
"hd_id3150542\n"
-"1\n"
"help.text"
msgid "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" name=\"Saving and Opening Sheets in HTML\">Saving and Opening Sheets in HTML</link></variable>"
msgstr "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" name=\"Saving and Opening Sheets in HTML\">ལེབ་གྲངས་ཚུ་ཨེཅ་ཊི་ཨེམ་ཨེལ་ནང་ སྲུང་ནི་དང་ཁ་ཕྱེ་ནི་</link></variable>"
@@ -6645,7 +6252,6 @@ msgstr "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" n
msgctxt ""
"html_doc.xhp\n"
"hd_id3154124\n"
-"2\n"
"help.text"
msgid "Saving Sheets in HTML"
msgstr "ཨེཅ་ཊི་ཨེམ་ཨེལ་ནང་ ལེབ་གྲངས་ཚུ་སྲུང་དོ།"
@@ -6654,7 +6260,6 @@ msgstr "ཨེཅ་ཊི་ཨེམ་ཨེལ་ནང་ ལེབ་ག
msgctxt ""
"html_doc.xhp\n"
"par_id3145785\n"
-"3\n"
"help.text"
msgid "<item type=\"productname\">%PRODUCTNAME</item> Calc saves all the sheets of a Calc document together as an HTML document. At the beginning of the HTML document, a heading and a list of hyperlinks are automatically added which lead to the individual sheets within the document."
msgstr "<item type=\"productname\">%PRODUCTNAME</item>ཀེལཀི་གིས་ ཀེལཀི་ཡིག་ཆའི་ལེབ་གྲངས་ཚུ་ཆ་མཉམ་གཅིག་ཁར་ ཨེཅ་ཊི་ཨེམ་ཨེལ་ཡིག་ཆ་སྦེ་ སྲུངསམ་ཨིན། ཨེཅ་ཊི་ཨེམ་ཨེལ་ ཡིག་ཆ་གི་འགོ་ཐོག་ལུ་ མགུ་རྒྱན་དང་ཧའི་པར་ལིངཀསི་ཐོ་ཡིག་ཚུ་ རང་བཞིན་གྱིས་ཁ་སྐོང་འབད་དེ་ཡོདཔ་ཨིན། དེ་ཡང་ ཡིག་ཆ་འདི་ནང་གི་ལེབ་གྲངས་རེ་བཞིན་ལུ་ འགོ་འཁྲིད་འབདཝ་ཨིན།"
@@ -6663,7 +6268,6 @@ msgstr "<item type=\"productname\">%PRODUCTNAME</item>ཀེལཀི་གི
msgctxt ""
"html_doc.xhp\n"
"par_id3155854\n"
-"4\n"
"help.text"
msgid "Numbers are shown as written. In addition, in the <SDVAL> HTML tag, the exact internal number value is written so that after opening the HTML document with <item type=\"productname\">%PRODUCTNAME</item> you know you have the exact values."
msgstr "ཨང་གྲངས་ཆུ་བྲིས་ཡོདཔ་བཟུམ་སྦེ་སྟོནམ་ཨིན། དེའི་ཁ་སྐོང་ནི་ལུ་ <SDVAL> ཨེཅ་ཊི་ཨེམ་ཨེལ་ ངོ་རྟགས་ནང་ ནང་འཁོད་ཨང་གྲངས་བེ་ལུ་ འདི་ཏག་ཏག་སྦེ་བྲིས་ཏེ་ཡོདཔ་ལས་ <item type=\"productname\">%PRODUCTNAME</item> དང་གཅིག་ཁར་ ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་ཆ་འདི་ ཁ་ཕྱེ་བའི་ཤུལ་ལུ་ ཁྱོད་ཀྱིས་ ཁྱོད་རང་ལུ་བེ་ལུ་ཏག་ཏག་ཡོདཔ་ཤེས།"
@@ -6672,7 +6276,6 @@ msgstr "ཨང་གྲངས་ཆུ་བྲིས་ཡོདཔ་བཟུ
msgctxt ""
"html_doc.xhp\n"
"par_id3153188\n"
-"5\n"
"help.text"
msgid "To save the current Calc document as HTML, choose <emph>File - Save As</emph>."
msgstr "ད་ལྟོའི་ཀེལཀི་ཡིག་ཆ་འདི་ ཨེཆ་ཊི་ཨེམ་ཨེལ་སྦེ་ སྲུང་ནི་གི་དོན་ལུ་ <emph>ཡིག་སྣོད་ - བཟུམ་སྦེ་སྲུངས་</emph> འདི་གདམ་ཁ་རྐྱབས།"
@@ -6681,7 +6284,6 @@ msgstr "ད་ལྟོའི་ཀེལཀི་ཡིག་ཆ་འདི་
msgctxt ""
"html_doc.xhp\n"
"par_id3148645\n"
-"6\n"
"help.text"
msgid "In the <emph>File type</emph> list box, in the area with the other <item type=\"productname\">%PRODUCTNAME</item> Calc filters, choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\"."
msgstr "<emph> དབྱེ་བ་སྦེ་སྲུངས་</emph> ཐོ་ཡིག་སྒྲོམ་ནང་དང་ དེ་ལས་གཞན་ <item type=\"productname\">%PRODUCTNAME</item> ཀེལཀི་ཚགས་མ་དང་གཅིག་ཁར་མངའ་ཁོངས་ནང་ ཡིག་སྣོད་དབྱེ་བ་ \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> ཀེལཀི་)\" གདམ་ཁ་རྐྱབས།"
@@ -6690,7 +6292,6 @@ msgstr "<emph> དབྱེ་བ་སྦེ་སྲུངས་</emph> ཐོ
msgctxt ""
"html_doc.xhp\n"
"par_id3154729\n"
-"7\n"
"help.text"
msgid "Enter a <emph>File name</emph> and click <emph>Save</emph>."
msgstr "<emph>ཡིག་སྣོད་མིང་</emph> ཡིག་སྣོད་མིང་ཅིག་བཙུགས་ཞིནམ་ལས་ <emph>སྲུང་ནི་</emph> གུ་ཨེབ་གཏང་འབད།"
@@ -6699,7 +6300,6 @@ msgstr "<emph>ཡིག་སྣོད་མིང་</emph> ཡིག་སྣ
msgctxt ""
"html_doc.xhp\n"
"hd_id3149379\n"
-"8\n"
"help.text"
msgid "Opening Sheets in HTML"
msgstr "ཨེཅ་ཊི་ཨེམ་ཨེལ་ནང་ལེབ་གྲངས་ཚུ་ ཁ་ཕྱེ་དོ།"
@@ -6708,7 +6308,6 @@ msgstr "ཨེཅ་ཊི་ཨེམ་ཨེལ་ནང་ལེབ་གྲ
msgctxt ""
"html_doc.xhp\n"
"par_id3149959\n"
-"10\n"
"help.text"
msgid "<item type=\"productname\">%PRODUCTNAME</item> offers various filters for opening HTML files, which you can select under <emph>File - Open</emph> in the <emph>Files of type</emph> list box:"
msgstr "<item type=\"productname\">%PRODUCTNAME</item> གིས་ ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་སྣོད་ཚུ་ཁ་ཕྱེ་ནིའི་དོན་ལས་ ཚགས་མ་འདྲ་མིན་སྣ་ཚོགས་ ཁྱོད་ཀྱིས་ <emph>ཡིག་སྣོད་ - ཁ་ཕྱེ་</emph> འོག་ལུ་ <emph>དབྱེ་བ་གི་ཡིག་སྣོད་</emph> ཐོ་ཡིག་སྒྲོམ་ནང་ལུ་སེལ་འཐུ་འབད་བཏུབ་མི་བྱིནམ་ཨིན་:"
@@ -6717,7 +6316,6 @@ msgstr "<item type=\"productname\">%PRODUCTNAME</item> གིས་ ཨེཆ་
msgctxt ""
"html_doc.xhp\n"
"par_id3146969\n"
-"15\n"
"help.text"
msgid "Choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\" to open in <item type=\"productname\">%PRODUCTNAME</item> Calc."
msgstr "<item type=\"productname\">%PRODUCTNAME</item> ཀེལཀི་ནང་ཁ་ཕྱེ་ནི་གི་དོན་ལུ་ ཡིག་སྣོད་དབྱེ་བ་ \"ཨེཆ་ཊི་ཨེམ་ཨེལ་ ཡིག་ཆ་ (<item type=\"productname\">%PRODUCTNAME</item> Calc)\" འདི་གདམ་ཁ་རྐྱབས།"
@@ -6726,7 +6324,6 @@ msgstr "<item type=\"productname\">%PRODUCTNAME</item> ཀེལཀི་ནང
msgctxt ""
"html_doc.xhp\n"
"par_id3155446\n"
-"16\n"
"help.text"
msgid "All <item type=\"productname\">%PRODUCTNAME</item> Calc options are now available to you. However, not all options that <item type=\"productname\">%PRODUCTNAME</item> Calc offers for editing can be saved in HTML format."
msgstr "<item type=\"productname\">%PRODUCTNAME</item>ཀེལཀི་ཚུ་ཆ་མཉམ་ ད་ལས་ཕར་ཁྱོད་ལུ་ལངམ་སྦེ་འཐོབ་ཚུགས། ག་དེ་འབད་རུང་ <item type=\"productname\">%PRODUCTNAME</item> ཀེལཀི་གིས་ ཞུན་དག་དོན་ལུ་བྱིན་མི་གདམ་ཁ་ཆ་མཉམ་ར་ ཨེཅ་ཊི་ཨེམ་ཨེལ་ནང་ སྲུང་མི་ཚུགས།"
@@ -6735,7 +6332,6 @@ msgstr "<item type=\"productname\">%PRODUCTNAME</item>ཀེལཀི་ཚུ
msgctxt ""
"html_doc.xhp\n"
"par_id3150370\n"
-"17\n"
"help.text"
msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"File - Open\">File - Open</link>"
msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"File - Open\">ཡིག་སྣོད་ - ཁ་ཕྱེ་</link>"
@@ -6744,7 +6340,6 @@ msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"File - Open\">ཡི
msgctxt ""
"html_doc.xhp\n"
"par_id3150199\n"
-"18\n"
"help.text"
msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"File - Save As\">File - Save As</link>"
msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"File - Save As\">ཡིག་སྣོད་ - བཟུམ་སྦེ་སྲུངས་</link>"
@@ -6758,7 +6353,6 @@ msgid "Entering a Number with Leading Zeros"
msgstr "ཀླད་ཀོར་གྱིས་སྔོན་བསྐྱོད་འབད་དེ་ ཨང་གྲངས་ཅིག་བཙུགས་དོ།"
#: integer_leading_zero.xhp
-#, fuzzy
msgctxt ""
"integer_leading_zero.xhp\n"
"bm_id3147560\n"
@@ -6882,7 +6476,6 @@ msgstr "<bookmark_value>འཛུལ་སྤྱོད་ %PRODUCTNAME ཀེ
msgctxt ""
"keyboard.xhp\n"
"hd_id3145120\n"
-"1\n"
"help.text"
msgid "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" name=\"Shortcut Keys (%PRODUCTNAME Calc Accessibility)\">Shortcut Keys (<item type=\"productname\">%PRODUCTNAME</item> Calc Accessibility)</link></variable>"
msgstr "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" name=\"Shortcut Keys (%PRODUCTNAME Calc Accessibility)\">མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ་ (<item type=\"productname\">%PRODUCTNAME</item> ཀེལཀི་འཛུལ་སྤྱོད་)</link></variable>"
@@ -6891,7 +6484,6 @@ msgstr "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" n
msgctxt ""
"keyboard.xhp\n"
"par_id3154760\n"
-"13\n"
"help.text"
msgid "Refer also to the lists of shortcut keys for <item type=\"productname\">%PRODUCTNAME</item> Calc and <item type=\"productname\">%PRODUCTNAME</item> in general."
msgstr "<item type=\"productname\">%PRODUCTNAME</item> ཀེལཀི་དང་སྤྱིར་བཏང་ <item type=\"productname\">%PRODUCTNAME</item> གི་དོན་ལུ་ མགྱོགས་ཐབས་ལྡེ་མིག་གི་ཐོ་ཡིག་ལུ་ཡང་ གཞི་བསྟུན་འབད།"
@@ -6900,7 +6492,6 @@ msgstr "<item type=\"productname\">%PRODUCTNAME</item> ཀེལཀི་དང
msgctxt ""
"keyboard.xhp\n"
"hd_id3153360\n"
-"12\n"
"help.text"
msgid "Cell Selection Mode"
msgstr "ནང་ཐིག་སེལ་འཐུའི་ཐབས་ལམ།"
@@ -6911,13 +6502,12 @@ msgctxt ""
"par_id3150870\n"
"help.text"
msgid "<image id=\"img_id3150439\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3150439\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"1.667cm\" height=\"0.37cm\"><alt id=\"alt_id3156441\">ངོས་པར་</alt></image>"
+msgstr "<image id=\"img_id3156441\" src=\"media/helpimg/calcnav.png\" width=\"1.667cm\" height=\"0.37cm\"><alt id=\"alt_id3156441\">ངོས་པར་</alt></image>"
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3154319\n"
-"11\n"
"help.text"
msgid "In a text box that has a button to minimize the dialog, press <item type=\"keycode\">F2</item> to enter the cell selection mode. Select any number of cells, then press <item type=\"keycode\">F2</item> again to show the dialog."
msgstr "ཌའི་ལོག་ཆུང་ཀུ་བཟོ་ནིའི་ཨེབ་རྟ་དང་ལྡན་པའི་ཚིག་ཡིག་སྒྲོམ་ཅིག་ནང་ ནང་ཐིག་སེལ་འཐུའི་ཐབས་ལམ་ ཐོ་བཀོད་འབད་ནི་ལུ་ <item type=\"keycode\">ཨེཕ་ ༢ </item> ལུ་ཨེབས། ནང་ཐིག་གང་རུང་ཅིག་སེལ་འཐུ་འབད་ཞིནམ་ལས་ ཌའི་ལོག་སྟོན་ནི་གི་དོན་ལུ་ དོ་རུང་<item type=\"keycode\">ཨེཕ་ ༢ </item> ལུ་ཨེབས།"
@@ -6926,7 +6516,6 @@ msgstr "ཌའི་ལོག་ཆུང་ཀུ་བཟོ་ནིའི་
msgctxt ""
"keyboard.xhp\n"
"par_id3145272\n"
-"10\n"
"help.text"
msgid "In the cell selection mode, you can use the common navigation keys to select cells."
msgstr "ནང་ཐིག་སེལ་འཐུའི་ཐབས་ལམ་ནང་ ཁྱོད་ཀྱིས་ ནང་ཐིག་སེལ་འཐུ་འབད་ནི་གི་དོན་ལུ་ ཐུན་མོང་འགྲུལ་བསྐྱོད་ལྡེ་མིག་ཚུ་ ལག་ལེན་འཐབ་བཏུབ།"
@@ -6935,7 +6524,6 @@ msgstr "ནང་ཐིག་སེལ་འཐུའི་ཐབས་ལམ་
msgctxt ""
"keyboard.xhp\n"
"hd_id3148646\n"
-"14\n"
"help.text"
msgid "Controlling the Outline"
msgstr "མཐའ་ཐིག་ཚད་འཛིན་འབད་དོ།"
@@ -6944,7 +6532,6 @@ msgstr "མཐའ་ཐིག་ཚད་འཛིན་འབད་དོ།"
msgctxt ""
"keyboard.xhp\n"
"par_id3146120\n"
-"15\n"
"help.text"
msgid "You can use the keyboard in <link href=\"text/scalc/01/12080000.xhp\" name=\"Outline\">Outline</link>:"
msgstr "ཁྱོད་ཀྱིས་ <link href=\"text/scalc/01/12080000.xhp\" name=\"Outline\">མཐའ་ཐིག་</link> ནང་ ལྡེ་སྒྲོམ་ལག་ལེན་འཐབ་ཚུགས་:"
@@ -6953,7 +6540,6 @@ msgstr "ཁྱོད་ཀྱིས་ <link href=\"text/scalc/01/12080000.xhp\"
msgctxt ""
"keyboard.xhp\n"
"par_id3147394\n"
-"16\n"
"help.text"
msgid "Press <item type=\"keycode\">F6</item> or <item type=\"keycode\">Shift+F6</item> until the vertical or horizontal outline window has the focus."
msgstr "ཀེར་ཐིག་ ཡང་ན་ ཐད་སྙོམས་མཐའ་ཐིག་སྒོ་སྒྲིག་ལུ་ཆེད་དམིགས་ཡོད་ཀྱི་བར་ <item type=\"keycode\">ཨེཕ་ ༦ </item> ཡང་ན་ <item type=\"keycode\">སོར་ལྡེ་+ཨེཕ་ ༦ </item> ལུ་ཨེབས།"
@@ -6962,7 +6548,6 @@ msgstr "ཀེར་ཐིག་ ཡང་ན་ ཐད་སྙོམས་མ
msgctxt ""
"keyboard.xhp\n"
"par_id3149379\n"
-"17\n"
"help.text"
msgid "<item type=\"keycode\">Tab</item> - cycle through all visible buttons from top to bottom or from left to right."
msgstr "<item type=\"keycode\">མཆོང་ལྡེ་</item> - མཐོང་ཚུགས་པའི་ཨེབ་རྟེའིམགུ་ལས་མཇུག་ཚུན་ ཡང་ན་ གཡོན་ལས་གཡས་ཀྱི་བར་ལས་བརྒྱུད་དེ་ བསྐོར་བ་རྐྱབས།"
@@ -6971,7 +6556,6 @@ msgstr "<item type=\"keycode\">མཆོང་ལྡེ་</item> - མཐོང
msgctxt ""
"keyboard.xhp\n"
"par_id3156286\n"
-"18\n"
"help.text"
msgid "<item type=\"keycode\">Shift+Tab</item> - cycle through all visible buttons in the opposite direction."
msgstr "<item type=\"keycode\">སོར་ལྡེ་+མཆོང་ལྡེ་</item> - མཐོང་ཚུགས་པའི་ཨེབ་རྟ་ཆ་མཉམ་ལས་བརྒྱུད་དེ་ ཁ་ཕྱོགས་རྒྱབ་འགལ་སྦེ་ བསྐོར་བ་རྐྱབས།"
@@ -6980,7 +6564,6 @@ msgstr "<item type=\"keycode\">སོར་ལྡེ་+མཆོང་ལྡེ
msgctxt ""
"keyboard.xhp\n"
"par_id3149403\n"
-"19\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+1 to Command+8</caseinline><defaultinline>Ctrl+1 to Ctrl+8</defaultinline></switchinline> - show all levels up to the specified number; hide all higher levels."
msgstr ""
@@ -6989,7 +6572,6 @@ msgstr ""
msgctxt ""
"keyboard.xhp\n"
"par_id3150329\n"
-"20\n"
"help.text"
msgid "Use <item type=\"keycode\">+</item> or <item type=\"keycode\">-</item> to show or hide the focused outline group."
msgstr "ཆེད་དམིགས་འབད་ཡོད་པའི་མཐའ་ཐིག་སྡེ་ཚན་འདི་ སྟོན་ནི་དང་ ཡང་ན་ སྦ་ནིའི་དོན་ལུ་ <item type=\"keycode\">+</item> ཡང་ན་ <item type=\"keycode\">-</item> ལག་ལེན་འཐབ།"
@@ -6998,7 +6580,6 @@ msgstr "ཆེད་དམིགས་འབད་ཡོད་པའི་མཐ
msgctxt ""
"keyboard.xhp\n"
"par_id3155446\n"
-"21\n"
"help.text"
msgid "Press <item type=\"keycode\">Enter</item> to activate the focused button."
msgstr "ཆེད་དམིགས་འབད་ཡོད་པའི་ཨེབ་རྟ་འདི་ཤུགས་ལྡན་བཟོ་ནི་གི་དོན་ལུ་ <item type=\"keycode\">བཙུགས་</item>ལུ་ཨེབས།"
@@ -7007,7 +6588,6 @@ msgstr "ཆེད་དམིགས་འབད་ཡོད་པའི་ཨེ
msgctxt ""
"keyboard.xhp\n"
"par_id3154253\n"
-"22\n"
"help.text"
msgid "Use <item type=\"keycode\">Up</item>, <item type=\"keycode\">Down</item>, <item type=\"keycode\">Left</item>, or <item type=\"keycode\">Right</item> arrow to cycle through all buttons in the current level."
msgstr "ད་ལྟོའི་གནས་རིམ་ནང་ལུ་ <item type=\"keycode\">ཡར་</item> དང་<item type=\"keycode\">མར་</item> དེ་ལས་ <item type=\"keycode\"> གཡོན་</item>ཡང་ན་ <item type=\"keycode\">གཡས་ཀྱི་</item> མདའ་རྟགས་ཚུ་ ཨེབ་རྟ་ཆ་མཉམ་ལས་བརྒྱུད་དེ་ ལག་ལེན་འཐབ།"
@@ -7016,7 +6596,6 @@ msgstr "ད་ལྟོའི་གནས་རིམ་ནང་ལུ་ <item
msgctxt ""
"keyboard.xhp\n"
"hd_id3147343\n"
-"8\n"
"help.text"
msgid "Selecting a Drawing Object or a Graphic"
msgstr "པར་རིས་དངོས་པོ་ཅིག་ ཡང་ན་ ཚད་རིས་ཅིག་སེལ་འཐུ་འབད་དོ།"
@@ -7033,7 +6612,6 @@ msgstr "མཐོང་སྣང་གདམ་ཁ་རྐྱབས་-ལག
msgctxt ""
"keyboard.xhp\n"
"par_id3155333\n"
-"7\n"
"help.text"
msgid "Press <item type=\"keycode\">F6</item> until the <emph>Drawing</emph> toolbar is selected."
msgstr "ཨེབ་གཏང་འབད་ <item type=\"keycode\">ཨེཕ་༦</item>ཚུན་ཚོད་ <emph>པར་རིས་</emph> ལག་ཆས་སེལ་འཐུ་མ་འབད་ཚུན་ཚོད།"
@@ -7042,7 +6620,6 @@ msgstr "ཨེབ་གཏང་འབད་ <item type=\"keycode\">ཨེཕ་
msgctxt ""
"keyboard.xhp\n"
"par_id3150345\n"
-"4\n"
"help.text"
msgid "If the selection tool is active, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. This selects the first drawing object or graphic in the sheet."
msgstr ""
@@ -7051,7 +6628,6 @@ msgstr ""
msgctxt ""
"keyboard.xhp\n"
"par_id3159240\n"
-"3\n"
"help.text"
msgid "With <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 you set the focus to the document."
msgstr ""
@@ -7060,7 +6636,6 @@ msgstr ""
msgctxt ""
"keyboard.xhp\n"
"par_id3155379\n"
-"2\n"
"help.text"
msgid "Now you can use <item type=\"keycode\">Tab</item> to select the next drawing object or graphic and <item type=\"keycode\">Shift+Tab</item> to select the previous one."
msgstr "ད་འབདན་ཁྱོད་ཀྱིས་ ཤུལ་མའི་པར་རིས་དངོས་པོ་ ཡང་ན་ ཚད་རིས་གཉིས་སེལ་འཐུ་འབད་ནི་གི་དོན་ལས་ <item type=\"keycode\">མཆོང་ལྡེ་</item> ལག་ལེན་འཐབ་བཏུབ་དང་ ཧེ་མ་གི་འདི་སེལ་འཐུ་འབད་ནི་གི་དོན་ལས་ <item type=\"keycode\">སོར་ལྡེ་+མཆོང་ལྡེ་</item> ལག་ལེན་འཐབ་བཏུབ།"
@@ -7074,7 +6649,6 @@ msgid "Freezing Rows or Columns as Headers"
msgstr "གྲལ་ཐིག་ཚུ་དང་ ཡང་ན་ ཀེར་ཐིག་ཚུ་ མགོ་ཡིག་སྦེ་ཐོགས་དོ།"
#: line_fix.xhp
-#, fuzzy
msgctxt ""
"line_fix.xhp\n"
"bm_id3154684\n"
@@ -7083,7 +6657,6 @@ msgid "<bookmark_value>tables; freezing</bookmark_value> <bookmark_value>title
msgstr "<bookmark_value>ཐིག་ཁྲམ་ཚུ་ ཐོགས་དོ་</bookmark_value><bookmark_value>མགོ་མིང་གྲལ་ཐིག་ཚུ་ ཐིག་ཁྲམ་གཤག་པའི་སྐབས་ལུ་ཐོགས་ནི་</bookmark_value><bookmark_value>གྲལ་ཐིག་ཚུ་ ཐོགས་དོ་</bookmark_value><bookmark_value>ཀེར་ཐིག་ཚུ་ ཐོགས་དོ་</bookmark_value><bookmark_value>གྲལ་ཐིག་ ཡང་ན་ ཀེར་ཐིག་ཐོགས་དོ་</bookmark_value><bookmark_value>མགོ་ཡིག་ཚུ་ ཐིག་ཁྲམ་གཤག་པའི་སྐབས་ལུ་ཐོགས་ནི་</bookmark_value><bookmark_value>ཐིག་ཁྲམ་ནང་ སྔོན་བཀག་བཤུད་སྒྲིལ་འབད་དོ་</bookmark_value><bookmark_value>སྒོ་སྒྲིག་ཚུ་ གཤག་དོ་</bookmark_value><bookmark_value>ཐིག་ཁྲམ་ཚུ་ སྒོ་སྒྲིག་ཚུ་གཤག་དོ་t</bookmark_value>"
#: line_fix.xhp
-#, fuzzy
msgctxt ""
"line_fix.xhp\n"
"hd_id3154684\n"
@@ -7092,7 +6665,6 @@ msgid "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" na
msgstr "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Freezing Rows or Columns as Headers\">གྲལ་ཐིག་ ཡང་ན་ ཀེར་ཐིག་འདི་ མགོ་ཡིག་སྦེ་ཐོགས་དོ་</link></variable>"
#: line_fix.xhp
-#, fuzzy
msgctxt ""
"line_fix.xhp\n"
"par_id3148576\n"
@@ -7101,7 +6673,6 @@ msgid "If you have long rows or columns of data that extend beyond the viewable
msgstr "ཁྱོད་ལུ་ ཤོག་ཁྲམ་གྱི་མཐོང་ཚུགས་པའི་མངའ་ཁོངས་རྒྱབ་ཁར་ རྒྱ་འཕར་ཏེ་ཡོད་པའི་གྲལ་ཐིག་རིངམོ་དང་ཀེར་ཐིག་ཚུ་ཡོད་པ་ཅིན་ དེ་ཚུ་ཐོགས་ཚུགས། དེ་གིས་ ཁྱོད་གནད་སྡུད་གཞན་ནང་ལས་བརྒྱུད་དེ་བཤུད་སྒྲིལ་འབདཝ་ད་ ཀེར་ཐིག་དང་གྲལ་ཐིག་ཚུ་མཐོང་བཅུགཔ་ཨིན།"
#: line_fix.xhp
-#, fuzzy
msgctxt ""
"line_fix.xhp\n"
"par_id3156441\n"
@@ -7110,7 +6681,6 @@ msgid "Select the row below, or the column to the right of the row or column tha
msgstr "ཁྱོད་ ཐོགས་ཡོད་པའི་མངའ་ཁོངས་ནང་གནས་དགོ་མནོ་མི་ འོག་གི་གྲལ་ཐིག་ ཡང་ན་ ཀེར་ཐིག་གཉིས་ གྲལ་ཐིག་ ཡང་ན་ ཀེར་ཐིག་གི་གཡས་ཁ་ཐུག་ལུ་ སེལ་འཐུ་འབད། ལྟག་གི་གྲལ་ཐིག་ཆ་མཉམ་ ཡང་ན་ སེལ་འཐུའི་གཡོན་ཁ་ཐུག་གི་ཀེར་ཐིག་ཆ་མཉམ་ཐོགས་ནུག"
#: line_fix.xhp
-#, fuzzy
msgctxt ""
"line_fix.xhp\n"
"par_id3153158\n"
@@ -7143,7 +6713,6 @@ msgid "If the area defined is to be scrollable, apply the <item type=\"menuitem\
msgstr ""
#: line_fix.xhp
-#, fuzzy
msgctxt ""
"line_fix.xhp\n"
"par_id3147345\n"
@@ -7160,7 +6729,6 @@ msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Fr
msgstr ""
#: line_fix.xhp
-#, fuzzy
msgctxt ""
"line_fix.xhp\n"
"par_id3150088\n"
@@ -7169,7 +6737,6 @@ msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"View - Split\">View - Sp
msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Window - Split\">སྒོ་སྒྲིག་ - གཤག་ནི་</link>"
#: line_fix.xhp
-#, fuzzy
msgctxt ""
"line_fix.xhp\n"
"par_id3150304\n"
@@ -7197,7 +6764,6 @@ msgstr "<bookmark_value>$[officename] ཀེལཀི་ བསླབ་སྟ
msgctxt ""
"main.xhp\n"
"hd_id3150770\n"
-"1\n"
"help.text"
msgid "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"Instructions for Using $[officename] Calc\">Instructions for Using $[officename] Calc</link></variable>"
msgstr "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"Instructions for Using $[officename] Calc\">$[officename] ཀེལཀི་ ལག་ལེན་འཐབ་ནི་གི་དོན་ལུ་ བསླབ་སྟོན་</link></variable>"
@@ -7206,7 +6772,6 @@ msgstr "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"In
msgctxt ""
"main.xhp\n"
"hd_id3145748\n"
-"2\n"
"help.text"
msgid "Formatting Tables and Cells"
msgstr "ཐིག་ཁྲམ་དང་ནང་ཐིག་ཚུ་ རྩ་སྒྲིག་འབད་དོ།"
@@ -7215,7 +6780,6 @@ msgstr "ཐིག་ཁྲམ་དང་ནང་ཐིག་ཚུ་ རྩ
msgctxt ""
"main.xhp\n"
"hd_id3154022\n"
-"3\n"
"help.text"
msgid "Entering Values and Formulas"
msgstr "བེ་ལུསི་དང་མན་ངག་ཚུ་ བཙུགས་དོ།"
@@ -7224,7 +6788,6 @@ msgstr "བེ་ལུསི་དང་མན་ངག་ཚུ་ བཙུ
msgctxt ""
"main.xhp\n"
"hd_id3152899\n"
-"4\n"
"help.text"
msgid "Entering References"
msgstr "གཞི་བསྟུན་ཚུ་བཙུགས་དོ།"
@@ -7233,7 +6796,6 @@ msgstr "གཞི་བསྟུན་ཚུ་བཙུགས་དོ།"
msgctxt ""
"main.xhp\n"
"hd_id3155382\n"
-"5\n"
"help.text"
msgid "Database Ranges in Tables"
msgstr "ཐིག་ཁྲམ་ནང་ གནད་སྡུད་གཞི་རྟེན་གྱི་ཁྱབ་ཚད་ཚུ།"
@@ -7242,17 +6804,14 @@ msgstr "ཐིག་ཁྲམ་ནང་ གནད་སྡུད་གཞི
msgctxt ""
"main.xhp\n"
"hd_id3159229\n"
-"6\n"
"help.text"
msgid "Advanced Calculations"
msgstr "མཐོ་རིམ་ཅན་གྱི་རྩིས་སྟོན།"
#: main.xhp
-#, fuzzy
msgctxt ""
"main.xhp\n"
"hd_id3153070\n"
-"7\n"
"help.text"
msgid "Printing and Print Preview"
msgstr "དཔར་བསྐྲུན་དང་ཤོག་ལེབ་སྔོན་་ལྟ།"
@@ -7261,7 +6820,6 @@ msgstr "དཔར་བསྐྲུན་དང་ཤོག་ལེབ་སྔ
msgctxt ""
"main.xhp\n"
"hd_id3150437\n"
-"8\n"
"help.text"
msgid "Importing and Exporting Documents"
msgstr "ཡིག་ཆ་ ནང་འདྲེན་དང་ཕྱིར་འདྲེན་འབད་དོ།"
@@ -7270,7 +6828,6 @@ msgstr "ཡིག་ཆ་ ནང་འདྲེན་དང་ཕྱིར་
msgctxt ""
"main.xhp\n"
"hd_id3166464\n"
-"9\n"
"help.text"
msgid "Miscellaneous"
msgstr "སྣ་ཚོགས།"
@@ -7295,7 +6852,6 @@ msgstr "<bookmark_value>ནང་ཐིག་ཚུ་ སེལ་འཐུ་
msgctxt ""
"mark_cells.xhp\n"
"hd_id3153361\n"
-"1\n"
"help.text"
msgid "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\" name=\"Selecting Multiple Cells\">Selecting Multiple Cells</link></variable>"
msgstr "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\" name=\"Selecting Multiple Cells\">སྣ་མང་ནང་ཐིག་ཚུ་ སེལ་འཐུ་འབད་དོ་</link></variable>"
@@ -7304,7 +6860,6 @@ msgstr "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
"hd_id3145272\n"
-"2\n"
"help.text"
msgid "Select a rectangular range"
msgstr "གྲུ་བཞི་ནར་མོའི་ཁྱབ་ཚད་ཅིག་ སེལ་འཐུ་འབད།"
@@ -7313,7 +6868,6 @@ msgstr "གྲུ་བཞི་ནར་མོའི་ཁྱབ་ཚད་ཅ
msgctxt ""
"mark_cells.xhp\n"
"par_id3149261\n"
-"3\n"
"help.text"
msgid "With the mouse button pressed, drag from one corner to the diagonally opposed corner of the range."
msgstr "མཱའུསི་ཨེབ་རྟ་འདི་ཨེབས་པའི་ཐོག་ལས་ སྒྱིད་ཁུག་ཅིག་ནང་ལས་ ཁྱབ་ཚད་ཀྱི་གསེག་ཐིག་རྒྱབ་འགལ་ཅན་གྱི་སྒྱིད་ཁུག་ལུ་འདྲུད།"
@@ -7322,7 +6876,6 @@ msgstr "མཱའུསི་ཨེབ་རྟ་འདི་ཨེབས་པ
msgctxt ""
"mark_cells.xhp\n"
"hd_id3151119\n"
-"4\n"
"help.text"
msgid "Mark a single cell"
msgstr "ནང་ཐིག་རྐྱང་པའི་གུ་རྟགས་བཀལ།"
@@ -7331,7 +6884,6 @@ msgstr "ནང་ཐིག་རྐྱང་པའི་གུ་རྟགས་
msgctxt ""
"mark_cells.xhp\n"
"par_id3146975\n"
-"19\n"
"help.text"
msgid "Do one of the following:"
msgstr "འོག་གི་ཚུ་ནང་ལས་གཅིག་འབད་:"
@@ -7340,7 +6892,6 @@ msgstr "འོག་གི་ཚུ་ནང་ལས་གཅིག་འབད
msgctxt ""
"mark_cells.xhp\n"
"par_id3163710\n"
-"20\n"
"help.text"
msgid "Click, then Shift-click the cell."
msgstr "ཨེབ་གཏང་འབད་ དེ་ལས་ནང་ཐིག་ལུ་སོར་ལྡེ་-ཨེབ་གཏང་འབད།"
@@ -7349,7 +6900,6 @@ msgstr "ཨེབ་གཏང་འབད་ དེ་ལས་ནང་ཐི
msgctxt ""
"mark_cells.xhp\n"
"par_id3149959\n"
-"5\n"
"help.text"
msgid "Pressing the mouse button, drag a range across two cells, do not release the mouse button, and then drag back to the first cell. Release the mouse button. You can now move the individual cell by drag and drop."
msgstr "མཱའུསི་ཨེབ་རྟ་འདི་ཨེབས་པའི་ཐོག་ལས་ ནང་ཐིག་གཉིས་ཡན་ཆད་ལུ་ ཁྱབ་ཚད་ཅིག་འདྲུད། དེ་འབདཝ་ད་ མའུསི་ཨེབ་རྟ་འདི་འཛིན་གྲོལ་མ་འབད་བར་ ལོག་ནང་ཐིག་དང་པམ་ལུ་འདྲུད། ད་འབདན་ཁྱོད་ཀྱིས་ འདྲུད་ནི་དང་བཞག་ནིའི་ཐོག་ལས་ ནང་ཐིག་རེ་བཞིན་སྤོ་བཤུད་འབད་བཏུབ།"
@@ -7358,7 +6908,6 @@ msgstr "མཱའུསི་ཨེབ་རྟ་འདི་ཨེབས་པ
msgctxt ""
"mark_cells.xhp\n"
"hd_id3154942\n"
-"6\n"
"help.text"
msgid "Select various dispersed cells"
msgstr "ཁ་གཏོར་ཡོད་པའི་ནང་ཐིག་འདྲ་མིན་སྣ་ཚོགས་ སེལ་འཐུ་འབད།"
@@ -7375,7 +6924,6 @@ msgstr "འོག་གི་ཚུ་ནང་ལས་གཅིག་འབད
msgctxt ""
"mark_cells.xhp\n"
"par_id3156284\n"
-"7\n"
"help.text"
msgid "Mark at least one cell. Then while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, click each of the additional cells."
msgstr "ཉུང་མཐའ་ར་ནང་ཐིག་གཅིག་གུ་རྟགས་བཀལ་དགོ དེ་ལས་<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline> ཚད་འཛིན་</defaultinline></switchinline>ཨེབས་པའི་བསྒང་ལུ་ ཁ་སྐོང་ཅན་གྱི་ནང་ཐིག་རེ་རེ་བཞིན་ལུ་ཨེབ་གཏང་འབད།"
@@ -7392,7 +6940,6 @@ msgstr ""
msgctxt ""
"mark_cells.xhp\n"
"hd_id3146971\n"
-"8\n"
"help.text"
msgid "Switch marking mode"
msgstr "སོར་བསྒྱུར་རྟགས་ཀྱི་ཐབས་ལམ།"
@@ -7401,7 +6948,6 @@ msgstr "སོར་བསྒྱུར་རྟགས་ཀྱི་ཐབས་
msgctxt ""
"mark_cells.xhp\n"
"par_id3155064\n"
-"9\n"
"help.text"
msgid "On the status bar, click the box with the legend STD / EXT / ADD to switch the marking mode:"
msgstr "གནས་ཚད་ཕྲ་རིང་གུ་ལུ་ རྟགས་བཀལ་ཐབས་ལམ་ལུ་སོར་བསྒྱུར་འབད་ནི་གི་དོན་ལུ་ གཏམ་རྒྱུད་ STD / EXT / ADD དང་བཅས་སྒྲོམ་གུ་ཨེབ་གཏང་འབད།"
@@ -7410,7 +6956,6 @@ msgstr "གནས་ཚད་ཕྲ་རིང་གུ་ལུ་ རྟག
msgctxt ""
"mark_cells.xhp\n"
"par_id3159264\n"
-"10\n"
"help.text"
msgid "Field contents"
msgstr "ས་སྒོའི་ནང་དོན་ཚུ།"
@@ -7419,7 +6964,6 @@ msgstr "ས་སྒོའི་ནང་དོན་ཚུ།"
msgctxt ""
"mark_cells.xhp\n"
"par_id3155337\n"
-"11\n"
"help.text"
msgid "Effect of clicking the mouse"
msgstr "མཱའུསི་ཨེབ་གཏང་གི་ནུས་པ།"
@@ -7428,7 +6972,6 @@ msgstr "མཱའུསི་ཨེབ་གཏང་གི་ནུས་པ།
msgctxt ""
"mark_cells.xhp\n"
"par_id3149568\n"
-"12\n"
"help.text"
msgid "STD"
msgstr "ཨེསི་ཊི་ཌི།"
@@ -7437,7 +6980,6 @@ msgstr "ཨེསི་ཊི་ཌི།"
msgctxt ""
"mark_cells.xhp\n"
"par_id3148486\n"
-"13\n"
"help.text"
msgid "A mouse click selects the cell you have clicked on. Unmarks all marked cells."
msgstr "མཱའུསི་ཨེབ་གཏང་གིས་ ཁྱོད་ཀྱིས་ཨེབ་གཏང་འབད་ཡོད་པའི་ནང་ཐིག་འདི་སེལ་འཐུ་འབདཝ་ཨིན། དེ་མ་ཚད་ རྟགས་བཀལ་ཡོད་པའི་ནང་ཐིག་ཚུ་ཆ་མཉམ་ རྟགས་བཀལ་བཤོལཝ་ཨིན།"
@@ -7446,7 +6988,6 @@ msgstr "མཱའུསི་ཨེབ་གཏང་གིས་ ཁྱོད
msgctxt ""
"mark_cells.xhp\n"
"par_id3150090\n"
-"14\n"
"help.text"
msgid "EXT"
msgstr "ཨི་ཨེགསི་ཊི།"
@@ -7455,7 +6996,6 @@ msgstr "ཨི་ཨེགསི་ཊི།"
msgctxt ""
"mark_cells.xhp\n"
"par_id3150305\n"
-"15\n"
"help.text"
msgid "A mouse click marks a rectangular range from the current cell to the cell you clicked. Alternatively, Shift-click a cell."
msgstr ""
@@ -7464,7 +7004,6 @@ msgstr ""
msgctxt ""
"mark_cells.xhp\n"
"par_id3145587\n"
-"16\n"
"help.text"
msgid "ADD"
msgstr "ཨེ་ཌི་ཌི།"
@@ -7473,7 +7012,6 @@ msgstr "ཨེ་ཌི་ཌི།"
msgctxt ""
"mark_cells.xhp\n"
"par_id3154368\n"
-"17\n"
"help.text"
msgid "A mouse click in a cell adds it to the already marked cells. A mouse click in a marked cell unmarks it. Alternatively, <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click the cells."
msgstr ""
@@ -7482,7 +7020,6 @@ msgstr ""
msgctxt ""
"mark_cells.xhp\n"
"par_id3154487\n"
-"18\n"
"help.text"
msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status bar\">Status bar</link>"
msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Status bar\">གནས་ཚད་ཕྲ་རིང་</link>"
@@ -7507,7 +7044,6 @@ msgstr "<bookmark_value>མེ་ཊི་སེསི་ མེ་ཊིཀས
msgctxt ""
"matrixformula.xhp\n"
"hd_id3153969\n"
-"13\n"
"help.text"
msgid "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Entering Matrix Formulas\">Entering Matrix Formulas</link></variable>"
msgstr "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Entering Matrix Formulas\">མེ་ཊིགསི་མན་ངག་བཙུགས་་དོ་</link></variable>"
@@ -7516,7 +7052,6 @@ msgstr "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformu
msgctxt ""
"matrixformula.xhp\n"
"par_id3153144\n"
-"14\n"
"help.text"
msgid "The following is an example of how you can enter a matrix formula, without going into the details of matrix functions."
msgstr "འོག་གི་འདི་ མེ་ཊིཀསི་ལས་འགན་གྱི་རྒྱས་བཤད་ནང་མ་འགྱོ་བར་ མེ་ཊིཀསི་མན་ངག་ཅིག་ག་དེ་སྦེ་བཙུགས་ནི་ཨིན་ནའི་དཔེ་ཨིན།"
@@ -7525,7 +7060,6 @@ msgstr "འོག་གི་འདི་ མེ་ཊིཀསི་ལས་
msgctxt ""
"matrixformula.xhp\n"
"par_id3153188\n"
-"15\n"
"help.text"
msgid "Assume you have entered 10 numbers in Columns A and B (A1:A10 and B1:B10), and would like to calculate the sum of each row in Column C."
msgstr "ཁྱོད་ཀྱིས་ ཀེར་ཐིག་ ཨེ་དང་བི་(ཨེ་ ༡:ཨེ་ ༡༠ དང་ བི་ ༡ :བི་ ༡༠) ནང་ ཨང་གྲངས་བཅུ་ཐམས་བཙུགས་ཡོདཔ་དང་ ཀེར་ཐིག་ སི་ ནང་ལུ་ གྲལ་ཐིག་རེ་རེའི་དངུལ་བསྡོམས་རྩིས་སྟོན་ནི་ཨིན་པའི་དབང་ལུ་གཏང་།"
@@ -7534,7 +7068,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཀེར་ཐིག་ ཨེ་དང
msgctxt ""
"matrixformula.xhp\n"
"par_id3154321\n"
-"16\n"
"help.text"
msgid "Using the mouse, select the range C1:C10, in which the results are to be displayed."
msgstr "མཱའུསི་ལག་ལེན་འཐབ་ཐོག་ལས་ གྲུབ་འབྲས་ཚུ་བཀྲམ་སྟོན་འབད་ནི་ཨིན་པའི་ཁྱབ་ཚད་ སི་ ༡ : སི་ ༡༠ འདི་སེལ་འཐུ་འབད།"
@@ -7543,7 +7076,6 @@ msgstr "མཱའུསི་ལག་ལེན་འཐབ་ཐོག་ལས
msgctxt ""
"matrixformula.xhp\n"
"par_id3149260\n"
-"17\n"
"help.text"
msgid "Press F2, or click in the input line of the Formula bar."
msgstr "ཨེཕ་ ༢་ ལུ་ཨེབས་ ཡང་ན་ མན་ངག་ཕྲ་རིང་གི་ཨིན་པུཊི་གྲལ་ཐིག་ནང་ལུ་ཨེབ་གཏང་འབད།"
@@ -7552,7 +7084,6 @@ msgstr "ཨེཕ་ ༢་ ལུ་ཨེབས་ ཡང་ན་ མན་
msgctxt ""
"matrixformula.xhp\n"
"par_id3154944\n"
-"18\n"
"help.text"
msgid "Enter an equal sign (=)."
msgstr "མཉམ་རྟགས་ (=)བཙུགས།"
@@ -7561,7 +7092,6 @@ msgstr "མཉམ་རྟགས་ (=)བཙུགས།"
msgctxt ""
"matrixformula.xhp\n"
"par_id3145252\n"
-"19\n"
"help.text"
msgid "Select the range A1:A10, which contains the first values for the sum formula."
msgstr "དངུལ་བསྡོམས་མན་ངག་གི་དོན་ལུ་ བེ་ལུསི་དང་པམ་དང་ལྡན་པའི་ཁྱབ་ཚད་ ཨེ་ ༡ : ཨེ་ ༡༠ འདི་སེལ་འཐུ་འབད།"
@@ -7570,7 +7100,6 @@ msgstr "དངུལ་བསྡོམས་མན་ངག་གི་དོན
msgctxt ""
"matrixformula.xhp\n"
"par_id3144767\n"
-"20\n"
"help.text"
msgid "Press the (+) key from the numerical keypad."
msgstr "ཨང་གྲངས་ལྡེ་གདན་ནང་ལས་ (+) ལྡེ་མིག་ལུ་ཨེབས།"
@@ -7579,7 +7108,6 @@ msgstr "ཨང་གྲངས་ལྡེ་གདན་ནང་ལས་ (+)
msgctxt ""
"matrixformula.xhp\n"
"par_id3154018\n"
-"21\n"
"help.text"
msgid "Select the numbers in the second column in cells B1:B10."
msgstr "ཨང་གྲངས་ཚུ་ ནང་ཐིག་ བི་ ༡ : བི་ ༡༠ ནང་གི་ ཀེར་ཐིག་གཉིས་པམ་ནང་སེལ་འཐུ་འབད།"
@@ -7588,7 +7116,6 @@ msgstr "ཨང་གྲངས་ཚུ་ ནང་ཐིག་ བི་ ༡ :
msgctxt ""
"matrixformula.xhp\n"
"par_id3150716\n"
-"22\n"
"help.text"
msgid "End the input with the matrix key combination: Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
msgstr "མེ་ཊིཀསི་ལྡེ་མིག་མཉམ་མཐུད་དང་གཅིག་ཁར་ཨིན་པུཊི་མཇུག་བསྡུ་: སོར་ལྡེ་+<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+བཙུགས།"
@@ -7597,7 +7124,6 @@ msgstr "མེ་ཊིཀསི་ལྡེ་མིག་མཉམ་མཐུ
msgctxt ""
"matrixformula.xhp\n"
"par_id3145640\n"
-"23\n"
"help.text"
msgid "The matrix area is automatically protected against modifications, such as deleting rows or columns. It is, however, possible to edit any formatting, such as the cell background."
msgstr "མེ་ཊིཀསི་མངའ་ཁོངས་འདི་ལེགས་བཅོས་འབད་ནི་ལས་ ཉེན་སྐྱོབ་འབད་ཡི་ དཔེར་ན་ གྲལ་ཐིག་ ཡངན་ ཀེར་ཐིག་ཚུ་བཏོན་གཏང་ནི། དེ་འབདཝ་ལས་ རྩ་སྒྲིག་གང་རུང་ཞུན་དག་འབད་བཏུབ་ དཔེར་ན་ ནང་ཐིག་རྒྱབ་གཞི་བཟུམ།"
@@ -7838,7 +7364,6 @@ msgstr "<bookmark_value>ལེབ་གྲངས་ཚུ་ སྣ་མང་
msgctxt ""
"multi_tables.xhp\n"
"hd_id3150769\n"
-"4\n"
"help.text"
msgid "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables.xhp\" name=\"Navigating Through Sheet Tabs\">Navigating Through Sheet Tabs</link> </variable>"
msgstr "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables.xhp\" name=\"Navigating Through Sheets Tabs\">ལེབ་གྲངས་མཆོང་ལྡེ་ལས་བརྒྱུད་དེ་ འགྲུལ་བསྐྱོད་འབད་དོ་</link></variable>"
@@ -7847,7 +7372,6 @@ msgstr "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables
msgctxt ""
"multi_tables.xhp\n"
"par_id3153771\n"
-"3\n"
"help.text"
msgid "By default $[officename] displays three sheets \"Sheet1\" to \"Sheet3\", in each new spreadsheet. You can switch between sheets in a spreadsheet using the sheet tabs at the bottom of the screen."
msgstr "སྔོན་སྒྲིག་ $[officename] གི་ཐོག་ལས་ ཤོག་ཁྲམ་གསརཔ་རེ་རེ་ནང་ ལེབ་གྲངས་གསུམ་ \"Sheet1\" ལས་ \"Sheet3\" བར་བཀྲམ་སྟོན་འབདཝ་ཨིན། ཁྱོད་ཀྱིས་ གསལ་གཞིའི་མཇུག་ལུ་ ལེབ་གྲངས་མཆོང་ལྡེ་ལག་ལེན་གྱི་ཐོག་ལས་ ཤོག་ཁྲམ་ནང་སྦེ་ ལེབ་གྲངས་ཀྱི་བར་ན་སོར་བསྒྱུར་འབད་བཏུབ།"
@@ -7857,22 +7381,21 @@ msgctxt ""
"multi_tables.xhp\n"
"par_idN106AF\n"
"help.text"
-msgid "<image id=\"img_id4829822\" src=\"res/helpimg/sheettabs.png\" width=\"3.3335inch\" height=\"0.7638inch\" localize=\"true\"><alt id=\"alt_id4829822\">Sheet Tabs</alt></image>"
-msgstr "<image id=\"img_id4829822\" src=\"res/helpimg/sheettabs.png\" width=\"84.67mm\" height=\"19.4mm\" localize=\"true\"><alt id=\"alt_id4829822\">ལེབ་གྲངས་མཆོང་ལྡེ་</alt></image>"
+msgid "<image id=\"img_id4829822\" src=\"media/helpimg/sheettabs.png\" width=\"3.3335inch\" height=\"0.7638inch\" localize=\"true\"><alt id=\"alt_id4829822\">Sheet Tabs</alt></image>"
+msgstr "<image id=\"img_id4829822\" src=\"media/helpimg/sheettabs.png\" width=\"84.67mm\" height=\"19.4mm\" localize=\"true\"><alt id=\"alt_id4829822\">ལེབ་གྲངས་མཆོང་ལྡེ་</alt></image>"
#: multi_tables.xhp
msgctxt ""
"multi_tables.xhp\n"
"par_id3153144\n"
"help.text"
-msgid "<image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"0.6563inch\" height=\"0.1457inch\"><alt id=\"alt_id3156441\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"1.667cm\" height=\"0.37cm\"><alt id=\"alt_id3156441\">ངོས་པར་</alt></image>"
+msgid "<image id=\"img_id3156441\" src=\"media/helpimg/calcnav.png\" width=\"0.6563inch\" height=\"0.1457inch\"><alt id=\"alt_id3156441\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156441\" src=\"media/helpimg/calcnav.png\" width=\"1.667cm\" height=\"0.37cm\"><alt id=\"alt_id3156441\">ངོས་པར་</alt></image>"
#: multi_tables.xhp
msgctxt ""
"multi_tables.xhp\n"
"par_id3147396\n"
-"5\n"
"help.text"
msgid "Use the navigation buttons to display all the sheets belonging to your document. Clicking the button on the far left or the far right displays, respectively, the first or last sheet tab. The middle buttons allow the user to scroll forward and backward through all sheet tabs. To display the sheet itself click on the sheet tab."
msgstr "ཐག་རིང་གཡོན་དང་གཡས་གུའི་ཨེབ་རྟ་ཨེབ་གཏང་འབད་མི་འདི་གིས་ རིམ་བཞིན་མཆོང་ལྡེ་དང་པམ་ ཡང་ན་ མཇུག་གཉིས་བཀྲམ་སྟོན་འབདཝ་ཨིན། བར་ནའི་ཨེབ་རྟ་གིས་ལག་ལེན་པ་ལུ་ ལུབ་གྲངས་མཆོང་ལྡེ་ཆ་མཉམ་ལས་བརྒྱུད་དེ་ གདོང་བསྐྱོད་དང་རྒྱབ་བསྐྱོད་བཤུད་སྒྲིལ་འབད་བཅུགཔ་ཨིན། ལེབ་གྲངས་འདི་བཀྲམ་སྟོན་འབད་ནི་ལུ་ ལེབ་གྲངས་མཆོང་ལྡེ་ལུ་ཨེབ་གཏང་འབད།"
@@ -7897,7 +7420,6 @@ msgstr "<bookmark_value>སྣ་མང་བཀོལ་སྤྱོད་ཚ
msgctxt ""
"multioperation.xhp\n"
"hd_id3147559\n"
-"5\n"
"help.text"
msgid "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\" name=\"Applying Multiple Operations\">Applying Multiple Operations</link></variable>"
msgstr "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\" name=\"Applying Multiple Operations\">སྣ་མང་བཀོལ་སྤྱོད་ཚུ་ འཇུག་སྤྱོད་འབད་དོ་</link></variable>"
@@ -7906,7 +7428,6 @@ msgstr "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multiopera
msgctxt ""
"multioperation.xhp\n"
"hd_id3145171\n"
-"1\n"
"help.text"
msgid "Multiple Operations in Columns or Rows"
msgstr "ཀེར་ཐིག་ ཡང་ན་ གྲལ་ཐིག་ནང་ལུ་ སྣ་མང་བཀོལ་སྤྱོད།"
@@ -7923,7 +7444,6 @@ msgstr ""
msgctxt ""
"multioperation.xhp\n"
"par_id3156424\n"
-"2\n"
"help.text"
msgid "In the <emph>Formulas</emph> field, enter the cell reference to the formula that applies to the data range. In the <emph>Column input cell/Row input cell</emph> field, enter the cell reference to the corresponding cell that is part of the formula. This can be explained best by examples:"
msgstr ""
@@ -7932,7 +7452,6 @@ msgstr ""
msgctxt ""
"multioperation.xhp\n"
"hd_id3159153\n"
-"7\n"
"help.text"
msgid "Examples"
msgstr "དཔེར་བརྗོད་ཚུ་"
@@ -7941,7 +7460,6 @@ msgstr "དཔེར་བརྗོད་ཚུ་"
msgctxt ""
"multioperation.xhp\n"
"par_id3153189\n"
-"8\n"
"help.text"
msgid "You produce toys which you sell for $10 each. Each toy costs $2 to make, in addition to which you have fixed costs of $10,000 per year. How much profit will you make in a year if you sell a particular number of toys?"
msgstr "ཁྱོད་ཀྱིས་ རྩེད་ཆས་བཟོ་བཏོན་འབདཝ་ཨིནམ་དང་ རེ་རེ་ལུ་ $10 རེ་སྦེ་བཙོངམ་ཨིན། ཁྱོད་ཀྱིས་ ལེ་རེ་ནང་དངུལ་ཀྲམ་ $10,000 བཟོ་ནིའི་གཏན་བཟོས་འབད་ཡོད་པའི་ཁ་སྐོང་ལུ་ རྩེད་ཆས་རེ་ལུ་དངུལ་ཀྲམ་ $2 རེ་རྐྱབ་ཨིན། ཁྱོད་ཀྱིས་ རྩེད་ཆས་ཧ་ལམ་བཙོང་པ་ཅིན་ ཁེ་སང་ག་དེ་ཅི་འཐོན་འོང་?"
@@ -7951,14 +7469,13 @@ msgctxt ""
"multioperation.xhp\n"
"par_id6478774\n"
"help.text"
-msgid "<image id=\"img_id1621753\" src=\"res/helpimg/what-if.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id1621753\">what-if sheet area</alt></image>"
+msgid "<image id=\"img_id1621753\" src=\"media/helpimg/what-if.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id1621753\">what-if sheet area</alt></image>"
msgstr ""
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
"hd_id3145239\n"
-"41\n"
"help.text"
msgid "Calculating With One Formula and One Variable"
msgstr "མན་ངག་གཅིག་དང་འགྱུར་་ཅན་གཅིག་གི་ཐོག་ལས་ རྩིས་སྟོན་འབད་དོ།"
@@ -7967,7 +7484,6 @@ msgstr "མན་ངག་གཅིག་དང་འགྱུར་་ཅན་
msgctxt ""
"multioperation.xhp\n"
"par_id3146888\n"
-"42\n"
"help.text"
msgid "To calculate the profit, first enter any number as the quantity (items sold) - in this example 2000. The profit is found from the formula Profit=Quantity * (Selling price - Direct costs) - Fixed costs. Enter this formula in B5."
msgstr "ཁེ་སང་རྩིས་སྟོན་ནི་གི་དོན་ལུ་ དང་པ་ར་ ཨང་གྲངས་གང་རུང་ཅིག་སྦུང་ཚན་(བཙོེང་ཡོད་པའི་ཅ་ཆས་)སྦེ་བཙུགས་-གནམ་ལོ་ ༢༠༠གི་དཔེ་འདི་ནང་། ཁེ་སང་འདི་ཡང་ མན་ངག་ནང་ལས་ཐོབ་ཨིན་ ཁེ་སང་=སྦུང་ཚན་ * (གོང་ཚད་-ཐད་ཀར་རིན་གོང་)གཏན་བཟོས་རིན་གོང་། བི་ ༥ ནང་ལུ་ མན་ངག་འདི་བཙུགས།"
@@ -7976,7 +7492,6 @@ msgstr "ཁེ་སང་རྩིས་སྟོན་ནི་གི་དོ
msgctxt ""
"multioperation.xhp\n"
"par_id3157875\n"
-"43\n"
"help.text"
msgid "In column D enter given annual sales, one below the other; for example, 500 to 5000, in steps of 500."
msgstr ""
@@ -7985,7 +7500,6 @@ msgstr ""
msgctxt ""
"multioperation.xhp\n"
"par_id3159115\n"
-"44\n"
"help.text"
msgid "Select the range D2:E11, and thus the values in column D and the empty cells alongside in column E."
msgstr "ཁྱབ་ཚད་ ཌི་༢:ཨི་༡༡ དེ་ལས་ཀེར་ཐིག་ ཌི་ནང་གི་བེ་ལུསི་དང་ཀེར་ཐིག་ ཨི་གི་ཟུར་ཁར་ཡོད་པའི་ནང་ཐིག་སྟོངམ་ཚི་གུ་རྟགས་བཀལ།"
@@ -7994,7 +7508,6 @@ msgstr "ཁྱབ་ཚད་ ཌི་༢:ཨི་༡༡ དེ་ལས་ཀ
msgctxt ""
"multioperation.xhp\n"
"par_id3149723\n"
-"45\n"
"help.text"
msgid "Choose <emph>Data - Multiple operations</emph>."
msgstr "<emph>གནད་སྡུད་ -སྣ་མང་བཀོལ་སྤྱོད་ </emph> གདམ་ཁ་རྐྱབས།"
@@ -8003,7 +7516,6 @@ msgstr "<emph>གནད་སྡུད་ -སྣ་མང་བཀོལ་ས
msgctxt ""
"multioperation.xhp\n"
"par_id3149149\n"
-"46\n"
"help.text"
msgid "With the cursor in the <emph>Formulas </emph>field, click cell B5."
msgstr "འོད་རྟགས་དང་གཅིག་ཁར་ <emph>མན་ངག་ཚུ་ </emph> ས་སྒོ་ནང་ བི་༥གུ་ ཨེབ་གཏང་འབད།"
@@ -8012,7 +7524,6 @@ msgstr "འོད་རྟགས་དང་གཅིག་ཁར་ <emph>མ
msgctxt ""
"multioperation.xhp\n"
"par_id3149355\n"
-"47\n"
"help.text"
msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4. This means that B4, the quantity, is the variable in the formula, which is replaced by the selected column values."
msgstr "འོད་རྟགས་འདི་ <emph>ཀེར་ཐིག་</emph> ས་སྒོ་ནང་ གཞི་སྒྲིག་འབད་ཞིནམ་ལས་ ནང་ཐིག་ བི་ ༤ གུ་ཨེབ་གཏང་འབད། འདི་ཡང་ག་ཅི་སྨོ་ཟེར་བ་ཅིན་:སྦུང་ཚན་ཨིན་མི་ བི་༤ འདི་ མན་ངག་ནང་འགྱུར་ཅན་ཨིནམ་དང་ དེ་ཡང་ རྟགས་བཀལ་ཡོད་པའི་ཀེར་ཐིག་བེ་ལུསི་གིས་ཚབ་བཙུགས་འབད་ཡོདཔ།"
@@ -8021,7 +7532,6 @@ msgstr "འོད་རྟགས་འདི་ <emph>ཀེར་ཐིག་</
msgctxt ""
"multioperation.xhp\n"
"par_id3149009\n"
-"48\n"
"help.text"
msgid "Close the dialog with <emph>OK</emph>. You see the profits for the different quantities in column E."
msgstr ""
@@ -8030,7 +7540,6 @@ msgstr ""
msgctxt ""
"multioperation.xhp\n"
"hd_id3148725\n"
-"49\n"
"help.text"
msgid "Calculating with Several Formulas Simultaneously"
msgstr "མན་ངག་ལེ་ཤ་གི་ཐོག་ལས་ དུས་མཉམ་ལུ་རྩིས་སྟོན་འབད་དོ།"
@@ -8039,7 +7548,6 @@ msgstr "མན་ངག་ལེ་ཤ་གི་ཐོག་ལས་ དུ
msgctxt ""
"multioperation.xhp\n"
"par_id3146880\n"
-"50\n"
"help.text"
msgid "Delete column E."
msgstr "ཀེར་ཐིག་ ཨི་ བཏོན་གཏང་།"
@@ -8048,7 +7556,6 @@ msgstr "ཀེར་ཐིག་ ཨི་ བཏོན་གཏང་།"
msgctxt ""
"multioperation.xhp\n"
"par_id3154675\n"
-"51\n"
"help.text"
msgid "Enter the following formula in C5: = B5 / B4. You are now calculating the annual profit per item sold."
msgstr "འོག་གི་མན་ངག་འདི་ C5: = B5 / B4 ནང་བཙུགས། ད་འབདན་ཁྱོད་ ལོ་བསྟར་བཙོང་ཡོད་པའི་རྣམ་གྲངས་རེ་གི་རྩིས་སྟོན་དོ།"
@@ -8057,7 +7564,6 @@ msgstr "འོག་གི་མན་ངག་འདི་ C5: = B5 / B4 ནང
msgctxt ""
"multioperation.xhp\n"
"par_id3148885\n"
-"52\n"
"help.text"
msgid "Select the range D2:F11, thus three columns."
msgstr "ཁྱབ་ཚད་ ཌི་ཨི་ ཨེཕ་༡༡་ དང་འདི་བཟུམ་སྦེ་ ཀེར་ཐིག་གསུམ་ཡང་ སེལ་འཐུ་འབད།"
@@ -8066,7 +7572,6 @@ msgstr "ཁྱབ་ཚད་ ཌི་ཨི་ ཨེཕ་༡༡་ དང་
msgctxt ""
"multioperation.xhp\n"
"par_id3147474\n"
-"53\n"
"help.text"
msgid "Choose <emph>Data - Multiple Operations</emph>."
msgstr "<emph>གནད་སྡུད་ - སྣ་མང་བཀོལ་སྤྱོད་ཚུ་</emph> གདམ་ཁ་རྐྱབས།"
@@ -8075,7 +7580,6 @@ msgstr "<emph>གནད་སྡུད་ - སྣ་མང་བཀོལ་ས
msgctxt ""
"multioperation.xhp\n"
"par_id3154846\n"
-"54\n"
"help.text"
msgid "With the cursor in the <emph>Formulas</emph> field, select cells B5 thru C5."
msgstr "<emph>Formulas</emph> ས་སྒོ་ནང་ འོད་རྟགས་ཀྱི་ཐོག་ལས་ སི་༥་ ལས་བརྒྱུད་དེ་ ནང་ཐིག་བི་ ༥ ལུ་རྟགས་བཀལ།"
@@ -8084,7 +7588,6 @@ msgstr "<emph>Formulas</emph> ས་སྒོ་ནང་ འོད་རྟག
msgctxt ""
"multioperation.xhp\n"
"par_id3153931\n"
-"55\n"
"help.text"
msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4."
msgstr "<emph>ཀེར་ཐིག་</emph> ས་སྒོ་ནང་ལུ་ འོད་རྟགས་གཞི་སྒྲིག་འབད་ཞིནམ་ལས་ བི་༤ ལུ་ཨེབ་གཏང་འབད།"
@@ -8093,7 +7596,6 @@ msgstr "<emph>ཀེར་ཐིག་</emph> ས་སྒོ་ནང་ལུ
msgctxt ""
"multioperation.xhp\n"
"par_id3150862\n"
-"56\n"
"help.text"
msgid "Close the dialog with <emph>OK</emph>. You will now see the profits in column E and the annual profit per item in column F."
msgstr "<emph>བཏུབ་</emph> ཀྱི་ཐོག་ལས་ ཌའི་ལོག་ཁ་བསྡམས། ད་ལས་ཕར་ཁྱོད་ཀྱིས་ ཁེ་སང་ཚུ་ཀེར་ཐིག་ ཨི་ནང་དང་ རྣམ་གྲངས་རེ་རེའི་ལོ་བསྟར་ཁེ་སང་འདི་ ཀེར་ཐིག་ ཨེཕ་ནང་མཐོང་ཚུགས།"
@@ -8102,7 +7604,6 @@ msgstr "<emph>བཏུབ་</emph> ཀྱི་ཐོག་ལས་ ཌའི
msgctxt ""
"multioperation.xhp\n"
"hd_id3146139\n"
-"3\n"
"help.text"
msgid "Multiple Operations Across Rows and Columns"
msgstr "གྲལ་ཐིག་དང་ཀེར་ཐིག་ཡན་ཆད་ སྣ་མང་བཀོལ་སྤྱོད་པ་ཚུ།"
@@ -8111,7 +7612,6 @@ msgstr "གྲལ་ཐིག་དང་ཀེར་ཐིག་ཡན་ཆད
msgctxt ""
"multioperation.xhp\n"
"par_id3148584\n"
-"4\n"
"help.text"
msgid "<item type=\"productname\">%PRODUCTNAME</item> allows you to carry out joint multiple operations for columns and rows in so-called cross-tables. The formula cell has to refer to both the data range arranged in rows and the one arranged in columns. Select the range defined by both data ranges and call the multiple operation dialog. Enter the reference to the formula in the <emph>Formulas</emph> field. The <emph>Row input cell</emph> and the <emph>Column input cell</emph> fields are used to enter the reference to the corresponding cells of the formula."
msgstr "<item type=\"productname\">%PRODUCTNAME</item> ཀེར་ཐིག་དང་ལམ་མདོ་-ཐིག་ཁྲམ་ནང་གི་གྲལ་ཐིག་དོན་ལུ་ མཉམ་རུབ་སྣ་མང་བཀོལ་སྤྱོད་ཚུ་འབད་བཅུགཔ་ཨིན། མན་ངག་ནང་ཐིག་ཚུ་ གྲལ་ཐིག་ནང་བདེ་ཞིབ་འབད་ཡོད་མི་དང་ ཀེར་ཐིག་ནང་བདེ་ཞིབ་འབད་དེ་ཡོད་པའི་གནད་སྡུད་ཁྱབ་ཚད་གཉིས་ཆ་ར་ལུ་ གཞི་བསྟུན་འབད་དགོ གནད་སྡུད་ཁྱབ་ཚད་གཉིས་ཀྱིས་ངེས་འཛིན་འབད་ཡོད་པའི་ཁྱབ་ཚད་འདི་སེལ་འཐུ་འབད་ཞིནམ་ལས་ སྣ་མང་བཀོལ་སྤྱོད་ཌའི་ལོག་ལུ་ བོད་བརྡ་འབད། <emph>མན་ངག་</emph> ས་སྒོ་ནང་གི་མན་ངག་ནང་ གཞི་བསྟུན་བཙུགས། <emph>གྲལ་ཐིག་</emph> ས་སྒོ་འདི་ གྲལ་ཐིག་ནང་བདེ་ཞིབ་འབད་ཡོད་པའི་ཁྱབ་ཚད་ཀྱི་ནང་ཐིག་དང་པམ་ལུ་དང་ ཀེར་ཐིག་ནང་བདེ་ཞི་བ་འབད་ཡོད་པའི་ནང་ཐིག་དང་པམ་གྱི་ <emph>ཀེར་ཐིག་</emph>ས་སྒོ་ལུ་གཞི་བསྟུན་བཙུགས་ནི་གི་དོན་ལུ་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན།"
@@ -8120,7 +7620,6 @@ msgstr "<item type=\"productname\">%PRODUCTNAME</item> ཀེར་ཐིག་
msgctxt ""
"multioperation.xhp\n"
"hd_id3149949\n"
-"57\n"
"help.text"
msgid "Calculating with Two Variables"
msgstr "འགྱུར་ཅན་གཉིས་ རྩིས་སྟོན་འབད་དོ།"
@@ -8129,7 +7628,6 @@ msgstr "འགྱུར་ཅན་གཉིས་ རྩིས་སྟོན
msgctxt ""
"multioperation.xhp\n"
"par_id3154808\n"
-"58\n"
"help.text"
msgid "Consider columns A and B of the sample table above. You now want to vary not just the quantity produced annually, but also the selling price, and you are interested in the profit in each case."
msgstr "ལྟག་ལུ་ཡོད་པའི་དཔེ་ཚད་ ཀེར་ཐིག་ ཨེ་དང་བི་གཉིས་ཆ་འཇོག་འབད། ད་ལས་ཕར་ཁྱོད་ཀྱིས་ ལོ་བསྟར་བཟོ་བཏོན་འབད་ཡོད་མི་སྦུང་ཚན་གྱིས་མ་ཚད་པར་ཅ་ཆས་ཀྱི་གོང་ཚད་ཡང་འགྱུར་བཅོས་འབད་ནི་ཨིན་པས།"
@@ -8138,7 +7636,6 @@ msgstr "ལྟག་ལུ་ཡོད་པའི་དཔེ་ཚད་ ཀ
msgctxt ""
"multioperation.xhp\n"
"par_id3149731\n"
-"59\n"
"help.text"
msgid "Expand the table shown above. D2 thru D11 contain the numbers 500, 1000 and so on, up to 5000. In E1 through H1 enter the numbers 8, 10, 15 and 20."
msgstr "གོང་ལུ་སྟོན་ཡོད་པའི་ཐིག་ཁྲམ་འདི་ རྒྱ་འཕར་འབད། ཌི་༡༡ ལས་བརྒྱུད་པའི་ ཌི་༢ ནང་ལུ་ ཨང་གྲངས་ ༥༠༠ དང་ ༡༠༠༠ ལས་ལྷག་སྟེ་ ༥༠༠༠ཚུན་ཡོདཔ་ཨིན། ཨེཆ་༡ ལས་བརྒྱུད་པའི་ ཨི་༡ ནང་ ཨང་གྲངས་ ༨ དང་ ༡༠ དེ་ལས་ ༡༥ དང་ ༢༠ བཙུགས།"
@@ -8147,7 +7644,6 @@ msgstr "གོང་ལུ་སྟོན་ཡོད་པའི་ཐིག་
msgctxt ""
"multioperation.xhp\n"
"par_id3152810\n"
-"95\n"
"help.text"
msgid "Select the range D1:H11."
msgstr "ཁྱབ་ཚད༌ D1:H11 སེལ་འཐུ་འབད།"
@@ -8156,7 +7652,6 @@ msgstr "ཁྱབ་ཚད༌ D1:H11 སེལ་འཐུ་འབད།"
msgctxt ""
"multioperation.xhp\n"
"par_id3153620\n"
-"96\n"
"help.text"
msgid "Choose <emph>Data - Multiple Operations</emph>."
msgstr "<emph>གནད་སྡུད་ - སྣ་མང་བཀོལ་སྤྱོད་ཚུ་</emph> གདམ་ཁ་རྐྱབས།"
@@ -8165,7 +7660,6 @@ msgstr "<emph>གནད་སྡུད་ - སྣ་མང་བཀོལ་ས
msgctxt ""
"multioperation.xhp\n"
"par_id3149981\n"
-"97\n"
"help.text"
msgid "With the cursor in the <emph>Formulas</emph> field, click cell B5."
msgstr "འོད་རྟགས་དང་གཅིག་ཁར་ <emph>མན་ངག་ཚུ་ </emph> ས་སྒོ་ནང་ བི་༥གུ་ ཨེབ་གཏང་འབད།"
@@ -8174,7 +7668,6 @@ msgstr "འོད་རྟགས་དང་གཅིག་ཁར་ <emph>མ
msgctxt ""
"multioperation.xhp\n"
"par_id3156113\n"
-"98\n"
"help.text"
msgid "Set the cursor in the <emph>Row input cell</emph> field and click cell B1. This means that B1, the selling price, is the horizontally entered variable (with the values 8, 10, 15 and 20)."
msgstr "འོད་རྟགས་འདི་ <emph>གྲལ་ཐིག་</emph> ས་སྒོ་ནང་གཞི་སྒྲིག་འབད་ཞིནམ་ལས་ ནང་ཐིག་ བི་༡ ལུ་ཨེབ་གཏང་འབད། འདི་ཡང་ག་ཅི་འབད་སྨོ་ཟེར་བ་ཅིན་ ཅ་ཆས་གོང་ཚད་འདི་ ཐད་སྙོམས་སྦེ་བཙུགས་ཡོད་པའི་འགྱུར་ཅན་(བེ་ལུསི་ ༨དང་ ༡༠ དེ་ལས་ ༡༥ དང་ ༢༠ དང་བཅས་)ཨིན་པས།"
@@ -8183,7 +7676,6 @@ msgstr "འོད་རྟགས་འདི་ <emph>གྲལ་ཐིག་</
msgctxt ""
"multioperation.xhp\n"
"par_id3154049\n"
-"99\n"
"help.text"
msgid "Set the cursor in the <emph>Column input cell</emph> field and click in B4. This means that B4, the quantity, is the vertically entered variable."
msgstr "འོད་རྟགས་འདི་ <emph>ཀེར་ཐིག་</emph> ས་སྒོ་ནང་གཞི་སྒྲིག་འབད་ཞིནམ་ལས་ བི་ ༤ ནང་ཨེབ་གཏང་འབད། འདི་ཡང་ སྦུང་ཚན་ བི་༤ འདི་ ཀེར་ཕྲང་སྦེ་བཙུགས་ཡོད་པའི་འགྱུར་ཅན་ཅིག་ཨིན།"
@@ -8192,7 +7684,6 @@ msgstr "འོད་རྟགས་འདི་ <emph>ཀེར་ཐིག་</
msgctxt ""
"multioperation.xhp\n"
"par_id3149141\n"
-"100\n"
"help.text"
msgid "Close the dialog with OK. You see the profits for the different selling prices in the range E2:H11."
msgstr ""
@@ -8201,7 +7692,6 @@ msgstr ""
msgctxt ""
"multioperation.xhp\n"
"par_id3155104\n"
-"101\n"
"help.text"
msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple operations\">Multiple operations</link>"
msgstr "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple operations\">སྣ་མང་བཀོལ་སྤྱོད་ཚུ་</link>"
@@ -8226,7 +7716,6 @@ msgstr ""
msgctxt ""
"multitables.xhp\n"
"hd_id3154759\n"
-"9\n"
"help.text"
msgid "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Applying Multiple Sheets\">Applying Multiple Sheets</link></variable>"
msgstr "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Applying Multiple Sheets\">སྣ་མང་ལེབ་གྲངས་ཚུ་འཇུག་སྤྱོད་འབད་དོ་</link></variable>"
@@ -8235,7 +7724,6 @@ msgstr "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.x
msgctxt ""
"multitables.xhp\n"
"hd_id3148576\n"
-"10\n"
"help.text"
msgid "Inserting a Sheet"
msgstr "ལེབ་གྲངས་ཅིག་བཙུགས་དོ།"
@@ -8244,7 +7732,6 @@ msgstr "ལེབ་གྲངས་ཅིག་བཙུགས་དོ།"
msgctxt ""
"multitables.xhp\n"
"par_id3154731\n"
-"4\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert - Sheet</item> to insert a new sheet or an existing sheet from another file."
msgstr "ལེབ་གྲངས་གསརཔ་ཅིག་ ཡང་ན་ ཡིག་སྣོད་གཞན་མི་ཅིག་ནང་ལས་ ཡོད་བཞིན་པའི་ལེབ་གྲངས་བཙུགས་ནི་གི་དོན་ལུ་ <item type=\"menuitem\">བཙུགས་ - ལེབ་གྲངས་</item> གདམ་ཁ་རྐྱབས།"
@@ -8285,7 +7772,6 @@ msgstr ""
msgctxt ""
"multitables.xhp\n"
"hd_id3154491\n"
-"11\n"
"help.text"
msgid "Selecting Multiple Sheets"
msgstr "སྣ་མང་ལེབ་གྲངས་ཚུ་ སེལ་འཐུ་འབད་དོ།"
@@ -8294,7 +7780,6 @@ msgstr "སྣ་མང་ལེབ་གྲངས་ཚུ་ སེལ་འ
msgctxt ""
"multitables.xhp\n"
"par_id3145251\n"
-"6\n"
"help.text"
msgid "The sheet tab of the current sheet is always visible in white in front of the other sheet tabs. The other sheet tabs are gray when they are not selected. By clicking other sheet tabs while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> you can select multiple sheets."
msgstr ""
@@ -8311,7 +7796,6 @@ msgstr ""
msgctxt ""
"multitables.xhp\n"
"hd_id3155600\n"
-"12\n"
"help.text"
msgid "Undoing a Selection"
msgstr "སེལ་འཐུ་འབདཝ་བཤོལ་དོ།"
@@ -8320,7 +7804,6 @@ msgstr "སེལ་འཐུ་འབདཝ་བཤོལ་དོ།"
msgctxt ""
"multitables.xhp\n"
"par_id3146969\n"
-"13\n"
"help.text"
msgid "To undo the selection of a sheet, click its sheet tab again while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key. The sheet that is currently visible cannot be removed from the selection."
msgstr ""
@@ -8329,7 +7812,6 @@ msgstr ""
msgctxt ""
"multitables.xhp\n"
"hd_id3156382\n"
-"15\n"
"help.text"
msgid "Calculating Across Multiple Sheets"
msgstr "སྣ་མང་ལེབ་གྲངས་ཡན་ཆད་ཀྱི་ རྩིས་སྟོན་དོ།"
@@ -8338,7 +7820,6 @@ msgstr "སྣ་མང་ལེབ་གྲངས་ཡན་ཆད་ཀྱི
msgctxt ""
"multitables.xhp\n"
"par_id3155333\n"
-"16\n"
"help.text"
msgid "You can refer to a range of sheets in a formula by specifying the first and last sheet of the range, for example, <item type=\"literal\">=SUM(Sheet1.A1:Sheet3.A1) </item>sums up all A1 cells on Sheet1 through Sheet3."
msgstr "ཁྱོད་ཀྱིས་ ཁྱབ་ཚད་ལེབ་གྲངས་དང་པམ་དང་མཇུག་མམ་གཉིས་ གསལ་བཀོད་འབད་བའི་ཐོག་ལས་ མན་ངག་ནང་ལུ་ལེབ་གྲངས་ཁྱབ་ཚད་ཅིག་ གཞི་བསྟུན་འབད་ཚུགས། དཔེར་ན་ <item type=\"literal\">=SUM(Sheet1.A1:Sheet3.A1) </item> གིས་ ལེབ་གྲངས་ ༣ ལས་བརྒྱུད་དེ་ ལེབ་གྲངས་ ༡ གུ་ལུ་ནང་ཐིག་ ཨེ་༡ ཆ་མཉམ་ མཉམ་བསྡོམས་འབདཝ་ཨིན།"
@@ -8363,7 +7844,6 @@ msgstr "<bookmark_value>དྲན་འཛིན་ཚུ་ ནང་ཐིག
msgctxt ""
"note_insert.xhp\n"
"hd_id3153968\n"
-"31\n"
"help.text"
msgid "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.xhp\" name=\"Inserting and Editing Comments\">Inserting and Editing Comments</link></variable>"
msgstr "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.xhp\" name=\"Inserting and Editing Notes\">དྲན་འཛིན་ཚུ་ བཙུགས་ནི་དང་ཞུན་དག་འབད་དོ་</link></variable>"
@@ -8372,7 +7852,6 @@ msgstr "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.x
msgctxt ""
"note_insert.xhp\n"
"par_id3150440\n"
-"32\n"
"help.text"
msgid "You can assign a comment to each cell by choosing <link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\"><emph>Insert - Comment</emph></link>. The comment is indicated by a small red square, the comment indicator, in the cell."
msgstr "ཁྱོད་ཀྱིས་ <link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Note\"><emph>བཙུགས་ - དྲན་འཛིན་</emph></link> གདམ་ཁ་རྐྱབ་པའི་ཐོག་ལས་ ནང་ཐིག་རེ་རེ་ལུ་ དྲན་འཛིན་རེ་འགན་སྤྲོད་འབད་ཚུགས། དྲན་འཛིན་འདི་ ནང་ཐིག་ནང་གི་ གྲུ་བཞི་དམརཔོ་ཆུང་ཀུ་སྦེ་ཡོད་པའི་དྲན་འཛིན་བརྡ་སྟོན་པ་གིས་ བརྡ་སྟོན་འབད་ཡི།"
@@ -8389,7 +7868,6 @@ msgstr ""
msgctxt ""
"note_insert.xhp\n"
"par_id3148575\n"
-"33\n"
"help.text"
msgid "When you select the cell, you can choose <emph>Show Comment</emph> from the context menu of the cell. Doing so keeps the comment visible until you deactivate the <emph>Show Comment</emph> command from the same context menu."
msgstr "ནང་ཐིག་སེལ་འཐུ་འབདཝ་ད་ ནང་ཐིག་གི་སྐབས་དོན་དཀར་ཆག་ནང་ལས་ <emph>དྲན་འཛིན་སྟོན་</emph> གདམ་ཁ་རྐྱབས། དེ་སྦེ་འབད་མི་འདི་གིས་ གཅིག་པའི་སྐབས་དོན་དཀར་ཆག་ནང་ལས་<emph>དྲན་འཛིན་སྟོན་</emph>བརྡ་བཀོད་འདི་ ཤུགས་མེད་མ་བཟོ་ཚུན་ དྲན་འཛིན་འདི་མཐོངམ་སྦེ་བཞགཔ་ཨིན།"
@@ -8398,7 +7876,6 @@ msgstr "ནང་ཐིག་སེལ་འཐུ་འབདཝ་ད་ ན
msgctxt ""
"note_insert.xhp\n"
"par_id3149958\n"
-"35\n"
"help.text"
msgid "To edit a permanently visible comment, just click in it. If you delete the entire text of the comment, the comment itself is deleted."
msgstr "དྲན་འཛིན་འདི་ དུས་ཨ་རྟག་ར་མཐོང་ཚུགསཔ་སྦེ་ཞུན་དག་འབད་ནི་གི་དོན་ལུ་ ཨེབ་གཏང་འབད། དྲན་འཛིན་གྱི་ཚིག་ཡིག་ཧྲིལ་བུ་སྦེ་བཏོན་གཏང་པ་ཅིན་ དྲན་འཛིན་འདི་ཡང་བཏོན་གཏངམ་ཨིན།"
@@ -8423,7 +7900,6 @@ msgstr "རྒྱབ་གཞའི་ཚོས་གཞི་དང་དྭང
msgctxt ""
"note_insert.xhp\n"
"par_id3144764\n"
-"38\n"
"help.text"
msgid "To show or hide the comment indicator, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - View</emph> and mark or unmark the <emph>Comment indicator</emph> check box."
msgstr ""
@@ -8432,7 +7908,6 @@ msgstr ""
msgctxt ""
"note_insert.xhp\n"
"par_id3150715\n"
-"39\n"
"help.text"
msgid "To display a help tip for a selected cell, use <emph>Data - Validity - Input Help</emph>."
msgstr "སེལ་འཐུ་འབད་ཡོད་པའིནང་ཐིག་ཅིག་གི་དོན་ལུ་ གྲོགས་རམ་ཕན་བསླབ་ཅིག་བཀྲམ་སྟོན་འབད་ནི་ལུ་ <emph>གནད་སྡུད་ - ནུས་ལྡན་དུས་ཚོད་ - ཨིན་པུཊི་གྲོགས་རམ་</emph> ལག་ལེན་འཐབ།"
@@ -8441,7 +7916,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའིནང་ཐི
msgctxt ""
"note_insert.xhp\n"
"par_id3153707\n"
-"36\n"
"help.text"
msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\">Insert - Comment</link>"
msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Note\">བཙུགས་ནི་ - དྲན་འཛིན་</link>"
@@ -8658,7 +8132,6 @@ msgstr "<bookmark_value>དཔར་བསྐྲུན་འབད་དོ་
msgctxt ""
"print_details.xhp\n"
"hd_id3154346\n"
-"1\n"
"help.text"
msgid "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_details.xhp\" name=\"Printing Sheet Details\">Printing Sheet Details</link></variable>"
msgstr "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_details.xhp\" name=\"Printing Sheet Details\">ལེབ་གྲངས་ཀྱི་རྒྱས་བཤད་ དཔར་བསྐྲུན་འབད་དོ་</link></variable>"
@@ -8667,7 +8140,6 @@ msgstr "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_detai
msgctxt ""
"print_details.xhp\n"
"par_id3153728\n"
-"2\n"
"help.text"
msgid "When printing a sheet you can select which details are to be printed:"
msgstr "ལེབ་གྲངས་ཅིག་དཔར་བསྐྲུན་འབད་བའི་སྐབས་ལུ་ རྒྱས་བཤད་ག་ཅི་ར་དཔར་བསྐྲུན་འབད་དགོཔ་ཨིན་ན་ སེལ་འཐུ་འབད་:"
@@ -8676,7 +8148,6 @@ msgstr "ལེབ་གྲངས་ཅིག་དཔར་བསྐྲུན་
msgctxt ""
"print_details.xhp\n"
"par_id3150010\n"
-"3\n"
"help.text"
msgid "Row and column headers"
msgstr "གྲལ་ཐིག་དང་ཀེར་ཐིག་མགོ་ཡིག"
@@ -8685,7 +8156,6 @@ msgstr "གྲལ་ཐིག་དང་ཀེར་ཐིག་མགོ་ཡ
msgctxt ""
"print_details.xhp\n"
"par_id3154013\n"
-"4\n"
"help.text"
msgid "Sheet grid"
msgstr "ལེབ་གྲངས་གིརིཌི།"
@@ -8694,7 +8164,6 @@ msgstr "ལེབ་གྲངས་གིརིཌི།"
msgctxt ""
"print_details.xhp\n"
"par_id3145273\n"
-"5\n"
"help.text"
msgid "Comments"
msgstr "ནང་དོན་ཚུ་"
@@ -8703,7 +8172,6 @@ msgstr "ནང་དོན་ཚུ་"
msgctxt ""
"print_details.xhp\n"
"par_id3145801\n"
-"6\n"
"help.text"
msgid "Objects and images"
msgstr ""
@@ -8712,7 +8180,6 @@ msgstr ""
msgctxt ""
"print_details.xhp\n"
"par_id3154491\n"
-"7\n"
"help.text"
msgid "Charts"
msgstr "དཔེ་རིས།"
@@ -8721,7 +8188,6 @@ msgstr "དཔེ་རིས།"
msgctxt ""
"print_details.xhp\n"
"par_id3154731\n"
-"8\n"
"help.text"
msgid "Drawing objects"
msgstr "པར་རིས་དངོས་པོ་ཚུ།"
@@ -8730,7 +8196,6 @@ msgstr "པར་རིས་དངོས་པོ་ཚུ།"
msgctxt ""
"print_details.xhp\n"
"par_id3149400\n"
-"9\n"
"help.text"
msgid "Formulas"
msgstr "མན་ངག་ཚུ།"
@@ -8739,7 +8204,6 @@ msgstr "མན་ངག་ཚུ།"
msgctxt ""
"print_details.xhp\n"
"par_id3150752\n"
-"10\n"
"help.text"
msgid "To choose the details proceed as follows:"
msgstr "རྒྱས་བཤད་ཚུ་གདམ་ཁ་བརྐྱབ་ནི་གི་དོན་ལུ་ འོག་གི་ཚུ་བཟུམ་སྦེ་འབད་:"
@@ -8748,7 +8212,6 @@ msgstr "རྒྱས་བཤད་ཚུ་གདམ་ཁ་བརྐྱབ་
msgctxt ""
"print_details.xhp\n"
"par_id3145640\n"
-"11\n"
"help.text"
msgid "Select the sheet you want to print."
msgstr "དཔར་བསྐྲུན་འབད་དགོ་མནོ་མི་ལེབ་གྲངས་ སེལ་འཐུ་འབད།"
@@ -8757,7 +8220,6 @@ msgstr "དཔར་བསྐྲུན་འབད་དགོ་མནོ་མ
msgctxt ""
"print_details.xhp\n"
"par_id3150042\n"
-"12\n"
"help.text"
msgid "Choose <emph>Format - Page</emph>."
msgstr "<emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་</emph> གདམ་ཁ་རྐྱབས།"
@@ -8766,7 +8228,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་</emph> ག
msgctxt ""
"print_details.xhp\n"
"par_id3147340\n"
-"13\n"
"help.text"
msgid "The command is not visible if the sheet was opened with write protection on. In that case, click the <emph>Edit File </emph>icon on the <emph>Standard</emph> Bar."
msgstr "ལེབ་གྲངས་འདི་ག་དེམ་ཅིག་འབད་ འབྲི་ནིའི་ཉེན་སྐྱོབ་ཀྱི་ཐོག་ལས་ཁ་ཕྱེ་ཕྱེཝ་ཨིན་པ་ཅིན་ བརྡ་བཀོད་འདི་མཐོང་མི་ཚུགས། དེ་བསྒང་ <emph>ཚད་ལྡན་</emph> ཕྲ་རིང་གུ་སྦེ་ <emph>ཡིག་སྣོད་ཞུན་དག་འབད་ </emph>ངོས་པར་ ལུ་ཨེབ་གཏང་འབད།"
@@ -8775,7 +8236,6 @@ msgstr "ལེབ་གྲངས་འདི་ག་དེམ་ཅིག་འ
msgctxt ""
"print_details.xhp\n"
"par_id3146916\n"
-"14\n"
"help.text"
msgid "Select the <emph>Sheet</emph> tab. In the <emph>Print </emph>area mark the details to be printed and click OK."
msgstr "<emph>ལེབ་གྲངས་</emph> མཆོང་ལྡེ་ སེལའ་ཐུ་འབད། <emph>དཔར་བསྐྲུན་ </emph>མངའ་ཁོངས་ནང་ དཔར་བསྐྲུན་འབད་ནི་ཨིན་པའི་རྒྱས་བཤད་ཚུ་གུ་རྟགས་བཀལ་ཞིནམ་ལས་ བཏུབ་གུ་ཨེབ་གཏང་འབད།"
@@ -8784,13 +8244,11 @@ msgstr "<emph>ལེབ་གྲངས་</emph> མཆོང་ལྡེ་ ས
msgctxt ""
"print_details.xhp\n"
"par_id3145789\n"
-"15\n"
"help.text"
msgid "Print the document."
msgstr "ཡིག་ཆ་དཔར་བསྐྲུན་འབད།"
#: print_details.xhp
-#, fuzzy
msgctxt ""
"print_details.xhp\n"
"par_id3150345\n"
@@ -8818,7 +8276,6 @@ msgstr "<bookmark_value>དཔར་བསྐྲུན་འབད་དོ་
msgctxt ""
"print_exact.xhp\n"
"hd_id3153194\n"
-"1\n"
"help.text"
msgid "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.xhp\" name=\"Defining Number of Pages for Printing\">Defining Number of Pages for Printing</link></variable>"
msgstr "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.xhp\" name=\"Defining Number of Pages for Printing\">དཔར་བསྐྲུན་དོན་ལུ་ ཤོག་ལེབ་ཀྱི་ཨང་གྲངས་ངེས་འཛིན་འབད་དོ་</link></variable>"
@@ -8827,7 +8284,6 @@ msgstr "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.x
msgctxt ""
"print_exact.xhp\n"
"par_id3153771\n"
-"2\n"
"help.text"
msgid "If a sheet is too large for a single printed page, $[officename] Calc will print the current sheet evenly divided over several pages. Since the automatic page break does not always take place in the optimal position, you can define the page distribution yourself."
msgstr "དཔར་བསྐྲུན་འབད་ཡོད་པའི་ཤོག་ལེབ་རྐྱང་པ་ཅིག་ལུ་ ལེབ་གྲངས་འདི་སྦོམ་དྲགས་པ་ཅིན་ $[officename] ཀེལཀི་གིས་ ཤོག་ལེབ་ལེ་ཤ་ཅིག་ལུ་ཆ་ཅན་སྦེ་བགོ་བཤའ་རྐྱབ་སྟེ་ ད་ལྟོའི་ལེབ་གྲངས་དཔར་བསྐྲུན་འབད་འོང་། རང་བཞིན་ཤོག་ལེབ་ཀྱི་མཚམས་འདི་ཨ་རྟག་ར་ གང་དྲག་གནས་ས་ནང་མེདཔ་ལས་ ཤོག་ལེབ་བགོ་བཀྲམ་འདི་ཁྱོད་རང་གིས་ ངེས་འཛིན་འབད་བཏུབ།"
@@ -8836,13 +8292,11 @@ msgstr "དཔར་བསྐྲུན་འབད་ཡོད་པའི་ཤ
msgctxt ""
"print_exact.xhp\n"
"par_id3159155\n"
-"3\n"
"help.text"
msgid "Go to the sheet to be printed."
msgstr "དཔར་བསྐྲུན་འབད་དགོ་པ་ཅིན་ ལེབ་གྲངས་ལུ་འགྱོ།"
#: print_exact.xhp
-#, fuzzy
msgctxt ""
"print_exact.xhp\n"
"par_id3150012\n"
@@ -8854,7 +8308,6 @@ msgstr "<emph>མཐོང་སྣང་ - ཤོག་མཚམས་སྔོ
msgctxt ""
"print_exact.xhp\n"
"par_id3146974\n"
-"5\n"
"help.text"
msgid "You will see the automatic distribution of the sheet across the print pages. The automatically created print ranges are indicated by dark blue lines, and the user-defined ones by light blue lines. The page breaks (line breaks and column breaks) are marked as black lines."
msgstr "ལེབ་གྲངས་རང་བཞིན་བགོ་བཀྲམ་འདི་ དཔར་བསྐྲུན་ཤོག་ལེབ་གེ་ར་ལུ་ ཁྱོད་ཀྱིས་མཐོང་འོང་། རང་བཞིན་གྱིས་ གསར་བསྐྲུན་འབད་ཡོད་པའི་དཔར་བསྐྲུན་ཁྱབ་ཚད་ཚུ་ སྔོན་ནག་གྲལ་ཐིག་དང་ ལག་ལེན་པ་-ངེས་འཛིན་འབད་ཡོད་མི་ཚུ་ སྔོ་སྐྱ་གིས་ བརྡ་སྟོན་འབདཝ་ཨིན། ཤོག་མཚམས་(གྲལ་ཐིག་མཚམས་དང་ཀེར་ཐིག་མཚམས་)ཚུ་ ནག་ཐིག་གིས་ རྟགས་བཀལཝ་ཨིན།"
@@ -8863,13 +8316,11 @@ msgstr "ལེབ་གྲངས་རང་བཞིན་བགོ་བཀྲ
msgctxt ""
"print_exact.xhp\n"
"par_id3152578\n"
-"6\n"
"help.text"
msgid "You can move the blue lines with the mouse. You will find further options in the Context menu, including adding an additional print range, removing the scaling and inserting additional manual line and column breaks."
msgstr "སྔོན་ཐིག་འདི་ མཱའུསི་གི་ཐོག་ལས་ སྤོ་བཤུད་འབད་ཚུགས། ཁྱོད་ཀྱིས་ ཁ་སྐོང་ཅན་གྱི་དཔར་བསྐྲུན་ཁྱབམ་ཚད་ཁ་སྐོང་རྐྱབ་ནི་ ཆ་ཚད་རྩ་བསྐྲད་གཏང་ནི་དང་ ཁ་སྐོང་ཅན་གྱི་ལག་དེབ་གྲལ་ཐིག་བཙུགས་ནི་ དེ་ལས་ཀེར་ཐིག་མཚམས་བཅས་ སྐབས་དོན་དཀར་ཆག་ནང་ གདམ་ཁ་ཧེང་བཀལ་མཐོང་ཚུགས།"
#: print_exact.xhp
-#, fuzzy
msgctxt ""
"print_exact.xhp\n"
"par_id3151073\n"
@@ -8897,13 +8348,11 @@ msgstr "<bookmark_value>དཔར་བསྐྲུན་འབད་དོ་
msgctxt ""
"print_landscape.xhp\n"
"hd_id3153418\n"
-"1\n"
"help.text"
msgid "<variable id=\"print_landscape\"><link href=\"text/scalc/guide/print_landscape.xhp\" name=\"Printing Sheets in Landscape Format\">Printing Sheets in Landscape Format</link></variable>"
msgstr "<variable id=\"print_landscape\"><link href=\"text/scalc/guide/print_landscape.xhp\" name=\"Printing Sheets in Landscape Format\">ལེབ་གྲངས་ཚུ་ ཀེ་ཀེ་སྦེ་དཔར་བསྐྲུན་འབད་དོ་</link></variable>"
#: print_landscape.xhp
-#, fuzzy
msgctxt ""
"print_landscape.xhp\n"
"par_id3149257\n"
@@ -8915,7 +8364,6 @@ msgstr "ལེབ་གྲངས་ཅིག་དཔར་བསྐྲུན་
msgctxt ""
"print_landscape.xhp\n"
"par_id3153963\n"
-"15\n"
"help.text"
msgid "To print in landscape format, proceed as follows:"
msgstr "ཀེ་ཀེ་རྩ་སྒྲིག་ནང་སྦེ་དཔར་བསྐྲུན་འབད་དགོ་པ་ཅིན་ འོག་གི་ཚུ་བཟུམ་སྦེ་འབད་:"
@@ -8924,7 +8372,6 @@ msgstr "ཀེ་ཀེ་རྩ་སྒྲིག་ནང་སྦེ་དཔ
msgctxt ""
"print_landscape.xhp\n"
"par_id3154020\n"
-"3\n"
"help.text"
msgid "Go to the sheet to be printed."
msgstr "དཔར་བསྐྲུན་འབད་དགོ་པ་ཅིན་ ལེབ་གྲངས་ལུ་འགྱོ།"
@@ -8933,7 +8380,6 @@ msgstr "དཔར་བསྐྲུན་འབད་དགོ་པ་ཅིན
msgctxt ""
"print_landscape.xhp\n"
"par_id3150786\n"
-"4\n"
"help.text"
msgid "Choose <emph>Format - Page</emph>."
msgstr "<emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་</emph> གདམ་ཁ་རྐྱབས།"
@@ -8942,7 +8388,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་</emph> ག
msgctxt ""
"print_landscape.xhp\n"
"par_id3150089\n"
-"5\n"
"help.text"
msgid "The command is not visible if the sheet has been opened with write protection on. In that case, click the <emph>Edit File </emph>icon on the <emph>Standard</emph> bar."
msgstr "ལེབ་གྲངས་འདི་འབྲི་ནིའི་ཉེན་སྐྱོབ་ཀྱིས་ ཁ་ཕྱེ་ཡོད་པ་ཅིན་ བརྡ་བཀོད་འདི་མི་མཐོང་། དེ་བསྒང་ <emph>ཚད་ལྡན་</emph> ཕྲ་རིང་གུ་ <emph>ཡིག་སྣོད་ཞུན་དག་འབད་ </emph> ངོས་པར་ལུ་ཨེབ་གཏང་འབད།"
@@ -8951,7 +8396,6 @@ msgstr "ལེབ་གྲངས་འདི་འབྲི་ནིའི་ཉ
msgctxt ""
"print_landscape.xhp\n"
"par_id3166430\n"
-"6\n"
"help.text"
msgid "Select the <emph>Page</emph> tab. Select the <emph>Landscape</emph> paper format and click OK."
msgstr "<emph>ཤོག་ལེབ་</emph> མཆོང་ལྡེ་ སེལ་འཐུ་འབད། <emph>ཀེ་ཀེ་</emph> ཤོག་ལེབ་རྩ་སྒྲིག་སེལ་འཐུ་འབད་ཞིནམ་ལས་ བཏུབ་གུ་ཨེབ་གཏང་འབད།"
@@ -8960,7 +8404,6 @@ msgstr "<emph>ཤོག་ལེབ་</emph> མཆོང་ལྡེ་ སེ
msgctxt ""
"print_landscape.xhp\n"
"par_id3150885\n"
-"7\n"
"help.text"
msgid "Choose <emph>File - Print</emph>. You will see the <emph>Print</emph> dialog."
msgstr "<emph>ཡིག་སྣོད་ - དཔར་བསྐྲུན་</emph> གདམ་ཁ་རྐྱབས། ཁྱོད་ཀྱིས་ <emph>དཔར་བསྐྲུན་</emph> ཌའི་ལོག་འདི་མཐོང་།"
@@ -8969,7 +8412,6 @@ msgstr "<emph>ཡིག་སྣོད་ - དཔར་བསྐྲུན་</e
msgctxt ""
"print_landscape.xhp\n"
"par_id3156288\n"
-"8\n"
"help.text"
msgid "Depending on the printer driver and the operating system, it may be necessary to click the <emph>Properties</emph> button and to change your printer to landscape format there."
msgstr "དཔར་འཕྲུལ་འདྲེན་བྱེད་དང་བཀོལ་སྤྱོད་རིམ་ལུགས་གཉིས་ལུ་བརྟེན་ཏེ་ <emph>རྒྱུ་དངོས་</emph>ཨེབ་རྟ་གུ་ ཨེབ་གཏང་འབད་དགོཔ་དང་ དེ་ནང་ལུ་ ཁྱོད་རའི་དཔར་འཕྲུལ་འདི་ཡང་ཀེ་ཀེ་སྦེ་རྩ་སྒྲིག་འབད་དགོཔ་འོང་།"
@@ -8978,7 +8420,6 @@ msgstr "དཔར་འཕྲུལ་འདྲེན་བྱེད་དང་
msgctxt ""
"print_landscape.xhp\n"
"par_id3149404\n"
-"9\n"
"help.text"
msgid "In the <emph>Print </emph>dialog in the <emph>General</emph> tab page, select the contents to be printed:"
msgstr "<emph>དཔར་བསྐྲུན་ཁྱབ་ཚད་</emph> འོག་གི་ <emph>དཔར་བསྐྲུན་ </emph> ཌའི་ལོག་ནང་ དཔར་བསྐྲུན་འབད་ནི་ཨིན་མི་ཤོག་ལེབ་ཚུ་ སེལ་འཐུ་འབད།"
@@ -8987,7 +8428,6 @@ msgstr "<emph>དཔར་བསྐྲུན་ཁྱབ་ཚད་</emph> འ
msgctxt ""
"print_landscape.xhp\n"
"par_id3153305\n"
-"10\n"
"help.text"
msgid "<emph>All sheets</emph> - All sheets will be printed."
msgstr "<emph>All</emph> - ལེབ་གྲངས་ཆ་མཉམ་ར་དཔར་བསྐྲུན་འབད་འོང་།"
@@ -8996,7 +8436,6 @@ msgstr "<emph>All</emph> - ལེབ་གྲངས་ཆ་མཉམ་ར་
msgctxt ""
"print_landscape.xhp\n"
"par_id3148871\n"
-"12\n"
"help.text"
msgid "<emph>Selected sheets</emph> - Only the selected sheets will be printed. All sheets whose names (at the bottom on the sheet tabs) are selected will be printed. By pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while clicking a sheet name you can change this selection."
msgstr ""
@@ -9029,7 +8468,6 @@ msgstr ""
msgctxt ""
"print_landscape.xhp\n"
"par_id3148699\n"
-"11\n"
"help.text"
msgid "<emph>Pages</emph> - Enter the pages to be printed. The pages will also be numbered from the first sheet onwards. If you see in the Page Break Preview that Sheet1 will be printed on 4 pages and you want to print the first two pages of Sheet2, enter 5-6 here."
msgstr "<emph>ཤོག་ལེབ་</emph> - དཔར་བསྐྲུན་འབད་དགོ་པའི་ཤོག་ལེབ་ཚུ་ བཙུགས། ཤོག་ལེབ་ཚུ་ཡང་ ལེབ་གྲངས་དང་པ་ལས་འགོ་བཙུགས་ཏེ་ ཨང་བཏགས་འོང་། ཤོག་མཚམས་སྔོན་ལྟ་ནང་བལྟ་བ་ཅིན་ ལེབ་གྲངས་ ༡ འདི་ཤོག་ལེབ་བཞིའི་གུ་དཔར་བསྐྲུན་འབད་དེ་སྡོད་འོང་ དེ་ལས་ ལེབ་གྲངས་༢ ཀྱི་ཤོག་ལེབ་དང་པམ་གཉིསཔ་འདི་དཔར་བསྐྲུན་འབད་ནི་ལུ་ ༥-༦ ཚུན་ཚོད་ འདི་ནང་ལུ་བཙུགས།"
@@ -9038,13 +8476,11 @@ msgstr "<emph>ཤོག་ལེབ་</emph> - དཔར་བསྐྲུན
msgctxt ""
"print_landscape.xhp\n"
"par_id3145076\n"
-"13\n"
"help.text"
msgid "If under <emph>Format - Print ranges</emph> you have defined one or more print ranges, only the contents of these print ranges will be printed."
msgstr "ཁྱོད་ཀྱིས་ གཅིག་ ཡང་ན་ གཅིག་ལས་ལྷག་སྟེ་ངེས་འཛིན་འབད་ཡོད་པའི་<emph>རྩ་སྒྲིག་ - དཔར་བསྐྲུན་ཁྱབ་ཚད་</emph> གི་འོག་ལུ་ཨིན་པ་ཅིན་ དཔར་བསྐྲུན་ཁྱབ་ཚད་འདི་ཚུ་གི་ནང་དོན་རྐྱངམ་ཅིག་ དཔར་བསྐྲུན་འབད་འོང་།"
#: print_landscape.xhp
-#, fuzzy
msgctxt ""
"print_landscape.xhp\n"
"par_id3156019\n"
@@ -9080,7 +8516,6 @@ msgstr "<bookmark_value>དཔར་བསྐྲུན་འབད་དོ་
msgctxt ""
"print_title_row.xhp\n"
"hd_id3153727\n"
-"21\n"
"help.text"
msgid "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_title_row.xhp\" name=\"Printing Rows or Columns on Every Page\">Printing Rows or Columns on Every Page</link></variable>"
msgstr "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_title_row.xhp\" name=\"Printing Rows or Columns on Every Page\">ཤོག་ལེབ་རེ་རེ་ནང་ལུ་ གྲལ་ཐིག་ ཡང་ན་ ཀེར་ཐིག་ཚུ་དཔར་བསྐྲུན་འབད་དོ་</link></variable>"
@@ -9089,7 +8524,6 @@ msgstr "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_tit
msgctxt ""
"print_title_row.xhp\n"
"par_id3154014\n"
-"2\n"
"help.text"
msgid "If you have a sheet that is so large that it will be printed multiple pages, you can set up rows or columns to repeat on each printed page."
msgstr "ཁྱོད་ལུ་ སྣ་མང་ཤོག་ལེབ་དཔར་བསྐྲུན་འབད་ཚུགས་པའི་ལེབ་གྲངས་སྦོམ་ཅིག་ཡོད་པ་ཅིན་ དཔར་བསྐྲུན་འབད་ཡོད་པའི་ཤོག་ལེབ་རེ་རའི་གུ་ གྲལ་ཐིག་ ཡང་ན་ ཀེར་ཐིག་ཚུ་གཞི་སྒྲིག་འབད་ཚུགས།"
@@ -9098,16 +8532,14 @@ msgstr "ཁྱོད་ལུ་ སྣ་མང་ཤོག་ལེབ་ད
msgctxt ""
"print_title_row.xhp\n"
"par_id3146975\n"
-"7\n"
"help.text"
-msgid "As an example, If you want to print the top two rows of the sheet as well as the first column (A)on all pages, do the following:"
-msgstr "དཔེ་འདི་བཟུམ་སྦེ་ ཤོག་ལེབ་ཆ་མཉམ་གུ་ལུ་ ལེབ་གྲངས་གུ་གི་གྲལ་ཐིག་གཉིས་ དེ་ལས་ཀེར་ཐིག་དང་པམ་(ཨེ་)ཚུ་དཔར་བསྐྲུན་འབད་དགོ་པ་ཅིན་ འོག་གི་འདི་འབད་:"
+msgid "As an example, If you want to print the top two rows of the sheet as well as the first column (A) on all pages, do the following:"
+msgstr ""
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
"par_id3163710\n"
-"8\n"
"help.text"
msgid "Choose <emph>Format - Print Ranges - Edit</emph>. The <emph>Edit Print Ranges</emph> dialog appears."
msgstr "<emph>རྩ་སྒྲིག་ - དཔར་བསྐྲུན་ཁྱབ་ཚད་ཚུ་ - ཞུན་དག་</emph> གདམ་ཁ་རྐྱབས། <emph>དཔར་བསྐྲུན་ཁྱབ་ཚད་ ཞུན་དག་འབད་</emph>ཌའི་ལོག་འབྱུངམ་ཨིན།"
@@ -9116,7 +8548,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - དཔར་བསྐྲུན་ཁ
msgctxt ""
"print_title_row.xhp\n"
"par_id3149958\n"
-"9\n"
"help.text"
msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area."
msgstr "<emph> མངའ་ཁོངས་འདི་ཡང་བསྐྱར་འབད་ནི་གི་དོན་ལུ་ </emph> གྲལ་ཐིག་གི་གཡས་ཕྱོགས་ལུ་ ངོས་པར་གུ་ཨེབ་གཏང་འབད།"
@@ -9125,7 +8556,6 @@ msgstr "<emph> མངའ་ཁོངས་འདི་ཡང་བསྐྱར
msgctxt ""
"print_title_row.xhp\n"
"par_id3145800\n"
-"10\n"
"help.text"
msgid "The dialog shrinks so that you can see more of the sheet."
msgstr "ཌའི་ལོག་བསྐུམ་ལས་ ཁྱོད་ཀྱིས་ལེབ་གྲངས་ལེ་ཤ་ཅིག་ར་མཐོང་ཚུགས།"
@@ -9134,7 +8564,6 @@ msgstr "ཌའི་ལོག་བསྐུམ་ལས་ ཁྱོད་ཀ
msgctxt ""
"print_title_row.xhp\n"
"par_id3155602\n"
-"11\n"
"help.text"
msgid "Select the first two rows and, for this example, click cell A1 and drag to A2."
msgstr "གྲལ་ཐིག་དང་པམ་གཉིས་སེལ་འཐུ་འབད་ཞིནམ་ལས་ དཔེ་འདི་གི་དོན་ལུ་ ནང་ཐིག་ ཨེ་༡ གུ་ཨེབ་གཏང་འབད་བའི་ཤུལ་ལས་ ཨེ་༢ ཁ་ཐུག་ལུ་འདྲུད།"
@@ -9143,7 +8572,6 @@ msgstr "གྲལ་ཐིག་དང་པམ་གཉིས་སེལ་འ
msgctxt ""
"print_title_row.xhp\n"
"par_id3154018\n"
-"12\n"
"help.text"
msgid "In the shrunk dialog you will see $1:$2. Rows 1 and 2 are now rows to repeat."
msgstr "བསྐུམས་ཡོད་པའི་ཌའི་ལོག་ནང་ $༡ མཐོང་འོང་། གྲལ་ཐིག་ ༡པ་དང་ ༢པ་ཚུ་ད་ལས་ཕར་ཡང་བསྐྱར་འབད་ནི་ཨིན་པའི་གྲལ་ཐིག་ཨིན།"
@@ -9152,7 +8580,6 @@ msgstr "བསྐུམས་ཡོད་པའི་ཌའི་ལོག་ན
msgctxt ""
"print_title_row.xhp\n"
"par_id3153707\n"
-"13\n"
"help.text"
msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area. The dialog is restored again."
msgstr "<emph> མངའ་ཁོངས་ཡང་བསྐྱར་འབད་ནི་ལུ་ </emph> གྲལ་ཐིག་གཡས་ཀྱི་ངོས་པར་གུ་ ཨེབ་གཏང་འབད། ཌའི་ལོག་འདི་ལོག་གསོག་འཇོག་འབདཝ་ཨིན།"
@@ -9161,7 +8588,6 @@ msgstr "<emph> མངའ་ཁོངས་ཡང་བསྐྱར་འབད
msgctxt ""
"print_title_row.xhp\n"
"par_id3155443\n"
-"14\n"
"help.text"
msgid "If you also want column A as a column to repeat, click the icon at the far right of the <emph>Columns to repeat</emph> area."
msgstr "ཀེར་ཐིག་ ཨེ་འདི་ཡང་བསྐྱར་འབད་དགོ་མནོ་བ་ཅིན་ <emph>མངའ་ཁོངས་ཡང་བསྐྱར་འབད་ནི་ལུ་ </emph> ཀེར་ཐིག་གཡས་ཀྱི་ངོས་པར་གུ་ཨེབ་གཏང་འབད།"
@@ -9170,7 +8596,6 @@ msgstr "ཀེར་ཐིག་ ཨེ་འདི་ཡང་བསྐྱར
msgctxt ""
"print_title_row.xhp\n"
"par_id3154256\n"
-"15\n"
"help.text"
msgid "Click column A (not in the column header)."
msgstr "ཀེར་ཐིག་ ཨེ་ གུ་ཨེབ་གཏང་འབད་(ཀེར་ཐིག་མགོ་ཡིག་ནང་མེན་)།"
@@ -9179,7 +8604,6 @@ msgstr "ཀེར་ཐིག་ ཨེ་ གུ་ཨེབ་གཏང་འ
msgctxt ""
"print_title_row.xhp\n"
"par_id3154704\n"
-"16\n"
"help.text"
msgid "Click the icon again at the far right of the <emph>Columns to repeat</emph> area."
msgstr "<emph> མངའ་ཁོངས་ཡང་བསྐྱར་འབད་ནི་ལུ་ </emph>ཀེར་ཐིག་གཡས་ཀྱི་ངོས་པར་གུ་ལོག་ ཨེབ་གཏང་འབད།"
@@ -9188,7 +8612,6 @@ msgstr "<emph> མངའ་ཁོངས་ཡང་བསྐྱར་འབད
msgctxt ""
"print_title_row.xhp\n"
"par_id3150088\n"
-"17\n"
"help.text"
msgid "Rows to repeat are rows from the sheet. You can define headers and footers to be printed on each print page independently of this in <emph>Format - Page</emph>."
msgstr "ཡང་བསྐྱར་འབད་ནི་ཨིན་མི་གྲལ་ཐིག་ཚུ་ལེབ་གྲངས་ལས་ཨིན། ཁྱོད་ར་ <emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་</emph> ནང་ དཔར་བསྐྲུན་ཤོག་ལེབ་རེ་རེའི་གུ་ བརྟེན་ནི་མེདཔ་འབད་མགོ་ཡིག་དང་མཇུག་ཡིག་གཉིས་ཀྱི་ངེས་འཛིན་འབད།"
@@ -9197,7 +8620,6 @@ msgstr "ཡང་བསྐྱར་འབད་ནི་ཨིན་མི་ག
msgctxt ""
"print_title_row.xhp\n"
"par_id3155380\n"
-"18\n"
"help.text"
msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">སྟོན་ - ཤོག་ལེབ་མཚམས་ཀྱི་སྔོན་ལྟ་</link>"
@@ -9206,7 +8628,6 @@ msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Previ
msgctxt ""
"print_title_row.xhp\n"
"par_id3154371\n"
-"19\n"
"help.text"
msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">རྩ་སྒྲིག་ - ཁྱབ་ཚད་ཚུ་ དཔར་བསྐྲུན་འབད་ - ཞུན་དག་</link>"
@@ -9215,7 +8636,6 @@ msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges -
msgctxt ""
"print_title_row.xhp\n"
"par_id3146113\n"
-"20\n"
"help.text"
msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format - Page - (Header / Footer)\">Format - Page - (Header / Footer)</link>"
msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format - Page - (Header / Footer)\">རྩ་སྒྲིག་ - ཤོག་ལེབ་ - (མགོ་ཡིག་ / མཇུག་ཡིག་)</link>"
@@ -9237,7 +8657,6 @@ msgid "<bookmark_value>exporting;cells</bookmark_value><bookmark_value>printing;
msgstr "<bookmark_value>ཕྱིར་འདྲེན་འབད་དོ་;ནང་ཐིག་ཚུ་</bookmark_value><bookmark_value>དཔར་བསྐྲུན་འབད་དོ་; ནང་ཐིག་ཚུ་</bookmark_value><bookmark_value>ཁྱབ་ཚད་ཚུ་;ཁྱབ་ཚད་ཚུ་དཔར་བསྐྲུན་འབད་</bookmark_value><bookmark_value>དཔར་བསྐྲུན་ཁྱབ་ཚད་ཀྱི་པི་ཌི་ཨེཕ་ཕྱིར་འདྲེན་</bookmark_value><bookmark_value>ནང་ཐིག་ཁྱབ་ཚད་; དཔར་བསྐྲུན་འབད་དོ་</bookmark_value><bookmark_value>ནང་ཐིག་ཚུ་; ཁྱབ་ཚད་ཚུ་དཔར་བསྐྲུན་འབད་</bookmark_value><bookmark_value>ཁྱབ་ཚད་ཚུ་དཔར་བསྐྲུན་འབད་</bookmark_value><bookmark_value>བསལ་དོ་, བཏོན་གཏང་ནི་ལྟ་</bookmark_value><bookmark_value>ངེས་འཛིན་འབད་དོ་;དཔར་བསྐྲུན་བད་ཡོད་པའི་ཁྱབ་ཚད་ཚུ་</bookmark_value><bookmark_value>དཔར་བསྐྲུན་འབད་དེ་ཡོད་པའི་ཁྱབ་ཚད་ཚུ་རྒྱ་བསྐྱེད་གཏང་དོ་</bookmark_value><bookmark_value>ཁ་སྐོང་བརྐྱབ་དོ་;དཔར་བསྐྲུན་ཁྱབ་ཚད་ཚུ་ནང་ནང་ཐིག་ཚུ་</bookmark_value><bookmark_value>བཏོན་གཏང་དོ་;ཁྱབ་ཚད་ཚུ་དཔར་བསྐྲུན་འབད་</bookmark_value>"
#: printranges.xhp
-#, fuzzy
msgctxt ""
"printranges.xhp\n"
"par_idN108D7\n"
@@ -9326,7 +8745,6 @@ msgid "To Clear a Print Range"
msgstr "དཔར་བསྐྲུན་ཁྱབ་ཚད་ཅིག་ བསལ་ནི་ལུ་"
#: printranges.xhp
-#, fuzzy
msgctxt ""
"printranges.xhp\n"
"par_idN10929\n"
@@ -9354,7 +8772,6 @@ msgstr "<emph>ཤོག་མཚམས་སྔོན་ལྟ་</emph> ནང
msgctxt ""
"printranges.xhp\n"
"par_id3153143\n"
-"8\n"
"help.text"
msgid "To define a new page break region, drag the border to a new location. When you define a new page break region, an automatic page break is replaced by a manual page break."
msgstr "ཤོག་མཚམས་མངའ་ཁོངས་གསརཔ་ཅིག་ ངེས་འཛིན་འབད་ནིའི་དོན་ལུ་ མཐའ་མཚམསའདི་གནས་ཁོངས་གསརཔ་ཅིག་ནང་འདྲུད། དེ་ངེས་འཛིན་འབད་བའི་སྐབས་ རང་བཞིན་ཤོག་མཚམས་འདི་ ལག་དེབ་ཤོག་མཚམས་ཀྱིས་ ཚབ་བཙུགས་འབདཝ་ཨིན།"
@@ -9403,7 +8820,6 @@ msgstr "དཔར་བསྐྲུན་ཁྱབ་ཚད་ཀྱི་ཚད
msgctxt ""
"printranges.xhp\n"
"par_id3151075\n"
-"12\n"
"help.text"
msgid "To delete a manual page break that is contained in a print range, drag the border of the page break outside of the print range."
msgstr "དཔར་བསྐྲུན་ཁྱབ་ཚད་ནང་ཡོད་པའི་ ལག་དེབ་ཤོག་མཚམས་ཅིག་བཏོན་གཏང་དགོ་པ་ཅིན་ ཤོག་མཚམས་ཀྱི་མཐའ་མཚམས་འདི་ དཔར་བསྐྲུན་ཁྱབ་ཚད་ཀྱི་ཕྱི་ཁར་འདྲུད།"
@@ -9452,7 +8868,6 @@ msgstr "<bookmark_value>ཁ་བྱང་བཏགས་དོ་ འབྲེ
msgctxt ""
"relativ_absolut_ref.xhp\n"
"hd_id3156423\n"
-"53\n"
"help.text"
msgid "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relativ_absolut_ref.xhp\" name=\"Addresses and References, Absolute and Relative\">Addresses and References, Absolute and Relative</link></variable>"
msgstr "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relativ_absolut_ref.xhp\" name=\"Addresses and References, Absolute and Relative\">ཁ་བྱང་དང་གཞི་བསྟུན་ཚུ་ ཡང་དག་དང་འབྲེལ་བའི་</link></variable>"
@@ -9461,7 +8876,6 @@ msgstr "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relat
msgctxt ""
"relativ_absolut_ref.xhp\n"
"hd_id3163712\n"
-"3\n"
"help.text"
msgid "Relative Addressing"
msgstr "འབྲེལ་བའི་ཁ་བྱང་བཏགས་ནི།"
@@ -9470,7 +8884,6 @@ msgstr "འབྲེལ་བའི་ཁ་བྱང་བཏགས་ནི།
msgctxt ""
"relativ_absolut_ref.xhp\n"
"par_id3146119\n"
-"4\n"
"help.text"
msgid "The cell in column A, row 1 is addressed as A1. You can address a range of adjacent cells by first entering the coordinates of the upper left cell of the area, then a colon followed by the coordinates of the lower right cell. For example, the square formed by the first four cells in the upper left corner is addressed as A1:B2."
msgstr "ཀེར་ཐིག་ ཨེ་ནང་གི་ནང་ཐིག་ནང་ གྲལ་ཐིག་ ༡ འདི་ ཨེ་༡ སྦེ་ཁ་བྱང་བཏགས་ནུག ཁྱོད་ཀྱིས་ དང་པ་ར་ མངའ་ཁོངས་ཀྱི་ལྟག་་གི་གཡོན་ཁ་ཐུག་གི་ཆ་སྙོམ་གྱི་ཐོག་ལས་དང་ དེ་ལས་ འོག་གཡས་ནང་ཐིག་གི་ཆ་སྙོམས་ཀྱིས་ རྗེས་སུ་འབྲངས་ཡོད་པའི་ཀོ་ལཱོན་ཅིག་གི་ཐོག་ལས་ ཉེ་འབད་ནང་ཐིག་ཚུ་གི་ཁྱབ་ཚད་ཅིག་ཁ་བྱང་བཏགས་ཚུགས། དཔེར་ན་ ལྟག་གཡོན་སྒྱིད་ཁུག་ནང་ ནང་ཐིག་དང་པམ་བཞི་གིས་གཞི་བསྒྲུབས་འབད་ཡོད་མི་འདི་ ཨེ་༡ : བི་༢ སྦེ་ཁ་བྱང་བཏགསཔ་ཨིན།"
@@ -9479,7 +8892,6 @@ msgstr "ཀེར་ཐིག་ ཨེ་ནང་གི་ནང་ཐིག
msgctxt ""
"relativ_absolut_ref.xhp\n"
"par_id3154730\n"
-"5\n"
"help.text"
msgid "By addressing an area in this way, you are making a relative reference to A1:B2. Relative here means that the reference to this area will be adjusted automatically when you copy the formulas."
msgstr "འདི་བཟུམ་སྦེ་ མངའ་ཁོངས་ལུ་ཁ་བྱང་བཏགས་པའི་ཐོག་ལས་ ཁྱོད་ཀྱིས་ ཨེ་༡:བི་༢ ལུ་ འབྲེལ་བའི་གཞི་བསྟུན་ཅིག་བཟོཝ་ཨིན་པས། ད་ལྟོ་འབྲེལ་བའི་ཟེར་མི་འདི་ མངའ་ཁོངས་ལུ་ཡོད་པའི་གཞི་བསྟུན་འདི་ ཁྱོད་ཀྱིས་མན་ངག་ཚུ་འདྲ་བཤུས་རྐྱབ་པའི་སྐབས་ རང་བཞིན་གྱིས་བདེ་སྒྲིག་འབད་འོང་།"
@@ -9488,7 +8900,6 @@ msgstr "འདི་བཟུམ་སྦེ་ མངའ་ཁོངས་ལ
msgctxt ""
"relativ_absolut_ref.xhp\n"
"hd_id3149377\n"
-"6\n"
"help.text"
msgid "Absolute Addressing"
msgstr "ཡང་དག་ཁ་བྱང་བཏགས་ནི།"
@@ -9497,7 +8908,6 @@ msgstr "ཡང་དག་ཁ་བྱང་བཏགས་ནི།"
msgctxt ""
"relativ_absolut_ref.xhp\n"
"par_id3154943\n"
-"7\n"
"help.text"
msgid "Absolute references are the opposite of relative addressing. A dollar sign is placed before each letter and number in an absolute reference, for example, $A$1:$B$2."
msgstr "ཡང་དག་གཞི་བསྟུན་ཚུ་ འབྲེལ་བའི་ཁ་བྱང་གི་རྒྱབ་འགལ་ཨིན། ཌོ་ལར་རྟགས་འདི་ ཡི་གུ་རེ་རེ་དང་ཡང་དག་གཞི་བསྟུན་གྱི་ཨང་གྲངས་གདོང་ཁར་བཞགཔ་ཨིན། དཔེར་ན་ $A$1:$B$2."
@@ -9506,7 +8916,6 @@ msgstr "ཡང་དག་གཞི་བསྟུན་ཚུ་ འབྲེ
msgctxt ""
"relativ_absolut_ref.xhp\n"
"par_id3147338\n"
-"36\n"
"help.text"
msgid "$[officename] can convert the current reference, in which the cursor is positioned in the input line, from relative to absolute and vice versa by pressing Shift +F4. If you start with a relative address such as A1, the first time you press this key combination, both row and column are set to absolute references ($A$1). The second time, only the row (A$1), and the third time, only the column ($A1). If you press the key combination once more, both column and row references are switched back to relative (A1)"
msgstr "$[officename] གིས་ ད་ལྟོའི་གཞི་བསྟུན་འདི་གཞི་བསྒྱུར་འབད་བཏུབ་ དེ་ཡང་ འོད་རྟགས་འདི་ སོར་ལྡེ་+ཨེཕ་༤ ལུ་ཨེབས་པའི་ཐོག་ལས་ ཨིན་པུཊི་གྲལ་ཐིག་ནང་ལུ་ འབྲེལ་བ་ལས་ཡང་དག་དང་དོ་རུང་ ཡང་དག་ལས་ལོག་སྟེ་འབྲེལ་བ་ལུ་སྤོ་སྟེ་བཀལཝ་ཨིན། ཁྱོད་ཀྱིས་ འབྲེལ་བའི་ཁ་བྱང་ དཔེར་ན་ ཨེ་༡་ གིས་ འགོ་བཙུགས་པ་ཅིན་ ཁྱོད་ཀྱིས་འགོ་དང་པ་ ལྡེ་མིག་མཉམ་མཐུད་གུ་ཨེབ་ད་ གྲལ་ཐིག་དང་ཀེར་ཐིག་གཉིས་ཆ་ར་ ཡང་དག་གཞི་བསྟུན་ ($A$1)ལུ་གཞི་སྒྲིག་འབདཝ་ཨིན། གཉིས་པར་ གྲལ་ཐིག་(A$1) དང་ གསུམ་པ་ལུ་ ཀེར་ཐིག་ ($A1)རྐྱངམ་ཅིག་ དེ་ལུ་གཞི་སྒྲིག་འབདཝ་ཨིན། དོ་རུང་ཚར་གཅིག་ ལྡེ་མིག་མཉམ་མཐུད་ལུ་ཨེབ་པ་ཅིན་ ཀེར་ཐིག་དང་གྲལ་ཐིག་གཞི་བསྟུན་གཉིས་ ལོག་སྟེ་འབྲེལ་བ་(A1) ལུ་ སོར་བསྒྱུར་འབདཝ་ཨིན།"
@@ -9515,7 +8924,6 @@ msgstr "$[officename] གིས་ ད་ལྟོའི་གཞི་བསྟ
msgctxt ""
"relativ_absolut_ref.xhp\n"
"par_id3153963\n"
-"52\n"
"help.text"
msgid "$[officename] Calc shows the references to a formula. If, for example you click the formula =SUM(A1:C5;D15:D24) in a cell, the two referenced areas in the sheet will be highlighted in color. For example, the formula component \"A1:C5\" may be in blue and the cell range in question bordered in the same shade of blue. The next formula component \"D15:D24\" can be marked in red in the same way."
msgstr "$[officename] ཀེལཀི་གིས་ མན་ངག་ལུ་གཞི་བསྟུན་སྟོནམ་ཨིན། དཔེར་ན་ ཁྱོད་ཀྱིས་ ནང་ཐིག་ནང་གི་མན་ངག་ =SUM(A1:C5;D15:D24) ལུ་ཨེབ་གཏང་འབད་བ་ཅིན་ ལེབ་གྲངས་ནང་གི་གཞི་བསྟུན་འབད་ཡོད་པའི་མངའ་ཁོངས་གཉིསཔ་འདི་ ཚོས་གཞི་དང་ལྡནམ་འབད་ གཙོ་དམིགས་འབད་འོང་། དཔེར་ན་ མན་ངག་ཆ་ཤས་ \"A1:C5\" འདི་ ཚོས་གཞི་ཧོནམ་ནང་སྦེ་འོང་ དེ་ལས་ འདྲི་བ་ནང་གི་ནང་ཐིག་ཁྱབ་ཚད་འདི་ཡང་ གཅིག་མཚུངས་ཧོན་གྲིབ་ཀྱིས་མཐའ་མཚམས་བསྐོར་འོང་། དེ་ལས་གཞན་མི་མན་ངག་ཆ་ཤས་ \"D15:D24\" འདི་ དེ་དང་འདྲཝ་སྦེ་ དམརཔོ་སྦེ་རྟགས་བཀལ་བཏུབ།"
@@ -9524,7 +8932,6 @@ msgstr "$[officename] ཀེལཀི་གིས་ མན་ངག་ལུ་
msgctxt ""
"relativ_absolut_ref.xhp\n"
"hd_id3154704\n"
-"29\n"
"help.text"
msgid "When to Use Relative and Absolute References"
msgstr "འབྲེལ་བ་དང་ཡང་དག་གཞི་བསྟུན་ཚུ་ ནམ་ལག་ལེན་འཐབ་ནི་ཨིན་ན་"
@@ -9533,7 +8940,6 @@ msgstr "འབྲེལ་བ་དང་ཡང་དག་གཞི་བསྟ
msgctxt ""
"relativ_absolut_ref.xhp\n"
"par_id3147346\n"
-"8\n"
"help.text"
msgid "What distinguishes a relative reference? Assume you want to calculate in cell E1 the sum of the cells in range A1:B2. The formula to enter into E1 would be: =SUM(A1:B2). If you later decide to insert a new column in front of column A, the elements you want to add would then be in B1:C2 and the formula would be in F1, not in E1. After inserting the new column, you would therefore have to check and correct all formulas in the sheet, and possibly in other sheets."
msgstr "ག་ཅི་བཟུམ་ཅིག་གིས་ འབྲེལ་བའི་གཞི་བསྟུན་འདི་སོ་སོར་ཕྱེ་འོང་? ཁྱོད་ཀྱིས་ནང་ཐིག་ ཨི་༡་ ནང་ ཁྱབ་ཚད་ A1:B2 ནང་ཡོད་པའི་ནང་ཐིག་གི་དངུལ་བསྡོམས་ རྩིས་སྟོན་འབད་ནི་ཨིན་པའི་དབང་ལུ་གཏང་། ཨི་༡ ནང་བཙུགས་ནིའི་མན་ངག་འདི་ : =SUM(A1:B2)ཨིན། ཤུལ་ལས་ཁྱོད་ཀྱིས་ ཀེར་ཐིག་ ཨེ་གི་གདོང་ཁར་ ཀེར་ཐིག་གསརཔ་ཅིག་བཙུགས་ནིའི་ཐག་བཅད་པ་ཅིན་ ཁྱོད་ཀྱིས་ཁ་སྐོང་རྐྱབ་ནིའི་ཆ་ཤས་ཚུ་ B1:C2 ནང་ཨིན་དགོཔ་དང་ མན་ངག་འདི་ ཨི་༡ ནང་མེན་པར་ ཨེཕ་༡ ནང་ཨིན་དགོ། ཀེར་ཐིག་གསརཔ་ཅིག་བཙུགས་པའི་ཤུལ་མར་ ལེབ་གྲངས་འདི་ནང་དང་ ལེབ་གྲངས་གཞན་ནང་ཡང་ མན་ངག་ཚུ་ཆ་མཉམ་ར་ ནོར་བཅོས་དང་ཞིབ་དཔྱད་འབད་དགོ"
@@ -9542,7 +8948,6 @@ msgstr "ག་ཅི་བཟུམ་ཅིག་གིས་ འབྲེལ
msgctxt ""
"relativ_absolut_ref.xhp\n"
"par_id3155335\n"
-"9\n"
"help.text"
msgid "Fortunately, $[officename] does this work for you. After having inserted a new column A, the formula =SUM(A1:B2) will be automatically updated to =SUM(B1:C2). Row numbers will also be automatically adjusted when a new row 1 is inserted. Absolute and relative references are always adjusted in $[officename] Calc whenever the referenced area is moved. But be careful if you are copying a formula since in that case only the relative references will be adjusted, not the absolute references."
msgstr "སྟབས་ལེགས་ཀྱིས་ $[officename] གིས་ ཁྱོད་ལུ་ལཱ་འདི་འབད་བྱིན་འོང་། ཀེར་ཐིག་གསརཔ་ ཨེ་ཅིག་བཙུགས་པའི་ཤུལ་ལས་ མན་ངག་=SUM(A1:B2) འདི་ རང་བཞིན་གྱིས་ =SUM(B1:C2) ལུ་དུས་མཐུན་བཟོ་འོང་། དེ་མ་ཚད་ གྲལ་ཐིག་གསརཔ་ ༡ བཙུགས་པའི་སྐབས་ལས་ གྲལ་ཐིག་ཨང་གྲངས་ཚུ་ཡང་ རང་བཞིན་གྱིས་བདེ་སྒྲིག་འབད་འོང་། ཡང་དག་དང་འབྲེལ་བའི་གཞི་བསྟུན་ཚུ་ཨ་རྟག་ར་ གཞི་བསྟུན་འབད་ཡོད་པའི་མངའ་ཁོངས་སྤོ་བཤུད་འབདཝ་ད་ $[officename] ཀེལཀི་ནང་ལུ་ བདེ་སྒྲིག་འབདཝ་ཨིན། དེ་འབདཝ་ད་ མན་ངག་འདི་འདྲ་བཤུས་རྐྱབ་ཨིན་པ་ཅིན་ དྲན་པ་བཏོན་དགོ་ གནད་དོན་དེ་ནང་ ཡང་དག་གཞི་བསྟུན་མེན་པར་ འབྲེལ་བའི་གཞི་བསྟུན་ཚུ་རྐྱངམ་ཅིག་ བདེ་སྒྲིག་འབད་འོང་།"
@@ -9551,7 +8956,6 @@ msgstr "སྟབས་ལེགས་ཀྱིས་ $[officename] གིས་
msgctxt ""
"relativ_absolut_ref.xhp\n"
"par_id3145791\n"
-"39\n"
"help.text"
msgid "Absolute references are used when a calculation refers to one specific cell in your sheet. If a formula that refers to exactly this cell is copied relatively to a cell below the original cell, the reference will also be moved down if you did not define the cell coordinates as absolute."
msgstr "རྩིས་སྟོན་འདི་ ཁྱོད་རའི་ལེབ་གྲངས་ནང་གི་དམིགས་བསལ་ནང་ཐིག་གཅིག་ལུ་གཞི་བསྟུན་འབད་བའི་སྐབས་ ཡང་དག་གཞི་བསྟུན་ཚུ་ ལག་ལེན་འཐབ་ཨིན། ནང་ཐིག་ལུ་གཞི་བསྟུན་འབད་མི་མན་ངག་འདི་ ནང་ཐིག་ངོ་མ་འོག་གི་ནང་ཐིག་ཅིག་ལུ་འདྲ་བཤུས་བརྐྱབས་ཡོད་པ་ཅིན་ གཞི་བསྟུན་འདི་ཡང་ ཁྱོད་ར་གིས་ ནང་ཐིག་ཆ་སྙོམ་འདི་ཡང་དག་སྦེ་ངེས་འཛིན་འབད་དེ་མེད་པ་ཅིན་ མར་སྤོ་བཤུད་འབད་འོང་།"
@@ -9560,7 +8964,6 @@ msgstr "རྩིས་སྟོན་འདི་ ཁྱོད་རའི་
msgctxt ""
"relativ_absolut_ref.xhp\n"
"par_id3147005\n"
-"10\n"
"help.text"
msgid "Aside from when new rows and columns are inserted, references can also change when an existing formula referring to particular cells is copied to another area of the sheet. Assume you entered the formula =SUM(A1:A9) in row 10. If you want to calculate the sum for the adjacent column to the right, simply copy this formula to the cell to the right. The copy of the formula in column B will be automatically adjusted to =SUM(B1:B9)."
msgstr "གྲལ་ཐིག་དང་ཀེར་ཐིག་གསརཔ་ཚུ་བཙུགས་ཡོད་པའི་སྐབས་མེན་པར་ གཞི་་བསྟུན་འདི་ཡང་ ཡོད་བཞིན་པའི་མན་ངག་ བྱེ་བྲག་ནང་ཐིག་ལུ་གཞི་བསྟུན་འབད་མི་འདི་ ལེབ་གྲངས་མངའ་ཁོངས་གཞན་ཅིག་ནང་འདྲ་བཤུས་རྐྱབ་པའི་སྐབས་ འགྱུར་ཏེ་འགྱོ་འོང་། ཁྱོད་ཀྱིས་ གྲལ་ཐིག་ ༡༠ ནང་ མན་ངག་ =SUM(A1:A9) བཙུགས་ཡོད་པའི་དབང་ལུ་གཏང་། གཡས་ཁ་ཐུག་ལུ་ ཉེ་འབད་ཀེར་ཐིག་གི་བསྡོམས་རྩིས་སྟོན་དགོ་པ་ཅིན་ མན་ངག་འདི་ནང་ཐིག་གི་གཡས་ལུ་ འདྲ་བཤུས་རྐྱབས། ཀེར་ཐིག་ བི་ནང་ཡོད་པའི་མན་ངག་གི་འདྲ་བཤུས་འདི་ རང་བཞིན་གྱིས་ =SUM(B1:B9) ལུ་བདེ་སྒྲིག་འབད་འོང་།"
@@ -9585,7 +8988,6 @@ msgstr "<bookmark_value>ལེབ་གྲངས་ཚུ་བསྐྱར་
msgctxt ""
"rename_table.xhp\n"
"hd_id3150398\n"
-"11\n"
"help.text"
msgid "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\" name=\"Renaming Sheets\">Renaming Sheets</link></variable>"
msgstr "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\" name=\"Renaming Sheets\">ལེབ་གྲངས་ལུ་བསྐྱར་མིང་བཏགས་དོ་</link></variable>"
@@ -9594,7 +8996,6 @@ msgstr "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table
msgctxt ""
"rename_table.xhp\n"
"par_id3155131\n"
-"12\n"
"help.text"
msgid "Click the name of the sheet that you want to change."
msgstr "ཁྱོད་ཀྱིས་ བསྒྱུར་བཅོས་འབད་ནི་ཨིན་པའི་ལེབ་གྲངས་མིང་གུ་ ཨེབ་གཏང་འབད།"
@@ -9603,7 +9004,6 @@ msgstr "ཁྱོད་ཀྱིས་ བསྒྱུར་བཅོས་འ
msgctxt ""
"rename_table.xhp\n"
"par_id3146976\n"
-"13\n"
"help.text"
msgid "Open the context menu and choose the <emph>Rename Sheet</emph> command. A dialog box appears where you can enter a new name."
msgstr "སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ་ཞིནམ་ལས་ <emph>བསྐྱར་མིང་བཏགས་</emph> བརྡ་བཀོད་གདམ་ཁ་རྐྱབས། ཁྱོད་ཀྱིས་ མིང་གསརཔ་ག་སྟེ་བཙུགས་རུང་ དེ་ནང་ཌའི་ལོག་སྒྲོམ་འདི་འབྱུངམ་ཨིན།"
@@ -9612,7 +9012,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ་ཞི
msgctxt ""
"rename_table.xhp\n"
"par_id3149260\n"
-"15\n"
"help.text"
msgid "Enter a new name for the sheet and click <emph>OK</emph>."
msgstr "ལེབ་གྲངས་ཀྱི་དོན་ལུ་ མིང་གསརཔ་ཅིག་བཙུགས་ཞིནམ་ལས་ <emph>བཏུབ་</emph> གུ་ཨེབ་གཏང་འབད།"
@@ -9621,7 +9020,6 @@ msgstr "ལེབ་གྲངས་ཀྱི་དོན་ལུ་ མིང
msgctxt ""
"rename_table.xhp\n"
"par_id3149667\n"
-"27\n"
"help.text"
msgid "Alternatively, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key</defaultinline></switchinline> and click on any sheet name and enter the new name directly."
msgstr "ཐབས་གཞན་གྱི་ཐོག་ལས་ <switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁའི་ལྡེ་མིག་ </caseinline><defaultinline>གདམ་ལྡེ་</defaultinline></switchinline> འདི་འཆང་བཞག་ཞིནམ་ལས་ ལེབ་གྲངས་མིང་ག་འབད་རུང་ཅིག་གུ་ཨེབ་གཏང་སྟེ་ མིང་གསརཔ་འདི་ཐད་ཀར་དུ་ཐོ་བཀོད་འབད།"
@@ -9742,7 +9140,6 @@ msgstr ""
msgctxt ""
"rename_table.xhp\n"
"par_id3155444\n"
-"16\n"
"help.text"
msgid "The name of a sheet is independent of the name of the spreadsheet. You enter the spreadsheet name when you save it for the first time as a file. The document can contain up to 256 individual sheets, which can have different names."
msgstr "ལེབ་གྲངས་མིང་འདི་ ག་ལུ་ཡང་བརྟེན་མ་དགོ་པའི་ཤོག་ཁྲམ་མིང་ཨིན། ཁྱོད་ཀྱིས་འགོ་དང་པ་ ཡིག་སྣོད་སྦེ་སྲུངམ་ད་ ཤོག་ཁྲམ་མིང་འདི་ ཐོ་བཀོད་འབད། ཡིག་ཆ་འདི་ནང་ ངོ་རྐྱང་ལེབ་གྲངས་ ༢༥༦ དེ་ཅིག་ཤོངམ་ཨིནམ་དང་ དེ་ཚུ་ལུ་མིང་ཡང་སོ་སོར་ཡོདཔ་ཨིན།"
@@ -9767,7 +9164,6 @@ msgstr "<bookmark_value>ཨང་ཚུ་ ཧྲིལ་གྲངས་བཟ
msgctxt ""
"rounding_numbers.xhp\n"
"hd_id3156422\n"
-"2\n"
"help.text"
msgid "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding_numbers.xhp\" name=\"Using Rounded Off Numbers\">Using Rounded Off Numbers</link></variable>"
msgstr "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding_numbers.xhp\" name=\"Using Rounded Off Numbers\">ཧྲིལ་གྲངས་ཅན་གྱི་ཨང་གྲངས་ལག་ལེན་འཐབ་དོ་</link></variable>"
@@ -9776,7 +9172,6 @@ msgstr "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding
msgctxt ""
"rounding_numbers.xhp\n"
"par_id3153726\n"
-"3\n"
"help.text"
msgid "In $[officename] Calc, all decimal numbers are displayed rounded off to two decimal places."
msgstr "In $[officename] Calc, all decimal numbers are displayed rounded off to two decimal places."
@@ -9785,7 +9180,6 @@ msgstr "In $[officename] Calc, all decimal numbers are displayed rounded off to
msgctxt ""
"rounding_numbers.xhp\n"
"hd_id3152596\n"
-"4\n"
"help.text"
msgid "To change this for selected cells"
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ནང་ཐིག་དོན་ལུ་ འདི་བསྒྱུར་བཅོས་འབད་དགོ་པ་ཅིན་"
@@ -9794,7 +9188,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ནང་ཐ
msgctxt ""
"rounding_numbers.xhp\n"
"par_id3154321\n"
-"5\n"
"help.text"
msgid "Mark all the cells you want to modify."
msgstr "ལེགས་བཅོས་འབད་ནི་ཨིན་པའི་ནང་ཐིག་ཚུ་ཆ་མཉམ་ རྟགས་བཀལ།"
@@ -9803,7 +9196,6 @@ msgstr "ལེགས་བཅོས་འབད་ནི་ཨིན་པའི
msgctxt ""
"rounding_numbers.xhp\n"
"par_id3147428\n"
-"6\n"
"help.text"
msgid "Choose <emph>Format - Cells</emph> and go to the <emph>Numbers</emph> tab page."
msgstr "<emph>རྩ་སྒྲིག་ - ནང་ཐིག་ཚུ་</emph> གདམ་ཁ་རྐྱབས་ཞིནམ་ལས་ <emph>ཨང་གྲངས་ཚུ་</emph> མཆོང་ལྡེ་ཤོག་ལེབ་ལུ་འགྱོ།"
@@ -9812,7 +9204,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ནང་ཐིག་ཚུ་</emph
msgctxt ""
"rounding_numbers.xhp\n"
"par_id3153876\n"
-"7\n"
"help.text"
msgid "In the <emph>Category</emph> field, select <emph>Number</emph>. Under <emph>Options</emph>, change the number of <emph>Decimal places</emph> and exit the dialog with OK."
msgstr "<emph>དབྱེ་རིམ་</emph> ས་སྒོ་ནང་ <emph>ཨང་གྲངས་</emph> སེལ་འཐུ་འབད། <emph>གདམ་ཁ་ཚུ་</emph> གི་འོག་ལུ་ <emph>བཅུ་ཚག་ས་གནས་</emph> གི་ཨང་གྲངས་ཚུ་བསྒྱུར་བཅོས་འབད། དེ་ལས་ བཏུབ་གུ་ཨེབ་གཏང་འབད་ཐོག་ལས་ ཌའི་ལོག་ཕྱིར་འཐོན་འབད།"
@@ -9821,17 +9212,14 @@ msgstr "<emph>དབྱེ་རིམ་</emph> ས་སྒོ་ནང་ <em
msgctxt ""
"rounding_numbers.xhp\n"
"hd_id3155415\n"
-"8\n"
"help.text"
msgid "To change this everywhere"
msgstr ""
#: rounding_numbers.xhp
-#, fuzzy
msgctxt ""
"rounding_numbers.xhp\n"
"par_id3150715\n"
-"9\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc</emph>."
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཨེཕ་༦ དང་བཅས་ཡིག་ཆ་སེལ་འཐུ་འབད་ཞིནམ་ལས་ མཆོང་ལྡེ་ལུ་ཨེབས།"
@@ -9840,7 +9228,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"rounding_numbers.xhp\n"
"par_id3153707\n"
-"10\n"
"help.text"
msgid "Go to the <emph>Calculate</emph> page. Modify the number of <emph>Decimal places</emph> and exit the dialog with OK."
msgstr "<emph>རྩིས་སྟོན་</emph> ཤོག་ལེབ་ལུ་འགྱོ། <emph>བཅུ་ཚག་ས་གནས་ཚུ་</emph> གི་ཨང་གྲངས་ལེགས་བཅོས་འབད་ཞིནམ་ལས་ བཏུབ་གུ་ཨེབ་གཏང་འབད་བའི་ཐོག་ལས་ ཌའི་ལོག་འདི་ཕྱིར་འཐོན་འབད།"
@@ -9849,17 +9236,14 @@ msgstr "<emph>རྩིས་སྟོན་</emph> ཤོག་ལེབ་ལ
msgctxt ""
"rounding_numbers.xhp\n"
"hd_id3154755\n"
-"11\n"
"help.text"
msgid "To calculate with the rounded off numbers instead of the internal exact values"
msgstr "ནང་གི་ཏག་ཏག་བེ་ལུ་གི་ཚབ་ལུ་ ཧྲིལ་གྲངས་བཟོ་ཡོད་པའི་ཨང་གྲངས་ཚུ་དང་བཅས་ རྩིས་སྟོན་ནི་ལུ་"
#: rounding_numbers.xhp
-#, fuzzy
msgctxt ""
"rounding_numbers.xhp\n"
"par_id3150045\n"
-"12\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc</emph>."
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཨེཕ་༦ དང་བཅས་ཡིག་ཆ་སེལ་འཐུ་འབད་ཞིནམ་ལས་ མཆོང་ལྡེ་ལུ་ཨེབས།"
@@ -9868,7 +9252,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"rounding_numbers.xhp\n"
"par_id3146920\n"
-"13\n"
"help.text"
msgid "Go to the <emph>Calculate</emph> page. Mark the <emph>Precision as shown</emph> field and exit the dialog with OK."
msgstr "<emph>རྩིས་སྟོན་</emph> ཤོག་ལེབ་ལུ་འགྱོ། <emph> ས་སྒོ་ནང་སྟོན་དོ་བཟུམ་སྦེ་ </emph> ཀྲིག་ཀྲི་གུ་རྟགས་བཀལ་ཞིནམ་ལས་ བཏུབ་གུ་ཨེབ་གཏང་འབད་བའི་ཐོག་ལས་ ཕྱིར་འཐོན་འབད།"
@@ -9877,7 +9260,6 @@ msgstr "<emph>རྩིས་སྟོན་</emph> ཤོག་ལེབ་ལ
msgctxt ""
"rounding_numbers.xhp\n"
"par_id3145790\n"
-"14\n"
"help.text"
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">ཨང་གྲངས་ཚུ་</link>"
@@ -9886,7 +9268,6 @@ msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">ཨང་ག
msgctxt ""
"rounding_numbers.xhp\n"
"par_id3147005\n"
-"15\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Calculate\">Calculate</link>"
msgstr "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Calculate\">རྩིས་སྟོན་</link>"
@@ -9911,7 +9292,6 @@ msgstr "<bookmark_value>ནང་ཐིག་གི་མཐོ་ཚད་</boo
msgctxt ""
"row_height.xhp\n"
"hd_id3145748\n"
-"1\n"
"help.text"
msgid "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp\" name=\"Changing Row Height or Column Width\">Changing Row Height or Column Width</link></variable>"
msgstr "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp\" name=\"Changing Row Height or Column Width\">གྲལ་ཐིག་མཐོ་ཚད་ ཡང་ན་ ཀེར་ཐིག་རྒྱ་ཚད་བསྒྱུར་བཅོས་འབད་དོ་</link></variable>"
@@ -9920,7 +9300,6 @@ msgstr "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp
msgctxt ""
"row_height.xhp\n"
"par_id3154017\n"
-"2\n"
"help.text"
msgid "You can change the height of the rows with the mouse or through the dialog."
msgstr "ཁྱོད་ཀྱིས་ གྲལ་ཐིག་མཐོ་ཚད་འདི་ མཱའུསི་གིས་ ཡངན་ ཌའི་ལོག་ལས་བརྒྱུད་དེ་བསྒྱུར་བཅོས་འབད་ཚུགས།"
@@ -9929,7 +9308,6 @@ msgstr "ཁྱོད་ཀྱིས་ གྲལ་ཐིག་མཐོ་ཚ
msgctxt ""
"row_height.xhp\n"
"par_id3154702\n"
-"3\n"
"help.text"
msgid "What is described here for rows and row height applies accordingly for columns and column width."
msgstr "ནཱ་ལུ་གྲལ་ཐིག་དང་གྲལ་ཐིག་མཐོ་ཚད་ཀྱི་འགྲེལ་བཤད་འབད་དེ་ཡོད་མི་དང་འཁྲིལ་ཏེ་ ཀེར་ཐིག་དང་ཀེར་ཐིག་རྒྱ་ཚད་ལུ་འཇུག་སྤྱོད་འབདཝ་ཨིན།"
@@ -9938,7 +9316,6 @@ msgstr "ནཱ་ལུ་གྲལ་ཐིག་དང་གྲལ་ཐིག
msgctxt ""
"row_height.xhp\n"
"hd_id3153963\n"
-"4\n"
"help.text"
msgid "Using the mouse to change the row height or column width"
msgstr "གྲལ་ཐིག་མཐོ་ཚད་ ཡངན་ ཀེར་ཐིག་རྒྱ་ཚད་གང་རུང་ཅིག་ བསྒྱུར་བཅོས་འབད་ནི་ལུ་ མཱའུསི་ལག་ལེན་འཐབ་དོ།"
@@ -9947,7 +9324,6 @@ msgstr "གྲལ་ཐིག་མཐོ་ཚད་ ཡངན་ ཀེར་
msgctxt ""
"row_height.xhp\n"
"par_id3154020\n"
-"5\n"
"help.text"
msgid "Click the area of the headers on the separator below the current row, keep the mouse button pressed and drag up or down in order to change the row height."
msgstr "ད་ལྟོོའི་གྲལ་ཐིག་འོག་གི་དབྱེ་བྱེད་གུ་ཡོད་པའི་མགོ་ཡིག་མངའ་ཁོངས་ལུ་ ཨེབ་གཏང་འབད་ གྲལ་ཐིག་མཐོ་ཚད་བསྒྱུར་བཅོས་འབད་ནི་ལུ་ མཱའུསི་ཨེབ་རྟ་འདི་ཨེབས་ཏེ་བཞག་ཞིནམ་ལས་ ཡར་དང་མར་འདྲུད།"
@@ -9956,7 +9332,6 @@ msgstr "ད་ལྟོོའི་གྲལ་ཐིག་འོག་གི་
msgctxt ""
"row_height.xhp\n"
"par_id3159237\n"
-"6\n"
"help.text"
msgid "Select the optimal row height by double-clicking the separator below the row."
msgstr "གྲལ་ཐིག་གི་འོག་ལུ་ དབྱེ་བྱེད་གུ་ཚར་གཉིས་ཨེབ་གཏང་འབད་བའི་ཐོག་ལས་ གང་དྲག་གྲལ་ཐིག་གི་མཐོ་ཚད་ སེལ་འཐུ་འབད།"
@@ -9965,7 +9340,6 @@ msgstr "གྲལ་ཐིག་གི་འོག་ལུ་ དབྱེ་
msgctxt ""
"row_height.xhp\n"
"hd_id3154659\n"
-"7\n"
"help.text"
msgid "Using the dialog to change the row height or column width"
msgstr "གྲལ་ཐིག་མཐོ་ཚད་ ཡང་ན་ ཀེར་ཐིག་རྒྱ་ཚད་བསྒྱུར་བཅོས་འབད་ནི་ལུ་ ཌའི་ལོག་ལག་ལེན་འཐབ་དོ།"
@@ -9974,7 +9348,6 @@ msgstr "གྲལ་ཐིག་མཐོ་ཚད་ ཡང་ན་ ཀེར
msgctxt ""
"row_height.xhp\n"
"par_id3150367\n"
-"8\n"
"help.text"
msgid "Click the row so that you achieve the focus."
msgstr "གྲལ་ཐིག་གུ་ཨེབ་གཏང་འབད་བ་ཅིན་ ཁྱོད་ཀྱིས་ཆེད་དམིགས་འཐོབ་ཨིན།"
@@ -9983,7 +9356,6 @@ msgstr "གྲལ་ཐིག་གུ་ཨེབ་གཏང་འབད་བ
msgctxt ""
"row_height.xhp\n"
"par_id3166432\n"
-"9\n"
"help.text"
msgid "Start the context menu on the header at the left-hand side."
msgstr "གཡོན་ཁ་ཐུག་གི་མགོ་ཡིག་གུ་ སྐབས་དོན་དཀར་ཆག་ འགོ་བཙུགས།"
@@ -9992,7 +9364,6 @@ msgstr "གཡོན་ཁ་ཐུག་གི་མགོ་ཡིག་གུ
msgctxt ""
"row_height.xhp\n"
"par_id3150519\n"
-"10\n"
"help.text"
msgid "You will see the commands <emph>Row Height</emph> and <emph>Optimal row height</emph>. Choosing either opens a dialog."
msgstr "ཁྱོད་ཀྱིས་ བརྡ་བཀོད་ <emph>མཐོ་ཚད་</emph> དང་ <emph>གང་དྲག་གྲལ་ཐིག་མཐོ་ཚད་</emph> མཐོང་འོང་། ག་འབད་རུང་ཅིག་ གདམ་ཁ་རྐྱབ་ཐོག་ལས་ ཌའི་ལོག་ཁ་ཕྱེཝ་ཨིན།"
@@ -10001,7 +9372,6 @@ msgstr "ཁྱོད་ཀྱིས་ བརྡ་བཀོད་ <emph>མཐ
msgctxt ""
"row_height.xhp\n"
"par_id3154487\n"
-"11\n"
"help.text"
msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Row height\">Row height</link>"
msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Row height\">གྲལ་ཐིག་མཐོ་ཚད་</link>"
@@ -10010,7 +9380,6 @@ msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Row height\">གྲལ
msgctxt ""
"row_height.xhp\n"
"par_id3149408\n"
-"12\n"
"help.text"
msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal row height\">Optimal row height</link>"
msgstr "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal row height\">གང་དྲག་གྲལ་ཐིག་མཐོ་ཚད་</link>"
@@ -10019,7 +9388,6 @@ msgstr "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal row height\">
msgctxt ""
"row_height.xhp\n"
"par_id3153305\n"
-"13\n"
"help.text"
msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Column width\">Column width</link>"
msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Column width\">ཀེར་ཐིག་རྒྱ་ཚད་</link>"
@@ -10028,7 +9396,6 @@ msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Column width\">ཀེ
msgctxt ""
"row_height.xhp\n"
"par_id3153815\n"
-"14\n"
"help.text"
msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal column width\">Optimal column width</link>"
msgstr "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal column width\">གང་དྲག་ཀེར་ཐིག་རྒྱ་ཚད་</link>"
@@ -10053,7 +9420,6 @@ msgstr "<bookmark_value>འཆར་བཤད་ཚུ་ གསར་བསྐ
msgctxt ""
"scenario.xhp\n"
"hd_id3125863\n"
-"1\n"
"help.text"
msgid "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\" name=\"Using Scenarios\">Using Scenarios</link></variable>"
msgstr "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\" name=\"Using Scenarios\">འཆར་བཤད་ལག་ལེན་འཐབ་དོ་</link></variable>"
@@ -10062,7 +9428,6 @@ msgstr "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\" n
msgctxt ""
"scenario.xhp\n"
"par_id3150869\n"
-"2\n"
"help.text"
msgid "A $[officename] Calc scenario is a set of cell values that can be used within your calculations. You assign a name to every scenario on your sheet. Define several scenarios on the same sheet, each with some different values in the cells. Then you can easily switch the sets of cell values by their name and immediately observe the results. Scenarios are a tool to test out \"what-if\" questions."
msgstr ""
@@ -10071,7 +9436,6 @@ msgstr ""
msgctxt ""
"scenario.xhp\n"
"hd_id3149255\n"
-"15\n"
"help.text"
msgid "Creating Your Own Scenarios"
msgstr "ཁྱོད་རའི་རང་དོན་གྱི་འཆར་བཤད་ གསར་བསྐྲུན་འབད་དོ།"
@@ -10080,7 +9444,6 @@ msgstr "ཁྱོད་རའི་རང་དོན་གྱི་འཆར་
msgctxt ""
"scenario.xhp\n"
"par_id3154704\n"
-"16\n"
"help.text"
msgid "To create a scenario, select all the cells that provide the data for the scenario."
msgstr "འཆར་བཤད་ཅིག་གསར་བསྐྲུན་འབད་ནིའི་དོན་ལུ་ འཆར་བཤད་ལུ་གནད་སྡུད་བྱིན་མི་ནང་ཐིག་ཚ་ཆ་མཉམ་ སེལ་འཐུ་འབད།"
@@ -10089,16 +9452,14 @@ msgstr "འཆར་བཤད་ཅིག་གསར་བསྐྲུན་འ
msgctxt ""
"scenario.xhp\n"
"par_id3154020\n"
-"17\n"
"help.text"
-msgid "Select the cells that contain the values that will change between scenarios. To select multiple cells, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\"/> key as you click each cell."
+msgid "Select the cells that contain the values that will change between scenarios. To select multiple cells, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline> key as you click each cell."
msgstr ""
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
"par_id3150364\n"
-"18\n"
"help.text"
msgid "Choose <emph>Tools - Scenarios</emph>. The <emph>Create Scenario</emph> dialog appears."
msgstr "<emph>ལག་ཆས་ཚུ་ - འཆར་བཤད་ཚུ་</emph> གདམ་ཁ་རྐྱབས། <emph>འཆར་བཤད་གསར་བསྐྲུན་འབད་</emph> ཌའི་ལོག་འབྱུངམ་ཨིན།"
@@ -10107,7 +9468,6 @@ msgstr "<emph>ལག་ཆས་ཚུ་ - འཆར་བཤད་ཚུ་</e
msgctxt ""
"scenario.xhp\n"
"par_id3166426\n"
-"19\n"
"help.text"
msgid "Enter a name for the new scenario and leave the other fields unchanged with their default values. Close the dialog with OK. Your new scenario is automatically activated."
msgstr "འཆར་བཤད་གསརཔ་གི་དོན་ལུ་ མིང་ཅིག་བཙུགས་ཞིནམ་ལས་ ས་སྒོ་གཞན་མི་འདི་ སྔོན་སྒྲིག་བེ་ལུསི་དང་བཅས་ བསྒྱུར་བཅོས་མ་འབད་བར་བཞག བཏུབ་གུ་ཨེབ་གཏང་འབད་བའི་ཐོག་ལས་ ཌའི་ལོག་ཁ་བསྡམས། ཁྱོད་རའི་འཆར་བཤད་གསརཔ་འདི་ རང་བཞིན་གྱིས་ཤུགས་ཅན་བཟོ་འོང་།"
@@ -10116,7 +9476,6 @@ msgstr "འཆར་བཤད་གསརཔ་གི་དོན་ལུ་
msgctxt ""
"scenario.xhp\n"
"hd_id3149664\n"
-"3\n"
"help.text"
msgid "Using Scenarios"
msgstr "འཆརབཤད་ལག་ལེན་འཐབ་དོ།"
@@ -10125,7 +9484,6 @@ msgstr "འཆརབཤད་ལག་ལེན་འཐབ་དོ།"
msgctxt ""
"scenario.xhp\n"
"par_id3153415\n"
-"11\n"
"help.text"
msgid "Scenarios can be selected in the Navigator:"
msgstr "འཆར་བཤད་ཚུ་ འགྲུལ་བསྐྱོད་པའི་ནང་ལུ་ཡང་ སེལ་འཐུ་འབད་བཏུབ་ཨིན།"
@@ -10134,7 +9492,6 @@ msgstr "འཆར་བཤད་ཚུ་ འགྲུལ་བསྐྱོད
msgctxt ""
"scenario.xhp\n"
"par_id3150752\n"
-"12\n"
"help.text"
msgid "Open the Navigator with the <emph>Navigator</emph> icon <image id=\"img_id1593676\" src=\"cmd/sc_navigator.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id1593676\">Navigator icon</alt></image> on the Standard bar."
msgstr ""
@@ -10143,16 +9500,14 @@ msgstr ""
msgctxt ""
"scenario.xhp\n"
"par_id3155764\n"
-"13\n"
"help.text"
-msgid "Click the <emph>Scenarios</emph> icon <image id=\"img_id7617114\" src=\"sc/imglst/na07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id7617114\">Scenarios icon</alt></image> in the Navigator."
+msgid "Click the <emph>Scenarios</emph> icon <image id=\"img_id7617114\" src=\"sc/res/na07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id7617114\">Scenarios icon</alt></image> in the Navigator."
msgstr ""
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
"par_id3154256\n"
-"14\n"
"help.text"
msgid "In the Navigator, you see the defined scenarios with the comments that were entered when the scenarios were created."
msgstr "འགྲུལ་བསྐྱོད་པའི་ནང་ ཁྱོད་ཀྱིས་ འཆར་བཤད་ཚུ་གསར་བསྐྲུན་འབད་བའི་སྐབས་ལུ་བཙུགས་ཡོད་པའི་བརྡ་བཀོད་དང་གཅིག་ཁར་ ངེས་འཛིན་འབད་ཡོད་པའི་འཆར་བཤད་ཚུ་མཐོང་ཚུགས།"
@@ -10193,7 +9548,6 @@ msgstr ""
msgctxt ""
"scenario.xhp\n"
"par_id3154368\n"
-"22\n"
"help.text"
msgid "If you want to know which values in the scenario affect other values, choose <emph>Tools - Detective - Trace Dependents</emph>. You see arrows to the cells that are directly dependent on the current cell."
msgstr "འཆར་བཤད་ནང་གི་བེ་ལུསི་ག་ཅི་གིས་ བེ་ལུསི་གཞན་ཚུ་ལུ་ཕན་གནོད་ཡོདཔ་ཨིན་ན་ཤེས་དགོ་པ་ཅིན་ <emph>ལག་ཆས་ཚུ་ - ཤུགས་མེད་བཟོ་ - འཚོལ་བརྟེན་</emph> གདམ་ཁ་རྐྱབས། ཁྱོད་ཀྱིས་ ད་ལྟོའི་ནང་ཐིག་གུ་ཐད་ཀར་དུ་བརྟེན་པའི་ནང་ཐིག་ལུ་ མདའ་རྟགས་མཐོང་ཚུགས།"
@@ -10202,7 +9556,6 @@ msgstr "འཆར་བཤད་ནང་གི་བེ་ལུསི་ག་
msgctxt ""
"scenario.xhp\n"
"par_id3154484\n"
-"29\n"
"help.text"
msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Creating Scenarios\">Creating Scenarios</link>"
msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Creating Scenarios\">འཆར་བཤད་གསར་བསྐྲུན་འབད་དོ་</link>"
@@ -10227,7 +9580,6 @@ msgstr "<bookmark_value>བཀང་དོ་ སྲོལ་སྒྲིག་
msgctxt ""
"sorted_list.xhp\n"
"hd_id3150870\n"
-"3\n"
"help.text"
msgid "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.xhp\" name=\"Applying Sort Lists\">Applying Sort Lists</link> </variable>"
msgstr "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.xhp\" name=\"Applying Sort Lists\">དབྱེ་སེལ་ཐོ་ཡིག་ཚུ་ འཇུག་སྤྱོད་འབད་དོ་</link></variable>"
@@ -10236,7 +9588,6 @@ msgstr "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.x
msgctxt ""
"sorted_list.xhp\n"
"par_id3159154\n"
-"7\n"
"help.text"
msgid "Sort lists allow you to type one piece of information in a cell, then drag it to fill in a consecutive list of items."
msgstr "དབྱེ་སེལ་ཐོ་ཡིག་གིས་ཁྱོད་ལུ་ ནང་ཐིག་ཅིག་ནང་བརྡ་དོན་ཅིག་ཡིག་དཔར་བརྐྱབ་བཅུགཔ་ཨིནམ་དང་ རྣམ་གྲངས་ཀྱི་རིམ་མཐུད་ཐོ་ཡིག་ཅིག་ནང་བཀང་ནི་ལུ་ འདྲུདཔ་ཨིན།"
@@ -10245,7 +9596,6 @@ msgstr "དབྱེ་སེལ་ཐོ་ཡིག་གིས་ཁྱོད
msgctxt ""
"sorted_list.xhp\n"
"par_id3148645\n"
-"4\n"
"help.text"
msgid "For example, enter the text \"Jan\" or \"January\" in an empty cell. Select the cell and click the mouse on the lower right corner of the cell border. Then drag the selected cell a few cells to the right or downwards. When you release the mouse button, the highlighted cells will be filled with the names of the months."
msgstr "དཔེར་ན་ ནང་ཐིག་སྟོངམ་ནང་ལུ་ ཚིག་ཡིག་ \"Jan\" or \"January\" བཙུགས། ནང་ཐིག་སེལ་འཐུ་འབད་ཞིནམ་ལས་ ནང་ཐིག་མཐའ་མཚམས་ཀྱི་འོག་གཡས་སྒྱིད་ཁུག་གུ་ མཱའུསི་ཨེབ་གཏང་འབད། དེ་ལས་ སེལ་འཐུ་འབད་ཡོད་པའི་ནང་ཐིག་ཅིག་ ནང་ཐིག་དག་པ་ཅིག་གི་གཡས་ལུ་ ཡངན་ མར་ཕྱོགས་ལུ་འདྲུད། མཱའུསི་ཨེབ་རྟ་འདི་གཏངམ་ད་ གཙོ་དམིགས་འབད་ཡོད་པའི་ནང་ཐིག་ཚུ་ ཟླ་མིང་གིས་གང་འོང་།"
@@ -10262,7 +9612,6 @@ msgstr ""
msgctxt ""
"sorted_list.xhp\n"
"par_id3152577\n"
-"5\n"
"help.text"
msgid "The predefined series can be found under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Sort Lists</emph>. You can also create your own lists of text strings tailored to your needs, such as a list of your company's branch offices. When you use the information in these lists later (for example, as headings), just enter the first name in the list and expand the entry by dragging it with your mouse."
msgstr ""
@@ -10271,7 +9620,6 @@ msgstr ""
msgctxt ""
"sorted_list.xhp\n"
"par_id3147434\n"
-"6\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
msgstr "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">ཐོ་ཡིག་ཚུ་དབྱེ་སེལ་འབད་</link>"
@@ -10296,7 +9644,6 @@ msgstr "<bookmark_value>ཚགས་མ་ཚུ་ མཐོ་རིམ་ཅ
msgctxt ""
"specialfilter.xhp\n"
"hd_id3148798\n"
-"18\n"
"help.text"
msgid "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Filter: Applying Advanced Filters\">Filter: Applying Advanced Filters</link> </variable>"
msgstr "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Filter: Applying Advanced Filters\">ཚགས་མ་: མཐོ་རིམ་ཅན་གྱི་ཚགས་མ་ཚུ་ འཇུག་སྤྱོད་འབད་དོ་</link></variable>"
@@ -10305,7 +9652,6 @@ msgstr "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilt
msgctxt ""
"specialfilter.xhp\n"
"par_id3145785\n"
-"19\n"
"help.text"
msgid "Copy the column headers of the sheet ranges to be filtered into an empty area of the sheet, and then enter the criteria for the filter in a row beneath the headers. Horizontally arranged data in a row will always be logically connected with AND, and vertically arranged data in a column will always be logically connected with OR."
msgstr "ལེབ་གྲངས་མངའ་ཁོངས་སྟོངམ་ནང་ལུ་ བཙགས་ནི་ཨིན་པའི་ལེབ་གྲངས་ཁྱབ་ཚད་ཀྱི་ཀེར་ཐིག་མགོ་ཡིག་ཚུ་ འདྲ་བཤུས་རྐྱབས་ཞིནམ་ལས་ ཚགས་མའི་དོན་ལུ་ མགུ་ཡིག་འོག་གི་གྲལ་ཐིག་ཅིག་ནང་ཁྱད་ཚད་བཙུགས། གྲལ་ཐིག་ནང་ཐད་སྙོམས་སྦེ་བདེ་ཞིབ་འབད་ཡོད་པའི་གནད་སྡུད་འདི་ ཨ་རྟག་ར་གཏན་ཚིགས་ཅན་གྱི་ཐོག་ལས་ ཨེ་ཨེན་ཌི་དང་འབྲེལ་མཐུད་འབད་དེ་སྡོད་འོང་ དེ་ལས་ ཀེར་ཐིག་ཅིག་ནང་ ཀེར་ཕྲང་སྦེ་བདེ་ཞིབ་འབད་ཡོད་པའི་གནད་སྡུད་འདི་ ཨ་རྟག་ར་གཏན་ཚིགས་ཅན་གྱི་ཐོག་ལས་ ཨོ་ཨར་དང་འབྲེལ་མཐུད་འབད་དེ་སྡོད་འོང་།"
@@ -10314,7 +9660,6 @@ msgstr "ལེབ་གྲངས་མངའ་ཁོངས་སྟོངམ་
msgctxt ""
"specialfilter.xhp\n"
"par_id3153142\n"
-"20\n"
"help.text"
msgid "Once you have created a filter matrix, select the sheet ranges to be filtered. Open the <emph>Advanced Filter</emph> dialog by choosing <emph>Data - Filter - Advanced Filter</emph>, and define the filter conditions."
msgstr "ཁྱོད་ཀྱིས་ཚར་ཅིག་ཚགས་མ་མེ་ཊིཀསི་ཅིག་གསར་བསྐྲུན་འབད་ཞིནམ་ལས་ བཙགས་ནི་ཨིན་པའི་ལེབ་གྲངས་ཁྱབ་ཚད་ཚུ་སེལ་འཐུ་འབད། <emph>གནད་སྡུད་ - ཚག་ས་མ་ - མཐོ་རིམ་ཅན་གྱི་ཚགས་མ་</emph> གདམ་ཁ་རྐྱབ་པའི་ཐོག་ལས་ <emph>མཐོ་རིམ་ཅན་གྱི་ཚགས་མ་</emph> ཌའི་ལོག་ཁ་ཕྱེ་ དེ་ལས་ ཚགས་མའི་གནས་སྟངས་ངེས་འཛིན་འབད།"
@@ -10323,7 +9668,6 @@ msgstr "ཁྱོད་ཀྱིས་ཚར་ཅིག་ཚགས་མ་མ
msgctxt ""
"specialfilter.xhp\n"
"par_id3153726\n"
-"21\n"
"help.text"
msgid "Then click OK, and you will see that only the rows from the original sheet whose contents have met the search criteria are still visible. All other rows are temporarily hidden and can be made to reappear with the <emph>Format - Row - Show </emph>command."
msgstr "དེ་ལས་བཏུབ་གུ་ཨེབ་གཏང་འབད་ཞིནམ་ལས་ ཁྱོད་ཀྱིས་ འཚོལ་ཞིབ་ཁྱད་ཚད་དང་ལྡན་མི་ ལེབ་གྲངས་ངོ་མ་ནང་ལས་ཨིན་པའི་གྲལ་ཐིག་རྐྱངམ་ཅིག་ ད་ལྟོའི་བར་ཡང་མཐོང་ཚུགསཔ་སྦེ་མཐོང་འོང་། གཞན་གྲལ་ཐིག་ཆ་མཉམ་སྦ་ཡོདཔ་དང་ <emph>རྩ་སྒྲིག་ - གྲལ་ཐིག་ - སྟོན་ </emph>བརྡ་བཀོད་དང་གཅིག་ཁར་ལོག་འབྱུང་ནི་ཡོདཔ་བཟོ་ཚུགས།"
@@ -10332,7 +9676,6 @@ msgstr "དེ་ལས་བཏུབ་གུ་ཨེབ་གཏང་འབ
msgctxt ""
"specialfilter.xhp\n"
"par_id3149664\n"
-"22\n"
"help.text"
msgid "<emph>Example</emph>"
msgstr "<emph>དཔེར་བརྗོད་</emph>"
@@ -10341,7 +9684,6 @@ msgstr "<emph>དཔེར་བརྗོད་</emph>"
msgctxt ""
"specialfilter.xhp\n"
"par_id3147427\n"
-"23\n"
"help.text"
msgid "Load a spreadsheet with a large number of records. We are using a fictional <emph>Turnover</emph> document, but you can just as easily use any other document. The document has the following layout:"
msgstr "དྲན་ཐོའི་ཨང་གྲངས་ལེ་ཤ་གི་སྒོ་ལས་ ཤོག་ཁྲམ་ཅིག་མངོན་གསལ་འབད། ང་བཅས་ཀྱིས་བཅོས་མའི་ <emph>འོང་འབབ་བསྡོམས་</emph> ཡིག་ཆ་ཅིག་ལག་ལེན་འཐབ་དོ་ དེ་འབདཝ་ད་ ཁྱོད་ཀྱིས་ ཡིག་ཆ་གཞན་འཇམ་ཏོང་ཏོ་སྦེ་ལག་ལེན་འཐབ་ཚུགས། ཡིག་ཆ་འདི་ལུ་འོག་གི་སྒྲིག་བཀོད་ཚུ་ཡོད་:"
@@ -10350,7 +9692,6 @@ msgstr "དྲན་ཐོའི་ཨང་གྲངས་ལེ་ཤ་གི
msgctxt ""
"specialfilter.xhp\n"
"par_id3154510\n"
-"24\n"
"help.text"
msgid "<emph>A</emph>"
msgstr "<emph>ཨེ་</emph>"
@@ -10359,7 +9700,6 @@ msgstr "<emph>ཨེ་</emph>"
msgctxt ""
"specialfilter.xhp\n"
"par_id3150327\n"
-"25\n"
"help.text"
msgid "<emph>B</emph>"
msgstr "<emph>བི་</emph>"
@@ -10368,7 +9708,6 @@ msgstr "<emph>བི་</emph>"
msgctxt ""
"specialfilter.xhp\n"
"par_id3154756\n"
-"26\n"
"help.text"
msgid "<emph>C</emph>"
msgstr "<emph>སི་</emph>"
@@ -10377,7 +9716,6 @@ msgstr "<emph>སི་</emph>"
msgctxt ""
"specialfilter.xhp\n"
"par_id3155335\n"
-"27\n"
"help.text"
msgid "<emph>D</emph>"
msgstr "<emph>ཌི་</emph>"
@@ -10386,7 +9724,6 @@ msgstr "<emph>ཌི་</emph>"
msgctxt ""
"specialfilter.xhp\n"
"par_id3146315\n"
-"28\n"
"help.text"
msgid "<emph>E</emph>"
msgstr "<emph>ཨི་</emph>"
@@ -10395,7 +9732,6 @@ msgstr "<emph>ཨི་</emph>"
msgctxt ""
"specialfilter.xhp\n"
"par_id3145790\n"
-"29\n"
"help.text"
msgid "<emph>1</emph>"
msgstr "<emph>༡</emph>"
@@ -10404,7 +9740,6 @@ msgstr "<emph>༡</emph>"
msgctxt ""
"specialfilter.xhp\n"
"par_id3159239\n"
-"30\n"
"help.text"
msgid "Month"
msgstr "ཟླ།"
@@ -10413,7 +9748,6 @@ msgstr "ཟླ།"
msgctxt ""
"specialfilter.xhp\n"
"par_id3150086\n"
-"31\n"
"help.text"
msgid "Standard"
msgstr "ཚད་ལྡན།"
@@ -10422,7 +9756,6 @@ msgstr "ཚད་ལྡན།"
msgctxt ""
"specialfilter.xhp\n"
"par_id3150202\n"
-"32\n"
"help.text"
msgid "Business"
msgstr "ཚོང་འབྲེལ།"
@@ -10431,7 +9764,6 @@ msgstr "ཚོང་འབྲེལ།"
msgctxt ""
"specialfilter.xhp\n"
"par_id3150883\n"
-"33\n"
"help.text"
msgid "Luxury"
msgstr "དལ་ཉམས།"
@@ -10440,7 +9772,6 @@ msgstr "དལ་ཉམས།"
msgctxt ""
"specialfilter.xhp\n"
"par_id3152987\n"
-"34\n"
"help.text"
msgid "Suite"
msgstr "ཆ་ཚང་།"
@@ -10449,7 +9780,6 @@ msgstr "ཆ་ཚང་།"
msgctxt ""
"specialfilter.xhp\n"
"par_id3154486\n"
-"35\n"
"help.text"
msgid "<emph>2</emph>"
msgstr "<emph>༢</emph>"
@@ -10458,7 +9788,6 @@ msgstr "<emph>༢</emph>"
msgctxt ""
"specialfilter.xhp\n"
"par_id3148839\n"
-"36\n"
"help.text"
msgid "January"
msgstr "སྤྱི་ཟླ་དང་པ།"
@@ -10467,7 +9796,6 @@ msgstr "སྤྱི་ཟླ་དང་པ།"
msgctxt ""
"specialfilter.xhp\n"
"par_id3153816\n"
-"37\n"
"help.text"
msgid "125600"
msgstr "༡༢༥༦༠༠"
@@ -10476,7 +9804,6 @@ msgstr "༡༢༥༦༠༠"
msgctxt ""
"specialfilter.xhp\n"
"par_id3157978\n"
-"38\n"
"help.text"
msgid "200500"
msgstr "༢༠༠༥༠༠"
@@ -10485,7 +9812,6 @@ msgstr "༢༠༠༥༠༠"
msgctxt ""
"specialfilter.xhp\n"
"par_id3155268\n"
-"39\n"
"help.text"
msgid "240000"
msgstr "༢༤༠༠༠༠"
@@ -10494,7 +9820,6 @@ msgstr "༢༤༠༠༠༠"
msgctxt ""
"specialfilter.xhp\n"
"par_id3153286\n"
-"40\n"
"help.text"
msgid "170000"
msgstr "༡༧༠༠༠༠"
@@ -10503,7 +9828,6 @@ msgstr "༡༧༠༠༠༠"
msgctxt ""
"specialfilter.xhp\n"
"par_id3146782\n"
-"41\n"
"help.text"
msgid "<emph>3</emph>"
msgstr "<emph>༣</emph>"
@@ -10512,7 +9836,6 @@ msgstr "<emph>༣</emph>"
msgctxt ""
"specialfilter.xhp\n"
"par_id3149900\n"
-"42\n"
"help.text"
msgid "February"
msgstr "སྤྱི་ཟླ་གཉིས་པ།"
@@ -10521,7 +9844,6 @@ msgstr "སྤྱི་ཟླ་གཉིས་པ།"
msgctxt ""
"specialfilter.xhp\n"
"par_id3154763\n"
-"43\n"
"help.text"
msgid "160000"
msgstr "༡༦༠༠༠༠"
@@ -10530,7 +9852,6 @@ msgstr "༡༦༠༠༠༠"
msgctxt ""
"specialfilter.xhp\n"
"par_id3150050\n"
-"44\n"
"help.text"
msgid "180300"
msgstr "༡༨༠༣༠༠"
@@ -10539,7 +9860,6 @@ msgstr "༡༨༠༣༠༠"
msgctxt ""
"specialfilter.xhp\n"
"par_id3153801\n"
-"45\n"
"help.text"
msgid "362000"
msgstr "༣༦༢༠༠༠"
@@ -10548,7 +9868,6 @@ msgstr "༣༦༢༠༠༠"
msgctxt ""
"specialfilter.xhp\n"
"par_id3154708\n"
-"46\n"
"help.text"
msgid "220000"
msgstr "༢༢༠༠༠༠"
@@ -10557,7 +9876,6 @@ msgstr "༢༢༠༠༠༠"
msgctxt ""
"specialfilter.xhp\n"
"par_id3151191\n"
-"47\n"
"help.text"
msgid "<emph>4</emph>"
msgstr "<emph>༤</emph>"
@@ -10566,7 +9884,6 @@ msgstr "<emph>༤</emph>"
msgctxt ""
"specialfilter.xhp\n"
"par_id3147250\n"
-"48\n"
"help.text"
msgid "March"
msgstr "སྤྱི་ཟླ་གསུམ་པ།"
@@ -10575,7 +9892,6 @@ msgstr "སྤྱི་ཟླ་གསུམ་པ།"
msgctxt ""
"specialfilter.xhp\n"
"par_id3153334\n"
-"49\n"
"help.text"
msgid "170000"
msgstr "༡༧༠༠༠༠"
@@ -10584,7 +9900,6 @@ msgstr "༡༧༠༠༠༠"
msgctxt ""
"specialfilter.xhp\n"
"par_id3151391\n"
-"50\n"
"help.text"
msgid "and so on..."
msgstr "དེ་ལས་གཞན་ཡང་་་་་"
@@ -10593,7 +9908,6 @@ msgstr "དེ་ལས་གཞན་ཡང་་་་་"
msgctxt ""
"specialfilter.xhp\n"
"par_id3147300\n"
-"51\n"
"help.text"
msgid "Copy row 1 with the row headers (field names), to row 20, for example. Enter the filter conditions linked with OR in rows 21, 22, and so on."
msgstr "དཔེར་ན་ གྲལ་ཐིག་༡ གྲལ་ཐིག་༢༠ ལུ་གྲལ་ཐིག་མགོ་ཡིག་(ས་སྒོའི་མིང་)དང་བཅས་འདྲ་བཤུས་རྐྱབས། ཨོ་ཨར་དང་འབྲེལ་མཐུད་འབད་ཡོད་པའི་ཚགས་མ་གནས་སྟངས་ཚུ་ གྲལ་ཐིག་ ༢༡ དང་ ༢༢ ལ་སོགས་པ་ནང་ བཙུགས།"
@@ -10602,7 +9916,6 @@ msgstr "དཔེར་ན་ གྲལ་ཐིག་༡ གྲལ་ཐིག
msgctxt ""
"specialfilter.xhp\n"
"par_id3159115\n"
-"52\n"
"help.text"
msgid "<emph>A</emph>"
msgstr "<emph>ཨེ་</emph>"
@@ -10611,7 +9924,6 @@ msgstr "<emph>ཨེ་</emph>"
msgctxt ""
"specialfilter.xhp\n"
"par_id3146886\n"
-"53\n"
"help.text"
msgid "<emph>B</emph>"
msgstr "<emph>བི་</emph>"
@@ -10620,7 +9932,6 @@ msgstr "<emph>བི་</emph>"
msgctxt ""
"specialfilter.xhp\n"
"par_id3153124\n"
-"54\n"
"help.text"
msgid "<emph>C</emph>"
msgstr "<emph>སི་</emph>"
@@ -10629,7 +9940,6 @@ msgstr "<emph>སི་</emph>"
msgctxt ""
"specialfilter.xhp\n"
"par_id3152979\n"
-"55\n"
"help.text"
msgid "<emph>D</emph>"
msgstr "<emph>ཌི་</emph>"
@@ -10638,7 +9948,6 @@ msgstr "<emph>ཌི་</emph>"
msgctxt ""
"specialfilter.xhp\n"
"par_id3145827\n"
-"56\n"
"help.text"
msgid "<emph>E</emph>"
msgstr "<emph>ཨི་</emph>"
@@ -10647,7 +9956,6 @@ msgstr "<emph>ཨི་</emph>"
msgctxt ""
"specialfilter.xhp\n"
"par_id3149892\n"
-"57\n"
"help.text"
msgid "<emph>20</emph>"
msgstr "<emph>༢༠</emph>"
@@ -10656,7 +9964,6 @@ msgstr "<emph>༢༠</emph>"
msgctxt ""
"specialfilter.xhp\n"
"par_id3150693\n"
-"58\n"
"help.text"
msgid "Month"
msgstr "ཟླ།"
@@ -10665,7 +9972,6 @@ msgstr "ཟླ།"
msgctxt ""
"specialfilter.xhp\n"
"par_id3147475\n"
-"59\n"
"help.text"
msgid "Standard"
msgstr "ཚད་ལྡན།"
@@ -10674,7 +9980,6 @@ msgstr "ཚད་ལྡན།"
msgctxt ""
"specialfilter.xhp\n"
"par_id3154846\n"
-"60\n"
"help.text"
msgid "Business"
msgstr "ཚོང་འབྲེལ།"
@@ -10683,7 +9988,6 @@ msgstr "ཚོང་འབྲེལ།"
msgctxt ""
"specialfilter.xhp\n"
"par_id3153082\n"
-"61\n"
"help.text"
msgid "Luxury"
msgstr "དལ་ཉམས།"
@@ -10692,7 +9996,6 @@ msgstr "དལ་ཉམས།"
msgctxt ""
"specialfilter.xhp\n"
"par_id3149506\n"
-"62\n"
"help.text"
msgid "Suite"
msgstr "ཆ་ཚང་།"
@@ -10701,7 +10004,6 @@ msgstr "ཆ་ཚང་།"
msgctxt ""
"specialfilter.xhp\n"
"par_id3149188\n"
-"63\n"
"help.text"
msgid "<emph>21</emph>"
msgstr "<emph>21</emph>"
@@ -10710,7 +10012,6 @@ msgstr "<emph>21</emph>"
msgctxt ""
"specialfilter.xhp\n"
"par_id3149956\n"
-"64\n"
"help.text"
msgid "January"
msgstr "སྤྱི་ཟླ་དང་པ།"
@@ -10719,7 +10020,6 @@ msgstr "སྤྱི་ཟླ་དང་པ།"
msgctxt ""
"specialfilter.xhp\n"
"par_id3150865\n"
-"65\n"
"help.text"
msgid "<emph>22</emph>"
msgstr "<emph>22</emph>"
@@ -10728,7 +10028,6 @@ msgstr "<emph>22</emph>"
msgctxt ""
"specialfilter.xhp\n"
"par_id3155957\n"
-"66\n"
"help.text"
msgid "<160000"
msgstr "<༡༦༠༠༠༠"
@@ -10737,7 +10036,6 @@ msgstr "<༡༦༠༠༠༠"
msgctxt ""
"specialfilter.xhp\n"
"par_id3153566\n"
-"67\n"
"help.text"
msgid "Specify that only rows which either have the value <item type=\"literal\">January</item> in the <emph>Month</emph> cells OR a value of under 160000 in the <emph>Standard</emph> cells will be displayed."
msgstr "ཡང་ཅིན་གནས་གོང་ <item type=\"literal\">སྤྱི་ཟླ་དང་པ་</item> <emph>ཟླཝ་</emph> ནང་ཐིག་ཚུ་ནང་ཡོད་མི་ ཡང་ན་ ༡༦༠༠༠༠ གི་འོག་ལུ་ཡོད་མི་ <emph>ཚད་ལྡན་</emph> ནང་ཐིག་ཚུ་ནང་གི་འདི་ རྐྱངམ་ཅིག་བཀྲམ་སྟོན་འབད་ཡོད་འབད་ གསལ་བཀོད་འབད།"
@@ -10746,7 +10044,6 @@ msgstr "ཡང་ཅིན་གནས་གོང་ <item type=\"literal\">ས
msgctxt ""
"specialfilter.xhp\n"
"par_id3147372\n"
-"68\n"
"help.text"
msgid "Choose <emph>Data - Filter - Advanced Filter</emph>, and then select the range A20:E22. After you click OK, only the filtered rows will be displayed. The other rows will be hidden from view."
msgstr "<emph> གནད་སྡུད་ - ཚགས་མ་ - མཐོ་རིམ་ཅན་གྱི་ཚགས་མ་</emph> གདམས་ཞིནམ་ལས་ ཁྱབ་ཚད་ A20:E22 སེལ་འཐུ་འབད། བཏུབ་གུ་ཨེབ་གཏང་འབད་བཞི་ཤུལ་ལུ་ བཙགས་ཡོད་པའི་གྲལ་ཐིག་ཚུ་རྐྱངམ་ཅིག་ བཀྲམ་སྟོན་འབད་ནི་ཨིན། གཞན་གྲལ་ཐིག་ཚུ་ མཐོང་སྣང་ལས་སྦ་ཡོདཔ།"
@@ -10771,7 +10068,6 @@ msgstr "<bookmark_value>ནང་ཐིག་ནང་ལུ་ སྟེང་
msgctxt ""
"super_subscript.xhp\n"
"hd_id3151112\n"
-"1\n"
"help.text"
msgid "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_subscript.xhp\" name=\"Text Superscript / Subscript\">Text Superscript / Subscript</link></variable>"
msgstr "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_subscript.xhp\" name=\"Text Superscript / Subscript\">ཚིག་ཡིག་སྟེང་ཡིག་/འོག་ཡིག་</link></variable>"
@@ -10780,7 +10076,6 @@ msgstr "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_sub
msgctxt ""
"super_subscript.xhp\n"
"par_id3154684\n"
-"2\n"
"help.text"
msgid "In the cell, select the character that you want to put in superscript or subscript."
msgstr "ནང་ཐིག་ནང་ ཁྱོད་ཀྱིས་ སྟེང་ཡིག་ ཡངན་ འོག་ཡིག་ནང་བཙུགས་ནི་ཨིན་པའི་ཡིག་འབྲུ་ སེལ་འཐུ་འབད།"
@@ -10789,7 +10084,6 @@ msgstr "ནང་ཐིག་ནང་ ཁྱོད་ཀྱིས་ སྟེ
msgctxt ""
"super_subscript.xhp\n"
"par_id3150439\n"
-"3\n"
"help.text"
msgid "If, for example, you want to write H20 with a subscript 2, select the 2 in the cell (not in the input line)."
msgstr "དཔེར་ན་ ཁྱོད་ཀྱིས་ འོག་ཡིག་ ༢ དང་གཅིག་ཁར་ H20 འབྲི་ནི་ཨིན་པ་ཅིན་ ནང་ཐིག་(ཨིན་པུཊི་གྲལ་ཐིག་ནང་མེན་) ནང་ལུ་ ༢ ལུ་སེལ་འཐུ་འབད།"
@@ -10798,7 +10092,6 @@ msgstr "དཔེར་ན་ ཁྱོད་ཀྱིས་ འོག་ཡི
msgctxt ""
"super_subscript.xhp\n"
"par_id3149260\n"
-"4\n"
"help.text"
msgid "Open the context menu for the selected character and choose <emph>Character</emph>. You will see the <emph>Character</emph> dialog."
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ཡིག་འབྲུའི་དོན་ལུ་ སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ་ དེ་ལས་ <emph>ཡིག་འབྲུ་</emph> གདམ་ཁ་རྐྱབས། ཁྱོད་ཀྱིས་ <emph>ཡིག་འབྲུ་</emph> ཌའི་ལོག་འདི་མཐོང་འོང་།"
@@ -10807,7 +10100,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ཡིག་
msgctxt ""
"super_subscript.xhp\n"
"par_id3153142\n"
-"5\n"
"help.text"
msgid "Click the <emph>Font Position</emph> tab."
msgstr "<emph>ཡིག་གཟུགས་ཀྱི་གནས་ས་</emph> མཆོང་ལྡེ་གུ་ཨེབ་གཏང་འབད།"
@@ -10816,7 +10108,6 @@ msgstr "<emph>ཡིག་གཟུགས་ཀྱི་གནས་ས་</emph
msgctxt ""
"super_subscript.xhp\n"
"par_id3153954\n"
-"6\n"
"help.text"
msgid "Select the <emph>Subscript</emph> option and click OK."
msgstr "<emph>འོག་ཡིག་</emph> གདམ་ཁ་འདི་སེལ་འཐུ་འབད་ཞིནམ་ལས་ བཏུབ་གུ་ཨེབ་གཏང་འབད།"
@@ -10825,7 +10116,6 @@ msgstr "<emph>འོག་ཡིག་</emph> གདམ་ཁ་འདི་ས
msgctxt ""
"super_subscript.xhp\n"
"par_id3153876\n"
-"7\n"
"help.text"
msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Context menu - Character - Font Position\">Context menu - Character - Font Position</link>"
msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Context menu - Character - Font Position\">ཚིག་དོན་དཀར་ཆག་ - ཡིག་་འབྲུ་ - ཡིག་གཟུགས་ཀྱི་གནས་ས་</link>"
@@ -10938,7 +10228,6 @@ msgstr "<bookmark_value>ཐིག་ཁྲམ་ཚུ་ གོ་རིམ་
msgctxt ""
"table_rotate.xhp\n"
"hd_id3154346\n"
-"1\n"
"help.text"
msgid "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate.xhp\" name=\"Rotating Tables (Transposing)\">Rotating Tables (Transposing)</link></variable>"
msgstr "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate.xhp\" name=\"Rotating Tables (Transposing)\">བསྒྱིར་བའི་ཐིག་ཁྲམ་(གོ་རིམ་དཀྲུགས་པ་)</link></variable>"
@@ -10947,7 +10236,6 @@ msgstr "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate
msgctxt ""
"table_rotate.xhp\n"
"par_id3154013\n"
-"2\n"
"help.text"
msgid "In $[officename] Calc, there is a way to \"rotate\" a spreadsheet so that rows become columns and columns become rows."
msgstr "$[officename] ཀེལཀི་ནང་ ཤོག་ཁྲམ་ཅིག་\"rotate\" འབད་ནིའི་ཐབས་ལམ་ཡོདཔ་ཨིན་ དེ་འབདཝ་ལས་ གྲལ་ཐིག་ཚུ་ཀེར་ཐིག་དང་ཀེར་ཐིག་ཚུ་གྲལ་ཐིག་ལུ་འགྱུརཝ་ཨིན།"
@@ -10956,7 +10244,6 @@ msgstr "$[officename] ཀེལཀི་ནང་ ཤོག་ཁྲམ་ཅི
msgctxt ""
"table_rotate.xhp\n"
"par_id3153142\n"
-"3\n"
"help.text"
msgid "Select the cell range that you want to transpose."
msgstr "ཁྱོད་ཀྱིས་གོ་རིམ་དཀྲུགས་ནི་ཨིན་པའི་ནང་ཐིག་ཁྱབ་ཚད་ སེལ་འཐུ་འབད།"
@@ -10965,7 +10252,6 @@ msgstr "ཁྱོད་ཀྱིས་གོ་རིམ་དཀྲུགས་
msgctxt ""
"table_rotate.xhp\n"
"par_id3153191\n"
-"4\n"
"help.text"
msgid "Choose <emph>Edit - Cut</emph>."
msgstr "<emph>ཞུན་དག་ - བཏོག་</emph> གདམ་ཁ་རྐྱབས།"
@@ -10974,7 +10260,6 @@ msgstr "<emph>ཞུན་དག་ - བཏོག་</emph> གདམ་ཁ་
msgctxt ""
"table_rotate.xhp\n"
"par_id3148575\n"
-"6\n"
"help.text"
msgid "Click the cell that is to be the top left cell in the result."
msgstr "གྲུབ་འབྲས་ནང་མགུ་གི་གཡས་ཁ་ཐུག་ལུ་ཨིན་དགོ་པའི་ནང་ཐིག་ལུ་ཨེབ་གཏང་འབད།"
@@ -10983,7 +10268,6 @@ msgstr "གྲུབ་འབྲས་ནང་མགུ་གི་གཡས་
msgctxt ""
"table_rotate.xhp\n"
"par_id3156286\n"
-"7\n"
"help.text"
msgid "Choose <emph>Edit - Paste Special</emph>."
msgstr "<emph>ཞུན་དག་ - དམིགས་བསལ་སྦྱར་</emph> གདམ་ཁ་རྐྱབས།"
@@ -10992,7 +10276,6 @@ msgstr "<emph>ཞུན་དག་ - དམིགས་བསལ་སྦྱར
msgctxt ""
"table_rotate.xhp\n"
"par_id3144764\n"
-"8\n"
"help.text"
msgid "In the dialog, mark <emph>Paste all</emph> and <emph>Transpose</emph>."
msgstr "ཌའི་ལོག་ནང་ <emph>ཆ་མཉམ་སྦྱར་</emph> དང་ <emph>གོ་རིམ་དཀྲུགས་པའི་</emph> གུ་རྟགས་བཀལ།"
@@ -11001,7 +10284,6 @@ msgstr "ཌའི་ལོག་ནང་ <emph>ཆ་མཉམ་སྦྱར
msgctxt ""
"table_rotate.xhp\n"
"par_id3155600\n"
-"9\n"
"help.text"
msgid "If you now click OK the columns and rows are transposed."
msgstr "ད་ལས་ཕར་ཁྱོད་ཀྱིས་ བཏུབ་གུ་ཨེབ་གཏང་འབད་བ་ཅིན་ ཀེར་ཐིག་དང་གྲལ་ཐིག་གཉིས་ གོ་རིམ་དཀྲུགསཔ་ཨིན།"
@@ -11010,7 +10292,6 @@ msgstr "ད་ལས་ཕར་ཁྱོད་ཀྱིས་ བཏུབ་
msgctxt ""
"table_rotate.xhp\n"
"par_id3146969\n"
-"10\n"
"help.text"
msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">དམིགས་བསལ་གྱིས་སྦེ་སྦྱར་</link>"
@@ -11035,7 +10316,6 @@ msgstr "<bookmark_value>གྲལ་ཐིག་མགོ་ཡིག་ སྦ
msgctxt ""
"table_view.xhp\n"
"hd_id3147304\n"
-"1\n"
"help.text"
msgid "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp\" name=\"Changing Table Views\">Changing Table Views</link></variable>"
msgstr "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp\" name=\"Changing Table Views\">ཐིག་ཁྲམ་མཐོང་སྣང་ བསྒྱུར་བཅོས་འབད་དོ་</link></variable>"
@@ -11044,7 +10324,6 @@ msgstr "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp
msgctxt ""
"table_view.xhp\n"
"par_id3153192\n"
-"2\n"
"help.text"
msgid "To hide column and line headers in a table:"
msgstr "ཀེར་ཐིག་དང་གྲལ་ཐིག་མགོ་ཡིག་ཚུ་ ཐིག་ཁྲམ་ནང་རྟག་བརྟན་སྦེ་སྦ་དགོ་པ་ཅིན་:"
@@ -11053,7 +10332,6 @@ msgstr "ཀེར་ཐིག་དང་གྲལ་ཐིག་མགོ་ཡ
msgctxt ""
"table_view.xhp\n"
"par_id3153768\n"
-"3\n"
"help.text"
msgid "Under the menu item <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc,</emph> go to the <emph>View</emph> tab page. Unmark<emph> Column/row headers</emph>. Confirm with <emph>OK</emph>."
msgstr ""
@@ -11062,7 +10340,6 @@ msgstr ""
msgctxt ""
"table_view.xhp\n"
"par_id3147436\n"
-"4\n"
"help.text"
msgid "To hide grid lines:"
msgstr "གིརིཌི་གྲལ་ཐིག་སྦ་ནི་ལུ་:"
@@ -11095,7 +10372,6 @@ msgstr "<bookmark_value>ཨང་གྲངས་ཚུ་ ཚིག་ཡིག
msgctxt ""
"text_numbers.xhp\n"
"hd_id3145068\n"
-"46\n"
"help.text"
msgid "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers.xhp\" name=\"Formatting Numbers as Text\">Formatting Numbers as Text</link></variable>"
msgstr "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers.xhp\" name=\"Formatting Numbers as Text\">ཨང་གྲངས་ཚུ་ཚིག་ཡིག་སྦེ་ རྩ་སྒྲིག་འབད་དོ་</link></variable>"
@@ -11104,7 +10380,6 @@ msgstr "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers
msgctxt ""
"text_numbers.xhp\n"
"par_id3156280\n"
-"43\n"
"help.text"
msgid "You can format numbers as text in $[officename] Calc. Open the context menu of a cell or range of cells and choose <emph>Format Cells - Numbers</emph>, then select \"Text\" from the <emph>Category</emph> list. Any numbers subsequently entered into the formatted range are interpreted as text. The display of these \"numbers\" is left-justified, just as with other text."
msgstr "ཁྱོད་ཀྱིས་ $[officename] ཀེལཀི་ནང་གི་ཚིག་ཡིག་བཟུམ་སྦེ་ ཨང་གྲངས་ཚུ་རྩ་སྒྲིག་འབད་ཚུགས། ནང་ཐིག་ཅིག་གི་སྐབས་དོན་དཀར་ཆག་ ཡང་ན་ ནང་ཐིག་ཁྱབ་ཚད་ཚུ་ཁ་ཕྱེ་ཞིནམ་ལས་ <emph>རྩ་སྒྲིག་ནང་ཐིག་ཚུ་ - ཨང་གྲངས་ཚུ་</emph> གདམ་ཁ་རྐྱབས་ དེ་ལས་ <emph>དབྱེ་རིམ་</emph> ཐོ་ཡིག་ནང་ལས་ \"Text\" སེལ་འཐུ་འབད། རྩ་སྒྲིག་འབད་ཡོད་པའི་ཁྱབ་ཚད་ནང་ ཤུལ་ལས་འབད་བཙུགས་ཡོད་པའི་ཨང་གྲངསགང་རུང་ཚུ་ ཚིག་ཡིག་སྦེ་ཁ་བསྒྱུར་འབདཝ་ཨིན། \"numbers\" བཀྲམ་སྟོན་འབད་འདི་ ཚིག་ཡིག་གཞན་དང་གཅིག་ཁར་ ལྟེམས་བཅོས་འབད་དེ་བཞག་ཅི།"
@@ -11113,7 +10388,6 @@ msgstr "ཁྱོད་ཀྱིས་ $[officename] ཀེལཀི་ནང་
msgctxt ""
"text_numbers.xhp\n"
"par_id3149377\n"
-"44\n"
"help.text"
msgid "If you have already entered normal numbers in cells and have afterwards changed the format of the cells to \"Text\", the numbers will remain normal numbers. They will not be converted. Only numbers entered afterwards, or numbers which are then edited, will become text numbers."
msgstr "ཁྱོད་ཀྱིས་ ཧེ་མ་ལས་ར་ནང་ཐིག་ནང་སྤྱིར་བཏང་ཨང་གྲངས་བཙུགས་ཡོདཔ་དང་ ནང་ཐིག་གི་རྩ་སྒྲིག་ཚུ་ཤུལ་ལས་ \"Text\" ལུ་བསྒྱུར་བཅོས་འབད་ཡོད་པ་ཅིན་ ཨང་གྲངས་ཚུ་གཞི་བསྒྱུར་མ་འབད་བར་སྤྱིར་བཏང་ཨང་གྲངས་སྦེ་སྡོད་འོང་། ཨང་གྲངས་ཤུལ་ལས་བཙུགས་ཡོད་མི་དང་ ཞུན་དག་འབད་ཡོད་པའི་ཨང་གྲངས་ཚུ་རྐྱངམ་ཅིག་ ཚིག་ཡིག་ཨང་གྲངས་ལུ་འགྱུར་འོང་།"
@@ -11122,7 +10396,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཧེ་མ་ལས་ར་ནང་
msgctxt ""
"text_numbers.xhp\n"
"par_id3144765\n"
-"45\n"
"help.text"
msgid "If you decide to enter a number directly as text, enter an apostrophe (') first. For example, for years in column headings, you can enter '1999, '2000 and '2001. The apostrophe is not visible in the cell, it only indicates that the entry is to be recognized as a text. This is useful if, for example, you enter a telephone number or postal code that begins with a zero (0), because a zero (0) at the start of a sequence of digits is removed in normal number formats."
msgstr "ཁྱོད་ཀྱིས་ ཨང་གྲངས་ཅིག་ཚིག་ཡིག་སྦེ་ཐད་ཀར་དུ་བཙུགས་ནིའི་ཐག་བཅད་ཡོད་པ་ཅིན་ དང་པ་ར་ འབྲེལ་རྟགས་ (')འདི་བཙུགས། དཔེར་ན་ ཀེར་ཐིག་མགུ་རྒྱན་ནང་ ལོ་བཙུགས་དགོ་པ་ཅིན་ '༡༩༩༩ དང་ '༢༠༠༠ དེ་ལས་ '༢༠༠༡ བཙུགས་བཏུབ། འབྲེལ་རྟགས་འདི་ནང་ཐིག་ནང་མི་མཐོང་ འདི་གིས་ ཐོ་བཀོད་འདི་ཚིག་ཡིག་སྦེ་ངོས་འཛིན་འབད་དགོ་པའི་བརྡ་སྟོན་འབདཝ་ཨིན། འདི་གནམ་མེད་ས་མེད་ཁག་ཆེཝ་ཨིན་ དཔེར་ན་ ཁྱོད་ཀྱིས་ ཀླད་ཀོར་གྱིས་འགོ་བཙུགས་པའི་བརྒྱུད་འཕྲིན་ཨང་ ཡང་ན་ འགྲེམ་ཨང་བཙུགས་དགོ་ དེ་ཡང་ག་ཅི་འབད་ཟེར་བ་ཅིན་ ཨང་ཡིག་གི་ཧེ་མའི་འབྱུང་རིམ་ཀླད་ཀོར་(༠)ཅིགཔ་འདི་ སྤྱིར་བཏང་ཨང་གྲངས་རྩ་སྒྲིག་ནང་ལས་བཏོན་གཏངམ་ཨིན།"
@@ -11131,7 +10404,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཨང་གྲངས་ཅིག་ཚ
msgctxt ""
"text_numbers.xhp\n"
"par_id3156284\n"
-"47\n"
"help.text"
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">རྩ་སྒྲིག་ - ནང་ཐིག་ - ཨང་གྲངས་ཚུ་</link>"
@@ -11156,7 +10428,6 @@ msgstr "<bookmark_value>ནང་ཐིག་ཚུ་ བསྒྱིར་བ
msgctxt ""
"text_rotate.xhp\n"
"hd_id3151112\n"
-"1\n"
"help.text"
msgid "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\" name=\"Rotating Text\">Rotating Text</link></variable>"
msgstr "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\" name=\"Rotating Text\">བསྒྱིར་བའི་ཚིག་ཡིག་</link></variable>"
@@ -11165,7 +10436,6 @@ msgstr "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.x
msgctxt ""
"text_rotate.xhp\n"
"par_id3145171\n"
-"2\n"
"help.text"
msgid "Select the cells whose text you want to rotate."
msgstr "ག་གི་ཚིག་ཡིག་འདི་ཁྱོད་ཀྱིས་ བསྒྱིར་ནི་ཨིན་ན་ སེལ་འཐུ་འབད།"
@@ -11174,7 +10444,6 @@ msgstr "ག་གི་ཚིག་ཡིག་འདི་ཁྱོད་ཀྱ
msgctxt ""
"text_rotate.xhp\n"
"par_id3155133\n"
-"3\n"
"help.text"
msgid "Choose <emph>Format - Cells</emph>. You will see the <emph>Format Cells</emph> dialog."
msgstr "<emph>རྩ་སྒྲིག་ - ནང་ཐིག་ཚུ་</emph> གདམ་ཁ་རྐྱབས། ཁྱོད་ཀྱིས་ <emph>རྩ་སྒྲིག་ནང་ཐིག་ཚུ་</emph> ཌའི་ལོག་མཐོང་འོང་།"
@@ -11183,7 +10452,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ནང་ཐིག་ཚུ་</emph
msgctxt ""
"text_rotate.xhp\n"
"par_id3155854\n"
-"4\n"
"help.text"
msgid "Click the <emph>Alignment</emph> tab."
msgstr "<emph>ཕྲང་སྒྲིག་</emph> མཆོང་ལྡེ་ལུ་ ཨེབ་གཏང་འབད།"
@@ -11192,7 +10460,6 @@ msgstr "<emph>ཕྲང་སྒྲིག་</emph> མཆོང་ལྡེ་
msgctxt ""
"text_rotate.xhp\n"
"par_id3147426\n"
-"5\n"
"help.text"
msgid "In the <emph>Text orientation</emph> area use the mouse to select in the preview wheel the direction in which the text is to be rotated. Click <emph>OK</emph>."
msgstr "<emph>ཚིག་ཡིག་ཁ་ཕྱོགས་</emph> མངའ་ཁོངས་ནང་ ཚིག་ཡིག་བསྒྱིར་ནི་ཨིན་མི་སྔོན་ལྟའི་འཁོར་ལོ་ནང་ སེལ་འཐུ་འབད་ནི་གི་དོན་ལུ་ལག་ལེན་འཐབ། <emph>བཏུབ་</emph> གུ་ཨེབ་གཏང་འབད།"
@@ -11201,7 +10468,6 @@ msgstr "<emph>ཚིག་ཡིག་ཁ་ཕྱོགས་</emph> མངའ
msgctxt ""
"text_rotate.xhp\n"
"par_id3148456\n"
-"7\n"
"help.text"
msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cells\">Format - Cells</link>"
msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cells\">རྩ་སྒྲིག་ - ནང་ཐིག་</link>"
@@ -11210,7 +10476,6 @@ msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cells\">རྩ
msgctxt ""
"text_rotate.xhp\n"
"par_id3154944\n"
-"8\n"
"help.text"
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\">Format - Cells - Alignment</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\">རྩ་སྒྲིག་ - ནང་ཐིག་ - ཕྲང་སྒྲིག་</link>"
@@ -11235,7 +10500,6 @@ msgstr "<bookmark_value>ནང་ཐིག་ཚུ་ནང་ཚིག་ཡ
msgctxt ""
"text_wrap.xhp\n"
"hd_id3154346\n"
-"42\n"
"help.text"
msgid "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\" name=\"Writing Multi-line Text\">Writing Multi-line Text</link></variable>"
msgstr "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\" name=\"Writing Multi-line Text\">སྣ་མང་-གྲལ་ཐིག་ཚིག་ཡིག་</link></variable>"
@@ -11244,7 +10508,6 @@ msgstr "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\"
msgctxt ""
"text_wrap.xhp\n"
"par_id3156280\n"
-"41\n"
"help.text"
msgid "Pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter keys inserts a manual line break. This shortcut works directly in the cell or in the input line. The input line can be expanded to the multi-line by the Down arrow button on the right."
msgstr ""
@@ -11253,7 +10516,6 @@ msgstr ""
msgctxt ""
"text_wrap.xhp\n"
"par_id3153142\n"
-"43\n"
"help.text"
msgid "If you want the text to automatically break at the right border of the cell, proceed as follows:"
msgstr "ཁྱོད་ཀྱིས་ ཚིག་ཡིག་འདི་རང་བཞིན་གྱིས་ ནང་ཐིག་མཐའ་མཚམས་གཡས་ལུ་ མཚམས་བཞག་དགོ་པ་ཅིན་ འོག་གི་བཟུམ་སྦེ་འབད་:"
@@ -11262,7 +10524,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཚིག་ཡིག་འདི་ར
msgctxt ""
"text_wrap.xhp\n"
"par_id3153951\n"
-"44\n"
"help.text"
msgid "Select all the cells where you want the text to break at the right border."
msgstr "ཁྱོད་ཀྱིས་ ཚིག་ཡིག་འདི་མཐའ་མཚམས་གཡས་ལུ་ ག་སྟེ་མཚམས་བཞག་ནི་ཨིན་ན་ ནང་ཐིག་ཆ་མཉམ་ར་སེལ་འཐུ་འབད།"
@@ -11271,7 +10532,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཚིག་ཡིག་འདི་མ
msgctxt ""
"text_wrap.xhp\n"
"par_id3148575\n"
-"45\n"
"help.text"
msgid "In <emph>Format - Cells - Alignment</emph>, mark the <emph>Wrap text automatically</emph> option and click OK."
msgstr "<emph>རྩ་སྒྲིག་ - ནང་ཐིག་ - ཕྲང་སྒྲིག་</emph> ནང་ལུ་ <emph>རང་བཞིན་གྲལ་ཐིག་མཚམས་</emph> གདམ་ཁ་གུ་རྟགས་བཀལ་ཏེ་ བཏུབ་གུ་ཨེབ་གཏང་འབད།"
@@ -11280,7 +10540,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ནང་ཐིག་ - ཕྲང་
msgctxt ""
"text_wrap.xhp\n"
"par_id3145799\n"
-"46\n"
"help.text"
msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cell\">Format - Cell</link>"
msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cell\">རྩ་སྒྲིག་ - ནང་ཐིག་</link>"
@@ -11305,7 +10564,6 @@ msgstr "<bookmark_value>ལས་འགན་ཚུ་ ལག་ལེན་པ
msgctxt ""
"userdefined_function.xhp\n"
"hd_id3155411\n"
-"1\n"
"help.text"
msgid "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Defining Functions Yourself\">User-Defined Functions</link></variable>"
msgstr "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Defining Functions Yourself\">ལག་ལེན་པ་-ངེས་འཛིན་འབད་ཡོད་པའི་ལས་འགན་ཚུ་</link></variable>"
@@ -11314,7 +10572,6 @@ msgstr "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/user
msgctxt ""
"userdefined_function.xhp\n"
"par_id3153969\n"
-"2\n"
"help.text"
msgid "You can apply user-defined functions in $[officename] Calc in the following ways:"
msgstr "ཁྱོད་ཀྱིས་ འོག་གི་ཐབས་ལམ་གྱི་ཐོག་ལས་ ལག་ལེན་པ་-ངེས་འཛིན་འབད་ཡོད་པའི་ལས་འགན་ཚུ་ འཇུག་སྤྱོད་འབད་བཏུབ།"
@@ -11323,7 +10580,6 @@ msgstr "ཁྱོད་ཀྱིས་ འོག་གི་ཐབས་ལམ
msgctxt ""
"userdefined_function.xhp\n"
"par_id3145366\n"
-"4\n"
"help.text"
msgid "You can define your own functions using the Basic-IDE. This method requires a basic knowledge of programming."
msgstr "ཁྱོད་ཀྱིས་ གཞི་རིམ་-ཨའི་ཌི་ཨི་ལག་ལེན་འཐབ་ཐོག་ལས་ ཁྱོད་རའི་ལས་འགན་ངེས་འཛིན་འབད་ཚུགས། ཐབས་ལམ་འདི་ནང་ ལས་རིམ་གྱི་གཞི་རྟེན་ཤེས་ཡོན་དགོཔ་ཨིན།"
@@ -11332,7 +10588,6 @@ msgstr "ཁྱོད་ཀྱིས་ གཞི་རིམ་-ཨའི་ཌ
msgctxt ""
"userdefined_function.xhp\n"
"par_id3153768\n"
-"3\n"
"help.text"
msgid "You can program functions as <link href=\"text/scalc/01/04060111.xhp\" name=\"add-ins\">add-ins</link>. This method requires an advanced knowledge of programming."
msgstr "ཁྱོད་ཀྱིས་ ལས་འགན་ཚུ་<link href=\"text/scalc/01/04060111.xhp\" name=\"add-ins\">ཁ་སྐོང་- ཨིནསི་</link> སྦེ་ལས་རིམ་བཟོ་ཚུགས། ཐབས་ལམ་འདི་ནང་ མཐོ་རིམ་ཅན་གྱི་ལས་རིམ་ཤེས་ཡོན་དགོཔ་ཨིན།"
@@ -11341,7 +10596,6 @@ msgstr "ཁྱོད་ཀྱིས་ ལས་འགན་ཚུ་<link href=
msgctxt ""
"userdefined_function.xhp\n"
"hd_id3149260\n"
-"6\n"
"help.text"
msgid "Defining A Function Using %PRODUCTNAME Basic"
msgstr "%PRODUCTNAME གཞི་རིམ་ ལག་ལེན་གྱི་ཐོག་ལས་ ལས་འགན་ཅིག་ངེས་འཛིན་འབད་དོ།"
@@ -11350,7 +10604,6 @@ msgstr "%PRODUCTNAME གཞི་རིམ་ ལག་ལེན་གྱི་
msgctxt ""
"userdefined_function.xhp\n"
"par_id3148456\n"
-"7\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item>."
msgstr "<item type=\"menuitem\">ལག་ཆས་ཚུ་ - མེ་ཀོརོསི་ - མེ་ཀོརོསི་འགོ་འདྲེན་འཐབ་ - %PRODUCTNAME གཞི་རིམ་</item> གདམ་ཁ་རྐྱབས།"
@@ -11359,7 +10612,6 @@ msgstr "<item type=\"menuitem\">ལག་ཆས་ཚུ་ - མེ་ཀོར
msgctxt ""
"userdefined_function.xhp\n"
"par_id3154510\n"
-"8\n"
"help.text"
msgid "Click the <emph>Edit</emph> button. You will now see the Basic IDE."
msgstr "<emph>Edit</emph> ཨེབ་རྟ་ལུ་ ཨེབ་གཏང་འབད། ད་འབདན་ཁྱོད་ཀྱིས་ གཞི་རིམ་ཨའི་ཌི་ཨི་ མཐོང་འོང་།"
@@ -11368,7 +10620,6 @@ msgstr "<emph>Edit</emph> ཨེབ་རྟ་ལུ་ ཨེབ་གཏང
msgctxt ""
"userdefined_function.xhp\n"
"par_id3150327\n"
-"9\n"
"help.text"
msgid "Enter the function code. In this example, we define a <item type=\"literal\">VOL(a; b; c)</item> function that calculates the volume of a rectangular solid with side lengths <item type=\"literal\">a</item>, <item type=\"literal\">b</item> and <item type=\"literal\">c</item>:"
msgstr "ལས་འགན་ཨང་རྟགས་བཙུགས། དཔེ་འདི་ནང་ ང་བཅས་ཀྱིས་ ཟུར་གྱི་རིང་ཚད་ <item type=\"literal\">ཨེ་</item> དང་ <item type=\"literal\">བི་</item> དེ་ལས་ <item type=\"literal\">སི་</item> དང་ལྡན་པའི་གྲུ་བཞི་ནར་མོའི་སྦུང་ཚད་རྩིས་སྟོན་འབདཝ་ཨིན་པའི་ <item type=\"literal\">སྦུང་ཚད་(a; b; c)</item> ལས་འགན་ཅིག་ངེས་འཛིན་འབདཝ་ཨིན་:"
@@ -11377,7 +10628,6 @@ msgstr "ལས་འགན་ཨང་རྟགས་བཙུགས། དཔ
msgctxt ""
"userdefined_function.xhp\n"
"par_id3155443\n"
-"10\n"
"help.text"
msgid "Close the Basic-IDE window."
msgstr "གཞི་རིམ་-ཨའི་ཌི་ཨི་ སྒོ་སྒྲིག་ ཁ་བསྡམ།"
@@ -11386,7 +10636,6 @@ msgstr "གཞི་རིམ་-ཨའི་ཌི་ཨི་ སྒོ་ས
msgctxt ""
"userdefined_function.xhp\n"
"par_id3150043\n"
-"11\n"
"help.text"
msgid "Your function is automatically saved in the default module and is now available. If you apply the function in a Calc document that is to be used on another computer, you can copy the function to the Calc document as described in the next section."
msgstr "ཁྱོད་ཀྱི་ལས་འགན་འདི་ སྔོན་སྒྲིག་ཚད་གཞི་ནང་ལུ་རང་བཞིན་གྱིས་ སྲུང་ནི་ཨིནམ་དང་ ད་ལས་ཕར་ལངམ་འབད་འཐོབ་ཚུགས། ཁྱོད་ཀྱིས་ ཀེལཀི་ཡིག་ཆ་ཅིག་ནང་ལུ་ གློག་རིག་གཞན་ཅིག་ནང་ལག་ལེན་འཐབ་ནི་ཨིན་མི་ལས་འགན་འདི་འཇུག་སྤྱོད་འབད་བ་ཅིན་ དབྱེ་ཚན་ཤུལ་མམ་ནང་འགྲེལ་བཤད་འབད་ཡོད་མི་བཟུམ་ ཀེལཀི་ཡིག་ཆ་ནང་ལུ་ ལས་འགན་འདྲ་བཤུས་རྐྱབ་ཚུགས།"
@@ -11395,7 +10644,6 @@ msgstr "ཁྱོད་ཀྱི་ལས་འགན་འདི་ སྔོ
msgctxt ""
"userdefined_function.xhp\n"
"hd_id3147340\n"
-"18\n"
"help.text"
msgid "Copying a Function To a Document"
msgstr "ལས་འགན་འདི་ ཡིག་ཆ་ཅིག་ལུ་འདྲ་བཤུས་རྐྱབ་དོ།"
@@ -11404,7 +10652,6 @@ msgstr "ལས་འགན་འདི་ ཡིག་ཆ་ཅིག་ལུ
msgctxt ""
"userdefined_function.xhp\n"
"par_id3145232\n"
-"19\n"
"help.text"
msgid "In stage 2 of \"Defining A Function Using %PRODUCTNAME Basic\", in the <emph>Macro</emph> dialog you clicked on <emph>Edit </emph>. As the default, in the <emph>Macro from</emph> field the <emph>My Macros - Standard - Module1</emph> module is selected. The <emph>Standard</emph> library resides locally in your user directory."
msgstr "<emph>Macro</emph> ཌའི་ལོག་ནང་གི་ \"Defining A Function Using %PRODUCTNAME Basic\" གི་གོ་རིམ་ནང་ ཁྱོད་ཀྱིས་ <emph>ཞུན་དག་ </emph> གུ་ཨེབ་གཏང་འབད་ནུག སྔོན་སྒྲིག་འབདཝ་ལས་ <emph>མེ་ཀོརོ་</emph> ས་སྒོ་ནང་ལས་ <emph>ངེ་གི་མེ་ཀོརོསི་ - ཚད་ལྡན་ - ཚད་གཞི་༡</emph> ཚད་གཞི་འདི་སེལ་འཐུ་འབད་ཡི། <emph> ཚད་ལྡན་</emph> དཔེ་མཛོད་འདི་ ཁྱོད་རའི་སྣོད་ཐོ་ནང་ ཉེ་གནས་སྦེ་གནསཔ་ཨིན།"
@@ -11413,7 +10660,6 @@ msgstr "<emph>Macro</emph> ཌའི་ལོག་ནང་གི་ \"Defining
msgctxt ""
"userdefined_function.xhp\n"
"par_id3154022\n"
-"20\n"
"help.text"
msgid "If you want to copy the user-defined function to a Calc document:"
msgstr "ཁྱོད་ཀྱིས་ ལག་ལེན་པ་-ངེས་འཛིན་འབད་ཡོད་པའི་ལས་འགན་འདི་ ཀེལཀི་ཡིག་ཆ་ཅིག་ལུ་ འདྲ་བཤུས་བརྐྱབ་དགོ་མནོ་བ་ཅིན་:"
@@ -11422,7 +10668,6 @@ msgstr "ཁྱོད་ཀྱིས་ ལག་ལེན་པ་-ངེས་
msgctxt ""
"userdefined_function.xhp\n"
"par_id3150304\n"
-"21\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
msgstr "<item type=\"menuitem\">ལག་ཆས་ཚུ་ - མེ་ཀོརོསི་ - མེ་ཀོརོསི་འགོ་འདྲེན་འཐབ་ - %PRODUCTNAME གཞི་རིམ་</item> གདམ་ཁ་རྐྱབས།"
@@ -11431,7 +10676,6 @@ msgstr "<item type=\"menuitem\">ལག་ཆས་ཚུ་ - མེ་ཀོར
msgctxt ""
"userdefined_function.xhp\n"
"par_id3150086\n"
-"22\n"
"help.text"
msgid "In the <emph>Macro from</emph> field select <emph>My Macros - Standard - Module1</emph> and click <emph>Edit</emph>."
msgstr "<emph>ནང་གི་</emph> མེ་ཀོརོ་ནང་ལས་ <emph>ངེ་གི་མེ་ཀོརོསི་ - ཚད་ལྡན་ - ཚད་གཞི་ ༡ </emph>སེལ་འཐུ་འབད་ཞིནམ་ལས་ <emph>ཞུན་དག་</emph>གུ་ ཨེབ་གཏང་འབད།"
@@ -11440,7 +10684,6 @@ msgstr "<emph>ནང་གི་</emph> མེ་ཀོརོ་ནང་ལས
msgctxt ""
"userdefined_function.xhp\n"
"par_id3166430\n"
-"23\n"
"help.text"
msgid "In the Basic-IDE, select the source of your user-defined function and copy it to the clipboard."
msgstr "གཞི་རིམ་-ཨའི་ཌི་ཨི་ནང་ལུ་ ཁྱོད་རའི་ལག་ལེན་པ་-ངེས་འཛིན་འབད་ཡོད་པའི་ལས་འགན་གྱི་འབྱུང་ཁུངས་ སེལ་འཐུ་འབད་ཞིནམ་ལས་ འདི་འཛིན་པང་ལུ་འདྲ་བཤུས་རྐྱབས།"
@@ -11457,7 +10700,6 @@ msgstr "གཞི་རིམ་-ཨའི་ཌི་ཨི་ ཁ་སྡམ
msgctxt ""
"userdefined_function.xhp\n"
"par_id3150517\n"
-"24\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
msgstr "<item type=\"menuitem\">ལག་ཆས་ཚུ་ - མེ་ཀོརོསི་ - མེ་ཀོརོསི་འགོ་འདྲེན་འཐབ་ - %PRODUCTNAME གཞི་རིམ་</item> གདམ་ཁ་རྐྱབས།"
@@ -11466,7 +10708,6 @@ msgstr "<item type=\"menuitem\">ལག་ཆས་ཚུ་ - མེ་ཀོར
msgctxt ""
"userdefined_function.xhp\n"
"par_id3145384\n"
-"25\n"
"help.text"
msgid "In the <emph>Macro from</emph> field select <emph>(Name of the Calc document) - Standard - Module1</emph>. Click <emph>Edit</emph>."
msgstr "<emph>མེ་ཀོརོ་ནང་ལས་</emph> ས་སྒོ་ནང་ལུ་ <emph>(ཀེལཀི་ཡིག་ཆའི་མིང་) - ཚད་ལྡན་ - ཚད་གཞི་༡</emph> སེལ་འཐུ་འབད། <emph>ཞུན་དག་</emph> གུ་ཨེབ་གཏང་འབད།"
@@ -11475,7 +10716,6 @@ msgstr "<emph>མེ་ཀོརོ་ནང་ལས་</emph> ས་སྒོ
msgctxt ""
"userdefined_function.xhp\n"
"par_id3148699\n"
-"26\n"
"help.text"
msgid "Paste the clipboard contents in the Basic-IDE of the document."
msgstr "ཡིག་ཆའི་གཞི་རིམ་-ཨའི་ཌི་ཨི་ནང་ལུ་ འཛིན་པང་ནང་དོན་ཚུ་སྦྱར།"
@@ -11484,7 +10724,6 @@ msgstr "ཡིག་ཆའི་གཞི་རིམ་-ཨའི་ཌི་
msgctxt ""
"userdefined_function.xhp\n"
"hd_id3153305\n"
-"12\n"
"help.text"
msgid "Applying a User-defined Function in $[officename] Calc"
msgstr "$[officename] ཀེལཀི་ནང་ ལག་ལེན་པ་-ངེས་འཛིན་འབད་ཡོད་པའི་ལས་འགན་ཅིག་འཇུག་སྤྱོད་འབད་དོ།"
@@ -11493,7 +10732,6 @@ msgstr "$[officename] ཀེལཀི་ནང་ ལག་ལེན་པ་-
msgctxt ""
"userdefined_function.xhp\n"
"par_id3148869\n"
-"13\n"
"help.text"
msgid "Once you have defined the function <item type=\"literal\">VOL(a; b; c)</item> in the Basic-IDE, you can apply it the same way as the built-in functions of $[officename] Calc."
msgstr "ཁྱོད་ཀྱིས་ གཞི་རིམ་-ཨའི་ཌི་ཨི་ནང་ ལས་འགན་ <item type=\"literal\">ཝི་ཨོ་ཨེལ་(a; b; c)</item> འདི་ངེས་འཛིན་འབད་ཞིནམ་ལས་ $[officename] ཀེལཀི་གི་ནང་སྦྲགས་ལས་འགན་དང་ཅོག་འཐདཔ་འབད་ལག་འཇུག་སྤྱོད་འབད་བཏུབ།"
@@ -11502,7 +10740,6 @@ msgstr "ཁྱོད་ཀྱིས་ གཞི་རིམ་-ཨའི་ཌ
msgctxt ""
"userdefined_function.xhp\n"
"par_id3148606\n"
-"14\n"
"help.text"
msgid "Open a Calc document and enter numbers for the function parameters <item type=\"literal\">a</item>, <item type=\"literal\">b</item>, and <item type=\"literal\">c</item> in cells A1, B1, and C1."
msgstr "ཀེལཀི་ཡིག་ཆ་འདི་ཁ་ཕྱེ་ དེ་ལས་ལས་ ནང་ཐིག་ ཨེ༡ དང་ བི་༡ དེ་ལས་སི་༡ ནངལུ་ལས་འགན་ཚད་བཟུང་ <item type=\"literal\">ཨེ་</item>དང་ <item type=\"literal\">བི་</item> དེ་ལས་ <item type=\"literal\">སི་</item> ཚུ་གི་དོན་ལུ་ ཨང་གྲངས་བཙུགས།"
@@ -11511,7 +10748,6 @@ msgstr "ཀེལཀི་ཡིག་ཆ་འདི་ཁ་ཕྱེ་ ད
msgctxt ""
"userdefined_function.xhp\n"
"par_id3156019\n"
-"15\n"
"help.text"
msgid "Set the cursor in another cell and enter the following:"
msgstr "འོད་རྟགས་འདི་ ནང་ཐིག་གཞན་ཅིག་ནང་གཞི་སྒྲིག་འབད་ཞིནམ་ལས་ འོག་གི་ཚུ་བཙུགས་:"
@@ -11520,7 +10756,6 @@ msgstr "འོད་རྟགས་འདི་ ནང་ཐིག་གཞན
msgctxt ""
"userdefined_function.xhp\n"
"par_id3155264\n"
-"16\n"
"help.text"
msgid "=VOL(A1;B1;C1)"
msgstr "=VOL(A1;B1;C1)"
@@ -11529,7 +10764,6 @@ msgstr "=VOL(A1;B1;C1)"
msgctxt ""
"userdefined_function.xhp\n"
"par_id3146776\n"
-"17\n"
"help.text"
msgid "The function is evaluated and you will see the result in the selected cell."
msgstr "ལས་འགན་འདི་བརྟག་ཞིབ་འབད་ཡོདཔ་དང་ སེལ་འཐུ་འབད་ཡོད་པའི་ནང་ཐིག་ནང་གྲུབ་འབྲས་མཐོང་ཚུགས།"
@@ -11554,7 +10788,6 @@ msgstr "<bookmark_value>གནས་གོང་ཚུ་ ཨིན་པུཊ
msgctxt ""
"validity.xhp\n"
"hd_id3156442\n"
-"22\n"
"help.text"
msgid "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\" name=\"Validity of Cell Contents\">Validity of Cell Contents</link></variable>"
msgstr "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\" name=\"Validity of Cell Contents\">ནང་ཐིག་ནང་དོན་གྱི་ནུས་ལྡན་དུས་ཚོད་</link></variable>"
@@ -11563,7 +10796,6 @@ msgstr "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\" n
msgctxt ""
"validity.xhp\n"
"par_id3156283\n"
-"2\n"
"help.text"
msgid "For each cell, you can define entries to be valid. Invalid entries to a cell will be rejected."
msgstr "ནང་ཐིག་རེ་རེ་དོན་ལུ་ ཁྱོད་ཀྱིས་ཐོ་བཀོད་ཚུ་ནུས་ལྡན་བཟོ་ནིའི་དོན་ལས་ངེས་འཛིན་འབད་ཚུགས། ནང་ཐིག་ཅིག་ལུ་ནུས་མེད་ཐོ་བཀོད་ཚུ་དང་ལེན་སྤངམ་ཨིན།"
@@ -11572,7 +10804,6 @@ msgstr "ནང་ཐིག་རེ་རེ་དོན་ལུ་ ཁྱོ
msgctxt ""
"validity.xhp\n"
"par_id3145252\n"
-"3\n"
"help.text"
msgid "The validity rule is activated when a new value is entered. If an invalid value has already been inserted into the cell, or if you insert a value in the cell either with drag-and-drop or by copying and pasting, the validity rule will not take effect."
msgstr "ནུས་ལྡན་དུས་ཚོད་ཀྱི་ལམ་ལུགས་འདི་ གནས་གོང་གསརཔ་འདི་ཐོ་བཀོད་འབད་ཡོད་པའི་སྐབས་ ཤུགས་ལྡན་བཟོ་ཡོད། ནུས་མེད་གནས་གོང་ཅིག་ཧེ་མ་ལས་རང་ནང་ཐིག་ནང་ལུ་བཙུགས་ཡོདཔ་ཨིན་པ་ཅིན་ ཡང་ན་ཁྱོད་ཀྱིས་ གནས་གོང་ཅིག་ནང་ཐིག་ནང་ལུ་ ཡང་ཅིན་འདྲུད་-དང་-བཀོག་བཞག་གིས་ ཡང་ན་འདྲ་བཤུས་དང་སྦྱར་བའི་ཐོག་ བཙུགསཔ་ཨིན་པ་ཅིན་ ནུས་ལྡན་དུས་ཚོད་ལམ་ལུགས་འདི་ནུས་པ་མི་འཐོབ།"
@@ -11589,7 +10820,6 @@ msgstr "ཁྱོད་ཀྱིས་<emph>ལག་ཆས་ཚུ་ - སྐ
msgctxt ""
"validity.xhp\n"
"hd_id3155603\n"
-"5\n"
"help.text"
msgid "Using Cell Contents Validity"
msgstr "ནང་ཐིག་ནང་དོན་གྱི་ནུས་ལྡན་དུས་ཚོད་ ལག་ལེན་འཐབ་དོ།"
@@ -11598,7 +10828,6 @@ msgstr "ནང་ཐིག་ནང་དོན་གྱི་ནུས་ལྡ
msgctxt ""
"validity.xhp\n"
"par_id3155959\n"
-"6\n"
"help.text"
msgid "Select the cells for which you want to define a new validity rule."
msgstr "ཁྱོད་ཀྱིས་ནུས་ལྡན་དུས་ཚོད་ལམ་ལུགས་གསརཔ་ཅིག་ངེས་འཛིན་འབད་ནི་ཨིན་མི་གི་དོན་ལུ་ ནང་ཐིག་འདི་སེལ་འཐུ་འབད།"
@@ -11607,7 +10836,6 @@ msgstr "ཁྱོད་ཀྱིས་ནུས་ལྡན་དུས་ཚོ
msgctxt ""
"validity.xhp\n"
"par_id3148837\n"
-"8\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Data - Validity</item>."
msgstr "<item type=\"menuitem\">གནད་སྡུད་ - ནུས་ལྡན་དུས་ཚོད་</item> གདམ་ཁ་རྐྱབས།"
@@ -11616,7 +10844,6 @@ msgstr "<item type=\"menuitem\">གནད་སྡུད་ - ནུས་ལྡ
msgctxt ""
"validity.xhp\n"
"par_id3156020\n"
-"9\n"
"help.text"
msgid "On the <emph>Criteria</emph> tab page, enter the conditions for new values entered into cells."
msgstr "<emph>ཁྱད་ཚད་</emph> མཆོང་ལྡེ་ཤོག་ལེབ་གུ་ལུ་ ནང་ཐིག་ནང་ལུ་ཐོ་བཀོད་འབད་ཡོད་པའི་གནས་གོང་གསརཔ་ཚུ་གི་དོན་ལུ་ གནས་སྟངས་གསརཔ་འདི་ཐོ་བཀོད་འབད།"
@@ -11625,7 +10852,6 @@ msgstr "<emph>ཁྱད་ཚད་</emph> མཆོང་ལྡེ་ཤོག
msgctxt ""
"validity.xhp\n"
"par_id3159208\n"
-"10\n"
"help.text"
msgid "In the <emph>Allow</emph> field, select an option."
msgstr "<emph>འབད་བཅུག་</emph> ས་སྒོ་ནང་ལུ་ གདམ་ཁ་ཅིག་སེལ་འཐུ་འབད།"
@@ -11634,7 +10860,6 @@ msgstr "<emph>འབད་བཅུག་</emph> ས་སྒོ་ནང་ལ
msgctxt ""
"validity.xhp\n"
"par_id3153011\n"
-"11\n"
"help.text"
msgid "If you select \"Whole Numbers\", values such as \"12.5\" are not allowed. Choosing \"Date\" allows date information both in the local date format as well as in the form of a <link href=\"text/sbasic/shared/03030101.xhp\" name=\"serial date\">serial date</link>. Similarly, the \"Time\" condition permits time values such as \"12:00\" or serial time numbers. \"Text Length\" stipulates that cells are allowed to contain text only."
msgstr "ཁྱོད་ཀྱིས་ \"Whole Numbers\" སེལ་འཐུ་འབདཝ་ཨིན་པ་ཅིན་ གནས་གོང་ དཔེར་ན་ \"12.5\" བཟུམ་ཚུ་འབད་མི་ཆོག། \"Date\" གདམ་ཁ་རྐྱབས་ནི་འདི་གིས་ ཉེ་གནས་ཚེས་གྲངས་རྩ་སྒྲིག་དང་ <link href=\"text/sbasic/shared/03030101.xhp\" name=\"serial date\">རྒྱུན་རིམ་ཚེས་གྲངས་</link> ཅིག་གི་འབྲི་ཤོག་གཉིས་ཆ་རང་ནང་ལུ་ ཚེས་གྲངས་བརྡ་དོན་འདི་འབད་བཅུགཔ་ཨིན། དེ་དང་ཆ་འདྲཝ་སྦེ་ \"Time\" སྟངས་ཀྱིས་ དུས་ཚོད་གནས་གོང་ དཔེར་ན་ \"12:00\" བཟུམ་ཡང་ན་ རྒྱུན་རིམ་དུས་ཚོད་གྲངས་བཟུམ་ཚུ་ལུ་གནང་བ་བྱིནམ་ཨིན། \"Text Length\" གིས་ ནང་ཐིག་ཚུ་ ཚིག་ཡིག་དག་པ་ཅིག་ནང་རྐྱངམ་ཅིག་འབད་ཆོགཔ་སྦེ་ཆ་རྐྱེན་བཀོདཔ་ཨིན།"
@@ -11651,7 +10876,6 @@ msgstr "\"List\" འདི་ ནུས་ལྡན་ཐོ་བཀོད་
msgctxt ""
"validity.xhp\n"
"par_id3149317\n"
-"13\n"
"help.text"
msgid "Select the next condition under <emph>Data</emph>. According to what you choose, additional options will be selectable."
msgstr "ཤུལ་མའི་གནས་སྟངས་འདི་ <emph>གནད་སྡུད་</emph>གི་འོག་ལུ་སེལ་འཐུ་འབད། ཁྱོད་ཀྱིས་གདམ་ཁ་རྐྱབས་མི་དང་འཁྲིལ་ཏེ་ ཁ་སྐོང་གདམ་ཁ་འདི་སེལ་འཐུ་འབད་བཏུབ་ཨིན།"
@@ -11660,7 +10884,6 @@ msgstr "ཤུལ་མའི་གནས་སྟངས་འདི་ <emph>
msgctxt ""
"validity.xhp\n"
"par_id3151389\n"
-"15\n"
"help.text"
msgid "After you have determined the conditions for cell validity, you can use the other two tab pages to create message boxes:"
msgstr "ཁྱོད་ཀྱིས་གནས་སྟངས་འདི་ ནང་ཐིག་ནུས་ལྡན་དུས་ཚོད་ཀྱི་དོན་ལུ་ གཏན་འབེབས་བཟོ་བའི་ཤུལ་ལུ་ ཁྱོད་ཀྱིས་ གཞན་མི་མཆོང་ལྡེ་ཤོག་ལེབ་གཉིསཔ་འདི་ འཕྲིན་དོན་སྒྲོམ་ཚུ་གསར་བསྐྲུན་འབད་ནིའི་དོན་ལས་ ལག་ལེན་འཐབ་བཏུབ་:"
@@ -11669,7 +10892,6 @@ msgstr "ཁྱོད་ཀྱིས་གནས་སྟངས་འདི་
msgctxt ""
"validity.xhp\n"
"par_id3159261\n"
-"16\n"
"help.text"
msgid "On the <emph>Input Help</emph> tab page, enter the title and the text of the tip, which will then be displayed if the cell is selected."
msgstr "<emph>Input Help</emph> མཆོང་ལྡེ་ཤོག་ལེབ་གུ་ མགོ་མིང་དང་ཕན་བསླབ་ཀྱི་ཚིག་ཡིག་བཙུགས། དེ་ཡང་ནང་ཐིག་འདི་སེལ་འཐུ་འབད་ཡོད་པ་ཅིན་ བཀྲམ་སྟོན་འབད་ནི་ཨིན།"
@@ -11678,7 +10900,6 @@ msgstr "<emph>Input Help</emph> མཆོང་ལྡེ་ཤོག་ལེབ
msgctxt ""
"validity.xhp\n"
"par_id3156396\n"
-"17\n"
"help.text"
msgid "On the <emph>Error Alert</emph> tab page, select the action to be carried out in the event of an error."
msgstr "<emph>འཛོལ་བའི་དྲན་བརྡ་</emph> མཆོང་ལྡེ་ཤོག་ལེབ་གུ་ འབྱུང་ལས་ཀྱི་འཛོལ་བ་ནང་འབད་ནི་ཨིན་པའི་བྱ་བ་ སེལ་འཐུ་འབད།"
@@ -11687,7 +10908,6 @@ msgstr "<emph>འཛོལ་བའི་དྲན་བརྡ་</emph> མཆ
msgctxt ""
"validity.xhp\n"
"par_id3147416\n"
-"18\n"
"help.text"
msgid "If you select \"Stop\" as the action, invalid entries are not accepted, and the previous cell contents are retained."
msgstr "ཁྱོད་ཀྱིས་ \"Stop\" འདི་བྱ་བ་སྦེ་སེལ་འཐུ་འབད་བ་ཅིན་ ནུས་མེད་ཐོ་བཀོད་ཚུ་དང་ལེན་མི་འབད་ནི་ཨིནམ་དང་ ཧེ་མའི་ནང་ཐིག་ནང་དོན་ཚུ་ཡང་ བདག་བཟུང་འབད་འོང་།"
@@ -11696,7 +10916,6 @@ msgstr "ཁྱོད་ཀྱིས་ \"Stop\" འདི་བྱ་བ་ས
msgctxt ""
"validity.xhp\n"
"par_id3150033\n"
-"19\n"
"help.text"
msgid "Select \"Warning\" or \"Information\" to display a dialog in which the entry can either be canceled or accepted."
msgstr "\"Warning\" ཡང་ན་ \"Information\" འདི་ ཐོ་བཀོད་ཚུ་ཡང་ཅིན་ཆ་མེད་གཏང་ནི་ཡང་དང་ལེན་འབད་བཏུབ་མི་ ཌའི་ལོག་ཅིག་བཀྲམ་སྟོན་འབད་ནིའི་དོན་ལས་ སེལ་འཐུ་འབད།"
@@ -11705,7 +10924,6 @@ msgstr "\"Warning\" ཡང་ན་ \"Information\" འདི་ ཐོ་བཀ
msgctxt ""
"validity.xhp\n"
"par_id3149947\n"
-"20\n"
"help.text"
msgid "If you select \"Macro\", then by using the <emph>Browse</emph> button you can specify a macro to be run in the event of an error."
msgstr "\"Macro\" སེལ་འཐུ་འབད་བ་ཅིན་ <emph>Browse</emph> ཨེབ་རྟ་འདི་ལག་ལེན་འཐབ་པའི་ཐོག་ལས་ འཛོལ་བའི་བྱུང་ལས་ནང་གཡོག་བཀོལ་ནི་ལུ་ མེ་ཀོརོ་ཅིག་གསལ་བཀོད་འབད་བཏུབ།"
@@ -11714,7 +10932,6 @@ msgstr "\"Macro\" སེལ་འཐུ་འབད་བ་ཅིན་ <emph>B
msgctxt ""
"validity.xhp\n"
"par_id3149011\n"
-"35\n"
"help.text"
msgid "To display the error message, select <emph>Show error message when invalid values are entered</emph>."
msgstr "འཛོལ་བའི་འཕྲིན་དོན་འདི་བཀྲམ་སྟོན་འབད་ནིའི་དོན་ལས་ <emph> ནུས་མེད་གནས་གོང་ཚུ་ཐོ་བཀོད་འབད་ཡོད་པའི་སྐབས་ འཛོལ་བའི་འཕྲིན་དོན་སྟོན་</emph> སེལ་འཐུ་འབད།"
@@ -11723,7 +10940,6 @@ msgstr "འཛོལ་བའི་འཕྲིན་དོན་འདི་བ
msgctxt ""
"validity.xhp\n"
"par_id3148586\n"
-"21\n"
"help.text"
msgid "After changing the action for a cell on the <emph>Error Alert</emph> tab page and closing the dialog with OK, you must first select another cell before the change takes effect."
msgstr "ནང་ཐིག་གི་དོན་ལུ་ <emph>Error Alert</emph>མཆོང་ལྡེ་ཤོག་ལེབ་གུ་ བྱ་བ་འདི་བསྒྱུར་བཅོས་འབད་ཞིནམ་ལས་དང་ བཏུབ་གི་ཐོག་ལས་ཌའི་ལོག་ཁ་བསྡམ་པའི་ཤུལ་ལུ་ འགྱུར་བའི་ནུས་པ་མ་འཐོབ་ཀྱི་ཧེ་མ་ལས་ར་ ཁྱོད་ཀྱིས་དང་པ་ར་ནང་ཐིག་གཞན་ཅིག་སེལ་འཐུ་འབད་དགོ"
@@ -11732,7 +10948,6 @@ msgstr "ནང་ཐིག་གི་དོན་ལུ་ <emph>Error Alert</e
msgctxt ""
"validity.xhp\n"
"par_id3154805\n"
-"30\n"
"help.text"
msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Data - Validity\">Data - Validity</link>"
msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Data - Validity\">གནད་སྡུད་ - ནུས་ལྡན་དུས་ཚོད་</link>"
@@ -11757,7 +10972,6 @@ msgstr "<bookmark_value>ནང་ཐིག་ཚུ་ མིང་ཚུ་ང
msgctxt ""
"value_with_name.xhp\n"
"hd_id3147434\n"
-"1\n"
"help.text"
msgid "<variable id=\"value_with_name\"><link href=\"text/scalc/guide/value_with_name.xhp\" name=\"Naming Cells\">Naming Cells</link></variable>"
msgstr "<variable id=\"value_with_name\"><link href=\"text/scalc/guide/value_with_name.xhp\" name=\"Naming Cells\">མིང་བཏགས་ནང་ཐིག་</link></variable>"
@@ -11870,7 +11084,6 @@ msgstr "<emph>མིང་ཚུ་ངེས་འཛིན་འབད་</emph
msgctxt ""
"value_with_name.xhp\n"
"par_id3153954\n"
-"3\n"
"help.text"
msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
msgstr ""
@@ -11879,7 +11092,6 @@ msgstr ""
msgctxt ""
"value_with_name.xhp\n"
"par_id3156283\n"
-"4\n"
"help.text"
msgid "Type the name of the selected area in the <emph>Name</emph> field. Click <emph>Add</emph>. The newly defined name appears in the list below. Click OK to close the dialog."
msgstr "<emph>མིང་</emph> ས་སྒོ་ནང་ སེལ་འཐུ་འབད་ཡོད་པའི་མངའ་ཁོངས་ཀྱི་མིང་ ཡིག་དཔར་རྐྱབས། <emph>ཁ་སྐོང་</emph> གུ་ཨེབ་གཏང་འབད། གསརཔ་འབད་ངེས་འཛིན་འབད་ཡོད་པའི་མིང་འདི་འོག་གི་ཐོ་ཡིག་ནང་འབྱུངམ་ཨིན། ཌའི་ལོག་ཁ་ཕྱེ་ནི་གི་དོན་ལས་ བཏུབ་ལུ་ཨེབ་གཏང་འབད།"
@@ -11896,7 +11108,6 @@ msgstr "ཁྱོད་ཀྱིས་ གཞན་མི་ནང་ཐིག
msgctxt ""
"value_with_name.xhp\n"
"par_id3154942\n"
-"5\n"
"help.text"
msgid "If you type the name in a formula, after the first few characters entered you will see the entire name as a tip."
msgstr "ཁྱོད་ཀྱིས་ མན་ངག་ནང་ལུ་ མིང་ཡིག་དཔར་རྐྱབ་པ་ཅིན་ ཡིག་འབྲུ་དང་པམ་ཚུ་ཐོ་བཀོད་འབད་བའི་ཤུལ་ལས་ མིང་ཧྲིལ་བུ་འདི་ཕན་བསླབ་ཅིག་སྦེ་མཐོང་འོང་།"
@@ -11905,7 +11116,6 @@ msgstr "ཁྱོད་ཀྱིས་ མན་ངག་ནང་ལུ་ མ
msgctxt ""
"value_with_name.xhp\n"
"par_id3154510\n"
-"6\n"
"help.text"
msgid "Press the Enter key in order to accept the name from the tip."
msgstr "ཕན་བསླབ་ནང་ལས་ མིང་དང་ལེན་འབད་ནི་གི་དོན་ལུ་ བཙུགས་ལྡེ་ལུ་ཨེབས།"
@@ -11914,7 +11124,6 @@ msgstr "ཕན་བསླབ་ནང་ལས་ མིང་དང་ལེ
msgctxt ""
"value_with_name.xhp\n"
"par_id3150749\n"
-"7\n"
"help.text"
msgid "If more than one name starts with the same characters, you can scroll through all the names using the Tab key."
msgstr "མིང་ལེ་ཤ་ལུ་ ཡིག་འབྲུ་ཅོག་འཐདཔ་གིས་འགོ་བཙུགས་པ་ཅིན་ མཆོང་ལྡེ་གི་ཐོག་ལས་ མིང་ཆ་མཉམ་ལས་བརྒྱུད་དེ་ བཤུད་སྒྲིལ་འབད་བཏུབ།"
@@ -11923,7 +11132,6 @@ msgstr "མིང་ལེ་ཤ་ལུ་ ཡིག་འབྲུ་ཅོ
msgctxt ""
"value_with_name.xhp\n"
"par_id3153711\n"
-"8\n"
"help.text"
msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
msgstr ""
@@ -11948,7 +11156,6 @@ msgstr "<bookmark_value>ཨེཅ་ཊི་ཨེམ་ཨེལ་ ཝེབ
msgctxt ""
"webquery.xhp\n"
"hd_id3125863\n"
-"2\n"
"help.text"
msgid "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\" name=\"Inserting External Data in Table (WebQuery)\">Inserting External Data in Table (WebQuery)</link></variable>"
msgstr "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\" name=\"Inserting External Data in Table (WebQuery)\">ཐིག་ཁྲམ་ (WebQuery)ནང་ ཕྱིའི་གནད་སྡུད་བཙུགས་དོ་</link></variable>"
@@ -11957,7 +11164,6 @@ msgstr "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\" n
msgctxt ""
"webquery.xhp\n"
"par_id3155131\n"
-"3\n"
"help.text"
msgid "With the help of the <emph>Web Page Query ($[officename] Calc)</emph> import filter, you can insert tables from HTML documents in a Calc spreadsheet."
msgstr "<emph>ཝེབ་ཤོག་ལེབ་འདྲི་དཔྱད་ ($[officename] Calc)</emph> ནང་འདྲེན་ཚགས་མ་གི་ཐོག་ལས་ ཁྱོད་ཀྱིས་ ཐིག་ཁྲམ་ཚུ་ ཨེཅ་ཊི་ཨེམ་ཨེལ་ ཡིག་ཆའི་ནང་ལས་ ཀེལཀི་ཤོག་ཁྲམ་ཅིག་ནང་ལུ་ བཙུགས་བཏུབ།"
@@ -11966,7 +11172,6 @@ msgstr "<emph>ཝེབ་ཤོག་ལེབ་འདྲི་དཔྱད་
msgctxt ""
"webquery.xhp\n"
"par_id3148575\n"
-"4\n"
"help.text"
msgid "You can use the same method to insert ranges defined by name from a Calc or Microsoft Excel spreadsheet."
msgstr "ཀེལཀི་ ཡངན་ མའི་ཀོརོ་སོཕཊི་ཨེག་སིལ་ཤོག་ཁྲམ་ནང་ལས་ མིང་གིས་ངེས་འཛིན་འབད་ཡོད་པའི་ཁྱབ་ཚད་ཚུ་བཙུགས་ནི་གི་དོན་ལུ་ ཐབས་ལམ་ཅོག་འཐདཔ་ལགལེན་འཐབ་བཏུབ།"
@@ -11975,7 +11180,6 @@ msgstr "ཀེལཀི་ ཡངན་ མའི་ཀོརོ་སོཕཊ
msgctxt ""
"webquery.xhp\n"
"par_id3149664\n"
-"5\n"
"help.text"
msgid "The following insert methods are available:"
msgstr "འོག་གི་བཙུགས་པའི་ཐབས་ལམ་ཚུ་ འཐོབ་ཆོག་ཆོག་ཡོད་:"
@@ -11984,7 +11188,6 @@ msgstr "འོག་གི་བཙུགས་པའི་ཐབས་ལམ་
msgctxt ""
"webquery.xhp\n"
"hd_id3146976\n"
-"6\n"
"help.text"
msgid "Inserting by Dialog"
msgstr "ཌའི་ལོག་གི་ཐོག་ལས་ བཙུགས་ནི།"
@@ -11993,7 +11196,6 @@ msgstr "ཌའི་ལོག་གི་ཐོག་ལས་ བཙུགས
msgctxt ""
"webquery.xhp\n"
"par_id3154319\n"
-"7\n"
"help.text"
msgid "Set the cell cursor at the cell where the new content will be inserted."
msgstr "ནང་དོན་གསརཔ་ཅིག་བཙུགས་ནི་ཨིན་པའི་ནང་ཐིག་ལུ་ ནང་ཐིག་འོད་རྟགས་ གཞི་སྒྲིག་འབད།"
@@ -12002,13 +11204,11 @@ msgstr "ནང་དོན་གསརཔ་ཅིག་བཙུགས་ནི
msgctxt ""
"webquery.xhp\n"
"par_id3145750\n"
-"8\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."
msgstr ""
#: webquery.xhp
-#, fuzzy
msgctxt ""
"webquery.xhp\n"
"par_id3149958\n"
@@ -12020,7 +11220,6 @@ msgstr "ཨེཅ་ཊི་ཨེམ་ཨེལ་ ཡིག་ཆའི་
msgctxt ""
"webquery.xhp\n"
"par_id3149400\n"
-"10\n"
"help.text"
msgid "In the large list box of the dialog, select the named ranges or tables you want to insert."
msgstr "ཌའི་ལོག་གི་ཐོ་ཡིག་སྒྲོམ་སྦོམ་འདི་ནང་ ཁྱོད་ཀྱིས་བཙུགས་དགོ་མནོ་མི་ མིང་བཏགས་ཡོད་པའི་ཁྱབ་ཚད་ ཡངན་ ཐིག་ཁྲམ་ཚུ་སེལ་འཐུ་འབད།"
@@ -12029,7 +11228,6 @@ msgstr "ཌའི་ལོག་གི་ཐོ་ཡིག་སྒྲོམ་
msgctxt ""
"webquery.xhp\n"
"par_id3155064\n"
-"11\n"
"help.text"
msgid "You can also specify that the ranges or tables are updated every n seconds."
msgstr "དེ་མ་ཚད་ཁྱོད་ཀྱིས་ ཁྱབ་ཚད་ ཡང་ན་ ཐིག་ཁྲམ་ཚུ་ ཨེན་ དཀར་ཆག་རེ་རེའི་ནང་དུས་མཐུན་བཟོཝ་ཨིནམ་འབད་ གསལ་བཀོད་འབད་ཚུགས།"
@@ -12038,7 +11236,6 @@ msgstr "དེ་མ་ཚད་ཁྱོད་ཀྱིས་ ཁྱབ་ཚ
msgctxt ""
"webquery.xhp\n"
"par_id3155443\n"
-"30\n"
"help.text"
msgid "The import filter can create names for cell ranges on the fly. As much formatting as possible is retained, while the filter intentionally does not load any images."
msgstr "ནང་འདྲེན་ཚགས་མ་གིས་ འཕུར་ནི་ལུ་ནང་ཐིག་ཁྱབ་ཚད་ལུ་མིང་གསར་བསྐྲུན་འབད་བཏུབ་ཨིན། རྩ་སྒྲིག་འདི་ག་དེ་དྲག་དྲག་བདག་བཟུང་འབད་ཞིནམ་ལས་ ཚགས་མ་གིས་གཟུགས་བརྙན་གང་ཡང་མངོན་གསལ་མི་འབདཝ་ཨིན།"
@@ -12047,7 +11244,6 @@ msgstr "ནང་འདྲེན་ཚགས་མ་གིས་ འཕུར
msgctxt ""
"webquery.xhp\n"
"hd_id3149021\n"
-"12\n"
"help.text"
msgid "Inserting by Navigator"
msgstr "འགྲུལ་བསྐྱོདཔ་གིས་ བཙུགས་དོ།"
@@ -12056,7 +11252,6 @@ msgstr "འགྲུལ་བསྐྱོདཔ་གིས་ བཙུགས
msgctxt ""
"webquery.xhp\n"
"par_id3153965\n"
-"14\n"
"help.text"
msgid "Open two documents: the $[officename] Calc spreadsheet in which the external data is to be inserted (target document) and the document from which the external data derives (source document)."
msgstr "ཡིག་ཆ་གཉིས་ཁ་ཕྱེ་: $[officename] ཕྱི་ཁའི་གནད་སྡུད་བཙུགས་དགོཔ་ཨིན་པའི་(དམིགས་གཏད་ཡིག་ཆ་)ཀེལཀི་ཤོག་ཁྲམ་དང་ ཕྱི་ཁའི་གནད་སྡུད་འབྱུངམ་ཨིན་པའི་(འབྱུང་ཁུངས་ཡིག་ཆ་):"
@@ -12065,7 +11260,6 @@ msgstr "ཡིག་ཆ་གཉིས་ཁ་ཕྱེ་: $[officename] ཕ
msgctxt ""
"webquery.xhp\n"
"par_id3150205\n"
-"16\n"
"help.text"
msgid "In the target document open the Navigator."
msgstr "དམིགས་གཏད་ཡིག་ཆ་ནང་ འགྲུལ་བསྐྱོད་ཁ་ཕྱེ།"
@@ -12074,7 +11268,6 @@ msgstr "དམིགས་གཏད་ཡིག་ཆ་ནང་ འགྲུ
msgctxt ""
"webquery.xhp\n"
"par_id3152990\n"
-"18\n"
"help.text"
msgid "In the lower combo box of the Navigator select the source document. The Navigator now shows the range names and database ranges or the tables contained in the source document."
msgstr "འགྲུལ་བསྐྱོད་པའི་འོག་གི་ཀོ་ལོམ་བོ་སྒྲོམ་ནང་ འབྱུང་ཁུངས་ཡིག་ཆ་སེལ་འཐུ་འབད། འགྲུལ་བསྐྱོད་པ་གིས་ ད་འབདན་ ཁྱབ་ཚད་མིང་དང་གནད་སྡུད་གཞི་རྟེན་གྱི་ཁྱབ་ཚད་ཚུ་ ཡང་ན་ འབྱུང་ཁུངས་ཡིག་ཆ་ནང་ཡོད་པའི་ཐིག་ཁྲམ་ཚུ་སྟོནམ་ཨིན།"
@@ -12083,16 +11276,14 @@ msgstr "འགྲུལ་བསྐྱོད་པའི་འོག་གི་
msgctxt ""
"webquery.xhp\n"
"par_id3148842\n"
-"20\n"
"help.text"
-msgid "In the Navigator select the <emph>Insert as link</emph> drag mode <image id=\"img_id3152985\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Icon</alt></image>."
-msgstr "འགྲུལ་བསྐྱོད་ནང་ <emph>འབྲེལ་ལམ་བཟུམ་སྦེ་བཙུགས་</emph> འདྲུད་ནིའི་ཐབས་ལམ་ <image id=\"img_id3152985\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">ངོས་པར་</alt></image> སེལ་འཐུ་འབད།"
+msgid "In the Navigator select the <emph>Insert as link</emph> drag mode <image id=\"img_id3152985\" src=\"sw/res/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Icon</alt></image>."
+msgstr ""
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
"par_id3157978\n"
-"22\n"
"help.text"
msgid "Drag the desired external data from the Navigator into the target document."
msgstr "རེ་འདུན་བསྐྱེད་ཡོད་པའི་ཕྱི་ཁའི་གནད་སྡུད་འདི་ འགྲུལ་བསྐྱོད་ནང་ལས་ དམིགས་གཏད་ཡིག་ཆ་ནང་འདྲུད།"
@@ -12101,7 +11292,6 @@ msgstr "རེ་འདུན་བསྐྱེད་ཡོད་པའི་ཕ
msgctxt ""
"webquery.xhp\n"
"par_id3144768\n"
-"23\n"
"help.text"
msgid "If you have loaded an HTML document with the <emph>Web Page Query</emph> filter as the source document, you will find the tables in the Navigator, named continuously from \"HTML_table1\" onwards, and also two range names that have been created:"
msgstr "ཁྱོད་ཀྱིས་ <emph>Web Page Query</emph> ཚགས་མ་དང་གཅིག་ཁར་ འབྱུང་ཁུངས་ཡིག་ཆ་བཟུམ་སྦེ་ ཨེཅ་ཊི་ཨེམ་ཨེལ་ཡིག་ཆ་ཅིག་མངོན་གསལ་འབད་ཡོད་པ་ཅིན་ \"HTML_table1\"ནང་ལས་འགོ་བཟུང་སྟེ་འགྲུལ་བསྐྱོད་ནང་ཐིག་ཁྲམ་ཚུ་དང་ དེ་ལས་གསར་བསྐྲུན་འབད་ཡོད་པའི་ཁྱབ་ཚད་མིང་གཉིས་ མིང་བཏགས་ཏེ་འཕྲོ་མཐུད་དེ་ར་མཐོང་འོང་:"
@@ -12110,7 +11300,6 @@ msgstr "ཁྱོད་ཀྱིས་ <emph>Web Page Query</emph> ཚགས་
msgctxt ""
"webquery.xhp\n"
"par_id3152873\n"
-"24\n"
"help.text"
msgid "<item type=\"literal\">HTML_all</item> - designates the entire document"
msgstr "<item type=\"literal\"> ཨེཅ་ཊི་ཨེམ་ཨེལ་_ཆ་མཉམ་</item> - ཡིག་ཆ་ཧྲིལ་བུ་ བཀོད་སྒྲིག་འབདཝ་ཨིན།"
@@ -12119,7 +11308,6 @@ msgstr "<item type=\"literal\"> ཨེཅ་ཊི་ཨེམ་ཨེལ་_
msgctxt ""
"webquery.xhp\n"
"par_id3149897\n"
-"25\n"
"help.text"
msgid "<item type=\"literal\">HTML_tables</item> - designates all HTML tables in the document"
msgstr "<item type=\"literal\">ཨེཅ་ཊི་ཨེམ་ཨེལ་_ ཐིག་ཁྲམ་ཚུ་</item> - ཨེཅ་ཊི་ཨེམ་ཨེལ་ ཐིག་ཁྲམ་ཚུ་ཆ་མཉམ་ ཡིག་ཆའི་ནང་བཀོད་སྒྲིག་འབདཝ་ཨིན།"
@@ -12128,7 +11316,6 @@ msgstr "<item type=\"literal\">ཨེཅ་ཊི་ཨེམ་ཨེལ་_
msgctxt ""
"webquery.xhp\n"
"hd_id3149126\n"
-"26\n"
"help.text"
msgid "Editing the external data"
msgstr "ཕྱི་ཁའི་གནད་སྡུད་ རྩ་སྒྲིག་འབད་དོ།"
@@ -12137,7 +11324,6 @@ msgstr "ཕྱི་ཁའི་གནད་སྡུད་ རྩ་སྒྲ
msgctxt ""
"webquery.xhp\n"
"par_id3159228\n"
-"27\n"
"help.text"
msgid "Open <emph>Edit - Links</emph>. Here you can edit the link to the external data."
msgstr "<emph>ཞུན་དག་ - འབྲེལ་ལམ་</emph> ཁ་ཕྱེ། འདི་ནང་ ཁྱོད་ཀྱིས་ འབྲེལ་ལམ་འདི་ ཕྱིའི་གནད་སྡུད་ལུ་ཞུན་དག་འབད་བཏུབ།"
@@ -12146,7 +11332,6 @@ msgstr "<emph>ཞུན་དག་ - འབྲེལ་ལམ་</emph> ཁ་
msgctxt ""
"webquery.xhp\n"
"par_id3154650\n"
-"28\n"
"help.text"
msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External data dialog\">External data dialog</link>"
msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"External data dialog\">ཕྱི་ཁའི་གནད་སྡུད་ཌའི་ལོག་</link>"
@@ -12171,7 +11356,6 @@ msgstr "<bookmark_value>ལོ་ ༢-ཨང་ཡིག</bookmark_value><bookm
msgctxt ""
"year2000.xhp\n"
"hd_id3150439\n"
-"18\n"
"help.text"
msgid "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\" name=\"19xx/20xx Years\">19xx/20xx Years</link></variable>"
msgstr "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\" name=\"19xx/20xx Years\">ལོ་ 19xx/20xx</link></variable>"
@@ -12180,7 +11364,6 @@ msgstr "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\" n
msgctxt ""
"year2000.xhp\n"
"par_id3151116\n"
-"17\n"
"help.text"
msgid "The year in a date entry is often entered as two digits. Internally, the year is managed by $[officename] as four digits, so that in the calculation of the difference from 1/1/99 to 1/1/01, the result will correctly be two years."
msgstr "ཚེས་གྲངས་ཐོ་འགོད་ནང་འཕྲལ་འཕྲལ་ར་ ལོ་འདི་ཨང་ཡིག་གཉིས་ལྡན་སྦེ་བཙུགསཔ་ཨིན། ནང་འཁོད་སྦེ་ ལོ་འདི་ ཨང་ཡིག་བཞི་སྦེ་ $[officename]གིས་ འཛིན་སྐྱོང་འཐབ་ཨིན། དེ་འབདཝ་ལས་ ཁྱད་པར་རྩིས་སྟོན་ ༡/༡/༩༩ ལས་ ༡/༡/༠༡གི་བར་ན་ གྲུབ་འབྲས་འདི་ལོ་གཉིས་ལུ་བདེན་པ་ཡོད།"
@@ -12189,7 +11372,6 @@ msgstr "ཚེས་གྲངས་ཐོ་འགོད་ནང་འཕྲལ
msgctxt ""
"year2000.xhp\n"
"par_id3154011\n"
-"19\n"
"help.text"
msgid "Under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - General</emph> you can define the century that is used when you enter a year with only two digits. The default is 1930 to 2029."
msgstr ""
@@ -12198,7 +11380,6 @@ msgstr ""
msgctxt ""
"year2000.xhp\n"
"par_id3150010\n"
-"20\n"
"help.text"
msgid "This means that if you enter a date of 1/1/30 or higher, it will be treated internally as 1/1/1930 or higher. All lower two-digit years apply to the 20xx century. So, for example, 1/1/20 is converted into 1/1/2020."
msgstr "འདི་ཡང་ ཁྱོད་ཀྱིས་ཚེས་གྲངས་ ༡/༡/༣༠ ཡངན་ དེ་ལས་མཐོཝ་ཅིག་བཙུགས་པ་ཅིན་ དེ་ནང་འཁོད་ལུ་ ༡/༡/༡༩༣༠ ཡང་ན་ དེ་ལས་མཐོཝ་སྦེ་རྩིསཝ་ཨིན། ཨང་ཡིག་དམའ་མི་གཉིསཔ་འདི་ ༢༠xx ལོ་བརྒྱ་ལུ་འཇུགཔ་ཨིན། དཔེར་ན་ ༡/༡/༢༠ འདི་ ༡/༡/༢༠༢༠ ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན།"
diff --git a/source/dz/helpcontent2/source/text/schart.po b/source/dz/helpcontent2/source/text/schart.po
index fa782e822d1..b14ad023f43 100644
--- a/source/dz/helpcontent2/source/text/schart.po
+++ b/source/dz/helpcontent2/source/text/schart.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2013-05-24 08:27+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"PO-Revision-Date: 2015-11-10 20:50+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1369384071.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1447188630.000000\n"
#: main0000.xhp
msgctxt ""
@@ -36,7 +36,6 @@ msgstr ""
msgctxt ""
"main0000.xhp\n"
"hd_id3148664\n"
-"1\n"
"help.text"
msgid "<variable id=\"chart_main\"><link href=\"text/schart/main0000.xhp\" name=\"Charts in $[officename]\">Using Charts in %PRODUCTNAME</link></variable>"
msgstr "<variable id=\"chart_main\"><link href=\"text/schart/main0000.xhp\" name=\"Charts in $[officename]\"> %PRODUCTNAME ནང་ལུ་དཔེ་རིས་ཚུ་ལག་ལེན་འཐབ་འདི</link></variable>"
@@ -45,7 +44,6 @@ msgstr "<variable id=\"chart_main\"><link href=\"text/schart/main0000.xhp\" name
msgctxt ""
"main0000.xhp\n"
"par_id3154685\n"
-"2\n"
"help.text"
msgid "<variable id=\"chart\">$[officename] lets you present data graphically in a chart, so that you can visually compare data series and view trends in the data. You can insert charts into spreadsheets, text documents, drawings, and presentations. </variable>"
msgstr ""
@@ -54,7 +52,6 @@ msgstr ""
msgctxt ""
"main0000.xhp\n"
"hd_id3153143\n"
-"5\n"
"help.text"
msgid "Chart Data"
msgstr "དཔེ་རིས་གནད་སྡུད།"
@@ -735,7 +732,6 @@ msgstr "$[officename] དཔེ་རིས་ཁྱད་རྣམ་ཚུ།"
msgctxt ""
"main0503.xhp\n"
"hd_id3150543\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/main0503.xhp\" name=\"$[officename] Chart Features\">$[officename] Chart Features</link>"
msgstr "<link href=\"text/schart/main0503.xhp\" name=\"$[officename] Chart Features\">$[officename] དཔེ་རིས་ཁྱད་རྣམ་ཚུ་</link>"
@@ -744,7 +740,6 @@ msgstr "<link href=\"text/schart/main0503.xhp\" name=\"$[officename] Chart Featu
msgctxt ""
"main0503.xhp\n"
"par_id3150868\n"
-"2\n"
"help.text"
msgid "Charts allow you to present data so that it is easy to visualize."
msgstr "དཔེ་རིས་ཚུ་གིས་ཁྱོད་ལུ་གནད་སྡུད་གསལ་སྟོན་འཇམ་ཏོག་ཏོ་མཐོངམ་སྦེ་་བཟོཝ་ཨིན།"
@@ -753,7 +748,6 @@ msgstr "དཔེ་རིས་ཚུ་གིས་ཁྱོད་ལུ་ག
msgctxt ""
"main0503.xhp\n"
"par_id3146974\n"
-"6\n"
"help.text"
msgid "You can create a chart from source data in a Calc spreadsheet or a Writer table. When the chart is embedded in the same document as the data, it stays linked to the data, so that the chart automatically updates when you change the source data."
msgstr "ཁྱོད་ཀྱིས་ཀེལཀི་ཤོག་ཁྲམ་ནང་ལས་གནད་སྡུད་འབྱུང་ཁུངས་ཡང་ན་ཐིག་ཁྲམ་རྩོམ་སྒྲིག་པ་ཅིག་གསར་་བསྐྲུན་འབད། ཁྱོད་ཀྱིས་གནད་སྡུད་འབྱུང་ཁུངས་འདི་བསྒྱུར་བཅོས་འབདཝ་ད་དཔེ་རིས་འདི་རང་བཞིན་གྱིས་དུས་མཐུན་བཟོ་འོང་ནི་ དཔེ་རིས་འདི་གནད་སྡུད་འདི་བཟུམ་སྦེ་ཡིག་ཆ་་གཅིག་ནང་ལུ་གནས འདིའི་གནད་སྡུད་ལུ་འབྲལ་མཐུད་འདི་ཡོདཔ་ཨིན།"
@@ -762,7 +756,6 @@ msgstr "ཁྱོད་ཀྱིས་ཀེལཀི་ཤོག་ཁྲམ་
msgctxt ""
"main0503.xhp\n"
"hd_id3153143\n"
-"7\n"
"help.text"
msgid "Chart Types"
msgstr "དཔེ་རིས་དབྱེ་བ་ཚུ།"
@@ -771,7 +764,6 @@ msgstr "དཔེ་རིས་དབྱེ་བ་ཚུ།"
msgctxt ""
"main0503.xhp\n"
"par_id3151112\n"
-"8\n"
"help.text"
msgid "Choose from a variety of 3D charts and 2D charts, such as bar charts, line charts, stock charts. You can change chart types with a few clicks of the mouse."
msgstr "༢་ཌི་དཔེ་རིས་ཚུ་དང་ ༣ཌི་དཔེ་རིས་ཚུའི་སྣ་ཁག་ནང་ལས་དེ་བཟུམ་སྦེ་ཕྲ་རིང་དཔེ་རིས་ཚུ་ གྱལ་རིམ་དཔེ་རིས་ཚུ་ ཅ་མཛོད་དཔེ་རིས་ཚུ་གདམ། ཁྱོད་ཀྱིས་དཔེ་རིས་དབྱེ་བ་ཚུ་དང་གཅིག་ཁར་མཱའུསི་འདིའི་ཨེབ་གཏང་དག་པ་ཅིག་གིས་བསྒྱུར་བཅོས་འབད་བཏུབ།"
@@ -780,7 +772,6 @@ msgstr "༢་ཌི་དཔེ་རིས་ཚུ་དང་ ༣ཌི་
msgctxt ""
"main0503.xhp\n"
"hd_id3149665\n"
-"10\n"
"help.text"
msgid "Individual Formatting"
msgstr "ངོ་རྐྱང་རྩ་སྒྲིག་འབད་དོ།"
@@ -789,7 +780,6 @@ msgstr "ངོ་རྐྱང་རྩ་སྒྲིག་འབད་དོ།
msgctxt ""
"main0503.xhp\n"
"par_id3156441\n"
-"11\n"
"help.text"
msgid "You can customize individual chart elements, such as axes, data labels, and legends, by right-clicking them in the chart, or with toolbar icons and menu commands."
msgstr "ཁྱོད་ཀྱིས་ངོ་རྐྱང་དཔེ་རིས་ཆ་ཤས་ཚུ་ དེ་བཟུམ་སྦེ་ཚད་ཐིག་ཚུ་ གནད་སྡུད་ཁ་ཡིག་ཚུ་ དང་གཏམ་རྒྱུད་ཚུ་ལུ་དཔེ་རིས་འདིའི་གཡས་ལུ་ཨེབ་གཏང་འབད་ཡང་ན་ལག་ཆས་ཕྲ་རིང་དང་གཅིག་ཁར་ངོས་དཔར་དང་དཀར་ཆག་ང་བརྡ་བཀོད་ཚུ་སྲོལ་སྒྲིག་འབད་བཏུབ།"
diff --git a/source/dz/helpcontent2/source/text/schart/00.po b/source/dz/helpcontent2/source/text/schart/00.po
index e772382b8cc..da9c4e64891 100644
--- a/source/dz/helpcontent2/source/text/schart/00.po
+++ b/source/dz/helpcontent2/source/text/schart/00.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2014-05-15 01:45+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"PO-Revision-Date: 2015-11-10 20:50+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1400118304.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1447188633.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -28,7 +28,6 @@ msgstr "ལས་འགན་འདི་འཛུལ་སྤྱོད་འབ
msgctxt ""
"00000004.xhp\n"
"hd_id3156023\n"
-"1\n"
"help.text"
msgid "<variable id=\"wie\">To access this function...</variable>"
msgstr "<variable id=\"wie\">ལས་འགན་འདི་འཛུལ་སྤྱོད་འབད་ནིའི་དོན་ལུ།... </variable>"
@@ -37,7 +36,6 @@ msgstr "<variable id=\"wie\">ལས་འགན་འདི་འཛུལ་ས
msgctxt ""
"00000004.xhp\n"
"par_id3150791\n"
-"9\n"
"help.text"
msgid "Choose <emph>View - Chart Data Table</emph> (Charts)"
msgstr "གདམ། <emph>Edit - Chart Data</emph> (Charts)"
@@ -46,7 +44,6 @@ msgstr "གདམ། <emph>Edit - Chart Data</emph> (Charts)"
msgctxt ""
"00000004.xhp\n"
"par_id3154686\n"
-"55\n"
"help.text"
msgid "On Formatting bar, click"
msgstr "རྩ་སྒྲིག་འབད་ནིའི་ཕྲ་རིང་གུར་ ཨེབ་གཏང་འབད།"
@@ -63,7 +60,6 @@ msgstr "<image id=\"img_id3147428\" src=\"cmd/sc_grid.png\" width=\"0.222inch\"
msgctxt ""
"00000004.xhp\n"
"par_id3154942\n"
-"11\n"
"help.text"
msgid "Chart Data"
msgstr "དཔེ་རིས་གནད་སྡུད།"
@@ -72,7 +68,6 @@ msgstr "དཔེ་རིས་གནད་སྡུད།"
msgctxt ""
"00000004.xhp\n"
"par_id3153160\n"
-"12\n"
"help.text"
msgid "<variable id=\"efgttl\">Choose <emph>Insert - Title </emph>(Charts)</variable>"
msgstr "<variable id=\"efgttl\">གདམ། <emph>བཙུགས-མགོ་མིང་།</emph>(དཔེ་རིས་ཚུ།) </variable>"
@@ -81,7 +76,6 @@ msgstr "<variable id=\"efgttl\">གདམ། <emph>བཙུགས-མགོ་
msgctxt ""
"00000004.xhp\n"
"par_id3149121\n"
-"13\n"
"help.text"
msgid "Choose <emph>Insert - Legend </emph>(Charts)"
msgstr "གདམ།<emph>བཙུགས་ - གཏམ་རྒྱུད།</emph>(དཔེ་རིས་ཚུ།)"
@@ -90,7 +84,6 @@ msgstr "གདམ།<emph>བཙུགས་ - གཏམ་རྒྱུད།</e
msgctxt ""
"00000004.xhp\n"
"par_id3155444\n"
-"56\n"
"help.text"
msgid "Choose <emph>Format - Legend - Position</emph> tab (Charts)"
msgstr "གདམ། <emph>རྩ་སྒྲིག-གཏམ་རྒྱུད་-གནས་ས། </emph> ཨེབ་ལྡེ། (དཔེ་རིས་ཚུ།)"
@@ -99,7 +92,6 @@ msgstr "གདམ། <emph>རྩ་སྒྲིག-གཏམ་རྒྱུད
msgctxt ""
"00000004.xhp\n"
"par_id3156385\n"
-"16\n"
"help.text"
msgid "Choose <emph>Insert - Data Labels </emph>(Charts)"
msgstr "གདམ། <emph>བཙུགས་ - གནད་སྡུད་ཁ་ཡིག་ཚུ།</emph>(དཔེ་རིས་ཚུ།)"
@@ -108,7 +100,6 @@ msgstr "གདམ། <emph>བཙུགས་ - གནད་སྡུད་ཁ
msgctxt ""
"00000004.xhp\n"
"par_id3147341\n"
-"68\n"
"help.text"
msgid "Choose <emph>Format - Format Selection - Data Point/Data Series - Data Labels</emph> tab (for data series and data point) (Charts)"
msgstr "གདམ་ཁ་རྐྱབས།<emph>རྩ་སྒྲིག་འབད། - དོངས་པོའི་རྒྱུ་དོངས་ཚུ། - གནད་སྡུད་ཀྱི་ས་ཚིགས།/གནད་སྡུད་ཀྱི་གྲལ་ཐིག - གནད་སྡུད་ཀྱི་ཁ་ཡིག་ཚུ།</emph> ཨེབ་ལྡེ། (གནད་སྡུད་གྲལ་ཐིག་དང་གནད་སྡུད་ས་ཚིགས་ཀྱི་དོན་ལུ།) (དཔེ་རིས་ཚུ།)"
@@ -117,7 +108,6 @@ msgstr "གདམ་ཁ་རྐྱབས།<emph>རྩ་སྒྲིག་འ
msgctxt ""
"00000004.xhp\n"
"par_id3149565\n"
-"69\n"
"help.text"
msgid "<variable id=\"efgaug\">Choose <emph>Insert - Axes </emph>(Charts)</variable>"
msgstr "<variable id=\"efgaug\">གདམ་ཁ་རྐྱབས། <emph>བཙུགས། - ཚད་ཐིག་ཚུ།</emph>(དཔེ་རིས་ཚུ།) </variable>"
@@ -126,7 +116,6 @@ msgstr "<variable id=\"efgaug\">གདམ་ཁ་རྐྱབས། <emph>བ
msgctxt ""
"00000004.xhp\n"
"par_id3150297\n"
-"17\n"
"help.text"
msgid "Choose <emph>Insert - Grids </emph>(Charts)"
msgstr "གདམ་ཁ་རྐྱབས། <emph>བཙུགས། -གིརིཌིསི།</emph>(དཔེ་རིས་ཚུ།)"
@@ -135,7 +124,6 @@ msgstr "གདམ་ཁ་རྐྱབས། <emph>བཙུགས། -གིར
msgctxt ""
"00000004.xhp\n"
"par_id3145789\n"
-"58\n"
"help.text"
msgid "On Formatting bar, click"
msgstr "རྩ་སྒྲིག་འབད་ནིའི་ཕྲ་རིང་གུར་ ཨེབ་གཏང་འབད།"
@@ -152,7 +140,6 @@ msgstr "<image id=\"img_id3155111\" src=\"cmd/sc_togglegridhorizontal.png\" widt
msgctxt ""
"00000004.xhp\n"
"par_id3155378\n"
-"19\n"
"help.text"
msgid "Horizontal Grids"
msgstr ""
@@ -169,7 +156,6 @@ msgstr "<image id=\"img_id3152989\" src=\"cmd/sc_togglegridvertical.png\" width=
msgctxt ""
"00000004.xhp\n"
"par_id3153067\n"
-"20\n"
"help.text"
msgid "Vertical Grids"
msgstr ""
@@ -178,7 +164,6 @@ msgstr ""
msgctxt ""
"00000004.xhp\n"
"par_id3148869\n"
-"21\n"
"help.text"
msgid "<variable id=\"efgsta\">Choose <emph>Insert - X Error Bars </emph> or <emph>Insert - Y Error Bars </emph>(Charts)</variable>"
msgstr ""
@@ -195,7 +180,6 @@ msgstr ""
msgctxt ""
"00000004.xhp\n"
"par_id3154532\n"
-"67\n"
"help.text"
msgid "<variable id=\"sonderz\">Choose <emph>Insert - Special Character </emph>(Charts)</variable>"
msgstr "<variable id=\"sonderz\">གདམ་ཁ་རྐྱབས། <emph>བཙུགས། - དམིགས་བསལ་གྱི་ཡིག་འབྲུ།</emph>(དཔེ་རིས་ཚུ།) </variable>"
@@ -204,7 +188,6 @@ msgstr "<variable id=\"sonderz\">གདམ་ཁ་རྐྱབས། <emph>བ
msgctxt ""
"00000004.xhp\n"
"par_id3153246\n"
-"22\n"
"help.text"
msgid "<variable id=\"frtoes\">Choose <emph>Format - Format Selection </emph>(Charts)</variable>"
msgstr "<variable id=\"frtoes\">གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་འབད།- དངོས་པོའི་རྒྱུ་དངོས་ཚུ།</emph>(དཔེ་རིས་ཚུ།) </variable>"
@@ -213,7 +196,6 @@ msgstr "<variable id=\"frtoes\">གདམ་ཁ་རྐྱབས། <emph>ར
msgctxt ""
"00000004.xhp\n"
"par_id3150214\n"
-"23\n"
"help.text"
msgid "<variable id=\"frtodd\">Choose <emph>Format - Format Selection - Data Point</emph> dialog (Charts)</variable>"
msgstr "<variable id=\"frtodd\">གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་འབད། - དངོས་པོའི་རྒྱུ་དངོས་ཚུ - གནད་སྡུད་ཀྱི་ས་ཚིགས།</emph> ཌའི་ལོག(དཔེ་རིས་ཚུ) </variable>"
@@ -222,7 +204,6 @@ msgstr "<variable id=\"frtodd\">གདམ་ཁ་རྐྱབས། <emph>ར
msgctxt ""
"00000004.xhp\n"
"par_id3154765\n"
-"24\n"
"help.text"
msgid "<variable id=\"frtodr\">Choose <emph>Format - Format Selection - Data Series</emph> dialog (Charts)</variable>"
msgstr "<variable id=\"frtodr\">གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་འབད། - དངོས་པོའི་རྒྱུ་དངོས་ཚུ། -གནད་སྡུད་ཀྱི་གྲལ་ཐིག</emph> ཌའི་ལོག (དཔེ་རིས་ཚུ།) </variable>"
@@ -231,7 +212,6 @@ msgstr "<variable id=\"frtodr\">གདམ་ཁ་རྐྱབས། <emph>ར
msgctxt ""
"00000004.xhp\n"
"par_id3153009\n"
-"66\n"
"help.text"
msgid "<variable id=\"optionen\">Choose <emph>Format - Format Selection - Data Series - Options</emph> tab (Charts)</variable>"
msgstr "<variable id=\"optionen\">གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་འབད། - དོངས་པོའི་རྒྱུ་དོངས་ཚུ། - གནད་སྡུད་ཀྱི་གྲལ་ཐིག། - གདམ་ཁ་ཚུ།</emph>ཨེབ་ལྡེ (དཔེ་རིས།) </variable>"
@@ -240,7 +220,6 @@ msgstr "<variable id=\"optionen\">གདམ་ཁ་རྐྱབས། <emph>ར
msgctxt ""
"00000004.xhp\n"
"par_id3154707\n"
-"25\n"
"help.text"
msgid "<variable id=\"frtttl\">Choose <emph>Format - Title </emph>(Charts)</variable>"
msgstr "<variable id=\"frtttl\">གདམ་ཁ་རྐྱབས <emph>རྩ་་སྒྲིག་འབད། - མགོ་མིང</emph>(དཔེ་རིས་ཚུ།) </variable>"
@@ -249,7 +228,6 @@ msgstr "<variable id=\"frtttl\">གདམ་ཁ་རྐྱབས <emph>རྩ
msgctxt ""
"00000004.xhp\n"
"par_id3155758\n"
-"26\n"
"help.text"
msgid "<variable id=\"frtoe\">Choose <emph>Format - Format Selection - Title</emph> dialog (Charts)</variable>"
msgstr "<variable id=\"frtoe\">གདམ་ཁ་རྐྱབས། <emph>རྩ སྒྲིག་འབད། - དོངས་པོའི་རྒྱུ་དངོས་ཚུ། - མགོ་མིང་།</emph> ཌེའི་ལོག(དཔེ་རིས་ཚུ།) </variable>"
@@ -258,7 +236,6 @@ msgstr "<variable id=\"frtoe\">གདམ་ཁ་རྐྱབས། <emph>རྩ
msgctxt ""
"00000004.xhp\n"
"par_id3153075\n"
-"27\n"
"help.text"
msgid "<variable id=\"frtegt\">Choose <emph>Format - Format Selection - Title</emph> dialog (Charts)</variable>"
msgstr "<variable id=\"frtegt\">གདམ་ཁ་རྐྱབས།<emph>རྩ་སྒྲིག་འབད། - དངོས་པོའི་རྒྱུ་དངོས་ཚུ། - མགོ་མིང་</emph> ཌེའི་ལོག།(དཔེ་རིས་ཚུ།) </variable>"
@@ -267,7 +244,6 @@ msgstr "<variable id=\"frtegt\">གདམ་ཁ་རྐྱབས།<emph>རྩ
msgctxt ""
"00000004.xhp\n"
"par_id3149048\n"
-"28\n"
"help.text"
msgid "<variable id=\"frttya\">Choose <emph>Format - Title </emph>(Charts)</variable>"
msgstr "<variable id=\"frttya\">གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་འབད། - མགོ་མིང་།</emph>(དཔེ་རིས་ཚུ།) </variable>"
@@ -276,7 +252,6 @@ msgstr "<variable id=\"frttya\">གདམ་ཁ་རྐྱབས། <emph>ར
msgctxt ""
"00000004.xhp\n"
"par_id3147402\n"
-"70\n"
"help.text"
msgid "<variable id=\"frttyab\">Choose <emph>Format - Axis </emph>(Charts)</variable>"
msgstr "<variable id=\"frttyab\">གདམ་ཁ་རྐྱབས <emph>རྩ་སྒྲིག་འབད། - ཚད་ཐིག</emph>(དཔེ་རིས་ཚུ།) </variable>"
@@ -285,7 +260,6 @@ msgstr "<variable id=\"frttyab\">གདམ་ཁ་རྐྱབས <emph>རྩ
msgctxt ""
"00000004.xhp\n"
"par_id3147297\n"
-"29\n"
"help.text"
msgid "<variable id=\"frtlgd\">Choose <emph>Format - Legend, or Format - Format Selection</emph> - <emph>Legend </emph>(Charts)</variable>"
msgstr "<variable id=\"frtlgd\">གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་འབད། - གཏམ་རྒྱུད ཡང་ན་ རྩ་སྒྲིག - དོངས་པོའི་རྒྱུ་དངོས་ཚུ།</emph> - <emph>གཏམ་རྒྱུད།</emph>(དཔེ་རིས་ཚུ།) </variable>"
@@ -294,7 +268,6 @@ msgstr "<variable id=\"frtlgd\">གདམ་ཁ་རྐྱབས། <emph>ར
msgctxt ""
"00000004.xhp\n"
"par_id3157876\n"
-"31\n"
"help.text"
msgid "<variable id=\"frtaa\">Choose <emph>Format - Axis - X Axis/Secondary X Axis/Z Axis/All Axes </emph>(Charts)</variable>"
msgstr "<variable id=\"frtaa\">གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་འབད།- ཚད་ཐིག - ཨེགསི ཚད་ཐིག།/གལ་གནད་ཆུང་བའི་ ཨེགསི་ ཚད་ཐིག/ཛེཊི་ ཚད་ཐིག/ཚད་ཐིག་ཆ་མཉམ།</emph>(དཔེ་རིས་ཚུ།) </variable>"
@@ -303,7 +276,6 @@ msgstr "<variable id=\"frtaa\">གདམ་ཁ་རྐྱབས། <emph>རྩ
msgctxt ""
"00000004.xhp\n"
"par_id3146883\n"
-"32\n"
"help.text"
msgid "<variable id=\"frtyas\">Choose <emph>Format - Axis - Y Axis/Secondary Y Axis </emph>(Charts)</variable>"
msgstr "<variable id=\"frtyas\">གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་འབད། - ཚད་ཐིག - ཝའི་ ཚད་ཐིག/གལ་གདན་ཆུང་བའི་ ཝའི་ ཚད་ཐིག</emph>(དཔེ་རིས་ཚུ།) </variable>"
@@ -312,7 +284,6 @@ msgstr "<variable id=\"frtyas\">གདམ་ཁ་རྐྱབས། <emph>ར
msgctxt ""
"00000004.xhp\n"
"par_id3149349\n"
-"33\n"
"help.text"
msgid "<variable id=\"frtysk\">Choose <emph>Format - Axis - Y Axis - Scale</emph> tab (Charts)</variable>"
msgstr "<variable id=\"frtysk\">གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་འབད། - ཚད་ཐིག - ཝའི་ ཚད་ཐིག - ཆ་ཚད།</emph> ཨེབ་ལྡེ (དཔར་རིས།) </variable>"
@@ -329,7 +300,6 @@ msgstr "<variable id=\"frtysk\">གདམ་ཁ་རྐྱབས། <emph>ར
msgctxt ""
"00000004.xhp\n"
"par_id31493459\n"
-"33\n"
"help.text"
msgid "<variable id=\"positioningy\">Choose <emph>Format - Axis - Y Axis - Positioning</emph> tab (Charts)</variable>"
msgstr "<variable id=\"frtysk\">གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་འབད། - ཚད་ཐིག - ཝའི་ ཚད་ཐིག - ཆ་ཚད།</emph> ཨེབ་ལྡེ (དཔར་རིས།) </variable>"
@@ -338,7 +308,6 @@ msgstr "<variable id=\"frtysk\">གདམ་ཁ་རྐྱབས། <emph>ར
msgctxt ""
"00000004.xhp\n"
"par_id3150477\n"
-"34\n"
"help.text"
msgid "<variable id=\"frtgt\">Choose <emph>Format - Grid </emph>(Charts)</variable>"
msgstr "<variable id=\"frtgt\">གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་འབད། - གིརིཌི།</emph>(དཔེ་རིས) </variable>"
@@ -347,7 +316,6 @@ msgstr "<variable id=\"frtgt\">གདམ་ཁ་རྐྱབས། <emph>རྩ
msgctxt ""
"00000004.xhp\n"
"par_id3150746\n"
-"35\n"
"help.text"
msgid "<variable id=\"frtgtr\">Choose <emph>Format - Grid - X, Y, Z Axis Major Grid/ X, Y, Z Minor Grid/ All Axis Grids </emph>(Charts)</variable>"
msgstr "<variable id=\"frtgtr\">གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་འབད། - གིརིཌི། - ཨེགསི ཝའི ཛེཊི་ ཚད་ཐིག་གི་ གིརིཌི་གཙོ་བོ།/ ཨེགསི ཝའི ཛེཊི གིརིཊི ཆུང་ཀུ།/ གིརིཌི་གི་ཚད་ཐིག་ཆ་མཉམ།</emph>(དཔེ་རིས་ཚུ།) </variable>"
@@ -356,7 +324,6 @@ msgstr "<variable id=\"frtgtr\">གདམ་ཁ་རྐྱབས། <emph>ར
msgctxt ""
"00000004.xhp\n"
"par_id3145828\n"
-"36\n"
"help.text"
msgid "<variable id=\"frtdgw\">Choose <emph>Format - Chart Wall - Chart</emph> dialog (Charts)</variable>"
msgstr "<variable id=\"frtdgw\">གདམ་ཁ་རྐྱབས།<emph>རྩ་སྒྲིག་འབད། - དཔེ་རིས་ཀྱི་གྱང་རྩིག - དཔེ་རིས།</emph> ཌེ་ལོག(དཔེ་རིས་ཚུ།) </variable>"
@@ -365,7 +332,6 @@ msgstr "<variable id=\"frtdgw\">གདམ་ཁ་རྐྱབས།<emph>རྩ
msgctxt ""
"00000004.xhp\n"
"par_id3153039\n"
-"37\n"
"help.text"
msgid "<variable id=\"frtdgb\">Choose <emph>Format - Chart Floor</emph>(Charts)</variable>"
msgstr "<variable id=\"frtdgb\">གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་འབད། - དཔེ་རིས་ཀྱི་མཐིང་གཞི།</emph>(དཔེ་རིས་ཚུ།) </variable>"
@@ -374,7 +340,6 @@ msgstr "<variable id=\"frtdgb\">གདམ་ཁ་རྐྱབས། <emph>ར
msgctxt ""
"00000004.xhp\n"
"par_id3150141\n"
-"38\n"
"help.text"
msgid "<variable id=\"frtdgf\">Choose <emph>Format - Chart Area</emph>(Charts)</variable>"
msgstr "<variable id=\"frtdgf\">གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་འབད། - དཔེ་རིས་ཀྱི་མངའ་ཁོངས།</emph>(དཔེ་རིས་ཚུ) </variable>"
@@ -383,7 +348,6 @@ msgstr "<variable id=\"frtdgf\">གདམ་ཁ་རྐྱབས། <emph>ར
msgctxt ""
"00000004.xhp\n"
"par_id3155830\n"
-"39\n"
"help.text"
msgid "Choose <emph>Format - Chart Type </emph>(Charts)"
msgstr "གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་འབད། - དཔེ་རིས་ཀྱི་དབྱེ་བ།</emph>(དཔེ་རིས།)"
@@ -392,7 +356,6 @@ msgstr "གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་
msgctxt ""
"00000004.xhp\n"
"par_id3145140\n"
-"59\n"
"help.text"
msgid "On Formatting bar, click"
msgstr "རྩ་སྒྲིག་འབད་ནིའི་ཕྲ་རིང་གུར་ ཨེབ་གཏང་འབད།"
@@ -409,7 +372,6 @@ msgstr "<image id=\"img_id3151189\" src=\"cmd/sc_toggleaxisdescr.png\" width=\"0
msgctxt ""
"00000004.xhp\n"
"par_id3155956\n"
-"41\n"
"help.text"
msgid "Edit Chart Type"
msgstr "དཔེ་རིས་ཀྱི་དབྱེ་བ་ཚུ་ཞུན་དག་འབད།"
@@ -418,7 +380,6 @@ msgstr "དཔེ་རིས་ཀྱི་དབྱེ་བ་ཚུ་ཞུ
msgctxt ""
"00000004.xhp\n"
"par_id3155621\n"
-"45\n"
"help.text"
msgid "<variable id=\"frtdda\">Choose <emph>Format - 3D View</emph>(Charts)</variable>"
msgstr "<variable id=\"frtdda\">གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་འབད། - ༣་ ཌི སྟོན།</emph>(དཔེ་རིས་ཚུ།) </variable>"
@@ -427,7 +388,6 @@ msgstr "<variable id=\"frtdda\">གདམ་ཁ་རྐྱབས། <emph>ར
msgctxt ""
"00000004.xhp\n"
"par_id3150661\n"
-"61\n"
"help.text"
msgid "Choose <emph>Format - Arrangement </emph>(Charts)"
msgstr "གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་འབད། - བདེ་ཞིབ་འབད།</emph>(དཔེ་རིས་ཚུ།)"
@@ -436,7 +396,6 @@ msgstr "གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་
msgctxt ""
"00000004.xhp\n"
"par_id3153046\n"
-"65\n"
"help.text"
msgid "Open context menu - choose <emph>Arrangement </emph>(Charts)"
msgstr "སྐབས་དོན་ དཀར་ཆག་ཁ་ཕྱེ།- གདམ་ཁ་རྐྱབས། <emph>བདེ་ཞིབ་འབད།</emph>(དཔེ་རིས་ཚུ།)"
@@ -444,40 +403,6 @@ msgstr "སྐབས་དོན་ དཀར་ཆག་ཁ་ཕྱེ།- ག
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
-"par_id3151020\n"
-"help.text"
-msgid "<image id=\"img_id3150936\" src=\"cmd/sc_toggletitle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150936\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151189\" src=\"cmd/sc_toggleaxisdescr.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151189\">ངོས་དཔར།</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3150467\n"
-"48\n"
-"help.text"
-msgid "Title On/Off"
-msgstr "མགོ་མིང་ ཨཱོན་/་ཨོཕ།"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3149775\n"
-"help.text"
-msgid "<image id=\"img_id3149781\" src=\"cmd/sc_toggleaxistitle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149781\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151189\" src=\"cmd/sc_toggleaxisdescr.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151189\">ངོས་དཔར།</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3147168\n"
-"49\n"
-"help.text"
-msgid "Axis Titles On/Off"
-msgstr "ཚད་ཐིག་མགོ་མིང་ཚུ་ ཨཱོན་/ཨོཕ།"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
"par_id3163824\n"
"help.text"
msgid "<image id=\"img_id3149708\" src=\"cmd/sc_togglegridhorizontal.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149708\">Icon</alt></image>"
@@ -487,7 +412,6 @@ msgstr "<image id=\"img_id3149708\" src=\"cmd/sc_togglegridhorizontal.png\" widt
msgctxt ""
"00000004.xhp\n"
"par_id3150962\n"
-"50\n"
"help.text"
msgid "Horizontal Grids"
msgstr ""
@@ -504,7 +428,6 @@ msgstr "<image id=\"img_id3151189\" src=\"cmd/sc_toggleaxisdescr.png\" width=\"0
msgctxt ""
"00000004.xhp\n"
"par_id3153210\n"
-"51\n"
"help.text"
msgid "Show/Hide Axis Descriptions"
msgstr "ཚད་ཐིག་འགྲལ་བཤད་ཚུ་སྟོན/སྦ་བཞག"
@@ -521,7 +444,6 @@ msgstr "<image id=\"img_id3156322\" src=\"cmd/sc_togglegridvertical.png\" width=
msgctxt ""
"00000004.xhp\n"
"par_id3153153\n"
-"52\n"
"help.text"
msgid "Vertical Grids"
msgstr ""
diff --git a/source/dz/helpcontent2/source/text/schart/01.po b/source/dz/helpcontent2/source/text/schart/01.po
index d899e74cd48..8ac49171f9b 100644
--- a/source/dz/helpcontent2/source/text/schart/01.po
+++ b/source/dz/helpcontent2/source/text/schart/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-05 21:12+0000\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"PO-Revision-Date: 2016-12-22 23:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467753125.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482449742.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -28,7 +28,6 @@ msgstr "གནས་སྡུད་ཐིག་ཁྲམ་"
msgctxt ""
"03010000.xhp\n"
"hd_id3150869\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/01/03010000.xhp\" name=\"Data Table\">Data Table</link>"
msgstr "<link href=\"text/schart/01/03010000.xhp\" name=\"Data Table\">གནས་སྡུད་ཐིག་ཁྲམ་</link>"
@@ -37,7 +36,6 @@ msgstr "<link href=\"text/schart/01/03010000.xhp\" name=\"Data Table\">གནས
msgctxt ""
"03010000.xhp\n"
"par_id3151115\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DiagramData\">Opens the<emph> Data Table </emph>dialog where you can edit the chart data.</ahelp>"
msgstr "<ahelp hid=\".uno:DiagramData\">དེ་གིས་<emph> གནས་སྡུད་ཐིག་ཁྲམ་ </emph>ཌའི་ལོག་འདི་ཁ་ཕྱེཝ་ཨིན་ དེ་ཡང་ ཁྱོད་ཀྱིས་དཔེ་རིས་གནས་སྡུད་ཞུན་དག་འབད་བཏུབ་མི།</ahelp>"
@@ -46,7 +44,6 @@ msgstr "<ahelp hid=\".uno:DiagramData\">དེ་གིས་<emph> གནས་
msgctxt ""
"03010000.xhp\n"
"par_id3149667\n"
-"51\n"
"help.text"
msgid "The<emph> Data Table </emph>dialog is not available if you insert a chart that is based on a Calc sheet or on a Writer table."
msgstr "The<emph> གནས་སྡུད་ཐིག་ཁྲམ་ </emph>ཌའི་ལོག་འདི་ ཀེལཀི་ཤོག་ལེབ་ཡང་ན་འབྲི་བཏུབ་པའི་ཐིག་ཁྲམ་ཅིག་གུ་གཞི་བཞག་སྟེ་ ཁྱོད་ཀྱིས་དཔེ་རིས་འདི་བཙུགས་པ་ཅིན་ ཐོབ་མིག་ཚུགས།"
@@ -159,7 +156,6 @@ msgstr ""
msgctxt ""
"03010000.xhp\n"
"par_id3150297\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new row below the current row.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">ད་ལྟོའི་གྲལ་ཐིག་གི་འོག་ལུ་གྲལ་ཐིག་གསརཔ་ཅིག་བཙུགསཔ་ཨིན།</ahelp>"
@@ -168,7 +164,6 @@ msgstr "<ahelp hid=\".\" visibility=\"hidden\">ད་ལྟོའི་གྲལ
msgctxt ""
"03010000.xhp\n"
"par_id3145384\n"
-"23\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new data series after the current column.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">ད་ལྟོའི་ཀེར་ཐིག་གི་འོག་ལུ་ཀེར་ཐིག་གསརཔ་ཅིག་བཙུགསཔ་ཨིན།</ahelp>"
@@ -185,7 +180,6 @@ msgstr ""
msgctxt ""
"03010000.xhp\n"
"par_id3159231\n"
-"26\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current row. It is not possible to delete the label row.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">ད་ལྟོའི་གྲལ་ཐིག་འདི་བཏོན་གཏངམ་ཨིན། ཁ་ཡིག་གྲལ་ཐིག་བཏོན་གཏང་ནི་འདི་སྲིད་པ་མེན།</ahelp>"
@@ -194,7 +188,6 @@ msgstr "<ahelp hid=\".\" visibility=\"hidden\">ད་ལྟོའི་གྲལ
msgctxt ""
"03010000.xhp\n"
"par_id3153336\n"
-"29\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current series or text column. It is not possible to delete the first text column.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">ད་ལྟོའི་ཀེར་ཐིག་བཏོན་གཏངམ་ཨིན། ཁ་ཡིག་ཀེར་ཐིག་བཏོན་གཏང་ནི་འདི་སྲིད་པ་མེན།</ahelp>"
@@ -235,7 +228,6 @@ msgstr "མགོ་མིང་ཚུ།"
msgctxt ""
"04010000.xhp\n"
"hd_id3147345\n"
-"1\n"
"help.text"
msgid "Titles"
msgstr "མགོ་མིང་ཚུ།"
@@ -244,34 +236,30 @@ msgstr "མགོ་མིང་ཚུ།"
msgctxt ""
"04010000.xhp\n"
"par_id3150298\n"
-"2\n"
"help.text"
-msgid "<variable id=\"titel\"><ahelp hid=\".uno:InsertMenuTitles\">Opens a dialog to enter or modify the titles in a chart.</ahelp></variable> You can define the text for the main title, subtitle and the axis labels, and specify if they are displayed."
+msgid "<variable id=\"titel\"><ahelp hid=\".\">Opens a dialog to enter or modify the titles in a chart.</ahelp></variable> You can define the text for the main title, subtitle and the axis labels, and specify if they are displayed."
msgstr ""
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"hd_id3150207\n"
-"3\n"
"help.text"
-msgid "Main Title"
-msgstr "མགོ་མིང་གཙོ་བོ།"
+msgid "Title"
+msgstr ""
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"par_id3150371\n"
-"4\n"
"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_MAINTITLE\">Marking the <emph>Main Title</emph> option activates the main title. Enter the desired title in the corresponding text field.</ahelp>"
-msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_MAINTITLE\">རྟགས་བཀལ་དོ <emph>མགོ་མིང་གཙོ་བོ་འདི།</emph>གདམ་ཁ་གིས་མགོ་མིང་གཙོ་བོ་དེ་ཤུགས་ལྡན་བཟོཝ་ཨིན། ཆ་མཉམ་པའི་ཚིག་ཡིག་ས་སྒོ་ནང་ རེ་འདུན་བསྐྱེདཔ་ཡོད་མི་མགོ་མིང་དེ་ཐོ་བཀོད་འབད།</ahelp>"
+msgid "<ahelp hid=\"modules/schart/ui/inserttitledlg/maintitle\">Enter the desired title for the chart.</ahelp> This will be displayed at the top of the chart."
+msgstr ""
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"hd_id3146980\n"
-"5\n"
"help.text"
msgid "Subtitle"
msgstr "མགོ་མིང་ཡན་ལག"
@@ -280,25 +268,22 @@ msgstr "མགོ་མིང་ཡན་ལག"
msgctxt ""
"04010000.xhp\n"
"par_id3149404\n"
-"6\n"
"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_SUBTITLE\">Marking the <emph>Subtitle</emph> option activates the subtitle. Enter the desired title in the corresponding text field.</ahelp>"
-msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_SUBTITLE\">རྟགས་བཀལ་དོ་ <emph>མགོ་མིང་ཡན་ལག་འདི།</emph> གདམ་ཁ་གིས་མགོ་མིང་ཡན་ལག་འདི་ཤུགས་ལྡན་བཞོཝ་ཨིན། ཆ་མཉམ་པའི་ཚིག་ཡིག་ས་སྒོ་ནང་ རེ་འདུན་བསྐྱེདཔ་ཡོད་པའི་མགོ་མིང་དེ་ཐོ་མཀོད་འབད།</ahelp>"
+msgid "<ahelp hid=\"modules/schart/ui/inserttitledlg/subtitle\">Enter the desired subtitle for the chart.</ahelp> This will be displayed under the title set in the <emph>Title</emph> field."
+msgstr ""
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
-"par_id3152901\n"
-"7\n"
+"hd_id3150208\n"
"help.text"
-msgid "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">Click <emph>Title On/Off</emph> on the Formatting bar to show or hide the title and subtitle.</ahelp></variable>"
-msgstr "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">/ཨེབ་གཏང་། <emph>མགོ་མིང་ཨཱོན།/ཨོཕ།</emph> on the རྩ་སྒྲིག་འབད་ནིའི་ཕྲ་རིངགུར་མགོ་མིང་དང་མགོ་མིང་ཡན་ལག་སྟོན་ནི་ཡང་ན་སྦ་བཞག་ནིའི་དོན་ལུ།</ahelp></variable>"
+msgid "Axes"
+msgstr ""
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"hd_id3156018\n"
-"8\n"
"help.text"
msgid "X axis"
msgstr "ཨེགསི་ ཚད་ཐིག།"
@@ -307,16 +292,14 @@ msgstr "ཨེགསི་ ཚད་ཐིག།"
msgctxt ""
"04010000.xhp\n"
"par_id3152869\n"
-"9\n"
"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_X_AXIS\">Marking the <emph>X axis</emph> option activates the X axis title. Enter the desired title in the corresponding text field.</ahelp>"
-msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_X_AXIS\">ཨེགསི་ ཚད་ཐིག་འདི་ <emph>རྟགས་བཀལ་དོ།</emph> གདམ་ཁ་གིས་ཨེགསི་ ཚད་ཐིག་གི་མགོ་ཡིག་འདི་ཤུགས་ལྡན་བཟོཝ་ཨིན། ཆ་མཉམ་པའི་ཚིག་ཡིག་ས་སྒོ་ནང་ རེ་འདུན་བསྐྱེད་ཡོད་པའི་མགོ་མིང་དེ་ཐོ་བཀོད་འབད། </ahelp>"
+msgid "<ahelp hid=\"modules/schart/ui/inserttitledlg/primaryXaxis\">Enter the desired title for the X axis of the chart.</ahelp>"
+msgstr ""
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"hd_id3159226\n"
-"10\n"
"help.text"
msgid "Y axis"
msgstr "ཝའི་ཚད་ཐིག"
@@ -325,16 +308,14 @@ msgstr "ཝའི་ཚད་ཐིག"
msgctxt ""
"04010000.xhp\n"
"par_id3154763\n"
-"11\n"
"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Y_AXIS\">Marking the <emph>Y axis</emph> option activates the Y axis title. Enter the desired title in the corresponding text field.</ahelp>"
-msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_X_AXIS\">ཨེགསི་ ཚད་ཐིག་འདི་ <emph>རྟགས་བཀལ་དོ།</emph> གདམ་ཁ་གིས་ཨེགསི་ ཚད་ཐིག་གི་མགོ་ཡིག་འདི་ཤུགས་ལྡན་བཟོཝ་ཨིན། ཆ་མཉམ་པའི་ཚིག་ཡིག་ས་སྒོ་ནང་ རེ་འདུན་བསྐྱེད་ཡོད་པའི་མགོ་མིང་དེ་ཐོ་བཀོད་འབད། </ahelp>"
+msgid "<ahelp hid=\"modules/schart/ui/inserttitledlg/primaryYaxis\">Enter the desired title for the Y axis of the chart.</ahelp>"
+msgstr ""
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"hd_id3153009\n"
-"12\n"
"help.text"
msgid "Z axis"
msgstr "ཛེཊི་ཚད་ཐིག"
@@ -343,19 +324,49 @@ msgstr "ཛེཊི་ཚད་ཐིག"
msgctxt ""
"04010000.xhp\n"
"par_id3154710\n"
-"13\n"
"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Z_AXIS\">Marking the <emph>Z axis</emph> option activates the Z axis title. Enter the desired title in the corresponding text field.</ahelp> This option is only available for 3-D charts."
-msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Z_AXIS\">ཛེཊི་ཚད་ཐིག་འདི་ <emph>རྟགས་བཀལ་དོ།</emph>གདམ་ཁ་གིས་མགོ་མིང་ཡན་ལག་འདི་ཤུགས་ལྡན་བཟོཝ་ཨིན། ཆ་མཉམ་པའི་ཚིག་ཡིག་ས་སྒོ་ནང་ རེ་འདུན་བསྐྱེད་ཡོད་པའི་མགོ་མིང་དེ་ཐོ་བཀོད་འབད།</ahelp>འ་ནི་གདམ་ཁ་འདི་ ༣-ཌི་དཔེ་རིས་རྐྱངམ་ཅིག་ལུ་ཐོབ་ཚུགསཔ་ཨིན།"
+msgid "<ahelp hid=\"modules/schart/ui/inserttitledlg/primaryZaxis\">Enter the desired title for the Z axis of the chart.</ahelp> This option is only available for 3-D charts."
+msgstr ""
+
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"hd_id3150209\n"
+"help.text"
+msgid "Secondary Axes"
+msgstr ""
+
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"hd_id3156019\n"
+"help.text"
+msgid "X axis"
+msgstr ""
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
-"par_id3153073\n"
-"14\n"
+"par_id3152870\n"
"help.text"
-msgid "<variable id=\"sytextachse\"><ahelp hid=\".uno:ToggleAxisTitle\">Click <emph>Axes Title On/Off</emph> on the Formatting bar to show or hide the axis labels.</ahelp></variable>"
-msgstr "<variable id=\"sytextachse\"><ahelp hid=\".uno:ToggleAxisTitle\">ཨེབ་གཏང་། <emph>ཚད་ཐིག་མགོ་མིང་ཨཱོན་/ཨོཕ།</emph>རྩ་སྒྲིག་འབད་ནིའི་ཕྲརིང་ནང་ ཚད་ཐིག་གི་ཁ་ཡིག་ཚུ་ སྟོན་ཡང་ན་སྦ་བཞག་ནིའི་དོན་ལུ།</ahelp></variable>"
+msgid "<ahelp hid=\"modules/schart/ui/inserttitledlg/secondaryXaxis\">Enter the desired secondary title for the X axis of the chart.</ahelp> This will appear on the opposite side of the chart as the X axis title."
+msgstr ""
+
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"hd_id3156020\n"
+"help.text"
+msgid "Y axis"
+msgstr ""
+
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3152872\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/inserttitledlg/secondaryYaxis\">Enter the desired secondary title for the Y axis of the chart.</ahelp> This will appear on the opposite side of the chart as the Y axis title."
+msgstr ""
#: 04020000.xhp
msgctxt ""
@@ -377,7 +388,6 @@ msgstr "<bookmark_value>གཏམ་རྒྱུད་ཀྱི་ དཔེ་
msgctxt ""
"04020000.xhp\n"
"hd_id3156441\n"
-"1\n"
"help.text"
msgid "Legend"
msgstr "གཐམ་རྒྱུད།"
@@ -386,7 +396,6 @@ msgstr "གཐམ་རྒྱུད།"
msgctxt ""
"04020000.xhp\n"
"par_id3155413\n"
-"2\n"
"help.text"
msgid "<variable id=\"legende\"><ahelp hid=\".uno:InsertMenuLegend\">Opens the <emph>Legend </emph>dialog, which allows you to change the position of legends in the chart, and to specify whether the legend is displayed.</ahelp></variable>"
msgstr ""
@@ -395,7 +404,6 @@ msgstr ""
msgctxt ""
"04020000.xhp\n"
"par_id3149124\n"
-"3\n"
"help.text"
msgid "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">To show or hide a legend, click <emph>Legend On/Off</emph> on the <emph>Formatting</emph> bar.</ahelp></variable>"
msgstr "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">གཏམ་རྒྱུད་ཅིག་ སྟོན་ནི་ཡང་ན་སྦ་བཞག་ནིའི་དོན་ལུ <emph>རྩ་སྒྲིག་འབད་ནིའི་</emph> ཕྲ་རིང་གུར་ <emph>གཏམ་རྒྱུད་ཨཱོན/ཨོཕ་</emph> འབད།</ahelp></variable>"
@@ -412,7 +420,6 @@ msgstr "<image id=\"img_id3147346\" src=\"cmd/sc_togglelegend.png\" width=\"0.22
msgctxt ""
"04020000.xhp\n"
"par_id3149207\n"
-"16\n"
"help.text"
msgid "Legend On/Off"
msgstr "གཏམ་རྒྱུད་ཨཱོན/ཨོཕ།"
@@ -421,7 +428,6 @@ msgstr "གཏམ་རྒྱུད་ཨཱོན/ཨོཕ།"
msgctxt ""
"04020000.xhp\n"
"hd_id3155114\n"
-"6\n"
"help.text"
msgid "Display"
msgstr "བཀརམ་སྟོན་འབད།"
@@ -430,7 +436,6 @@ msgstr "བཀརམ་སྟོན་འབད།"
msgctxt ""
"04020000.xhp\n"
"par_id3150206\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/wizelementspage/show\">Specifies whether to display a legend for the chart.</ahelp> This option is only visible if you call the dialog by choosing <emph>Insert - Legend</emph>."
msgstr "<ahelp hid=\"modules/schart/ui/wizelementspage/show\">དཔེ་རིས་ཀྱི་དོན་ལུ་ གཏམ་རྒྱུད་ཅིག་བཀྲམ་སྟོན་འབད་ནི་ཨིན་ན་གི་བསྐོར་ལས་གསལ་བཀོད་འབདཝ་ཨིན།</ahelp>ཁྱོད་ཀྱིས་ གདམ་ཁ་རྐྱབ་པའི་ཐོག་ལས་ ཌེའི་ལོག་ལུ་བོད་བརྡ་འབད་བ་ཅིན་རྐྱངམ་ཅིག་འ་ནི་<emph>གདམ་ཁ་འདི་མཐོང་ཚུགས།>Insert - Legend</emph>."
@@ -439,7 +444,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/wizelementspage/show\">དཔེ་རི
msgctxt ""
"04020000.xhp\n"
"hd_id3150201\n"
-"4\n"
"help.text"
msgid "Position"
msgstr "གནས་ས།"
@@ -448,7 +452,6 @@ msgstr "གནས་ས།"
msgctxt ""
"04020000.xhp\n"
"par_id3155376\n"
-"5\n"
"help.text"
msgid "Select the position for the legend:"
msgstr "གཏམ་རྒྱུད་ཀྱི་དོན་ལུ་གནས་ས་སེལ་འཐུ་འབད།:"
@@ -457,7 +460,6 @@ msgstr "གཏམ་རྒྱུད་ཀྱི་དོན་ལུ་གནས
msgctxt ""
"04020000.xhp\n"
"hd_id3152988\n"
-"8\n"
"help.text"
msgid "Left"
msgstr "གཡོན།"
@@ -466,7 +468,6 @@ msgstr "གཡོན།"
msgctxt ""
"04020000.xhp\n"
"par_id3155087\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_LegendPosition/left\">Positions the legend at the left of the chart.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_LegendPosition/left\">གཏམ་རྒྱུད་འདི་དཔེ་རིས་ཀྱི་གཡོན་ཁ་ཐུག་ལུ་གནས་ས་བཟོཝ་ཨིན།</ahelp>"
@@ -475,7 +476,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/tp_LegendPosition/left\">གཏམ་ར
msgctxt ""
"04020000.xhp\n"
"hd_id3153816\n"
-"10\n"
"help.text"
msgid "Top"
msgstr "མགོ"
@@ -484,7 +484,6 @@ msgstr "མགོ"
msgctxt ""
"04020000.xhp\n"
"par_id3153912\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_LegendPosition/top\">Positions the legend at the top of the chart.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_LegendPosition/top\">གཏམ་རྒྱུད་འདི་དཔེ་རིས་ཀྱི་མགོ་ལུ་གནས་ས་བཟོཝ་ཨིན།</ahelp>"
@@ -493,7 +492,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/tp_LegendPosition/top\">གཏམ་ར
msgctxt ""
"04020000.xhp\n"
"hd_id3144773\n"
-"12\n"
"help.text"
msgid "Right"
msgstr "གཡས།"
@@ -502,7 +500,6 @@ msgstr "གཡས།"
msgctxt ""
"04020000.xhp\n"
"par_id3155268\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_LegendPosition/right\">Positions the legend at the right of the chart.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_LegendPosition/right\">གཏམ་རྒྱུད་འདི་དཔེ་རིས་ཀྱི་གཡས་ཁ་ཐུག་ལུ་གནས་ས་བཟོཝ་ཨིན།</ahelp>"
@@ -511,7 +508,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/tp_LegendPosition/right\">གཏམ་ར
msgctxt ""
"04020000.xhp\n"
"hd_id3152871\n"
-"14\n"
"help.text"
msgid "Bottom"
msgstr "མཇུག"
@@ -520,7 +516,6 @@ msgstr "མཇུག"
msgctxt ""
"04020000.xhp\n"
"par_id3153249\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_LegendPosition/bottom\">Positions the legend at the bottom of the chart.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_LegendPosition/bottom\">གཏམ་རྒྱུད་འདི་དཔེ་རིས་ཀྱི་མཇུག་ལུ་གནས་ས་བཟོཝ་ཨིན།</ahelp>"
@@ -577,7 +572,6 @@ msgstr "<bookmark_value>དཔེ་རིས་ཚུ་ནང་གནད་
msgctxt ""
"04030000.xhp\n"
"hd_id3150275\n"
-"1\n"
"help.text"
msgid "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\" name=\"Data labels\">Data Labels</link></variable>"
msgstr "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\" name=\"Data labels\">གནད་སྡུད་ཀྱི་ཁ་ཡིག་ཚུ།</link></variable>"
@@ -586,7 +580,6 @@ msgstr "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.
msgctxt ""
"04030000.xhp\n"
"par_id3154684\n"
-"2\n"
"help.text"
msgid "<variable id=\"besch\"><ahelp hid=\".uno:InsertMenuDataLabels\">Opens the<emph> Data Labels </emph>dialog, which enables you to set the data labels.</ahelp></variable>"
msgstr ""
@@ -603,7 +596,6 @@ msgstr ""
msgctxt ""
"04030000.xhp\n"
"hd_id3149401\n"
-"17\n"
"help.text"
msgid "Show value as number"
msgstr ""
@@ -612,13 +604,11 @@ msgstr ""
msgctxt ""
"04030000.xhp\n"
"par_id3150751\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_DataLabel/CB_VALUE_AS_NUMBER\">Displays the absolute values of the data points.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_DataLabel/CB_VALUE_AS_NUMBER\">གནད་སྡུད་ས་ཚིགས་ཚུ་གི་ཡང་དག་གནས་གོང་ཚུ་བཀྲམ་སྟོན་འབདཝ་ཨིན།</ahelp>"
#: 04030000.xhp
-#, fuzzy
msgctxt ""
"04030000.xhp\n"
"hd_id5077059\n"
@@ -638,7 +628,6 @@ msgstr ""
msgctxt ""
"04030000.xhp\n"
"hd_id3145643\n"
-"9\n"
"help.text"
msgid "Show value as percentage"
msgstr ""
@@ -647,7 +636,6 @@ msgstr ""
msgctxt ""
"04030000.xhp\n"
"par_id3156382\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_DataLabel/CB_VALUE_AS_PERCENTAGE\">Displays the percentage of the data points in each column.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_DataLabel/CB_VALUE_AS_PERCENTAGE\">ཀེར་ཐིག་རེ་རེ་བཞིན་ནང་གནད་སྡུད་ས་ཚིགས་ཀྱི་བརྒྱ་ཆ་དོ་སྟོནམ་ཨིན།</ahelp>"
@@ -672,7 +660,6 @@ msgstr ""
msgctxt ""
"04030000.xhp\n"
"hd_id3145228\n"
-"11\n"
"help.text"
msgid "Show category"
msgstr ""
@@ -681,7 +668,6 @@ msgstr ""
msgctxt ""
"04030000.xhp\n"
"par_id3154702\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_DataLabel/CB_CATEGORY\">Shows the data point text labels.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_DataLabel/CB_CATEGORY\">གནད་སྡུད་ས་ཚིགས་ཚིག་ཡིག་གི་ཁ་ཡིག་ཚུ་སྟོན།</ahelp>"
@@ -690,7 +676,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/tp_DataLabel/CB_CATEGORY\">གནད་
msgctxt ""
"04030000.xhp\n"
"hd_id3150298\n"
-"15\n"
"help.text"
msgid "Show legend key"
msgstr ""
@@ -699,7 +684,6 @@ msgstr ""
msgctxt ""
"04030000.xhp\n"
"par_id3150205\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_DataLabel/CB_SYMBOL\">Displays the legend icons next to each data point label.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_DataLabel/CB_SYMBOL\">གནད་སྡུད་ས་ཚིགས་ག་ཡིག་གི་ཤུལ་མ་ལུ་གཏམ་རྒྱུད་ངོས་དཔར་ཚུ་བཀྲམ་སྟོན་འབདཝ་ཨིན།</ahelp>"
@@ -796,7 +780,6 @@ msgstr ""
msgctxt ""
"04040000.xhp\n"
"hd_id3147428\n"
-"1\n"
"help.text"
msgid "Axes"
msgstr "ཚད་ཐིག"
@@ -805,7 +788,6 @@ msgstr "ཚད་ཐིག"
msgctxt ""
"04040000.xhp\n"
"par_id3150330\n"
-"2\n"
"help.text"
msgid "<variable id=\"achsen\"><ahelp hid=\".uno:InsertMenuAxes\">Specifies the axes to be displayed in the chart.</ahelp></variable>"
msgstr ""
@@ -814,7 +796,6 @@ msgstr ""
msgctxt ""
"04040000.xhp\n"
"hd_id3156385\n"
-"46\n"
"help.text"
msgid "Major axis"
msgstr "ཚད་ཐིག་སྦོམ།"
@@ -823,26 +804,22 @@ msgstr "ཚད་ཐིག་སྦོམ།"
msgctxt ""
"04040000.xhp\n"
"hd_id3146316\n"
-"5\n"
"help.text"
msgid "X axis"
msgstr "ཨེགསི་ ཚད་ཐིག།"
#: 04040000.xhp
-#, fuzzy
msgctxt ""
"04040000.xhp\n"
"par_id3145230\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryX\">Displays the X axis as a line with subdivisions.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryY\">ཡན་ལག་སྡེ་ཚན་དང་གཅིག་ཁར་ ཝའི་ཚད་ཐིག་འདི་གྲལ་ཐིག་བཟུམ་ཅིག་སྦེ་བཀྲམ་སྟོན་འབདཝ་ཨིན།</ahelp>"
+msgstr ""
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
"hd_id3147003\n"
-"17\n"
"help.text"
msgid "Y axis"
msgstr "ཝའི་ཚད་ཐིག"
@@ -851,7 +828,6 @@ msgstr "ཝའི་ཚད་ཐིག"
msgctxt ""
"04040000.xhp\n"
"par_id3154020\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryY\">Displays the Y axis as a line with subdivisions.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryY\">ཡན་ལག་སྡེ་ཚན་དང་གཅིག་ཁར་ ཝའི་ཚད་ཐིག་འདི་གྲལ་ཐིག་བཟུམ་ཅིག་སྦེ་བཀྲམ་སྟོན་འབདཝ་ཨིན།</ahelp>"
@@ -860,7 +836,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryY\">ཡན་ལག
msgctxt ""
"04040000.xhp\n"
"hd_id3150345\n"
-"28\n"
"help.text"
msgid "Z axis"
msgstr "ཛེཊི་ཚད་ཐིག"
@@ -869,7 +844,6 @@ msgstr "ཛེཊི་ཚད་ཐིག"
msgctxt ""
"04040000.xhp\n"
"par_id3155113\n"
-"29\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryZ\">Displays the Z axis as a line with subdivisions.</ahelp> This axis can only be displayed in 3D charts."
msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryZ\">ཡན་ལག་སྡེ་ཚན་ཚུ་དང་གཅིག་ཁར་ ཛེཊི་ཚད་ཐིག་འདི་གྲལ་ཐིག་བཟུམ་ཅིག་སྦེ་བཀྲམ་སྟོན་འབདཝ་ཨིན།</ahelp> ཚད་ཐིག་འདི་ ༣-ཌི་དཔེ་རིས་ཚུ་ནང་ལུ་རྐྱངམ་ཅིག་བཀྲམ་སྟོན་འབད་བཏུབ།"
@@ -878,7 +852,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryZ\">ཡན་ལག
msgctxt ""
"04040000.xhp\n"
"hd_id3150206\n"
-"36\n"
"help.text"
msgid "Secondary axis"
msgstr "གལ་གནད་ཆུང་བའི་ཚད་ཐིག"
@@ -887,7 +860,6 @@ msgstr "གལ་གནད་ཆུང་བའི་ཚད་ཐིག"
msgctxt ""
"04040000.xhp\n"
"par_id3166428\n"
-"37\n"
"help.text"
msgid "Use this area to assign a second axis to your chart. If a data series is already assigned to this axis, $[officename] automatically displays the axis and the label. You can turn off these settings later on. If no data has been assigned to this axis and you activate this area, the values of the primary Y axis are applied to the secondary axis."
msgstr "ཁྱོད་ཀྱི་དཔེ་རིས་ནང་ལུ་ཚད་ཐིག་གཉིས་པ་འདི་འགན་སྤྲོད་འབད་ནིའི་དོན་ལུ་མངའ་ཁོངས་འདི་ལག་ལེན་འཐབ། གནད་སྡུད་གྲལ་ཐིག་འདི་ཧེ་མ་ལས་རང་ཚད་ཐིག་འདི་ལུ་འགན་སྤྲོད་འབད་ཡོད་པ་ཅིན་$[officename]འདི་གི་ རང་བཞིན་གྱིས་ཚད་ཐིག་དང་ཁ་ཡིག་དེ་ཚུ་བཀྲམ་སྟོན་འབདཝ་ཨིན།ཁྱོད་ཀྱི་གཞི་སྒྲིག་འདི་ཚུ་ཤུལ་ལས་ཁ་བསྡམས་རུང་བཏུབ། གནད་སྡུད་གཅིག་ཡང་ ཚད་ཐིག་འདི་ལུ་འགན་སྤྲོད་མ་འབད་བར་ཡོདཔ་དང་ཁྱོད་ཀྱིས་མངའ་ཁོངས་འདི་ཤུགས་ལྡན་བཟོ་བ་ཅིན་ གཞི་རིམ་ ཝའི་ཚད་ཐིག་དེ་ཚུ་གི་གནས་གོང་ཚུ་གལ་གནད་ཆུང་བའི་ཝའི་ཚད་ཐིག་གི་དོན་ལུ་འཇུག་སྤྱོད་འབདཝ་ཨིན།"
@@ -896,7 +868,6 @@ msgstr "ཁྱོད་ཀྱི་དཔེ་རིས་ནང་ལུ་ཚ
msgctxt ""
"04040000.xhp\n"
"hd_id3152988\n"
-"44\n"
"help.text"
msgid "X axis"
msgstr "ཨེགསི་ ཚད་ཐིག།"
@@ -905,7 +876,6 @@ msgstr "ཨེགསི་ ཚད་ཐིག།"
msgctxt ""
"04040000.xhp\n"
"par_id3156445\n"
-"45\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryX\">Displays a secondary X axis in the chart.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryX\">གལ་གནད་ཆུང་བའི་ ཨེགསི་ཚད་ཐིག་འདི་དཔེ་རིམ་ནང་ལུ་བཀྲམ་སྟོན་འབདཝ་ཨིན།</ahelp>"
@@ -914,7 +884,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryX\">གལ་ག
msgctxt ""
"04040000.xhp\n"
"hd_id3152896\n"
-"38\n"
"help.text"
msgid "Y axis"
msgstr "ཝའི་ཚད་ཐིག"
@@ -923,7 +892,6 @@ msgstr "ཝའི་ཚད་ཐིག"
msgctxt ""
"04040000.xhp\n"
"par_id3153818\n"
-"39\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryY\">Displays a secondary Y axis in the chart.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryY\">གལ་གནད་ཆུང་བའི་ ཝའི ཚད་ཐིག་ཅིག་དཔེ་རིས་ནང་ལུ་བཀྲམ་སྟོན་འབདཝ་ཨིན།</ahelp>"
@@ -932,7 +900,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryY\">གལ་ག
msgctxt ""
"04040000.xhp\n"
"par_id3154762\n"
-"41\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryY\">The major axis and the secondary axis can have different scaling. For example, you can scale one axis to 2 in. and the other to 1.5 in. </ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryY\">ཚད་ཐིག་གཙོ་བོ་དང་གལ་གནད་ཆུང་བའི་ཚད་ཐིག་གཉིས་ལུ་ཚད་འཇལ་སོ་སོ་སྦེ་ཡོད་རུང་བཏུབ། དཔེར་ན་ ཁྱོད་ཀྱིས་ ཨིནཅི་༢་ལུ་ ཚད་ཐིག་གཅིག་ཚད་འཇལ་བཏུབ་ཨིནམ་དང་གཞན་འདི་ ༡.༥་ ཨིནཅི་ལུ།</ahelp>"
@@ -946,20 +913,17 @@ msgid "X/Y Error Bars"
msgstr ""
#: 04050000.xhp
-#, fuzzy
msgctxt ""
"04050000.xhp\n"
"hd_id3147428\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\">X/Y Error Bars</link>"
-msgstr "<link href=\"text/schart/01/05060000.xhp\" name=\"Chart Wall\">དཔེ་རིས་ གྱང་རྩིག</link>"
+msgstr ""
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
"par_id3149666\n"
-"2\n"
"help.text"
msgid "<variable id=\"statistik\"><ahelp hid=\".\">Use the <emph>X or Y Error Bars</emph> dialog to display error bars for 2D charts.</ahelp></variable>"
msgstr ""
@@ -976,7 +940,6 @@ msgstr ""
msgctxt ""
"04050000.xhp\n"
"par_id3153965\n"
-"23\n"
"help.text"
msgid "The <emph>Insert - X/Y Error Bars</emph> menu command is only available for 2D charts."
msgstr ""
@@ -985,7 +948,6 @@ msgstr ""
msgctxt ""
"04050000.xhp\n"
"hd_id3150344\n"
-"5\n"
"help.text"
msgid "Error category"
msgstr "འཛོས་བའི་དབྱེ་རིམ།"
@@ -994,7 +956,6 @@ msgstr "འཛོས་བའི་དབྱེ་རིམ།"
msgctxt ""
"04050000.xhp\n"
"par_id3150202\n"
-"6\n"
"help.text"
msgid "In the <emph>Error category</emph> area, you can choose different ways to display the error category."
msgstr ""
@@ -1003,7 +964,6 @@ msgstr ""
msgctxt ""
"04050000.xhp\n"
"hd_id3152989\n"
-"7\n"
"help.text"
msgid "None"
msgstr "ཅི་མེད།"
@@ -1012,7 +972,6 @@ msgstr "ཅི་མེད།"
msgctxt ""
"04050000.xhp\n"
"par_id3149409\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_ErrorBars/RB_NONE\">Does not show any error bars.</ahelp>"
msgstr ""
@@ -1021,7 +980,6 @@ msgstr ""
msgctxt ""
"04050000.xhp\n"
"hd_id3145117\n"
-"17\n"
"help.text"
msgid "Constant value"
msgstr "ཆ་མེད་གནས་གོང་།"
@@ -1030,7 +988,6 @@ msgstr "ཆ་མེད་གནས་གོང་།"
msgctxt ""
"04050000.xhp\n"
"par_id3151390\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_ErrorBars/RB_CONST\">Displays constant values that you specify in the Parameters area.</ahelp>"
msgstr ""
@@ -1039,7 +996,6 @@ msgstr ""
msgctxt ""
"04050000.xhp\n"
"hd_id3159204\n"
-"13\n"
"help.text"
msgid "Percentage"
msgstr "བརྒྱ་ཆ།"
@@ -1048,13 +1004,11 @@ msgstr "བརྒྱ་ཆ།"
msgctxt ""
"04050000.xhp\n"
"par_id3150048\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_ErrorBars/RB_PERCENT\">Displays a percentage. The display refers to the corresponding data point. Set the percentage in the Parameters area.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_ErrorBars/RB_PERCENT\">བརྒྱ་ཆ་ཅིག་བཀྲམ་སྟོན་འབདཝ་ཨིན།. བཀྲམ་སྟོན་འདི་ཆ་མཉམ་པའི་གནད་སྡུད་ས་ཚིགས་ལུ་གཞི་བསྟུན་འབད་ཨིན།</ahelp> གཡས་ཁ་ཐུག་ལུ་བསྒྱིར་སྒྲོམ་གྱི་ནང་བརྒྱ་ཆ་འདི་གཞི་སྒྲིག་འབད།"
#: 04050000.xhp
-#, fuzzy
msgctxt ""
"04050000.xhp\n"
"hd_id8977629\n"
@@ -1082,7 +1036,6 @@ msgstr ""
msgctxt ""
"04050000.xhp\n"
"par_id3157979\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\".\">Variance: Displays the variance calculated from the number of data points and respective values.</ahelp>"
msgstr ""
@@ -1091,7 +1044,6 @@ msgstr ""
msgctxt ""
"04050000.xhp\n"
"par_id3153249\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\".\">Standard Deviation: Displays the standard deviation (square root of the variance). Unlike other functions, error bars are centered on the mean.</ahelp>"
msgstr ""
@@ -1100,7 +1052,6 @@ msgstr ""
msgctxt ""
"04050000.xhp\n"
"par_id3149870\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\".\">Error Margin: Displays the highest error margin in percent according to the highest value of the data group. Set the percentage in the Parameters area.</ahelp>"
msgstr ""
@@ -1197,7 +1148,6 @@ msgstr ""
msgctxt ""
"04050000.xhp\n"
"hd_id3156396\n"
-"19\n"
"help.text"
msgid "Error indicator"
msgstr "འཛོལ་བའི་བརྡ་སྟོན་པ།"
@@ -1206,7 +1156,6 @@ msgstr "འཛོལ་བའི་བརྡ་སྟོན་པ།"
msgctxt ""
"04050000.xhp\n"
"par_id3150539\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the error indicator.</ahelp>"
msgstr ""
@@ -1991,7 +1940,6 @@ msgstr ""
msgctxt ""
"04060000.xhp\n"
"hd_id3149400\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/01/04060000.xhp\" name=\"Options\">Options</link>"
msgstr "<link href=\"text/schart/01/04060000.xhp\" name=\"Options\">གདམ་ཁ་ཚུ།</link>"
@@ -2000,7 +1948,6 @@ msgstr "<link href=\"text/schart/01/04060000.xhp\" name=\"Options\">གདམ་
msgctxt ""
"04060000.xhp\n"
"par_id3155067\n"
-"2\n"
"help.text"
msgid "Use this dialog to define some options that are available for specific chart types. The contents of the Options dialog vary with the chart type."
msgstr ""
@@ -2009,7 +1956,6 @@ msgstr ""
msgctxt ""
"04060000.xhp\n"
"hd_id3150043\n"
-"9\n"
"help.text"
msgid "Align data series to:"
msgstr "ལུ་གནད་སྡུད་རྒྱུན་རིམ་ཕྲང:"
@@ -2018,7 +1964,6 @@ msgstr "ལུ་གནད་སྡུད་རྒྱུན་རིམ་ཕྲ
msgctxt ""
"04060000.xhp\n"
"par_id3145228\n"
-"10\n"
"help.text"
msgid "In this area you can choose between two Y axis scaling modes. The axes can only be scaled and given properties separately."
msgstr "འ་ནི་མངའ་ཁོངས་འདི་ནང་ཁྱོད་ཀྱིས་ ཝའི་ཚད་ཐིག་གི་ཚད་རྟགས་ཐབས་ལམ་གཉིས་ཀྱི་བར་ན་གདམ་ཁ་རྐྱབ། ཚད་ཐིག་འདི་ཚད་འཇལ་ནི་རྐྱངམ་ཅིག་བཏུབ་ཨིནམ་དང་རྒྱུ་དངོས་ཚུ་སོ་སོ་ཕྱེལ་ཏེ་བྱིན་ཡོད།"
@@ -2027,7 +1972,6 @@ msgstr "འ་ནི་མངའ་ཁོངས་འདི་ནང་ཁྱོ
msgctxt ""
"04060000.xhp\n"
"hd_id3147346\n"
-"4\n"
"help.text"
msgid "Primary Y axis"
msgstr "གཞི་རིམ་གྱི་ཝའི་ཚད་ཐིག"
@@ -2036,7 +1980,6 @@ msgstr "གཞི་རིམ་གྱི་ཝའི་ཚད་ཐིག"
msgctxt ""
"04060000.xhp\n"
"par_id3147005\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/RBT_OPT_AXIS_1\">This option is active as default. All data series are aligned to the primary Y axis.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/RBT_OPT_AXIS_1\" visibility=\"visible\">གདམ་ཁ་འདི་སྔོན་སྒྲིག་བཟུམ་སྦེ་རང་ཤུགལ་ལྡན་ཡོད། གནད་སྡུད་གྲལ་ཐིག་ཚུ་ཆ་མཉམ་གཞི་རིམ་ཝའི་ཚད་ཐིག་ལུ་ཕྲང་ཏེ་ཡོད། </ahelp>"
@@ -2045,7 +1988,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/RBT_OPT_AXIS_1\" visibili
msgctxt ""
"04060000.xhp\n"
"hd_id3143221\n"
-"5\n"
"help.text"
msgid "Secondary Y axis"
msgstr "གལ་གནད་ཆུང་བའི་ ཝའི་ཚད་ཐིག"
@@ -2054,7 +1996,6 @@ msgstr "གལ་གནད་ཆུང་བའི་ ཝའི་ཚད་ཐ
msgctxt ""
"04060000.xhp\n"
"par_id3154656\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/RBT_OPT_AXIS_2\">Changes the scaling of the Y axis. This axis is only visible when at least one data series is assigned to it and the axis view is active.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/RBT_OPT_AXIS_2\" visibility=\"visible\">ཝའི་ཚད་ཐིག་གི་ཚད་རྟགས་འདི་བསྒྱུར་བཅོས་འབདཝ་ཨིན། ཉུང་མཐའ་རང་གནད་སྡུད་རྒྱུན་རིམ་གཅིག་འདི་ལུ་འགན་སྤྲོད་འབད་ཡོད་པ་ཅིན་རྐྱངམ་ཅིག་ འ་ནི་ཚད་ཐིག་འདི་མཐོང་ཚུགསཔ་ཨིནམ་དང་ཚད་ཐིག་མཐོང་སྣང་འདི་ཤུགས་ལྡན་འགྱོཝ་ཨིན།</ahelp>"
@@ -2063,7 +2004,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/RBT_OPT_AXIS_2\" visibili
msgctxt ""
"04060000.xhp\n"
"hd_id3166423\n"
-"6\n"
"help.text"
msgid "Settings"
msgstr "སྒྲིག་སྟངས་ཚུ།"
@@ -2072,7 +2012,6 @@ msgstr "སྒྲིག་སྟངས་ཚུ།"
msgctxt ""
"04060000.xhp\n"
"par_id3150365\n"
-"12\n"
"help.text"
msgid "Define the settings for a bar chart in this area. Any changes apply to all data series of the chart, not to the selected data only."
msgstr "མངའ་ཁོངས་འདི་ནང་ཕྲ་རིང་དཔེ་རིས་ཅིག་གི་དོན་ལུ་སྒྲིག་སྟངས་ཚུ་ངེས་འཛིན་འབད། བསྒྱུར་བཅོས་ག་ཅི་རང་འབད་འབདཝ་ཡོད་རུང་ སེལ་འཐུ་གྲུབ་ཡོད་པའི་གནད་སྡུད་རྐྱངམ་ཅིག་ལུ་མེན་པར་ དཔེ་རིས་ཀྱི་གནད་སྡུད་རྒྱུན་རིམ་ཆ་མཉམ་ནང་ལུ་འཇུག་སྤྱོད་འབད།"
@@ -2081,7 +2020,6 @@ msgstr "མངའ་ཁོངས་འདི་ནང་ཕྲ་རིང་ད
msgctxt ""
"04060000.xhp\n"
"hd_id3145584\n"
-"7\n"
"help.text"
msgid "Spacing"
msgstr "བར་སྟོང་བཞག་ཐངས།"
@@ -2090,7 +2028,6 @@ msgstr "བར་སྟོང་བཞག་ཐངས།"
msgctxt ""
"04060000.xhp\n"
"par_id3155376\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/MT_GAP\">Defines the spacing between the columns in percent.</ahelp> The maximal spacing is 600%."
msgstr "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/MT_GAP\" visibility=\"visible\">བརྒྱ་ཆ་ནང་ལུ་ཀེར་ཐིག་ཚུ་གི་བར་ན་ བར་སྟོང་བཞག་ཐངས་ཀྱི་ཐེས་འཛིན་འབདཝ་ཨིན།</ahelp> བར་སྟོང་གི་མང་མཐའ་འདི་ %༦༠༠་ཨིན།"
@@ -2099,7 +2036,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/MT_GAP\" visibility=\"vis
msgctxt ""
"04060000.xhp\n"
"hd_id3145384\n"
-"8\n"
"help.text"
msgid "Overlap"
msgstr "མཐའ་མནོན།"
@@ -2108,7 +2044,6 @@ msgstr "མཐའ་མནོན།"
msgctxt ""
"04060000.xhp\n"
"par_id3156447\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/MT_OVERLAP\">Defines the necessary settings for overlapping data series.</ahelp> You can choose between -100 and +100%."
msgstr "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/MT_OVERLAP\" visibility=\"visible\">མཐའ་མནོན་གནད་སྡུད་རྒྱུན་རིམ་གྱི་དོན་ལུ་ཉེ་བར་མཁོ་བའི་སྒྲིག་སྟངས་ཚུ་ངེས་འཛིན་འབདཝ་ཨིན།</ahelp>ཁྱོད་ཀྱིས་༡༠༠དང་+༡༠༠%་གི་བར་ན་གདམ་ཁ་རྐྱབ།"
@@ -2117,7 +2052,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/MT_OVERLAP\" visibility=\
msgctxt ""
"04060000.xhp\n"
"hd_id3153305\n"
-"16\n"
"help.text"
msgid "Connection Lines"
msgstr "མཐུད་ལམ་གྱི་གྲལ་ཐིག་ཚུ།"
@@ -2126,7 +2060,6 @@ msgstr "མཐུད་ལམ་གྱི་གྲལ་ཐིག་ཚུ།"
msgctxt ""
"04060000.xhp\n"
"par_id3148868\n"
-"17\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/CB_CONNECTOR\">For \"stacked\" and \"percent\" column (vertical bar) charts, mark this check box to connect the column layers that belong together with lines.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/CB_CONNECTOR\" visibility=\"visible\">\"བརྩེགས་ཅན་\" དང་ \"བརྒྱ་ཆ་\" ཀེར་ཐིག་དཔེ་རིས་ཚུ་(ཀེ་འཕྲང་ ཕྲ་རིང་)གི་དོན་ལུ་ གྲལ་ཐིག་ཚུ་དང་གཅིག་ཁར་ལྷན་ཅིག་བང་མི་ ཀེར་ཐིག་བང་རིམ་ཚུ་མཐུད་ནི་ལུ་དཔྱད་སྒྲོམ་འདི་རྟགས་བཀལ། </ahelp>"
@@ -2308,7 +2241,6 @@ msgid "Grids"
msgstr "གིརིཌིསི།"
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"bm_id3147434\n"
@@ -2317,7 +2249,6 @@ msgid "<bookmark_value>axes; inserting grids</bookmark_value> <bookmark_value>g
msgstr "<bookmark_value>ཚད་ཐིག་བཙུགས་ནིའི་ གིརིཌིསི།</bookmark_value><bookmark_value>གིརིཌིས་ དཔེ་རིས་ནང་དཔེ་རིས་ཚུ་ནང་བཙུགས་ནི།</bookmark_value>"
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"hd_id3147434\n"
@@ -2334,7 +2265,6 @@ msgid "<variable id=\"gitter\"><ahelp hid=\".\">You can divide the axes into sec
msgstr ""
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"hd_id3156286\n"
@@ -2343,7 +2273,6 @@ msgid "Major grids"
msgstr "གིརིཌི་ཆུང་ཀུ"
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"par_id3154511\n"
@@ -2352,7 +2281,6 @@ msgid "Defines the axis to be set as the major grid."
msgstr "གིརིཌི་གཙོ་བོ་སྦེ་གཞི་སྒྲིག་འབད་ནི་ལུ་ཚད་ཐིག་འདི་ངེས་འཛིན་འབདཝ་ཨིན།"
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"hd_id3149400\n"
@@ -2361,7 +2289,6 @@ msgid "X axis"
msgstr "ཨེགསི་ ཚད་ཐིག།"
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"par_id3150749\n"
@@ -2378,7 +2305,6 @@ msgid "<variable id=\"sytextxgitter\"><ahelp hid=\".uno:ToggleGridVertical\">The
msgstr ""
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"hd_id3145228\n"
@@ -2387,7 +2313,6 @@ msgid "Y axis"
msgstr "ཝའི་ཚད་ཐིག"
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"par_id3147004\n"
@@ -2404,7 +2329,6 @@ msgid "<variable id=\"sytextygitter\"><ahelp hid=\".uno:ToggleGridHorizontal\">T
msgstr ""
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"hd_id3166430\n"
@@ -2413,7 +2337,6 @@ msgid "Z axis"
msgstr "ཛེཊི་ཚད་ཐིག"
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"par_id3155378\n"
@@ -2422,7 +2345,6 @@ msgid "<ahelp hid=\"modules/schart/ui/insertgriddlg/primaryZ\">Adds gridlines to
msgstr "<ahelp hid=\"modules/schart/ui/insertgriddlg/primaryZ\">གིརིཌི་གྲལ་ཐིག་ཚུ་དཔེ་རིས་ཀྱི་ཛེཊི་ཚད་ཐིག་ལུ་ཁ་སྐོང་རྐྱབ་ཨིན།</ahelp> ཁྱོད་ཀྱིས་༣-ཌི་ དཔེ་རིས་ཚུ་དང་གཅིག་གར་ལཱ་འབད་བའི་བསྒང་ཡོད་པ་ཅིན་རྐྱངམ་ཅིག་ འ་ནི་གདམ་ཁ་འདི་འཐོབ་ཚུགས།"
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"hd_id3146978\n"
@@ -2431,7 +2353,6 @@ msgid "Minor grids"
msgstr "གིརིཌི་ཆུང་ཀུ"
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"par_id3156449\n"
@@ -2440,7 +2361,6 @@ msgid "Use this area to assign a minor grid for each axis. Assigning minor grids
msgstr "ཚད་ཐིག་རེ་རེ་བཞིན་གྱི་དོན་ལུ་གིརིཌི་ཆུང་ཀུ་ཅིག་འགན་སྤྲོད་འབད་ནི་ལུ་མངའ་ཁོངས་འདི་ལག་ལེན་འཐབ། ཚད་ཐིག་ལུ་ག གིརིཌི་ཆུང་ཀུ་ཚུ་འགན་སྤྲོད་འབད་ནི་འདི་གིས་ གིརིཌི་གཙོ་བོ་ཚུ་གི་བར་ནའི་གྱང་ཚད་འདི་ མར་ཕབ་འབདཝ་ཨིན།"
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"hd_id3153308\n"
@@ -2449,7 +2369,6 @@ msgid "X axis"
msgstr "ཨེགསི་ ཚད་ཐིག།"
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"par_id3148704\n"
@@ -2458,7 +2377,6 @@ msgid "<ahelp hid=\"modules/schart/ui/insertgriddlg/secondaryX\">Adds gridlines
msgstr "<ahelp hid=\"modules/schart/ui/insertgriddlg/secondaryX\">ཨེགསི་ ཚད་ཐིག་་ཆུང་མི་དབྱེ་ཚན་ཚུ་ནང་ལུ་བགོ་བཤའ་རྐྱབ་མི་ གིརིཌི་གྲལ་ཐིག་དེ་་ཁ་སྐོང་རྐྱབ་ཨིན།</ahelp>"
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"hd_id3153917\n"
@@ -2467,7 +2385,6 @@ msgid "Y axis"
msgstr "ཝའི་ཚད་ཐིག"
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"par_id3154536\n"
@@ -2476,7 +2393,6 @@ msgid "<ahelp hid=\"modules/schart/ui/insertgriddlg/secondaryY\">Adds gridlines
msgstr "<ahelp hid=\"modules/schart/ui/insertgriddlg/secondaryY\">ཝའི་ ཚད་ཐིག་་ཆུང་མི་དབྱེ་ཚན་ཚུ་ནང་ལུ་བགོ་བཤའ་རྐྱབ་མི་ གིརིཌི་གྲལ་ཐིག་དེ་ཁ་སྐོང་རྐྱབ་ཨིན།</ahelp>"
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"hd_id3148607\n"
@@ -2485,7 +2401,6 @@ msgid "Z axis"
msgstr "ཛེཊི་ཚད་ཐིག"
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"par_id3153247\n"
@@ -2513,7 +2428,6 @@ msgstr "<bookmark_value>དོངས་པོ་ཚུ;དཔེ་རིས་
msgctxt ""
"05010000.xhp\n"
"hd_id3149666\n"
-"1\n"
"help.text"
msgid "Format Selection"
msgstr ""
@@ -2522,7 +2436,6 @@ msgstr ""
msgctxt ""
"05010000.xhp\n"
"par_id3156284\n"
-"2\n"
"help.text"
msgid "<variable id=\"objekteigenschaften\"><ahelp hid=\".\">Formats the selected object.</ahelp></variable> Depending on the object selected, the command opens dialogs that you can also open by choosing the following commands from the <emph>Format</emph> menu:"
msgstr ""
@@ -2531,7 +2444,6 @@ msgstr ""
msgctxt ""
"05010000.xhp\n"
"hd_id3153418\n"
-"3\n"
"help.text"
msgid "<link href=\"text/schart/01/05060000.xhp\" name=\"Chart Wall\">Chart Wall</link>"
msgstr "<link href=\"text/schart/01/05060000.xhp\" name=\"Chart Wall\">དཔེ་རིས་ གྱང་རྩིག</link>"
@@ -2540,7 +2452,6 @@ msgstr "<link href=\"text/schart/01/05060000.xhp\" name=\"Chart Wall\">དཔེ
msgctxt ""
"05010000.xhp\n"
"hd_id3155766\n"
-"4\n"
"help.text"
msgid "<link href=\"text/schart/01/05080000.xhp\" name=\"Chart Area\">Chart Area</link>"
msgstr "<link href=\"text/schart/01/05080000.xhp\" name=\"Chart Area\">དཔེ་རིས་ མངའ་ཁོངས།</link>"
@@ -2549,7 +2460,6 @@ msgstr "<link href=\"text/schart/01/05080000.xhp\" name=\"Chart Area\">དཔེ
msgctxt ""
"05010000.xhp\n"
"hd_id3154255\n"
-"5\n"
"help.text"
msgid "<link href=\"text/schart/01/05070000.xhp\" name=\"Chart Floor\">Chart Floor</link>"
msgstr "<link href=\"text/schart/01/05070000.xhp\" name=\"Chart Floor\">དཔེ་རིས་འཐིང་གཞི། </link>"
@@ -2558,7 +2468,6 @@ msgstr "<link href=\"text/schart/01/05070000.xhp\" name=\"Chart Floor\">དཔ
msgctxt ""
"05010000.xhp\n"
"hd_id3146313\n"
-"6\n"
"help.text"
msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Title\">Title</link>"
msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Title\">མགོ་མིང་།</link>"
@@ -2567,7 +2476,6 @@ msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Title\">མགོ་
msgctxt ""
"05010000.xhp\n"
"hd_id3150297\n"
-"7\n"
"help.text"
msgid "<link href=\"text/schart/01/05030000.xhp\" name=\"Legend\">Legend</link>"
msgstr "<link href=\"text/schart/01/05030000.xhp\" name=\"Legend\">གཏམ་རྒྱུད།</link>"
@@ -2576,7 +2484,6 @@ msgstr "<link href=\"text/schart/01/05030000.xhp\" name=\"Legend\">གཏམ་
msgctxt ""
"05010000.xhp\n"
"hd_id3143219\n"
-"8\n"
"help.text"
msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X Axis\">X Axis</link>"
msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"X Axis\">ཨེགསི་ ཚད་ཐིག</link>"
@@ -2585,7 +2492,6 @@ msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"X Axis\">ཨེགས
msgctxt ""
"05010000.xhp\n"
"hd_id3150207\n"
-"9\n"
"help.text"
msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y Axis\">Y Axis</link>"
msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Y Axis\">ཝའི་ ཚད་ཐིག</link>"
@@ -2594,7 +2500,6 @@ msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Y Axis\">ཝའི་
msgctxt ""
"05010000.xhp\n"
"hd_id3166432\n"
-"10\n"
"help.text"
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Grid\">Grid</link>"
msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Grid\">གིརིཌི།</link>"
@@ -2611,7 +2516,6 @@ msgstr "གནད་སྡུད་ས་ཚིགས།"
msgctxt ""
"05010100.xhp\n"
"hd_id3153768\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">Data Point</link>"
msgstr "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">གནད་སྡུད་ས་ཚིགས།</link>"
@@ -2620,7 +2524,6 @@ msgstr "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">གནད
msgctxt ""
"05010100.xhp\n"
"par_id3152577\n"
-"2\n"
"help.text"
msgid "This dialog allows you to change the properties of a selected data point. The dialog appears when there is only one data point selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts."
msgstr "འ་ནི་ཌེའི་ལོག་འདི་གིས་ ཁྱོད་ལུ་སེལ་འཐུ་གྲུབ་ཡོད་པའི་གནད་སྡུད་ས་ཚིགས་ཅིག་གི་རྒྱུ་དངོས་ཚུ་བསྒྱུར་བཅོས་འབད་བཅུགཔ་ཨིན། ཁྱོད་ཀྱིས་རྩ་སྒྲིག་-དངོས་པོའི་རྒྱུ་དངོས་ཚུ་གདམ་ཁ་རྐྱབ་དང་ སེལ་འཐུ་གྱུབ་ཡོད་པའི་གནད་སྡུད་ས་ཚིགས་གཅིག་རྐྱངམ་ཅིག་ཡོད་པ་ཅིན་ ཌེ་ལོག་འདི་འབྱུངམ་ཨིན།<emph>Format - Object Properties</emph>.དཀར་ཆག་ཐོ་བཀོད་ཚུ་ ལ་ལོ་ཅིག་ ༢་ཌི་ཡང་ན་༣་ཌི་དཔེ་རིས་ཀྱི་དོན་ལུ་རྐྱངམ་ཅིག་འཐོབ་ཚུགས།"
@@ -2629,7 +2532,6 @@ msgstr "འ་ནི་ཌེའི་ལོག་འདི་གིས་ ཁ
msgctxt ""
"05010100.xhp\n"
"par_id3149121\n"
-"3\n"
"help.text"
msgid "Any changes made only affect this one data point. For example, if you edit the color of a bar, only the color of that bar will be different."
msgstr "བསྒྱུར་བཅོས་ག་ཅི་འབད་མི་འདི་གིས་ འ་ནི་གནད་སྡུད་ས་ཚིགས་གཅིག་རྐྱངམ་ཅིག་ལུ་ཕན་གནོད་ཡོདཔ་ཨིན། དཔེར་ན་ ཁྱོད་ཀྱིས་ཕྲ་རིང་ཅིག་གི་ཚོས་གཞི་ཞུན་དག་འབད་བ་ཅིན་ ཕྲ་རིང་འདི་གི་ཚོས་གཞི་རྐྱངམ་ཅིག་སོ་སོ་འགྱོ་འོང་།"
@@ -2646,7 +2548,6 @@ msgstr ""
msgctxt ""
"05010200.xhp\n"
"hd_id3150449\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/01/05010200.xhp\" name=\"Data Series\">Data Series</link>"
msgstr "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">གནད་སྡུད་ས་ཚིགས།</link>"
@@ -2655,7 +2556,6 @@ msgstr "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">གནད
msgctxt ""
"05010200.xhp\n"
"par_id3145750\n"
-"2\n"
"help.text"
msgid "Use this to change the properties of a selected data series. This dialog appears when one data series is selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts."
msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་གནད་སྡུད་གྲལ་ཐིག་ཅིག་གི་རྒྱུ་དོངས་ཚུ་བསྒྱུར་བཅོས་འབད་ནིའི་དོན་ལུ་ འ་ནི་འདི་ལག་ལེན་འཐབ། ཁྱོད་ཀྱིས་རྩསྒྲིག-དངོས་པོའིརྒྱུ་དངོས་ཚུ་གནམ་ཁ་རྐྱབ་ད་ གདན་སྡུད་གྲལ་ཐིག་གཅིག་སེལ་འཐུ་གྲུབ་ཡོད་པ་ཅིན་ འ་ནི་ཌེ་ལོག་འདི་ <emph>འབྱུངམ་ཨིན།</emph>. དཀར་ཆག་ཐོ་བཀོད་ཚུ་ ལ་ལོ་ཅིག་ ༢་ཌི་ཡང་ན་༣་ཌི་དཔེ་རིས་ཀྱི་དོན་ལུ་རྐྱངམ་ཅིག་འཐོབ་ཚུགས།"
@@ -2664,7 +2564,6 @@ msgstr "སེལ་འཐུ་གྲུབ་ཡོད་པའི་གནད
msgctxt ""
"05010200.xhp\n"
"par_id3154015\n"
-"4\n"
"help.text"
msgid "Any changes made here affect the entire data series. For example, if you change the color, all elements belonging to this data series will change color."
msgstr "འ་ན་ལུ་བསྒྱུར་བཅོས་ག་ཅི་འབད་མི་འདི་གིས་ གནད་སྡུད་གྲལ་ཐིག་ཧྲིལ་བུ་ལུ་ཕན་གནོདཔ་ཡོདཔ་ཨིན། དཔེར་ན་ ཁྱོད་ཀྱིས་ཚོས་གཞི་འདི་བསྒྱུར་བཅོས་འབད་བ་ཅིན་ གནད་སྡུད་གྲལ་ཐིག་འདི་ལུ་བང་མི་རྒྱུ་རྫས་ཆ་མཉམ་གིས་ཚོས་གཞི་བསྒྱུར་བཅོས་འབདཝ་ཨིན།"
@@ -2673,7 +2572,6 @@ msgstr "འ་ན་ལུ་བསྒྱུར་བཅོས་ག་ཅི་
msgctxt ""
"05010200.xhp\n"
"hd_id3146916\n"
-"3\n"
"help.text"
msgid "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\">Y Error Bars</link>"
msgstr "<link href=\"text/schart/01/05060000.xhp\" name=\"Chart Wall\">དཔེ་རིས་ གྱང་རྩིག</link>"
@@ -2698,7 +2596,6 @@ msgstr "<bookmark_value>མགོ་མིང་གི་ རྩ་སྒྲི
msgctxt ""
"05020000.xhp\n"
"hd_id3150791\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/01/05020000.xhp\" name=\"Title\">Title</link>"
msgstr "<link href=\"text/schart/01/05020000.xhp\" name=\"Title\">མགོ་མིང་།</link>"
@@ -2707,7 +2604,6 @@ msgstr "<link href=\"text/schart/01/05020000.xhp\" name=\"Title\">མགོ་
msgctxt ""
"05020000.xhp\n"
"par_id3125863\n"
-"2\n"
"help.text"
msgid "The<emph> Title </emph>menu command opens a submenu for editing the properties of the titles in the chart."
msgstr "དཔེ་རིས་ནང་མགོ་མིང་ཚུ་གི་རྒྱུ་དངོས་ཚུ་ཞུན་དག་འབད་ནིའི་དོན་ལས་The<emph> དཀར་ཆག་མགོ་མིང་བརྡ་བཀོད་ཀྱིས་ </emph>དཀར་ཆག་ཡན་ལག་ཅིག་ཁ་ཕྱེཝ་ཨིན།"
@@ -2716,7 +2612,6 @@ msgstr "དཔེ་རིས་ནང་མགོ་མིང་ཚུ་གི
msgctxt ""
"05020000.xhp\n"
"hd_id3155414\n"
-"3\n"
"help.text"
msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Main title\">Main title</link>"
msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Main title\">མགོ་མིང་གཙོེ་བོ།</link>"
@@ -2725,7 +2620,6 @@ msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Main title\">མགོ
msgctxt ""
"05020000.xhp\n"
"hd_id3156441\n"
-"4\n"
"help.text"
msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Subtitle\">Subtitle</link>"
msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Subtitle\">མགོ་མིང་ཡན་ལག</link>"
@@ -2734,7 +2628,6 @@ msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Subtitle\">མགོ
msgctxt ""
"05020000.xhp\n"
"hd_id3151073\n"
-"5\n"
"help.text"
msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"X-axis title\">X-axis title</link>"
msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"X-axis title\">ཨེགསི-ཚད་ཐིག་གི་མགོ་མིང་།</link>"
@@ -2743,7 +2636,6 @@ msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"X-axis title\">ཨེ
msgctxt ""
"05020000.xhp\n"
"hd_id3154732\n"
-"6\n"
"help.text"
msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"Y-axis title\">Y-axis title</link>"
msgstr "<link href=\"text/schart/01/05020200.xhp\" name=\"Y-axis title\">ཝའི་-ཚད་ཐིག་གི་མགོ་མིང་།</link>"
@@ -2752,7 +2644,6 @@ msgstr "<link href=\"text/schart/01/05020200.xhp\" name=\"Y-axis title\">ཝའ
msgctxt ""
"05020000.xhp\n"
"hd_id3154017\n"
-"7\n"
"help.text"
msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Z-axis title\">Z-axis title</link>"
msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Z-axis title\">ཛེཊི་-ཚད་ཐིག་གི་མགོ་མིང་།</link>"
@@ -2761,7 +2652,6 @@ msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Z-axis title\">ཛེ
msgctxt ""
"05020000.xhp\n"
"hd_id3153711\n"
-"8\n"
"help.text"
msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"All titles\">All titles</link>"
msgstr "<link href=\"text/schart/01/05020200.xhp\" name=\"All titles\">མགོ་མིང་ཚུ་ཆ་མཉམ།</link>"
@@ -2786,7 +2676,6 @@ msgstr "<bookmark_value>མགོ་མིང་ཚུ་ཞུན་དག་
msgctxt ""
"05020100.xhp\n"
"hd_id3150769\n"
-"2\n"
"help.text"
msgid "Title"
msgstr "མགོ་མིང་།"
@@ -2795,7 +2684,6 @@ msgstr "མགོ་མིང་།"
msgctxt ""
"05020100.xhp\n"
"par_id3149666\n"
-"1\n"
"help.text"
msgid "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Modifies the properties of the selected title.</ahelp></variable>"
msgstr "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">སེལ་འཐུ་གྲུབ་པའི་མགོ་མིང་གི་རྒྱུ་དངོས་ཚུ་ལེགས་བཅོས་འབདཝ་ཨིན།</ahelp></variable>"
@@ -2804,7 +2692,6 @@ msgstr "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">སེལ་འཐུ
msgctxt ""
"05020100.xhp\n"
"hd_id3149378\n"
-"3\n"
"help.text"
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">ཡིག་འབྲུ།</link>"
@@ -2829,7 +2716,6 @@ msgstr "<bookmark_value>དཔེ་རིས་ཚུ་ནང་གི་མ
msgctxt ""
"05020101.xhp\n"
"hd_id3150793\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/01/05020101.xhp\" name=\"Alignment\">Alignment</link>"
msgstr "<link href=\"text/schart/01/05020101.xhp\" name=\"Alignment\">ཕྲང་སྒྲིག</link>"
@@ -2838,7 +2724,6 @@ msgstr "<link href=\"text/schart/01/05020101.xhp\" name=\"Alignment\">ཕྲང
msgctxt ""
"05020101.xhp\n"
"par_id3125864\n"
-"2\n"
"help.text"
msgid "Modifies the alignment of the chart title."
msgstr "དཔེ་རིས་མགོ་མིང་གི་ཕྲང་སྒྲིག་འདི་ལེགས་བཅོས་འབདཝ་ཨིན།"
@@ -2847,7 +2732,6 @@ msgstr "དཔེ་རིས་མགོ་མིང་གི་ཕྲང་ས
msgctxt ""
"05020101.xhp\n"
"par_id3145748\n"
-"4\n"
"help.text"
msgid "Some of the options are not available for all types of labels. For example, there are different options for 2D and 3D object labels."
msgstr "ཁ་ཡིག་ཚུ་གི་དབྱེ་བ་ཚུ་ཆ་མཉམ་གྱི་དོན་ལུ་ གདམ་ཁ་ཚུ་ལ་ལོ་ཅིག་འཐོབ་མི་ཚུགས། དཔེར་ན་ ༢་ཌི་དང་༣་ཌི་དངོས་པོ་ཁ་ཡིག་ཚུ་གི་དོན་ལས་ གདམ་ཁ་ཚུ་སོ་སོ་སྦེ་ཡོདཔ་ཨིན།"
@@ -2856,7 +2740,6 @@ msgstr "ཁ་ཡིག་ཚུ་གི་དབྱེ་བ་ཚུ་ཆ་
msgctxt ""
"05020101.xhp\n"
"par_id3150717\n"
-"3\n"
"help.text"
msgid "Please note that problems may arise in displaying labels if the size of your chart is too small. You can avoid this by either enlarging the view or decreasing the font size."
msgstr "ཁྱོད་ཀྱི་དཔེ་རིས་ཀྱི་ཚད་འདི་གནམ་མེ་ས་མེད་ཆུང་ཀུ་ཨིན་པ་ཅིན་བཀྲམ་སྟོན་འབད་ནིའི་ཁ་ཡིག་ཚུ་ནང་དཀའ་ངལ་ཚུ་འབྱུང་ནི་ཨིནམ་སེམས་ཁར་ངེས་གནང་། ཁྱོད་ཀྱིས་མཐོང་སྣང་འདི་ཆེར་བསྐྱེད་འབད་ནི་དང་ཡང་ན་ཡིག་གཟུགས་ཀྱི་ཚད་འདི་མར་ཕབ་འབད་ཐོག་ལས་འ་ནི་འདི་ལས་ ཟུར་ཚུགས།"
@@ -2873,7 +2756,6 @@ msgstr "མགོ་མིང་།"
msgctxt ""
"05020200.xhp\n"
"hd_id3150541\n"
-"1\n"
"help.text"
msgid "Title"
msgstr "མགོ་མིང་།"
@@ -2882,7 +2764,6 @@ msgstr "མགོ་མིང་།"
msgctxt ""
"05020200.xhp\n"
"par_id3145173\n"
-"2\n"
"help.text"
msgid "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Modifies the properties of the selected title or the properties of all titles together.</ahelp></variable>"
msgstr "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\" visibility=\"visible\">སེལ་འཐུ་གྲུབ་པའི་མགོ་མིང་ཡང་ན་མགོ་མིང་གཅིག་ཁར་ཡོད་མི་ཚུ་གི་ རྒྱུ་དོངས་ཚུ་གི་རྒྱུ་དངོས་ཚུ་ལེགས་བཅོས་འབདཝ་ཨིན།</ahelp></variable>"
@@ -2891,7 +2772,6 @@ msgstr "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\" visibility=\"visible\"
msgctxt ""
"05020200.xhp\n"
"hd_id3152596\n"
-"3\n"
"help.text"
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">ཡིག་འབྲུ།</link>"
@@ -2908,7 +2788,6 @@ msgstr "ཕྲང་སྒྲིག"
msgctxt ""
"05020201.xhp\n"
"hd_id3149656\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/01/05020201.xhp\" name=\"Alignment\">Alignment</link>"
msgstr "<link href=\"text/schart/01/05020201.xhp\" name=\"Alignment\">ཕྲང་སྒྲིག</link>"
@@ -2917,7 +2796,6 @@ msgstr "<link href=\"text/schart/01/05020201.xhp\" name=\"Alignment\">ཕྲང
msgctxt ""
"05020201.xhp\n"
"par_id3156422\n"
-"2\n"
"help.text"
msgid "Modifies the alignment of axes or title labels."
msgstr "ཚད་ཐིག་དང་མགོ་མིང་ཁ་ཡིག་ཚུ་གི་ཕྲང་སྒྲིག་འབདི་ལེགས་བཅོས་འབདཝ་ཨིན།"
@@ -2926,7 +2804,6 @@ msgstr "ཚད་ཐིག་དང་མགོ་མིང་ཁ་ཡིག་
msgctxt ""
"05020201.xhp\n"
"par_id3150439\n"
-"76\n"
"help.text"
msgid "Some of the options listed here are not available for all labels. For example, there are different options for 2D and 3D object labels."
msgstr "ཁ་ཡིག་ཚུ་ཆ་མཉམ་གི་དོན་ལུ་ ནཱ་ལུ་ཐོ་བཀོད་འབད་ཡོད་པའི་ གདམ་ཁ་ཚུ་ལ་ལོ་ཅིག་འཐོབ་མི་ཚུགས། དཔེར་ན་ ༢་ཌི་དང་༣་ཌི་དངོས་པོའི་ཁ་ཡིག་ཚུ་གི་དོན་ལས་ གདམ་ཁ་ཚུ་སོ་སོ་སྦེ་ཡོད།"
@@ -2935,7 +2812,6 @@ msgstr "ཁ་ཡིག་ཚུ་ཆ་མཉམ་གི་དོན་ལུ
msgctxt ""
"05020201.xhp\n"
"hd_id3145750\n"
-"71\n"
"help.text"
msgid "Show labels"
msgstr "ཁ་ཡིག་ཚུ་སྟོན།"
@@ -2944,7 +2820,6 @@ msgstr "ཁ་ཡིག་ཚུ་སྟོན།"
msgctxt ""
"05020201.xhp\n"
"par_id3154319\n"
-"72\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_axisLabel/showlabelsCB\">Specifies whether to show or hide the axis labels.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/showlabelsCB\">ཚད་ཐིག་ཁ་ཡིག་ཚུ་ སྟོན་ནི་ཡང་ན་སྦ་བཞག་ནིཨིན་ནའི་བསྐོར་ལས་གསལ་བཀོད་འབདཝ་ཨིན།</ahelp>"
@@ -2953,7 +2828,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/showlabelsCB\">ཚད་ཐ
msgctxt ""
"05020201.xhp\n"
"par_id3147436\n"
-"75\n"
"help.text"
msgid "<variable id=\"sytextbeschr\"><ahelp hid=\".uno:ToggleAxisDescr\">The<emph> AxesTitle On/Off </emph>icon on the <emph>Formatting</emph> bar switches the labeling of all axes on or off.</ahelp></variable>"
msgstr "<variable id=\"sytextbeschr\"><ahelp hid=\".uno:ToggleAxisDescr\">ཚད་ཐིག་མགོ་མིང་ ཨཱོན/ཨོཕ<emph> ངོས་དཔར་ </emph>རྩ་སྒྲིག་འབད་ནིའི་ <emph>ཕྲ་རིང་གུར</emph> ཡོད་མི་འདི་གིས ཚད་ཐིག་ཨཱོན་ཡང་ན་ཨོཕ་ཆ་མཉམ་གྱི་ཁ་ཡིག་བཟོ་ནི་འདི་སོར་བསྒྱུར་འབདཝ་ཨིན།</ahelp></variable>"
@@ -2962,7 +2836,6 @@ msgstr "<variable id=\"sytextbeschr\"><ahelp hid=\".uno:ToggleAxisDescr\">ཚད
msgctxt ""
"05020201.xhp\n"
"hd_id3150717\n"
-"4\n"
"help.text"
msgid "Rotate text"
msgstr "ཚིག་ཡིག་བསྒྱིར།"
@@ -2971,7 +2844,6 @@ msgstr "ཚིག་ཡིག་བསྒྱིར།"
msgctxt ""
"05020201.xhp\n"
"par_id3154510\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\".uno:ToggleAxisDescr\">Defines the text direction of cell contents.</ahelp> Click one of the ABCD buttons to assign the required direction."
msgstr "<ahelp hid=\".uno:ToggleAxisDescr\">ནང་དོན་ནང་ཐིག་གི་ཚིག་ཡིག་ཁ་ཕྱོགས་དེ་ངེས་འཛིན་འབདཝ་ཨིན།</ahelp>དགོས་མཁོ་ཡོད་པའི་ཁ་ཕྱོགས་འདི་འགན་སྤྲོད་འབད་ནིའི་དོན་ལུ་ ཨེ་བི་སི་ཌི་གི་ ཨེབ་རྟ་ཅིག་ལུ་ ཨེབ་གཏང་འབད།"
@@ -2980,7 +2852,6 @@ msgstr "<ahelp hid=\".uno:ToggleAxisDescr\">ནང་དོན་ནང་ཐི
msgctxt ""
"05020201.xhp\n"
"hd_id3150327\n"
-"50\n"
"help.text"
msgid "ABCD wheel"
msgstr "ཨེ་བི་སི་ཌི་ འཁོར་ལོ།"
@@ -2989,7 +2860,6 @@ msgstr "ཨེ་བི་སི་ཌི་ འཁོར་ལོ།"
msgctxt ""
"05020201.xhp\n"
"par_id3149018\n"
-"49\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/titlerotationtabpage/dialCtrl\">Clicking anywhere on the wheel defines the variable text orientation.</ahelp> The letters \"ABCD\" on the button correspond to the new setting."
msgstr "<ahelp hid=\"modules/schart/ui/titlerotationtabpage/dialCtrl\">འཁོར་ལོ་གུར་ག་སྟེ་ཡང་ཨེབ་གཏང་ནི་འདི་གིས་ འགྱུར་ཅན་ཚིག་ཡིག་གི་ཕྱོགས་འདི་ངེས་འཛིན་འབདཝ་ཨིན།</ahelp> ཨེབ་རྟ་གུའི་ ཡི་གུ་\"ཨེ་བི་ཨི་ཌི\"འདི་སྒྲིག་སྟངས་གསརཔ་ལུ་ཆ་མཉམ་པ་ཨིན།"
@@ -2998,7 +2868,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/titlerotationtabpage/dialCtrl\">འཁོ
msgctxt ""
"05020201.xhp\n"
"hd_id3154254\n"
-"51\n"
"help.text"
msgid "ABCD button"
msgstr "ཨེ་བི་སི་ཌི་ ཨེབ་རྟ།"
@@ -3007,7 +2876,6 @@ msgstr "ཨེ་བི་སི་ཌི་ ཨེབ་རྟ།"
msgctxt ""
"05020201.xhp\n"
"par_id3154702\n"
-"52\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/titlerotationtabpage/stackedCB\">Assigns vertical text orientation for cell contents.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/titlerotationtabpage/stackedCB\">ནང་ཐིག་ནང་དོན་ཚུ་གི་དོན་ལུ་ ཀེར་ཐིག་ཚིག་ཡིག་གི་ཕྱོགས་འགན་སྤྲོད་འབདཝ་ཨིན།</ahelp>"
@@ -3016,7 +2884,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/titlerotationtabpage/stackedCB\">ནང
msgctxt ""
"05020201.xhp\n"
"par_id3150342\n"
-"53\n"
"help.text"
msgid "If you define a vertical x-axis label, the text may be cut off by the line of the x-axis."
msgstr "ཁྱོད་ཀྱིས་ཀེར་ཐིག་ ཨེགསི་-ཚད་ཐིག་གི་ཁ་ཡིག་ཅིག་གེས་འཛིན་འབད་བ་ཅིན་ ཨེགསི་-ཚད་ཐིག་གི་གྲལ་ཐིག་གིས་ཚད་ཐིག་འདི་བཏོག་གཏང་འོང་།"
@@ -3025,7 +2892,6 @@ msgstr "ཁྱོད་ཀྱིས་ཀེར་ཐིག་ ཨེགསི
msgctxt ""
"05020201.xhp\n"
"hd_id3166432\n"
-"54\n"
"help.text"
msgid "Degrees"
msgstr "ཁུག་ཟུར་ཚུ།"
@@ -3034,7 +2900,6 @@ msgstr "ཁུག་ཟུར་ཚུ།"
msgctxt ""
"05020201.xhp\n"
"par_id3150199\n"
-"55\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/titlerotationtabpage/OrientDegree\">Allows you to manually enter the orientation angle.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/titlerotationtabpage/OrientDegree\">ཁྱོད་ལུ་ཕྱོགས་གྲུ་ཟུར་འདི་ལག་ཐོག་ལས་ཐོ་བཀོད་འབད་བཅུགཔ་ཨིན།</ahelp>"
@@ -3043,7 +2908,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/titlerotationtabpage/OrientDegree\">ཁ
msgctxt ""
"05020201.xhp\n"
"hd_id3152985\n"
-"73\n"
"help.text"
msgid "Text flow"
msgstr "ཚིག་ཡིག་གི་འབབ་རྒྱུན།"
@@ -3052,7 +2916,6 @@ msgstr "ཚིག་ཡིག་གི་འབབ་རྒྱུན།"
msgctxt ""
"05020201.xhp\n"
"par_id3155089\n"
-"74\n"
"help.text"
msgid "Determines the text flow of the data label."
msgstr "གནད་སྡུད་ཁ་ཡིག་གི་ཚིག་ཡིག་འབབ་རྒྱུན་འདི་གཏན་འབེབས་བཟོཝ་ཨིན།"
@@ -3061,7 +2924,6 @@ msgstr "གནད་སྡུད་ཁ་ཡིག་གི་ཚིག་ཡི
msgctxt ""
"05020201.xhp\n"
"hd_id3148837\n"
-"57\n"
"help.text"
msgid "Overlap"
msgstr "མཐའ་མནོན།"
@@ -3070,7 +2932,6 @@ msgstr "མཐའ་མནོན།"
msgctxt ""
"05020201.xhp\n"
"par_id3151240\n"
-"58\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_axisLabel/overlapCB\">Specifies that the text in cells may overlap other cells.</ahelp> This can be especially useful if there is a lack of space. This option is not available with different title directions."
msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/overlapCB\">ནང་ཐིག་ཚུ་ནང་གི་ཚིག་ཡིག་གིས་གཞན་ནང་ཐིག་ཚུ་ལུ་མཐའ་མནོན་འབདཝ་ཨིནམ་གསལ་བཀོད་འབདཝ་ཨིན།</ahelp> འ་ནི་འདི་བར་སྟོང་ཉུང་དྲགས་ཡོད་པ་ཅིན་དམིགས་བསལ་གྱིས་ཕན་ཐོགས་ཅན་ཅིག་ཨིན། གདམ་ཁ་འདི་ སོ་སོ་མགོ་མིང་གི་ཁ་ཕྱོགས་ཚུ་དང་གཅིག་ཁར་འཐོབ་མི་ཚུགས།"
@@ -3079,7 +2940,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/overlapCB\">ནང་ཐི
msgctxt ""
"05020201.xhp\n"
"hd_id3157982\n"
-"68\n"
"help.text"
msgid "Break"
msgstr "མཚམས།"
@@ -3088,7 +2948,6 @@ msgstr "མཚམས།"
msgctxt ""
"05020201.xhp\n"
"par_id3155268\n"
-"69\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_axisLabel/breakCB\">Allows a text break.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/breakCB\">ཚིག་ཡིག་གི་མཚམས་ཅིག་བཀལ་བཅུགཔ་ཨིན།</ahelp>"
@@ -3097,7 +2956,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/breakCB\">ཚིག་ཡི
msgctxt ""
"05020201.xhp\n"
"hd_id3159205\n"
-"56\n"
"help.text"
msgid "The following options are not available for all chart types:"
msgstr "འོག་གི་གདམ་ཁ་ཚུ་ དཔེ་རིས་ཀྱི་དབྱེ་བ་ཚུ་ཆ་མཉམ་གྱི་དོན་ལུ་འཐོབ་མི་ཚུགས།"
@@ -3106,7 +2964,6 @@ msgstr "འོག་གི་གདམ་ཁ་ཚུ་ དཔེ་རིས
msgctxt ""
"05020201.xhp\n"
"hd_id3152872\n"
-"59\n"
"help.text"
msgid "Order"
msgstr "གོ་རིམ།"
@@ -3115,7 +2972,6 @@ msgstr "གོ་རིམ།"
msgctxt ""
"05020201.xhp\n"
"par_id3159230\n"
-"11\n"
"help.text"
msgid "The options on this tab are only available for a 2D chart, under <emph>Format - Axis - Y Axis</emph> or <emph>X Axis</emph>. In this area, you can define the alignment of the number labels on the X or Y axis."
msgstr "རྩ་སྒྲིག་-ཚད་ཐིག-ཝའིཚད་ཐིག་ ཡངན་ཨེགསིཚད་ཐིག་གི་འོག་ལུ་ཡོད་པའི་ འ་ནི་མཆོང་ལྡེ་གུའི་ <emph>གདམ་དེ་ཚུ་</emph> ༢་ཌི་དཔེ་རིས་ཅིག་གི་དོན་ལུ་ <emph>རྐྱངམ་ཅིག་འཐོབ་ཚུགས།</emph>འ་ནི་མངའ་ཁོངས་འདི་ནང་ ཁྱོད་ཀྱིས་ ཨེགསི་ ཡང་ན་ཝའི་ཚད་ཐིག་གུར་ ཨང་གྲངས་ཁ་ཡིག་ཚུ་གི་ཕྲང་སྒྲིག་འདི་ངེས་འཛིན་འབད་བཏུབ།"
@@ -3124,7 +2980,6 @@ msgstr "རྩ་སྒྲིག་-ཚད་ཐིག-ཝའིཚད་ཐི
msgctxt ""
"05020201.xhp\n"
"hd_id3146963\n"
-"60\n"
"help.text"
msgid "Tile"
msgstr "མགོ་མིང་།"
@@ -3133,7 +2988,6 @@ msgstr "མགོ་མིང་།"
msgctxt ""
"05020201.xhp\n"
"par_id3155758\n"
-"61\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_axisLabel/tile\">Arranges numbers on the axis side by side.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/tile\">ཚད་ཐིག་གུར་ཨང་གྲངས་ཚུ་དུས་མཉམ་དུ་བདེ་ཞིབ་འབདཝ་ཨིན།</ahelp>"
@@ -3142,7 +2996,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/tile\">ཚད་ཐིག་
msgctxt ""
"05020201.xhp\n"
"hd_id3151195\n"
-"62\n"
"help.text"
msgid "Stagger odd"
msgstr "སི་ཊེ་གར་ ཡ་ཅན།"
@@ -3151,7 +3004,6 @@ msgstr "སི་ཊེ་གར་ ཡ་ཅན།"
msgctxt ""
"05020201.xhp\n"
"par_id3145114\n"
-"63\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_axisLabel/odd\">Staggers numbers on the axis, even numbers lower than odd numbers.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/odd\">ཚད་ཐིག་གུར་ སི་ཊེ་གེརསི་ ཨང་གྲངས་ཚུ་ ཡ་ཅན་ཨང་གྲངས་ཚུ་ལས་དམའ་མི་ཆ་ཅན་ཨང་གྲངས་ཚུ།</ahelp>"
@@ -3160,7 +3012,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/odd\">ཚད་ཐིག་
msgctxt ""
"05020201.xhp\n"
"hd_id3147250\n"
-"64\n"
"help.text"
msgid "Stagger even"
msgstr "སི་ཊེ་གར་ ཆ་ཅན།"
@@ -3169,7 +3020,6 @@ msgstr "སི་ཊེ་གར་ ཆ་ཅན།"
msgctxt ""
"05020201.xhp\n"
"par_id3153958\n"
-"65\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_axisLabel/even\">Stagger numbers on the axes, odd numbers lower than even numbers.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/even\">ཚད་ཐིག་གུར་ སི་ཊེ་གར་ཨང་གྲངས་ཚུ་ ཆ་ཅན་ཨང་གྲངས་ཚུ་ལས་དམའ་མི་ཡ་ཅན་ཨང་གྲངས་ཚུ།</ahelp>"
@@ -3178,7 +3028,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/even\">ཚད་ཐིག་
msgctxt ""
"05020201.xhp\n"
"hd_id3147301\n"
-"66\n"
"help.text"
msgid "Automatic"
msgstr "རང་བཞིན་གྱི།"
@@ -3187,7 +3036,6 @@ msgstr "རང་བཞིན་གྱི།"
msgctxt ""
"05020201.xhp\n"
"par_id3147404\n"
-"67\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_axisLabel/auto\">Automatically arranges numbers on the axis.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/auto\">རང་བཞིན་གྱིས་ཚད་ཐིག་གུར་ཡོད་པའི་ཨང་གྲངས་ཚུ་བདེ་ཞིབ་འབདཝ་ཨིན།</ahelp>"
@@ -3196,7 +3044,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/auto\">རང་བཞིན
msgctxt ""
"05020201.xhp\n"
"par_id3149353\n"
-"70\n"
"help.text"
msgid "Problems may arise in displaying labels if the size of your chart is too small. You can avoid this by either enlarging the view or decreasing the font size."
msgstr "ཁྱོད་ཀྱི་དཔེ་རིས་ཀྱི་ཚད་འདི་གནམ་མེ་ས་མེད་ཆུང་ཀུ་ཨིན་པ་ཅིན་བཀྲམ་སྟོན་འབད་ནིའི་ཁ་ཡིག་ཚུ་ནང་དཀའ་ངལ་ཚུ་འབྱུང་འོང་། ཁྱོད་ཀྱིས་མཐོང་སྣང་འདི་ཆེར་བསྐྱེད་འབད་ནི་དང་ཡང་ན་ཡིག་གཟུགས་ཀྱི་ཚད་འདི་མར་ཕབ་འབད་ཐོག་ལས་འ་ནི་འདི་ལས་ ཟུར་ཚུགས།"
@@ -3229,7 +3076,6 @@ msgstr "གཐམ་རྒྱུད།"
msgctxt ""
"05030000.xhp\n"
"hd_id3145800\n"
-"1\n"
"help.text"
msgid "Legend"
msgstr "གཐམ་རྒྱུད།"
@@ -3238,7 +3084,6 @@ msgstr "གཐམ་རྒྱུད།"
msgctxt ""
"05030000.xhp\n"
"par_id3146972\n"
-"2\n"
"help.text"
msgid "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Defines the border, area and character attributes for a legend.</ahelp></variable>"
msgstr "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">གཏམ་རྒྱུད་ཀྱི་དོན་ལུ་ མཐའ་མཚམས་དང་མངའ་ཁོངས་ དེ་ལས་ཡིག་འབྲུའི་ཁྱད་ཆོས་ཚུ་ངེས་འཛིན་འབདཝ་ཨིན། </ahelp></variable>"
@@ -3247,7 +3092,6 @@ msgstr "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">གཏམ་རྒ
msgctxt ""
"05030000.xhp\n"
"hd_id3145232\n"
-"4\n"
"help.text"
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">ཡིག་འབྲུ།</link>"
@@ -3256,7 +3100,6 @@ msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">ཡིག
msgctxt ""
"05030000.xhp\n"
"hd_id3147344\n"
-"3\n"
"help.text"
msgid "<link href=\"text/schart/01/04020000.xhp\" name=\"Display\">Display</link>"
msgstr "<link href=\"text/schart/01/04020000.xhp\" name=\"Display\">བཀྲམ་སྟོན།</link>"
@@ -3273,7 +3116,6 @@ msgstr "ཚད་ཐིག"
msgctxt ""
"05040000.xhp\n"
"hd_id3149456\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/01/05040000.xhp\" name=\"Axis\">Axis</link>"
msgstr "<link href=\"text/schart/01/05040000.xhp\" name=\"Axis\">ཚད་ཐིག</link>"
@@ -3282,7 +3124,6 @@ msgstr "<link href=\"text/schart/01/05040000.xhp\" name=\"Axis\">ཚད་ཐི
msgctxt ""
"05040000.xhp\n"
"par_id3150441\n"
-"2\n"
"help.text"
msgid "This opens a submenu to edit axial properties."
msgstr ""
@@ -3291,7 +3132,6 @@ msgstr ""
msgctxt ""
"05040000.xhp\n"
"par_id3154319\n"
-"11\n"
"help.text"
msgid "The tabs in the dialogs depend on the chart type selected."
msgstr "ཌེའི་ལོསི་ནང་གི་ཨེབ་ལྡེ་ཚུ་ སེལ་འཐུ་འབད་ཡོད་པའི་ དཔེ་རིས་ཀྱི་དབྱེ་བ་གུ་ལུ་རྟེནམ་ཨིན།"
@@ -3300,7 +3140,6 @@ msgstr "ཌེའི་ལོསི་ནང་གི་ཨེབ་ལྡེ་
msgctxt ""
"05040000.xhp\n"
"hd_id3153729\n"
-"3\n"
"help.text"
msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X axis\">X axis</link>"
msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"X axis\">ཨེགསི་ ཚད་ཐིག</link>"
@@ -3309,7 +3148,6 @@ msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"X axis\">ཨེགས
msgctxt ""
"05040000.xhp\n"
"hd_id3147394\n"
-"4\n"
"help.text"
msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link>"
msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">ཝའི་ ཚད་ཐིག</link>"
@@ -3318,7 +3156,6 @@ msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">ཝའི་
msgctxt ""
"05040000.xhp\n"
"hd_id3153160\n"
-"9\n"
"help.text"
msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"Secondary X Axis\">Secondary X Axis</link>"
msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Secondary X Axis\">གལ་གནད་ཆུང་བའི་ ཨེགསི་ཚད་ཐིག</link>"
@@ -3327,7 +3164,6 @@ msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Secondary X Axis\">ག
msgctxt ""
"05040000.xhp\n"
"par_id3149401\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\".uno:DiagramAxisA\">Opens a dialog where you can edit the properties of the secondary X axis. To insert a secondary X axis, choose <emph>Insert - Axes</emph> and select <emph>X axis</emph>.</ahelp>"
msgstr "<ahelp hid=\".uno:DiagramAxisA\">ཁྱོད་ཀྱིས་གལ་གནད་ཆུང་བའི་ ཨེགསི་ཚད་ཐིག་གི་རྒྱུ་དངོས་དེ་ཞུན་དག་འབད་བཏུབ་ས་ལུ་ ཌེའི་ལོག་ཅིག་ཁ་ཕྱེཝ་ཨིན། གལ་གནད་ཆུང་བའི་ ཨེགསི་ཚད་ཐིག་ཅིག་བཙུགས་ནི་ལུ་ <emph>བཙུགས་ནིའི་-ཚད་ཐིག་གདམ་ཁ་རྐྱབ་ནི་དང་</emph> ཨེགསི་ ཚད་ཐིག་ <emph>སེལ་འཐུ་འབད།</emph>.</ahelp>"
@@ -3336,7 +3172,6 @@ msgstr "<ahelp hid=\".uno:DiagramAxisA\">ཁྱོད་ཀྱིས་གལ་
msgctxt ""
"05040000.xhp\n"
"hd_id3145640\n"
-"7\n"
"help.text"
msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Secondary Y Axis\">Secondary Y Axis</link>"
msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Secondary Y Axis\">གལ་གནད་ཆུང་བའི་ ཝའི་ཚད་ཐིག</link>"
@@ -3345,7 +3180,6 @@ msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Secondary Y Axis\">ག
msgctxt ""
"05040000.xhp\n"
"par_id3159264\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\".uno:DiagramAxisB\">Opens a dialog where you can edit the properties of the secondary Y axis. To insert a secondary Y axis, choose <emph>Insert - Axes</emph> and select <emph>Y axis</emph>.</ahelp>"
msgstr "<ahelp hid=\".uno:DiagramAxisB\">ཁྱོད་ཀྱིས་གལ་གནད་ཆུང་བའི་ ཝའི་ཚད་ཐིག་གི་རྒྱུ་དངོས་དེ་ཞུན་དག་འབད་བཏུབ་ས་ལུ་ ཌེའི་ལོག་ཅིག་ཁ་ཕྱེཝ་ཨིན། གལ་གནད་ཆུང་བའི་ ཝའི་ཚད་ཐིག་ཅིག་བཙུགས་ནི་ལུ་<emph> བཙུགས་ནིའི་-ཚད་ཐིག་གདམ་ཁ་རྐྱབ་ནི་དང </emph>ཝའི་ཚད་ཐིག་<emph>གདམ་ཁ་རྐྱབས།</emph>.</ahelp>"
@@ -3354,7 +3188,6 @@ msgstr "<ahelp hid=\".uno:DiagramAxisB\">ཁྱོད་ཀྱིས་གལ་
msgctxt ""
"05040000.xhp\n"
"hd_id3145228\n"
-"5\n"
"help.text"
msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"Z axis\">Z axis</link>"
msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Z axis\">ཛེཊི་ཚད་ཐིག</link>"
@@ -3363,7 +3196,6 @@ msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Z axis\">ཛེཊི
msgctxt ""
"05040000.xhp\n"
"hd_id3147345\n"
-"6\n"
"help.text"
msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"All axes\">All axes</link>"
msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"All axes\">ཚད་ཐིག་ཆ་མཉམ།</link>"
@@ -3388,7 +3220,6 @@ msgstr "<bookmark_value>ཨེགསི་ཚད་ཐིག་ རྩ་སྒ
msgctxt ""
"05040100.xhp\n"
"hd_id3153768\n"
-"1\n"
"help.text"
msgid "Axes"
msgstr "ཚད་ཐིག"
@@ -3397,7 +3228,6 @@ msgstr "ཚད་ཐིག"
msgctxt ""
"05040100.xhp\n"
"par_id3154319\n"
-"2\n"
"help.text"
msgid "<variable id=\"achsen\"><ahelp hid=\".uno:DiagramAxisAll\">Opens a dialog, where you can edit the properties of the selected axis.</ahelp></variable> The name of the dialog depends on the selected axis."
msgstr "<variable id=\"achsen\"><ahelp hid=\".uno:DiagramAxisAll\">ཁྱོད་ཀྱིས་སེལ་འཐུ་གྲུབ་་པའི་ཚད་ཐིག་གི་ ་རྒྱུ་དངོས་ཞུན་དག་འབད་བཏུབ་པའི་ཌེའི་ལོག་ཅིག་ཁ་ཕྱེཝ་ཨིན། </ahelp></variable>ཌེའི་ལོག་གི་མིང་དེ་སེལ་འཐུ་གྲུབ་པའི་ཚད་ཐིག་ལུ་རྟེན་དགོཔ་ཨིན།"
@@ -3406,7 +3236,6 @@ msgstr "<variable id=\"achsen\"><ahelp hid=\".uno:DiagramAxisAll\">ཁྱོད
msgctxt ""
"05040100.xhp\n"
"par_id3149667\n"
-"3\n"
"help.text"
msgid "The <link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link> has an enhanced dialog. For X-Y charts, the X axis chart is also enhanced by the <link href=\"text/schart/01/05040201.xhp\" name=\"Scaling\"><emph>Scaling</emph></link> tab."
msgstr "ཝའི་ཚད་ཐིག་ལུ་ <link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">གོང་སྤེལ་སོང་བའི་</link>ཌིའི་ལོག་ཅིག་ཡོདཔ་ཨིན། ཨེགསི་-ཝའི་དཔེ་རིས་ཚུ་གི་དོན་ལུ་ <link href=\"text/schart/01/05040201.xhp\" name=\"Scaling\"><emph>ཨེགསི་ཚད་ཐིག་གི་དཔེ་རིས་འདི་ཡང་་ཚད་རྟགས་ཨེབ་ལྡེ་གིས་</emph></link>གོང་སྤེལ་འབད་དེ་ཡོདཔ་ཨིན།"
@@ -3415,7 +3244,6 @@ msgstr "ཝའི་ཚད་ཐིག་ལུ་ <link href=\"text/schart/01/0
msgctxt ""
"05040100.xhp\n"
"par_id3159266\n"
-"4\n"
"help.text"
msgid "Scaling the X axis is only possible in the X-Y chart type."
msgstr "ཨེགསི་-ཝའི་དཔེ་རིས་ཀྱི་དབྱེ་བ་ནང་རྐྱངམ་ཅིག་ ཨེགསི་ཚད་ཐིག་འདི་ ཚད་རྟགས་དེབཏུབ་ཨིན།"
@@ -3424,7 +3252,6 @@ msgstr "ཨེགསི་-ཝའི་དཔེ་རིས་ཀྱི་ད
msgctxt ""
"05040100.xhp\n"
"hd_id3145230\n"
-"5\n"
"help.text"
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">ཡིག་འབྲུ།</link>"
@@ -3449,7 +3276,6 @@ msgstr "<bookmark_value>ཝའི་ ཚད་ཐིག་ རྩ་སྒྲི
msgctxt ""
"05040200.xhp\n"
"hd_id3145673\n"
-"1\n"
"help.text"
msgid "Y Axis"
msgstr "ཝའི་ཚད་ཐིག"
@@ -3458,7 +3284,6 @@ msgstr "ཝའི་ཚད་ཐིག"
msgctxt ""
"05040200.xhp\n"
"par_id3155628\n"
-"2\n"
"help.text"
msgid "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Opens the<emph> Y Axis </emph>dialog, to change properties of the Y axis.</ahelp></variable>"
msgstr ""
@@ -3467,7 +3292,6 @@ msgstr ""
msgctxt ""
"05040200.xhp\n"
"hd_id3145171\n"
-"3\n"
"help.text"
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">ཡིག་འབྲུ།</link>"
@@ -3476,7 +3300,6 @@ msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">ཡིག
msgctxt ""
"05040200.xhp\n"
"hd_id3146119\n"
-"4\n"
"help.text"
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">ཨང་གྲངས་ཚུ།</link>"
@@ -3501,7 +3324,6 @@ msgstr "<bookmark_value>ཚད་ཐིག་ཚུ་ཚད་འཇལ་ད
msgctxt ""
"05040201.xhp\n"
"hd_id3150868\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/01/05040201.xhp\" name=\"Scale\">Scale</link>"
msgstr "<link href=\"text/schart/01/05040201.xhp\" name=\"Scaling\">ཚད་འཇལ་དོ།</link>"
@@ -3510,7 +3332,6 @@ msgstr "<link href=\"text/schart/01/05040201.xhp\" name=\"Scaling\">ཚད་འ
msgctxt ""
"05040201.xhp\n"
"par_id3154013\n"
-"2\n"
"help.text"
msgid "Controls the scaling of the X or Y axis."
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ཚད་རིས་ཀྱི་ ཆ་ཚད་འདི་བསྒྱུར་བཅོས་འབདཝ་ཨིན།"
@@ -3519,7 +3340,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ཚད་ར
msgctxt ""
"05040201.xhp\n"
"par_id3148576\n"
-"79\n"
"help.text"
msgid "The axes are automatically scaled by $[officename] so that all values are optimally displayed."
msgstr "ཝའི་ཚད་ཐིག་འདི་$[officename]གི་རང་བཞིན་གྱིས་ཚད་འཇལ་ཏེ་ཡོདཔ་ཨིན་ འདི་འབད་བ་ལས་བརྟེན་ གནས་གོང་ཚུ་ཆ་མཉམ་གང་དྲག་སྦེ་བཀྲམ་སྟོན་འབད་དེ་ཡོདཔ་ཨིན།"
@@ -3528,7 +3348,6 @@ msgstr "ཝའི་ཚད་ཐིག་འདི་$[officename]གི་ར
msgctxt ""
"05040201.xhp\n"
"par_id3149379\n"
-"3\n"
"help.text"
msgid "To achieve specific results, you can manually change the axis scaling. For example, you can display only the top areas of the columns by shifting the zero line upwards."
msgstr "ཁྱོད་ཀྱིས་ དམིགས་བསལ་གྱི་གྲུབ་འབྲས་སྒྲུབ་ནིའི་དོན་ལུ་ ལག་ཐོག་ལས་ཚད་ཐིག་གི་ཚད་འཇལ་འདི་བསྒྱུར་བཅོས་འབད། དཔེར་ན་ ཁྱོད་ཀྱིས་ ཀླད་ཀོར་གྲལ་ཐིག་ཡར་ཕྱོགས་ལུ་བཤུད་ཐོག་ལས་ ཀེར་ཐིག་གི་མངའ་ཁོངས་མགོ་འདི་རྐྱངམ་གཅིག་བཀྲམ་སྟོན་འབད་ཚུགས།"
@@ -3537,7 +3356,6 @@ msgstr "ཁྱོད་ཀྱིས་ དམིགས་བསལ་གྱི
msgctxt ""
"05040201.xhp\n"
"hd_id3154730\n"
-"4\n"
"help.text"
msgid "Scale"
msgstr "ཚད་ཤིང་།"
@@ -3546,7 +3364,6 @@ msgstr "ཚད་ཤིང་།"
msgctxt ""
"05040201.xhp\n"
"par_id3149400\n"
-"5\n"
"help.text"
msgid "You can enter values for subdividing axes in this area. You can automatically set the properties <emph>Minimum, Maximum, Major interval, Minor interval count</emph> and <emph>Reference value</emph>."
msgstr "ཁྱོད་ཀྱིས་འ་ནི་མངའ་ཁོངས་འདི་ནང་ ཚད་ཐིག་བགོ་བཤའ་རྐྱབ་ནིའི་དོན་ལུ་ གནས་གོང་ཚུ་ཐོ་བཀོད་འབད་ཚུགས། ཁྱོད་ཀྱི་རང་བཞིན་གྱིས་ <emph>ཉུང་མཐའ་དང་མང་མཐའ་ བར་མཚམས་སྦོམ་དང་</emph>བར་མཚམས་ཆུང་ཀུ་<emph> དེ་ལས་ཚད་ཐིག་ལུ་ ཚུ་གི་རྒྱུ་དངོས་ལྔ་གཞི་སྒྲིག་འབད་ཚུགས།</emph>"
@@ -3555,7 +3372,6 @@ msgstr "ཁྱོད་ཀྱིས་འ་ནི་མངའ་ཁོངས་
msgctxt ""
"05040201.xhp\n"
"hd_id3150751\n"
-"6\n"
"help.text"
msgid "Minimum"
msgstr "ཉུང་མཐའ།"
@@ -3564,7 +3380,6 @@ msgstr "ཉུང་མཐའ།"
msgctxt ""
"05040201.xhp\n"
"par_id3153713\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_Scale/EDT_MIN\">Defines the minimum value for the beginning of the axis.</ahelp>"
msgstr ""
@@ -3573,7 +3388,6 @@ msgstr ""
msgctxt ""
"05040201.xhp\n"
"hd_id3156385\n"
-"8\n"
"help.text"
msgid "Maximum"
msgstr "མང་བཐའ།"
@@ -3582,7 +3396,6 @@ msgstr "མང་བཐའ།"
msgctxt ""
"05040201.xhp\n"
"par_id3159266\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_Scale/EDT_MAX\">Defines the maximum value for the end of the axis.</ahelp>"
msgstr ""
@@ -3591,7 +3404,6 @@ msgstr ""
msgctxt ""
"05040201.xhp\n"
"hd_id3155336\n"
-"10\n"
"help.text"
msgid "Major interval"
msgstr "བར་མཚམས་སྦོམ།"
@@ -3600,7 +3412,6 @@ msgstr "བར་མཚམས་སྦོམ།"
msgctxt ""
"05040201.xhp\n"
"par_id3143218\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_Scale/EDT_STEP_MAIN\">Defines the interval for the main division of the axes.</ahelp> The main interval cannot be larger than the value area."
msgstr ""
@@ -3609,7 +3420,6 @@ msgstr ""
msgctxt ""
"05040201.xhp\n"
"hd_id3154020\n"
-"12\n"
"help.text"
msgid "Minor interval count"
msgstr "བར་མཚམས་ཆུང་ཀུའི་རྟགས།"
@@ -3618,7 +3428,6 @@ msgstr "བར་མཚམས་ཆུང་ཀུའི་རྟགས།"
msgctxt ""
"05040201.xhp\n"
"par_id3154656\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_Scale/MT_STEPHELP\">Defines the interval for the subdivision of the axes.</ahelp>"
msgstr ""
@@ -3627,7 +3436,6 @@ msgstr ""
msgctxt ""
"05040201.xhp\n"
"hd_id3150089\n"
-"14\n"
"help.text"
msgid "Reference value"
msgstr ""
@@ -3636,7 +3444,6 @@ msgstr ""
msgctxt ""
"05040201.xhp\n"
"par_id3152990\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_Scale/EDT_ORIGIN\">Specifies at which position to display the values along the axis.</ahelp>"
msgstr ""
@@ -3645,7 +3452,6 @@ msgstr ""
msgctxt ""
"05040201.xhp\n"
"hd_id3166432\n"
-"62\n"
"help.text"
msgid "Automatic"
msgstr "རང་བཞིན་གྱི།"
@@ -3654,7 +3460,6 @@ msgstr "རང་བཞིན་གྱི།"
msgctxt ""
"05040201.xhp\n"
"par_id3145389\n"
-"63\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_Scale/CBX_AUTO_ORIGIN\">You must first deselect the <emph>Automatic</emph> option in order to modify the values.</ahelp>"
msgstr ""
@@ -3663,7 +3468,6 @@ msgstr ""
msgctxt ""
"05040201.xhp\n"
"par_id3149129\n"
-"64\n"
"help.text"
msgid "Disable this feature if you are working with \"fixed\" values, as it does not permit automatic scaling."
msgstr "ཁྱོད་ \"གཏན་བཟོས།\"གནས་གོང་ཚུ་དང་གཅིག་ཁར་ལཱ་འབད་དོ་ཡོད་པ་ཅིན་ དེ་གིས་རང་བཞིན་གྱི་ཚད་འཇལ་ནི་ལུ་ གནང་བ་མི་བྱིན་དོ་ཡོདཔ་ལས་ འ་ནི་ཁྱད་རྣམ་འདི་ལྕོགས་མིན་བཟོ།"
@@ -3672,7 +3476,6 @@ msgstr "ཁྱོད་ \"གཏན་བཟོས།\"གནས་གོང་
msgctxt ""
"05040201.xhp\n"
"hd_id3159206\n"
-"16\n"
"help.text"
msgid "Logarithmic scale"
msgstr "མཉམ་གྲངས་ཆ་ཚད།"
@@ -3681,7 +3484,6 @@ msgstr "མཉམ་གྲངས་ཆ་ཚད།"
msgctxt ""
"05040201.xhp\n"
"par_id3145360\n"
-"17\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_Scale/CBX_LOGARITHM\">Specifies that you want the axis to be subdivided logarithmically.</ahelp>"
msgstr ""
@@ -3690,7 +3492,6 @@ msgstr ""
msgctxt ""
"05040201.xhp\n"
"par_id3153956\n"
-"61\n"
"help.text"
msgid "Use this feature if you are working with values that differ sharply from each other. You can use logarithmic scaling to make the grid lines of the axis equidistant but have values that may increase or decrease."
msgstr "ཁྱོད་ཀྱིས་གཅིག་ལས་གཅིག་སོ་སོ་སྦེ་ཡོད་མི་གནས་གོང་ཚུ་དང་གཅིག་ཁར་ལཱ་འབད་དོ་ཡོད་པ་ཅིན་ འ་ནི་ཁྱན་རྣམ་འདི་ལག་ལེན་འཐབ། ཁྱོད་ཀྱི་ཚད་ཐིག་གི་ གིརིཊི་གྲལ་ཐིག་ཚུ་རིང་འཐུང་མཉམ་པ་སྦེ་བཟོ་ནིའི་དོན་ལུ་ མཉམ་གྲངས་ཚད་འཇལ་དེ་ལག་ལེན་འཐབ་ འདི་འབདཝ་ད་ ཡར་འཕར་ཡང་ན་མར་ཕབ་འབད་ནིའི་གནས་གོང་ཚུ་ཡོདཔ་སྦེ་བཞག"
@@ -3779,7 +3580,6 @@ msgstr "<bookmark_value>ཚད་ཐིག་ཚུ་ཚད་འཇལ་ད
msgctxt ""
"05040202.xhp\n"
"hd_id3150868\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/01/05040202.xhp\" name=\"positioning\">Positioning</link>"
msgstr "<link href=\"text/schart/01/04060000.xhp\" name=\"Options\">གདམ་ཁ་ཚུ།</link>"
@@ -3788,7 +3588,6 @@ msgstr "<link href=\"text/schart/01/04060000.xhp\" name=\"Options\">གདམ་
msgctxt ""
"05040202.xhp\n"
"par_id3154013\n"
-"2\n"
"help.text"
msgid "Controls the positioning of the axis."
msgstr ""
@@ -3861,7 +3660,6 @@ msgstr ""
msgctxt ""
"05040202.xhp\n"
"hd_id3149048\n"
-"65\n"
"help.text"
msgid "Major:"
msgstr ""
@@ -3870,7 +3668,6 @@ msgstr ""
msgctxt ""
"05040202.xhp\n"
"par_id3150397\n"
-"71\n"
"help.text"
msgid "Specifies whether the marks are to be on the inner or outer side of the axis. It is possible to combine both: you will then see marks on both sides."
msgstr "རྟགས་ཚུ་ཚད་ཐིག་གི་ ནང་ན་ཡང་ན་ཕྱི་ཁར་བཀོད་ནིའི་ཨིན་སྐོར་ལས་གསལ་བཀོད་འབདཝ་ཨིན། གཉིས་ཆ་རང་གཅིག་ཁར་མཉམ་མཐུད་ཡང་འབད་ཚུགས: དེ་ལས་ཁྱོད་ཀྱིས་ཟུར་གཉིས་ཆ་རང་ནང་རྟགས་དེ་ཚུ་མཐོང་ཚུགས།"
@@ -3879,7 +3676,6 @@ msgstr "རྟགས་ཚུ་ཚད་ཐིག་གི་ ནང་ན་
msgctxt ""
"05040202.xhp\n"
"hd_id3151387\n"
-"66\n"
"help.text"
msgid "Inner"
msgstr "ནང་གི"
@@ -3888,7 +3684,6 @@ msgstr "ནང་གི"
msgctxt ""
"05040202.xhp\n"
"par_id3156399\n"
-"72\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_TICKS_INNER\">Specifies that marks are placed on the inner side of the axis.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_TICKS_INNER\">རྟགས་དེ་ཚུ་ཚད་ཐིག་གི་ནང་ཕྱོགས་གུར་བཞག་ཡོདཔ་ཨིནམ་གསལ་བཀོད་འབདཝ་ཨིན།</ahelp>"
@@ -3897,7 +3692,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_TICKS_INNER\">རྟ
msgctxt ""
"05040202.xhp\n"
"hd_id3166469\n"
-"67\n"
"help.text"
msgid "Outer"
msgstr "ཕྱིའི།"
@@ -3906,7 +3700,6 @@ msgstr "ཕྱིའི།"
msgctxt ""
"05040202.xhp\n"
"par_id3153120\n"
-"73\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_TICKS_OUTER\">Specifies that marks are placed on the outer side of the axis.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_TICKS_OUTER\">རྟགས་དེ་ཚུ་ཚད་ཐིག་གི་ ཕྱི་ཕྱོགས་གུར་བཞག་ཡོདཔ་ཨིནམ་གསལ་བཀོད་འབདཝ་ཨིན།</ahelp>"
@@ -3915,7 +3708,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_TICKS_OUTER\">རྟ
msgctxt ""
"05040202.xhp\n"
"hd_id3159128\n"
-"68\n"
"help.text"
msgid "Minor:"
msgstr ""
@@ -3924,7 +3716,6 @@ msgstr ""
msgctxt ""
"05040202.xhp\n"
"par_id3146885\n"
-"74\n"
"help.text"
msgid "This area is used to define the marking dashes between the axis marks. It is possible to activate both fields. This will result in a marking line running from the outside to the inside."
msgstr "མངའ་ཁོངས་འདི་ཚད་ཐིག་རྟགས་ཚུ་གི་བར་ན་ རྟགས་བཀལ་ནིའི་སྦྲེལ་རྟགས་ཚུ་ངེས་འཛིན་འབད་ནི་ལུ་ལག་ལེན་འཐབ་སྟེ་ཡོདཔ་ཨིན། ས་སྒོ་གཉིས་ཆ་རང་ཤུགས་ལྡན་བཟོ་ཚུགས། འདི་གིས་ཕྱི་ཁར་ལས་ནང་ན་ གཡོག་བཀོལ་ནིའི་གྲལ་ཐིག་གི་རྟགས་ཅིག་ནང་འགྲུབ་འབྲས་འཐོན་འོང་།"
@@ -3933,7 +3724,6 @@ msgstr "མངའ་ཁོངས་འདི་ཚད་ཐིག་རྟགས
msgctxt ""
"05040202.xhp\n"
"hd_id3150654\n"
-"69\n"
"help.text"
msgid "Inner"
msgstr "ནང་གི"
@@ -3942,7 +3732,6 @@ msgstr "ནང་གི"
msgctxt ""
"05040202.xhp\n"
"par_id3146880\n"
-"75\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_MINOR_INNER\">Specifies that minor interval marks are placed on the inner side of the axis.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_MINOR_INNER\">བར་མཚམས་ཆུང་ཀུའི་རྟགས་དེ་ཚུ་ཚད་ཐིག་གི་ནང་ཕྱོགས་གུར་བཞག་ཡོདཔ་ཨིནམསྦེ་གསལ་བཀོད་འབདཝ་ཨིན།</ahelp>"
@@ -3951,7 +3740,6 @@ msgstr "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_MINOR_INNER\">བར
msgctxt ""
"05040202.xhp\n"
"hd_id3154677\n"
-"70\n"
"help.text"
msgid "Outer"
msgstr "ཕྱིའི།"
@@ -3960,7 +3748,6 @@ msgstr "ཕྱིའི།"
msgctxt ""
"05040202.xhp\n"
"par_id3150745\n"
-"76\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_MINOR_OUTER\">Specifies that minor interval marks are placed on the outer side of the axis.</ahelp>"
msgstr "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_MINOR_OUTER\">བར་མཚམས་ཆུང་ཀུའི་རྟགས་དེ་ཚུ་ ཚད་ཐིག་གི་ཕྱི་ཕྱོགས་གུར་བཞག་ཡོདཔ་ཨིནམསྦེ་གསལ་བཀོད་འབདཝ་ཨིན།</ahelp>"
@@ -4001,7 +3788,6 @@ msgstr "<bookmark_value>གིརིཊིསི རྩ་སྒྲིག་འ
msgctxt ""
"05050000.xhp\n"
"hd_id3155602\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/01/05050000.xhp\" name=\"Grid\">Grid</link>"
msgstr "<link href=\"text/schart/01/05050000.xhp\" name=\"Grid\">གིརིཊི།</link>"
@@ -4010,7 +3796,6 @@ msgstr "<link href=\"text/schart/01/05050000.xhp\" name=\"Grid\">གིརིཊ
msgctxt ""
"05050000.xhp\n"
"par_id3155764\n"
-"2\n"
"help.text"
msgid "Opens a submenu, where you select the grid you want to format."
msgstr "ཁྱོད་ཀྱིས་རྩ་སྒྲིག་འབད་ནི་ལུ་སེལ་འཐུ་འབད་མི་ གིརིཊི་ག་འབད་ས་ལུ་ ཡན་ལག་དཀར་ཆག་ཅིག་ཁ་ཕྱེཝ་ཨིན།"
@@ -4019,7 +3804,6 @@ msgstr "ཁྱོད་ཀྱིས་རྩ་སྒྲིག་འབད་ན
msgctxt ""
"05050000.xhp\n"
"hd_id3150045\n"
-"3\n"
"help.text"
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Major Grid\">X Axis Major Grid</link>"
msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Minor Grid\">ཨེགསི་ཚད་ཐིག་གི་གིརིཊི་ཆུང་ཀུ།</link>"
@@ -4028,7 +3812,6 @@ msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Minor Grid\">
msgctxt ""
"05050000.xhp\n"
"hd_id3145228\n"
-"4\n"
"help.text"
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Major Grid\">Y Axis Major Grid</link>"
msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Minor Grid\">ཝའི་ཚད་ཐིག་གི་ གིརིཊི་ཆུང་ཀུ</link>"
@@ -4037,7 +3820,6 @@ msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Minor Grid\">
msgctxt ""
"05050000.xhp\n"
"hd_id3147346\n"
-"5\n"
"help.text"
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis Major Grid\">Z Axis Major Grid</link>"
msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis Main Grid\">ཛེཊི་ཚད་ཐིག་གི་གིརིཊི་གཙོ་བོ།</link>"
@@ -4046,7 +3828,6 @@ msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis Main Grid\">ཛ
msgctxt ""
"05050000.xhp\n"
"hd_id3154021\n"
-"6\n"
"help.text"
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Minor Grid\">X Axis Minor Grid</link>"
msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Minor Grid\">ཨེགསི་ཚད་ཐིག་གི་གིརིཊི་ཆུང་ཀུ།</link>"
@@ -4055,7 +3836,6 @@ msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Minor Grid\">
msgctxt ""
"05050000.xhp\n"
"hd_id3150307\n"
-"7\n"
"help.text"
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Minor Grid\">Y Axis Minor Grid</link>"
msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Minor Grid\">ཝའི་ཚད་ཐིག་གི་ གིརིཊི་ཆུང་ཀུ</link>"
@@ -4064,7 +3844,6 @@ msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Minor Grid\">
msgctxt ""
"05050000.xhp\n"
"hd_id3166428\n"
-"8\n"
"help.text"
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis minor Grid\">Z Axis minor Grid</link>"
msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis minor Grid\">ཛེཊི་ཚད་ཐིག་གི་ གིརིཊི་ཆུང་ཀུ</link>"
@@ -4073,7 +3852,6 @@ msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis minor Grid\">
msgctxt ""
"05050000.xhp\n"
"hd_id3145585\n"
-"9\n"
"help.text"
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"All Axis Grids\">All Axis Grids</link>"
msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"All Axis Grids\">གིརིཊིསི་ གི་ཚད་ཐིག་ཆ་མཉམ།</link>"
@@ -4098,7 +3876,6 @@ msgstr "<bookmark_value>ཨེགསི་ཚད་ཐིག་་ གིརི
msgctxt ""
"05050100.xhp\n"
"hd_id3150398\n"
-"2\n"
"help.text"
msgid "Grid"
msgstr "གིརིཊི།"
@@ -4107,7 +3884,6 @@ msgstr "གིརིཊི།"
msgctxt ""
"05050100.xhp\n"
"par_id3152577\n"
-"1\n"
"help.text"
msgid "<variable id=\"gitter\"><ahelp hid=\".uno:DiagramGridAll\">Opens the <emph>Grid</emph> dialog for defining grid properties.</ahelp></variable>"
msgstr "<variable id=\"gitter\"><ahelp hid=\".uno:DiagramGridAll\">གིརིཊི་ རྒྱུ་དངོས་ཚུ་ <emph>ངེས་འཛིན་འབད་ནིའི་དོན་ལུ</emph>གིརིཊི་ཌེའི་ལོག་ཁ་ཕྱེཝ་ཨིན། </ahelp></variable>"
@@ -4132,7 +3908,6 @@ msgstr "<bookmark_value>དཔེ་རིས་ཚུ་ རྩ་སྒྲི
msgctxt ""
"05060000.xhp\n"
"hd_id3150792\n"
-"1\n"
"help.text"
msgid "Chart Wall"
msgstr "དཔེ་རིས་ཀྱི་གྱང་རྩིག"
@@ -4141,7 +3916,6 @@ msgstr "དཔེ་རིས་ཀྱི་གྱང་རྩིག"
msgctxt ""
"05060000.xhp\n"
"par_id3154685\n"
-"2\n"
"help.text"
msgid "<variable id=\"diagramm\"><ahelp visibility=\"visible\" hid=\".uno:DiagramWall\">Opens the<emph> Chart Wall</emph> dialog, where you can modify the properties of the chart wall. The chart wall is the \"vertical\" background behind the data area of the chart.</ahelp></variable>"
msgstr "<variable id=\"diagramm\"><ahelp visibility=\"visible\" hid=\".uno:DiagramWall\">ཁྱོད་ཀྱི་དཔེ་རིས་གྱང་རྩིག་གི་<emph> རྒྱུ་དངོས་ཚུ་ལེགས་བཅོས་འབད་བཏུབ་ས་ལུ</emph> དཔེ་རིས་གྱང་རྩིག་གི་ཌེའི་ལོག་ཅིག་ཁ་ཕྱེཝ་ཨིན། དཔེ་རིས་གྱང་རྩིག་འདི་ \" དཔེ་རིས་ཀྱི་གནད་སྡུད་མངའ་ཁོངས་ རྒྱབ་ཁར་གྱི་རྒྱབ་གཞི་ཅིག་ཨིན།</ahelp></variable>"
@@ -4166,7 +3940,6 @@ msgstr "<bookmark_value>དཔེ་རིས་ཚུ་ རྩ་སྒྲི
msgctxt ""
"05070000.xhp\n"
"hd_id3154346\n"
-"1\n"
"help.text"
msgid "Chart Floor"
msgstr "དཔེ་རིས་འཐིང་གཞི།"
@@ -4175,7 +3948,6 @@ msgstr "དཔེ་རིས་འཐིང་གཞི།"
msgctxt ""
"05070000.xhp\n"
"par_id3150767\n"
-"2\n"
"help.text"
msgid "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">Opens the<emph> Chart Floor</emph> dialog, where you can modify the properties of the chart floor. The chart floor is the lower area in 3D charts. This function is only available for 3D charts.</ahelp></variable>"
msgstr "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">ཁྱོད་ཀྱི་དཔེ་རིས་འཐིང་གཞིའི་རྒྱུ་དངོས་ཚུ་<emph>ལེགས་བཅོས་འབད་བཏུབ་ས་ལུ་ </emph>དཔེ་རིས་འཐིང་གཞིའི་ ཌིའིལོག་ཅིག་ཁ་ཕྱེཝ་ཨིན། དཔེ་རིས་མཐིང་གཞི་འདི་ ༣-ཌི་དཔེ་རིས་ཚུ་ནང་མངའ་ཁོངས་དམའ་མི་ཅིག་ཨིན། ལས་འགན་འདི་ ༣-ཌི་དཔེ་རིས་ཚུ་གི་དོན་ལུ་རྐྱངམ་ཅིག་འཐོབ་ཚུགས།</ahelp></variable>"
@@ -4200,7 +3972,6 @@ msgstr "<bookmark_value>དཔེ་རིས་ རྩ་སྒྲིག་འ
msgctxt ""
"05080000.xhp\n"
"hd_id3149670\n"
-"1\n"
"help.text"
msgid "Chart Area"
msgstr "དེ་རིས་མངའ་ཁོངས།"
@@ -4209,7 +3980,6 @@ msgstr "དེ་རིས་མངའ་ཁོངས།"
msgctxt ""
"05080000.xhp\n"
"par_id3125864\n"
-"2\n"
"help.text"
msgid "<variable id=\"diagrammflaeche\"><ahelp visibility=\"visible\" hid=\".uno:DiagramArea\">Opens the<emph> Chart Area</emph> dialog, where you can modify the properties of the chart area. The chart area is the background behind all elements of the chart.</ahelp></variable>"
msgstr "<variable id=\"diagrammflaeche\"><ahelp visibility=\"visible\" hid=\".uno:DiagramArea\">ཁྱོད་ཀྱི་དཔེ་རིས་མངའ་ཁོངས་ཀྱི་རྒྱུ་དངོས་ཚུ་<emph>ལེགས་བཅོས་འབད་བཏུབ་ས་ལུ་</emph>དཔེ་རིས་མངའ་ཁོངས་ཀྱི་ ཌིའིལོག་ཅིག་ཁ་ཕྱེཝ་ཨིན། དཔེ་རིས་མངའ་ཁོངས་འདི་ དཔེ་རིས་ཀྱི་རྒྱུ་རྫས་ཆ་མཉམ་གྱི་རྒྱབ་ཁའི་རྒྱབ་གཞི་ཨིན།</ahelp></variable>"
@@ -4226,7 +3996,6 @@ msgstr "བདེ་ཞིབ།"
msgctxt ""
"05120000.xhp\n"
"hd_id3159153\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/01/05120000.xhp\" name=\"Arrangement\">Arrangement</link>"
msgstr "<link href=\"text/schart/01/05120000.xhp\" name=\"Arrangement\">བདེ་ཞིབ</link>"
@@ -4235,7 +4004,6 @@ msgstr "<link href=\"text/schart/01/05120000.xhp\" name=\"Arrangement\">བད
msgctxt ""
"05120000.xhp\n"
"par_id3145750\n"
-"2\n"
"help.text"
msgid "Allows you to modify the order of the data series already set in the chart."
msgstr "ཁྱོད་ལུ་དཔེ་རིས་ནང་ལུ་ ཧེ་མ་ལས་རང་གཞི་སྒྲིག་འབད་དེ་ཡོད་པའི་ གནད་སྡུད་གྲལ་ཐིག་ཚུ་གི་གོ་རིམ་འདི་ ལེགས་བཅོས་འབད་བཅུགཔ་ཨིན།"
@@ -4244,7 +4012,6 @@ msgstr "ཁྱོད་ལུ་དཔེ་རིས་ནང་ལུ་ ཧ
msgctxt ""
"05120000.xhp\n"
"par_id3155411\n"
-"8\n"
"help.text"
msgid "The position of the data in the data table remains unchanged. You can only choose the commands after inserting a chart in $[officename] Calc."
msgstr "གནད་སྡུད་ཐིག་ཁྲམ་ནང་གི་གནད་སྡུད་ཀྱི་གནས་ས་འདི་མི་བསྒྱུར་བ་སྡོདཔ་ཨིན། $[officename] སི་ཨེ་ཨེལ་སི་ནང་ དཔེ་རིས་ཅིག་བཙུགས་ཚར་བའི་ཤུལ་ལས་རྐྱངམ་ཅིག་ཁྱོད་ཀྱིས་བརྡ་བཀོད་ཚུ་གདམ་ཁ་རྐྱབ།"
@@ -4253,7 +4020,6 @@ msgstr "གནད་སྡུད་ཐིག་ཁྲམ་ནང་གི་ག
msgctxt ""
"05120000.xhp\n"
"par_id3154757\n"
-"5\n"
"help.text"
msgid "This function is only available if you have data displayed in columns. It is not possible to switch to data display in rows."
msgstr "ཀེར་ཐིག་ཚུ་གི་ནང་ལུ་ ཁྱོད་ཀྱིས་གནད་སྡུད་བཀྲམ་སྟོན་འབད་འདི་ཡོད་པ་ཅིན་རྐྱངམ་ཅིག་ ལས་འགན་འདི་འཐོབ་ཚུགསཔ་ཨིན། གྲལ་ཐིག་ནང་གནད་སྡུད་བཀྲམ་སྟོན་འབད་ནི་ལུ་ སོར་བསྒྱུར་འབད་མི་ཚུགས།"
@@ -4262,7 +4028,6 @@ msgstr "ཀེར་ཐིག་ཚུ་གི་ནང་ལུ་ ཁྱོ
msgctxt ""
"05120000.xhp\n"
"hd_id3147339\n"
-"3\n"
"help.text"
msgid "Bring Forward"
msgstr "གདོང་བསྐྱོད་ལུ་འབག་ཤོག"
@@ -4271,7 +4036,6 @@ msgstr "གདོང་བསྐྱོད་ལུ་འབག་ཤོག"
msgctxt ""
"05120000.xhp\n"
"par_id3149259\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\".uno:Forward\">Brings the selected data series forward (to the right).</ahelp>"
msgstr "<ahelp hid=\".uno:Forward\">སེལ་འཐུ་གྲུབ་པའི་གནད་སྡུད་གྲལ་ཐིག་འདི་གདོང་བསྐྱོད་འབདཝ་ཨིན།(གཡས་ཁ་ཐུག་ལུ་).</ahelp>"
@@ -4280,7 +4044,6 @@ msgstr "<ahelp hid=\".uno:Forward\">སེལ་འཐུ་གྲུབ་པ
msgctxt ""
"05120000.xhp\n"
"hd_id3146316\n"
-"4\n"
"help.text"
msgid "Send Backward"
msgstr "རྒྱབ་བསྐྱོད་གཏང་།"
@@ -4289,7 +4052,6 @@ msgstr "རྒྱབ་བསྐྱོད་གཏང་།"
msgctxt ""
"05120000.xhp\n"
"par_id3147001\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\".uno:Backward\">Sends the selected data series backward (to the left).</ahelp>"
msgstr "<ahelp hid=\".uno:Backward\">སེལ་འཐུ་གྲུབ་པའི་གནད་སྡུད་གྲལ་ཐིག་འདི་རྒྱབ་བསྐྱོད་(གཡོན་ལུ།)གཏངམ་ཨིན།</ahelp>"
@@ -5271,7 +5033,6 @@ msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\"
msgstr ""
#: type_column_bar.xhp
-#, fuzzy
msgctxt ""
"type_column_bar.xhp\n"
"hd_id9826960\n"
@@ -5728,7 +5489,6 @@ msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\"
msgstr ""
#: type_line.xhp
-#, fuzzy
msgctxt ""
"type_line.xhp\n"
"hd_id9826349\n"
@@ -6853,7 +6613,7 @@ msgctxt ""
"type_xy.xhp\n"
"par_id4634235\n"
"help.text"
-msgid "The chart is created with default settings. After the chart is finished, you can edit its properties to change the appearance. Line styles and icons can be changed on the <emph>Line</emph>tab page of the data series properties dialog."
+msgid "The chart is created with default settings. After the chart is finished, you can edit its properties to change the appearance. Line styles and icons can be changed on the <emph>Line</emph> tab page of the data series properties dialog."
msgstr ""
#: type_xy.xhp
diff --git a/source/dz/helpcontent2/source/text/schart/02.po b/source/dz/helpcontent2/source/text/schart/02.po
index 9435c6833b0..aec7edf9e67 100644
--- a/source/dz/helpcontent2/source/text/schart/02.po
+++ b/source/dz/helpcontent2/source/text/schart/02.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:02+0100\n"
-"PO-Revision-Date: 2011-04-05 19:29+0200\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"PO-Revision-Date: 2013-05-24 08:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,8 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369384078.000000\n"
#: 01190000.xhp
msgctxt ""
@@ -27,7 +28,6 @@ msgstr "གྲལ་ཐིག་ཚུ་ནང་གནད་སྡུད།"
msgctxt ""
"01190000.xhp\n"
"hd_id3146976\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/02/01190000.xhp\" name=\"Data in Rows\">Data in Rows</link>"
msgstr "<link href=\"text/schart/02/01190000.xhp\" name=\"Data in Rows\">གྲལ་ཐིག་ནང་གནད་སྡུད།</link>"
@@ -36,7 +36,6 @@ msgstr "<link href=\"text/schart/02/01190000.xhp\" name=\"Data in Rows\">གྲ
msgctxt ""
"01190000.xhp\n"
"par_id3154490\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DataInRows\">Changes the arrangement of the chart data.</ahelp>"
msgstr "<ahelp hid=\".uno:DataInRows\">དཔེ་རིས་གནད་སྡུད་ཀྱི་བདེ་ཞིབ་འདི་བསྒྱུར་བཅོས་འབདཝ་ཨིན།</ahelp>"
@@ -53,7 +52,6 @@ msgstr "<image id=\"img_id3145643\" src=\"cmd/sc_datainrows.png\"><alt id=\"alt_
msgctxt ""
"01190000.xhp\n"
"par_id3154754\n"
-"3\n"
"help.text"
msgid "Data in Rows"
msgstr "གྲལ་ཐིག་ཚུ་ནང་གནད་སྡུད།"
@@ -70,7 +68,6 @@ msgstr "ཀེར་ཐིག་ཚུ་ནང་གནད་སྡུད་ཚ
msgctxt ""
"01200000.xhp\n"
"hd_id3150868\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/02/01200000.xhp\" name=\"Data in Columns\">Data in Columns</link>"
msgstr "<link href=\"text/schart/02/01200000.xhp\" name=\"Data in Columns\">ཀེར་ཐིག་ཚུ་ནང་གནད་སྡུད།</link>"
@@ -79,7 +76,6 @@ msgstr "<link href=\"text/schart/02/01200000.xhp\" name=\"Data in Columns\">ཀ
msgctxt ""
"01200000.xhp\n"
"par_id3145749\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DataInColumns\">Changes the arrangement of the chart data.</ahelp>"
msgstr "<ahelp hid=\".uno:DataInColumns\">དཔེ་རིས་གནད་སྡུད་ཀྱི་བདེ་ཞིབ་འདི་བསྒྱུར་བཅོས་འབདཝ་ཨིན།</ahelp>"
@@ -96,7 +92,6 @@ msgstr "<image id=\"img_id3149379\" src=\"cmd/sc_dataincolumns.png\"><alt id=\"a
msgctxt ""
"01200000.xhp\n"
"par_id3149377\n"
-"3\n"
"help.text"
msgid "Data in Columns"
msgstr "ཀེར་ཐིག་ཚུ་ནང་གནད་སྡུད་ཚུ།"
@@ -121,7 +116,6 @@ msgstr ""
msgctxt ""
"01210000.xhp\n"
"hd_id3152996\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/02/01210000.xhp\" name=\"Scale Text\">Scale Text</link>"
msgstr "<link href=\"text/schart/02/01210000.xhp\" name=\"Scale Text\">ཚིག་ཡིག་གི་ཆ་ཚད།Scale Text</link>"
@@ -130,7 +124,6 @@ msgstr "<link href=\"text/schart/02/01210000.xhp\" name=\"Scale Text\">ཚིག
msgctxt ""
"01210000.xhp\n"
"par_id3144510\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ScaleText\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
msgstr "<ahelp hid=\".uno:ScaleText\">ཁྱོད་ཀྱི་དཔེ་རིས་ཀྱི་ཚད་འདི་བསྒྱུར་བཅོསའབདཝ་ད་ དཔེ་རིས་ནང་གི་ཚིག་ཡིག་གི་ཚད་འདི་བསྐྱར་འཇལ་འབདཝ་ཨིན།</ahelp>"
@@ -147,7 +140,6 @@ msgstr "<image id=\"img_id3152577\" src=\"cmd/sc_newarrangement.png\" width=\"0.
msgctxt ""
"01210000.xhp\n"
"par_id3153190\n"
-"3\n"
"help.text"
msgid "Scale Text"
msgstr "ཆ་ཚད་ཀྱི་ཚིག་ཡིག"
@@ -172,7 +164,6 @@ msgstr "<bookmark_value>དཔེ་རིས་འདི་ཚུ་ལོག
msgctxt ""
"01220000.xhp\n"
"hd_id3150400\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/02/01220000.xhp\" name=\"Automatic Layout\">Automatic Layout</link>"
msgstr ""
@@ -181,7 +172,6 @@ msgstr ""
msgctxt ""
"01220000.xhp\n"
"par_id3146120\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:NewArrangement\">Moves all chart elements to their default positions inside the current chart. This function does not alter the chart type or any other attributes other than the position of elements.</ahelp>"
msgstr "<ahelp hid=\".uno:NewArrangement\">དཔེ་རིས་ཀྱི་དངོས་པོ་ཚུ་ཆ་མཉམ་ ཁོང་རའི་སྔོན་སྒྲིག་གི་གནས་ས་ལུ་སྤོ་བཤུད་འབདཝ་ཨིན། ལས་འགན་འདི་གིས་དཔེ་རིས་ཀྱི་དབྱེ་བ་ཚུ་ཡང་ན་དངོས་པོ་གི་གནས་ས་མ་ཡིན་པའི་གཞན་ཁྱད་ཆོས་ཚུ་བསྒྱུར་བཅོས་འབད་མ་བཅུག་པར་བཞགཔ་ཨིན།</ahelp>"
@@ -198,7 +188,6 @@ msgstr "<image id=\"img_id3152577\" src=\"cmd/sc_newarrangement.png\" width=\"0.
msgctxt ""
"01220000.xhp\n"
"par_id3153143\n"
-"3\n"
"help.text"
msgid "Automatic Layout"
msgstr ""
@@ -215,7 +204,6 @@ msgstr "ད་ལྟོའི་དཔེ་རིས་ཀྱི་དབྱེ
msgctxt ""
"02020000.xhp\n"
"hd_id3150791\n"
-"1\n"
"help.text"
msgid "<link href=\"text/schart/02/02020000.xhp\" name=\"Current Chart Type\">Current Chart Type</link>"
msgstr "<link href=\"text/schart/02/02020000.xhp\" name=\"Current Chart Type\">ད་ལྟོའི་དཔེ་རིས་ཀྱི་དབྱེ་བ།</link>"
@@ -224,7 +212,6 @@ msgstr "<link href=\"text/schart/02/02020000.xhp\" name=\"Current Chart Type\">
msgctxt ""
"02020000.xhp\n"
"par_id3145173\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ContextType\" visibility=\"visible\">Displays the name of the current chart type.</ahelp>"
msgstr "<ahelp hid=\".uno:ContextType\" visibility=\"visible\">དལྟོའི་དཔེ་རིས་ཀྱི་དབྱེ་བ་གི་མིང་ཚུ་བཀྲམ་སྟོན་འབདཝ་ཨིན།</ahelp>"
diff --git a/source/dz/helpcontent2/source/text/schart/04.po b/source/dz/helpcontent2/source/text/schart/04.po
index 3aab45e011b..c946c59f435 100644
--- a/source/dz/helpcontent2/source/text/schart/04.po
+++ b/source/dz/helpcontent2/source/text/schart/04.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:02+0100\n"
-"PO-Revision-Date: 2011-04-05 19:29+0200\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"PO-Revision-Date: 2013-05-27 10:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,8 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369649469.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -35,7 +36,6 @@ msgstr "<bookmark_value>མགྱོགས་ཐབས་ཀྱི་ལྡེ
msgctxt ""
"01020000.xhp\n"
"hd_id3150767\n"
-"1\n"
"help.text"
msgid "<variable id=\"Chart_keys\"><link href=\"text/schart/04/01020000.xhp\" name=\"Shortcuts for Charts\">Shortcuts for Charts</link></variable>"
msgstr "<variable id=\"Chart_keys\"><link href=\"text/schart/04/01020000.xhp\" name=\"Shortcuts for Charts\">དཔེ་རིས་ཚུ་གི་དོན་ལུ་མགྱོགས་ཐབས་ཚུ།</link></variable>"
@@ -44,7 +44,6 @@ msgstr "<variable id=\"Chart_keys\"><link href=\"text/schart/04/01020000.xhp\" n
msgctxt ""
"01020000.xhp\n"
"par_id3155412\n"
-"2\n"
"help.text"
msgid "You can use the following shortcut keys in charts."
msgstr "ཁྱོད་ཀྱི་དཔེ་རིས་ཚུ་ནང་ འོག་གི་མགྱོགས་ཐབས་ཀྱི་ལྡེ་མིག་ཚུ་ལག་ལེན་འཐབ།"
@@ -53,7 +52,6 @@ msgstr "ཁྱོད་ཀྱི་དཔེ་རིས་ཚུ་ནང་
msgctxt ""
"01020000.xhp\n"
"par_id3159154\n"
-"3\n"
"help.text"
msgid "You can also use the general <link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys\">shortcut keys</link> for $[officename]."
msgstr "ཁྱོད་ཀྱི་<link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys\">$[officename]་གི་དོན་ལུ་ཡོངས་ཁྱབ་ཀྱི་</link>མགྱོགས་ཐབས་ལྡེ་མིག་འདི་ལག་ལེན་འཐབ།"
@@ -62,7 +60,6 @@ msgstr "ཁྱོད་ཀྱི་<link href=\"text/shared/04/01010000.xhp\" na
msgctxt ""
"01020000.xhp\n"
"hd_id3149262\n"
-"4\n"
"help.text"
msgid "Shortcuts in Charts"
msgstr "དཔེ་རིས་ཚུ་ནང་ལུ་མགྱོགས་ཐབས་ཚུ།"
@@ -71,7 +68,6 @@ msgstr "དཔེ་རིས་ཚུ་ནང་ལུ་མགྱོགས་
msgctxt ""
"01020000.xhp\n"
"hd_id3151073\n"
-"5\n"
"help.text"
msgid "Shortcut Keys"
msgstr "མགྱོགས་ཐབས་ཀྱི་ལྡེ་མིག་ཚུ།"
@@ -80,7 +76,6 @@ msgstr "མགྱོགས་ཐབས་ཀྱི་ལྡེ་མིག་ཚ
msgctxt ""
"01020000.xhp\n"
"par_id3154490\n"
-"6\n"
"help.text"
msgid "Results"
msgstr "གྲུབ་འབྲས་ཚུ།"
@@ -89,7 +84,6 @@ msgstr "གྲུབ་འབྲས་ཚུ།"
msgctxt ""
"01020000.xhp\n"
"hd_id3154729\n"
-"7\n"
"help.text"
msgid "Tab"
msgstr "མཆོང་ལྡེ།"
@@ -98,7 +92,6 @@ msgstr "མཆོང་ལྡེ།"
msgctxt ""
"01020000.xhp\n"
"par_id3154511\n"
-"8\n"
"help.text"
msgid "Select next object."
msgstr "དངོས་པོ་ཤུལ་མམ་འདི་སེལ་འཐུ་འབད།"
@@ -107,7 +100,6 @@ msgstr "དངོས་པོ་ཤུལ་མམ་འདི་སེལ་འ
msgctxt ""
"01020000.xhp\n"
"hd_id3155064\n"
-"9\n"
"help.text"
msgid "Shift+Tab"
msgstr "སོར་ལྡེ+མཆོང་ལྡེ།"
@@ -116,7 +108,6 @@ msgstr "སོར་ལྡེ+མཆོང་ལྡེ།"
msgctxt ""
"01020000.xhp\n"
"par_id3149020\n"
-"10\n"
"help.text"
msgid "Select previous object."
msgstr "ཧེ་མའི་དངོས་པོ་དེ་སེལ་འཐུ་འབད།"
@@ -125,7 +116,6 @@ msgstr "ཧེ་མའི་དངོས་པོ་དེ་སེལ་འཐ
msgctxt ""
"01020000.xhp\n"
"hd_id3155443\n"
-"11\n"
"help.text"
msgid "Home"
msgstr "ཁྱིམ།"
@@ -134,7 +124,6 @@ msgstr "ཁྱིམ།"
msgctxt ""
"01020000.xhp\n"
"par_id3156382\n"
-"12\n"
"help.text"
msgid "Select first object."
msgstr "དངོས་པོ་དང་པ་འདི་སེ་འཐུ་འབད།"
@@ -143,7 +132,6 @@ msgstr "དངོས་པོ་དང་པ་འདི་སེ་འཐུ་
msgctxt ""
"01020000.xhp\n"
"hd_id3153963\n"
-"13\n"
"help.text"
msgid "End"
msgstr "མཇུག"
@@ -152,7 +140,6 @@ msgstr "མཇུག"
msgctxt ""
"01020000.xhp\n"
"par_id3154702\n"
-"14\n"
"help.text"
msgid "Select last object."
msgstr "མཇུག་གི་དངོས་པོ་འདི་སེལ་འཐུ་འབད།"
@@ -161,7 +148,6 @@ msgstr "མཇུག་གི་དངོས་པོ་འདི་སེལ་
msgctxt ""
"01020000.xhp\n"
"hd_id3143218\n"
-"15\n"
"help.text"
msgid "Esc"
msgstr "གློག་ཐེམ།"
@@ -170,7 +156,6 @@ msgstr "གློག་ཐེམ།"
msgctxt ""
"01020000.xhp\n"
"par_id3147005\n"
-"16\n"
"help.text"
msgid "Cancel selection"
msgstr "སེལ་འཐུ་འདི་ཆ་མེད་གཏང་།"
@@ -179,7 +164,6 @@ msgstr "སེལ་འཐུ་འདི་ཆ་མེད་གཏང་།"
msgctxt ""
"01020000.xhp\n"
"hd_id3159239\n"
-"17\n"
"help.text"
msgid "up/down/left/right arrow"
msgstr "ཡར/མར/གཡོན/གཡས་ཀྱི་མདའ་རྟགས།"
@@ -188,7 +172,6 @@ msgstr "ཡར/མར/གཡོན/གཡས་ཀྱི་མདའ་རྟག
msgctxt ""
"01020000.xhp\n"
"par_id3149210\n"
-"18\n"
"help.text"
msgid "Move the object in the direction of the arrow."
msgstr "དངོས་པོ་འདི་མདའ་རྟགས་ཀྱི་ཁ་ཕྱོགས་སུ་སྤོ་བཤུད་འབད།"
@@ -197,7 +180,6 @@ msgstr "དངོས་པོ་འདི་མདའ་རྟགས་ཀྱི
msgctxt ""
"01020000.xhp\n"
"hd_id3150364\n"
-"19\n"
"help.text"
msgid "up/down/left/right arrow in pie charts"
msgstr "པ་ཡི་དཔེ་རིས་ཚུ་ནང་ ཡར་/མར/གཡོན/གཡས་མདའ་རྟགས།"
@@ -206,7 +188,6 @@ msgstr "པ་ཡི་དཔེ་རིས་ཚུ་ནང་ ཡར་/མ
msgctxt ""
"01020000.xhp\n"
"par_id3150369\n"
-"20\n"
"help.text"
msgid "Moves the selected pie segment in the direction of the arrow."
msgstr "སེལ་འཐུ་གྲུབ་པའི་ པ་ཡི་ཆ་བགོས་འདི་ མདའ་རྟགས་ཀྱི་ཁ་ཕྱོགས་སུ་སྤོ་བཤུད་འབདཝ་ཨིན།"
@@ -215,7 +196,6 @@ msgstr "སེལ་འཐུ་གྲུབ་པའི་ པ་ཡི་ཆ
msgctxt ""
"01020000.xhp\n"
"hd_id3145584\n"
-"21\n"
"help.text"
msgid "F2 in titles"
msgstr "མགོ་མིང་ཚུ་ནང་ ཨེཕི་༢།"
@@ -224,7 +204,6 @@ msgstr "མགོ་མིང་ཚུ་ནང་ ཨེཕི་༢།"
msgctxt ""
"01020000.xhp\n"
"par_id3154372\n"
-"22\n"
"help.text"
msgid "Enter text input mode."
msgstr "ཚིག་ཡིག་ཨིན་པུཊི་གི་ཐབས་ལམ་འདི་ཐོ་བཀོད་འབད།"
@@ -233,7 +212,6 @@ msgstr "ཚིག་ཡིག་ཨིན་པུཊི་གི་ཐབས་
msgctxt ""
"01020000.xhp\n"
"hd_id3146980\n"
-"23\n"
"help.text"
msgid "F3"
msgstr "ཨེཕ་ ༣།"
@@ -242,26 +220,22 @@ msgstr "ཨེཕ་ ༣།"
msgctxt ""
"01020000.xhp\n"
"par_id3152988\n"
-"24\n"
"help.text"
msgid "Open group so that you can edit the individual components (in legend and data series)."
msgstr "སྡེ་ཚན་ཅིག་ཁ་ཕྱེ་ དེ་ལས་ཁྱོད་ཀྱི་ངོ་རྐྱང་ཆ་ཤས་ཚུ་(གཏམ་རྒྱུད་དང་གནད་སྡུད་ཀྱི་རྒྱུན་རིམ་ནང་།)ཞུན་དག་འབད་ཚུགས།"
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3153815\n"
-"25\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
-msgstr "#-#-#-#-# 04.po (PACKAGE VERSION) #-#-#-#-#\\n<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3\\n#-#-#-#-# 04.po (PACKAGE VERSION) #-#-#-#-#\\n<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+ཨེཕ་ ༣ །\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་ </defaultinline></switchinline>+ཨེཕ་ ༣ །"
+msgstr ""
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3153915\n"
-"26\n"
"help.text"
msgid "Exit group (in legend and data series)."
msgstr "སྡེ་ཚན་ཕྱིར་བཏོན།(གཏམ་རྒྱུད་དང་གནད་སྡུད་རྒྱུན་རིམ་ནང་།)"
@@ -270,7 +244,6 @@ msgstr "སྡེ་ཚན་ཕྱིར་བཏོན།(གཏམ་རྒ
msgctxt ""
"01020000.xhp\n"
"hd_id3155269\n"
-"27\n"
"help.text"
msgid "+/-"
msgstr "+/-"
@@ -279,7 +252,6 @@ msgstr "+/-"
msgctxt ""
"01020000.xhp\n"
"par_id3156016\n"
-"28\n"
"help.text"
msgid "Reduce or enlarge the chart"
msgstr "དཔེ་རིས་འདི་མར་ཕབ་ཡང་ན་ཆེར་བསྐྱེད་འབད།"
@@ -288,7 +260,6 @@ msgstr "དཔེ་རིས་འདི་མར་ཕབ་ཡང་ན་ཆ
msgctxt ""
"01020000.xhp\n"
"hd_id3150210\n"
-"29\n"
"help.text"
msgid "+/- in pie charts"
msgstr "པ་ཡི་ དཔེ་རིས་ནང་+/-"
@@ -297,7 +268,6 @@ msgstr "པ་ཡི་ དཔེ་རིས་ནང་+/-"
msgctxt ""
"01020000.xhp\n"
"par_id3159204\n"
-"30\n"
"help.text"
msgid "Moves the selected pie segment off or into the pie chart."
msgstr "སེལ་འཐུ་གྲུབ་པའི་ པ་ཡི་ཆ་བགོས་འདི་ཨོཕ་ཡང་ན་ པ་ཡི་དཔེ་རིས་ནང་ལུ་སྤོ་བཤུས་འབདཝ་ཨིན།"
diff --git a/source/dz/helpcontent2/source/text/sdraw.po b/source/dz/helpcontent2/source/text/sdraw.po
index e735e68668b..50cc3b093e0 100644
--- a/source/dz/helpcontent2/source/text/sdraw.po
+++ b/source/dz/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
"PO-Revision-Date: 2016-05-02 10:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1462185764.000000\n"
#: main0000.xhp
@@ -36,7 +36,6 @@ msgstr ""
msgctxt ""
"main0000.xhp\n"
"hd_id3154022\n"
-"3\n"
"help.text"
msgid "How to Work With $[officename] Draw"
msgstr "$[officename]ཌཱ་དང་གཅིག་ཁར་ལཱ་ག་དེ་སྦེ་འབད་ནི་ཨིན་ན།"
@@ -45,7 +44,6 @@ msgstr "$[officename]ཌཱ་དང་གཅིག་ཁར་ལཱ་ག་
msgctxt ""
"main0000.xhp\n"
"hd_id3150363\n"
-"5\n"
"help.text"
msgid "$[officename] Draw Menus, Toolbars, and Keys"
msgstr "$[officename] ཌཱ་དཀར་ཆག་དང་ལག་ཆས་ཕྲ་རིང་ དེ་ལས་ལྡེ་མིག་ཚུ།"
@@ -54,7 +52,6 @@ msgstr "$[officename] ཌཱ་དཀར་ཆག་དང་ལག་ཆས་
msgctxt ""
"main0000.xhp\n"
"hd_id3166430\n"
-"4\n"
"help.text"
msgid "Help about the Help"
msgstr "གྲོགས་རམ་གྱི་སྐོར་ལས་ གྲོགས་རམ་འབད།"
@@ -71,7 +68,6 @@ msgstr "དཀར་ཆག"
msgctxt ""
"main0100.xhp\n"
"hd_id3148664\n"
-"1\n"
"help.text"
msgid "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
msgstr "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Menus\">དཀར་ཆག་</link></variable>"
@@ -80,7 +76,6 @@ msgstr "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"
msgctxt ""
"main0100.xhp\n"
"par_id3154684\n"
-"2\n"
"help.text"
msgid "The following is a description of all $[officename] Draw menus, submenus and their dialogs."
msgstr "འོག་གི་འདི་ $[officename] ཌཱ་དཀར་ཆག་དང་དཀར་ཆག་ཡན་ལག་དེ་ལས་ ཌའི་ལོག་ཚུ་ཆ་མཉམ་གྱི་འགྲེལ་བཤད་ཨིན།"
@@ -97,7 +92,6 @@ msgstr "ཡིག་སྣོད།"
msgctxt ""
"main0101.xhp\n"
"hd_id3149655\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sdraw/main0101.xhp\" name=\"File\">File</link>"
msgstr "<link href=\"text/sdraw/main0101.xhp\" name=\"File\">ཡིག་སྣོད་</link>"
@@ -106,7 +100,6 @@ msgstr "<link href=\"text/sdraw/main0101.xhp\" name=\"File\">ཡིག་སྣ
msgctxt ""
"main0101.xhp\n"
"par_id3150868\n"
-"2\n"
"help.text"
msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click <emph>Exit</emph>."
msgstr "དཀར་ཆག་འདི་ནང་ ཌཱ་ཡིག་ཆ་ཚུ་དང་གཅིག་ཁར་ལཱ་འབད་ནིའི་དོན་ལས་ དཔེར་ན་ ཁ་ཕྱེ་ནི་དང་བསྡམ་ནི་དེ་ལས་ དཔར་བསྐྲུན་འབད་ནི་ཚུ་བཟུམ་སྦེ་ ཡོངས་ཁྱབ་བརྡ་བཀོད་ཚུ་ཡོདཔ་ཨིན། $[officename] ཌཱ་ཁ་བསྡམ་ནི་ལུ་ <emph>Exit</emph>ལུ་ཨེབ་གཏང་འབད།"
@@ -115,7 +108,6 @@ msgstr "དཀར་ཆག་འདི་ནང་ ཌཱ་ཡིག་ཆ་
msgctxt ""
"main0101.xhp\n"
"hd_id3156441\n"
-"4\n"
"help.text"
msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">ཁ་ཕྱེ་</link>"
@@ -124,7 +116,6 @@ msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">ཁ་ཕྱེ
msgctxt ""
"main0101.xhp\n"
"hd_id3153876\n"
-"6\n"
"help.text"
msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">བཟུམ་སྦེ་སྲུངས་</link>"
@@ -133,7 +124,6 @@ msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">བཟུམ
msgctxt ""
"main0101.xhp\n"
"hd_id3150718\n"
-"7\n"
"help.text"
msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
msgstr "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">ཕྱིར་འདྲེན་</link>"
@@ -142,7 +132,6 @@ msgstr "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">ཕྱི
msgctxt ""
"main0101.xhp\n"
"hd_id3154754\n"
-"14\n"
"help.text"
msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">ཐོན་རིམ་ཚུ་</link>"
@@ -151,7 +140,6 @@ msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">ཐོན
msgctxt ""
"main0101.xhp\n"
"hd_id3150044\n"
-"9\n"
"help.text"
msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">རྒྱུ་དངོས་ཚུ་</link>"
@@ -160,7 +148,6 @@ msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">རྒྱ
msgctxt ""
"main0101.xhp\n"
"hd_id3149127\n"
-"12\n"
"help.text"
msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">དཔར་བསྐྲུན་</link>"
@@ -169,7 +156,6 @@ msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">དཔར་
msgctxt ""
"main0101.xhp\n"
"hd_id3145790\n"
-"13\n"
"help.text"
msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">དཔར་འཕྲུལ་སྒྲིག་སྟངས་ཚུ་</link>"
@@ -186,7 +172,6 @@ msgstr "ཞུན་དག"
msgctxt ""
"main0102.xhp\n"
"hd_id3150868\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sdraw/main0102.xhp\" name=\"Edit\">Edit</link>"
msgstr "<link href=\"text/sdraw/main0102.xhp\" name=\"Edit\">ཞུན་དག་</link>"
@@ -195,7 +180,6 @@ msgstr "<link href=\"text/sdraw/main0102.xhp\" name=\"Edit\">ཞུན་དག
msgctxt ""
"main0102.xhp\n"
"par_id3146974\n"
-"2\n"
"help.text"
msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)."
msgstr "དཀར་ཆག་ནང་ལུ་ཡོད་པའི་བརྡ་བཀོད་ཚུ་ ཌཱ་ཡིག་ཆ་(དཔེར་ན་ འདྲ་བཤུས་དང་སྦྱར་ནི་)ཚུ་ ཞུན་དག་འབད་ནི་གི་དོན་ལུ་ ལག་ལེན་འཐབ་ཨིན།"
@@ -204,7 +188,6 @@ msgstr "དཀར་ཆག་ནང་ལུ་ཡོད་པའི་བརྡ
msgctxt ""
"main0102.xhp\n"
"hd_id3147396\n"
-"3\n"
"help.text"
msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">དམིགས་བསལ་སྦྱར་</link>"
@@ -213,7 +196,6 @@ msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">དམ
msgctxt ""
"main0102.xhp\n"
"hd_id3149400\n"
-"4\n"
"help.text"
msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">འཚོས་ཏེ་ཚབ་བཙུགས་</link>"
@@ -222,7 +204,6 @@ msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">འ
msgctxt ""
"main0102.xhp\n"
"hd_id3153713\n"
-"13\n"
"help.text"
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">ས་ཚིགས་</link>"
@@ -231,7 +212,6 @@ msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">ས་ཚི
msgctxt ""
"main0102.xhp\n"
"par_id3147340\n"
-"14\n"
"help.text"
msgid "Enables you to edit points on your drawing."
msgstr "ཁྱོད་རའི་པར་རིས་གུ་ ཞུན་དག་འབད་ནིའི་ལྕོགས་ཅན་བཟོཝ་ཨིན།"
@@ -240,7 +220,6 @@ msgstr "ཁྱོད་རའི་པར་རིས་གུ་ ཞུན་
msgctxt ""
"main0102.xhp\n"
"hd_id3149258\n"
-"15\n"
"help.text"
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">གུ་ལུ་པོ་ཡིནཊིས་</link>"
@@ -249,7 +228,6 @@ msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">གུ
msgctxt ""
"main0102.xhp\n"
"par_id3146315\n"
-"16\n"
"help.text"
msgid "Enables you to edit glue points on your drawing."
msgstr "ཁྱོད་རའི་པར་རིས་གུ་ གུ་ལུ་པོ་ཡིནཊིསི་ཞུན་དག་འབད་ནིའི་ལྕོགས་ཅན་བཟོཝ་ཨིན།"
@@ -258,7 +236,6 @@ msgstr "ཁྱོད་རའི་པར་རིས་གུ་ གུ་ལ
msgctxt ""
"main0102.xhp\n"
"hd_id3147005\n"
-"5\n"
"help.text"
msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">རྫུན་མ་</link>"
@@ -267,7 +244,6 @@ msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">རྫ
msgctxt ""
"main0102.xhp\n"
"hd_id3150205\n"
-"6\n"
"help.text"
msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Cross-fading</link>"
msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">སྐེདཔ་བཏོག་ཡལ་ནི་</link>"
@@ -276,7 +252,6 @@ msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">ས
msgctxt ""
"main0102.xhp\n"
"hd_id3154650\n"
-"7\n"
"help.text"
msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">ས་སྒོ་ཚུ་</link>"
@@ -285,7 +260,6 @@ msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">ས་ས
msgctxt ""
"main0102.xhp\n"
"hd_id3156446\n"
-"10\n"
"help.text"
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">འབྲེལ་ལམ་ཚུ་</link>"
@@ -294,7 +268,6 @@ msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">འབྲེ
msgctxt ""
"main0102.xhp\n"
"hd_id3148699\n"
-"11\n"
"help.text"
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">གཟུགས་བརྙན་ས་ཁྲ་</link>"
@@ -303,7 +276,6 @@ msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">གཟུ
msgctxt ""
"main0102.xhp\n"
"hd_id3157867\n"
-"12\n"
"help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">ཧའི་པར་ལིང་</link>"
@@ -317,7 +289,6 @@ msgid "View"
msgstr "མཐོང་སྣང་།"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id3152576\n"
@@ -326,7 +297,6 @@ msgid "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">View</link>"
msgstr "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">མཐོང་སྣང་</link>"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"par_id3159155\n"
@@ -367,7 +337,6 @@ msgid "Switch to the master page view."
msgstr "ཤོག་ལེབ་མཐོང་སྣང་ཨམ་ལུ་ སོར་བསྒྱུར་འབད།"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id3149666\n"
@@ -387,7 +356,6 @@ msgstr "བཙུགས།"
msgctxt ""
"main0104.xhp\n"
"hd_id3148797\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sdraw/main0104.xhp\" name=\"Insert\">Insert</link>"
msgstr "<link href=\"text/sdraw/main0104.xhp\" name=\"Insert\">བཙུགས་</link>"
@@ -396,7 +364,6 @@ msgstr "<link href=\"text/sdraw/main0104.xhp\" name=\"Insert\">བཙུགས
msgctxt ""
"main0104.xhp\n"
"par_id3153770\n"
-"2\n"
"help.text"
msgid "This menu allows you to insert elements, such as graphics and guides, into Draw documents."
msgstr "དཀར་ཆག་འདི་གིས་ཁྱོད་ལུ་ དཔེར་ན་ ཆ་ཤས་ཚད་རིས་དང་ལམ་སྟོན་ཚུ་ ཌཱ་ ཡིག་ཆའི་ནང་ལུ་བཙུགས་བཅུགཔ་ཨིན།"
@@ -405,7 +372,6 @@ msgstr "དཀར་ཆག་འདི་གིས་ཁྱོད་ལུ་
msgctxt ""
"main0104.xhp\n"
"hd_id3154320\n"
-"3\n"
"help.text"
msgid "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Slide\">Slide</link>"
msgstr "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Slide\">བཤུད་</link>"
@@ -414,7 +380,6 @@ msgstr "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Slide\">བཤུད་
msgctxt ""
"main0104.xhp\n"
"hd_id3146974\n"
-"4\n"
"help.text"
msgid "<link href=\"text/simpress/01/04020000.xhp\" name=\"Layer\">Layer</link>"
msgstr "<link href=\"text/simpress/01/04020000.xhp\" name=\"Layer\">བང་རིམ་</link>"
@@ -423,7 +388,6 @@ msgstr "<link href=\"text/simpress/01/04020000.xhp\" name=\"Layer\">བང་ར
msgctxt ""
"main0104.xhp\n"
"hd_id3147397\n"
-"5\n"
"help.text"
msgid "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insert Snap Point/Line\">Insert Snap Point/Line</link>"
msgstr "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insert Snap Point/Line\">པར་གྱི་ས་ཚིགས་/གྲལ་ཐིག་བཙུགས་</link>"
@@ -440,7 +404,6 @@ msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Note\">དྲན་འ
msgctxt ""
"main0104.xhp\n"
"hd_id3154018\n"
-"6\n"
"help.text"
msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">དམིགས་བསལ་གྱི་ཡིག་འབྲུ་</link>"
@@ -449,7 +412,6 @@ msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">
msgctxt ""
"main0104.xhp\n"
"hd_id3150749\n"
-"11\n"
"help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">ཧའི་པར་ལིང་</link>"
@@ -458,7 +420,6 @@ msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">ཧའི
msgctxt ""
"main0104.xhp\n"
"hd_id3156385\n"
-"7\n"
"help.text"
msgid "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Table</link>"
msgstr "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">ཡིག་སྣོད་</link>"
@@ -467,7 +428,6 @@ msgstr "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">ཡིག་
msgctxt ""
"main0104.xhp\n"
"hd_id3147003\n"
-"8\n"
"help.text"
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
msgstr ""
@@ -484,7 +444,6 @@ msgstr ""
msgctxt ""
"main0104.xhp\n"
"hd_id3155111\n"
-"9\n"
"help.text"
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">འཕུར་ལྡིང་གཞི་ཁྲམ་</link>"
@@ -493,7 +452,6 @@ msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">འ
msgctxt ""
"main0104.xhp\n"
"hd_id3157867\n"
-"10\n"
"help.text"
msgid "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">File</link>"
msgstr "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">ཡིག་སྣོད་</link>"
@@ -510,7 +468,6 @@ msgstr "རྩ་སྒྲིག"
msgctxt ""
"main0105.xhp\n"
"hd_id3153770\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sdraw/main0105.xhp\" name=\"Format\">Format</link>"
msgstr "<link href=\"text/sdraw/main0105.xhp\" name=\"Format\">རྩ་སྒྲིག་</link>"
@@ -519,7 +476,6 @@ msgstr "<link href=\"text/sdraw/main0105.xhp\" name=\"Format\">རྩ་སྒ
msgctxt ""
"main0105.xhp\n"
"par_id3152578\n"
-"2\n"
"help.text"
msgid "Contains commands for formatting the layout and the contents of your document."
msgstr "སྒྲིག་བཀོད་རྩ་སྒྲིག་འབད་ནིའི་དོན་ལུ་དང་ ཁྱོད་རའི་ཡིག་ཆའི་ནང་དོན་གྱི་དོན་ལུ་ བརྡ་བཀོད་ཚུ་ཡོདཔ་ཨིན།"
@@ -528,7 +484,6 @@ msgstr "སྒྲིག་བཀོད་རྩ་སྒྲིག་འབད་
msgctxt ""
"main0105.xhp\n"
"hd_id3155111\n"
-"10\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">ཡིག་འབྲུ་</link>"
@@ -537,7 +492,6 @@ msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">ཡིག
msgctxt ""
"main0105.xhp\n"
"hd_id3146979\n"
-"12\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">དོན་མཚམས་</link>"
@@ -546,7 +500,6 @@ msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">དོན
msgctxt ""
"main0105.xhp\n"
"hd_id3166426\n"
-"19\n"
"help.text"
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">འགོ་ཚག་དང་ཨང་བཏགས་</link>"
@@ -555,7 +508,6 @@ msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">
msgctxt ""
"main0105.xhp\n"
"hd_id3155091\n"
-"14\n"
"help.text"
msgid "<link href=\"text/simpress/01/01180000.xhp\" name=\"Page\">Page</link>"
msgstr "<link href=\"text/simpress/01/01180000.xhp\" name=\"Page\">ཤོག་ལེབ་</link>"
@@ -564,7 +516,6 @@ msgstr "<link href=\"text/simpress/01/01180000.xhp\" name=\"Page\">ཤོག་
msgctxt ""
"main0105.xhp\n"
"hd_id3146971\n"
-"6\n"
"help.text"
msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">གནས་ས་དང་ཚད་</link>"
@@ -573,7 +524,6 @@ msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">
msgctxt ""
"main0105.xhp\n"
"hd_id3148576\n"
-"3\n"
"help.text"
msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">གྲལ་ཐིག་</link>"
@@ -582,7 +532,6 @@ msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">གྲལ་ཐ
msgctxt ""
"main0105.xhp\n"
"hd_id3151076\n"
-"4\n"
"help.text"
msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">མངའ་ཁོངས་</link>"
@@ -591,7 +540,6 @@ msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">མངའ་ཁ
msgctxt ""
"main0105.xhp\n"
"hd_id3153878\n"
-"5\n"
"help.text"
msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">ཚིག་ཡིག་</link>"
@@ -600,7 +548,6 @@ msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">ཚིག་ཡ
msgctxt ""
"main0105.xhp\n"
"hd_id3153913\n"
-"16\n"
"help.text"
msgid "<link href=\"text/simpress/01/05140000.xhp\" name=\"Layer\">Layer</link>"
msgstr "<link href=\"text/simpress/01/05140000.xhp\" name=\"Layer\">བང་རིམ་</link>"
@@ -617,7 +564,6 @@ msgstr "ལག་ཆས་ཚུ།"
msgctxt ""
"main0106.xhp\n"
"hd_id3159155\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sdraw/main0106.xhp\" name=\"Tools\">Tools</link>"
msgstr "<link href=\"text/sdraw/main0106.xhp\" name=\"Tools\">ལག་ཆས་ཚུ་</link>"
@@ -626,7 +572,6 @@ msgstr "<link href=\"text/sdraw/main0106.xhp\" name=\"Tools\">ལག་ཆས་
msgctxt ""
"main0106.xhp\n"
"par_id3156443\n"
-"2\n"
"help.text"
msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings."
msgstr "དཀར་ཆག་འདི་གིས་ $[officename] ཌཱ་གིས་མ་ཚད་པར་ སྐད་ཡིག་འཛུལ་སྤྱོད་འབད་ནི་དང་རིམ་ལུགས་སྒྲིག་སྟངས་ཚུའི་དོན་ལུ་ ལག་ཆས་ཚུ་བྱིནམ་ཨིན།"
@@ -635,7 +580,6 @@ msgstr "དཀར་ཆག་འདི་གིས་ $[officename] ཌཱ་ག
msgctxt ""
"main0106.xhp\n"
"hd_id3153415\n"
-"4\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">རང་བཞིན་ནོར་བཅོས་</link>"
@@ -644,7 +588,6 @@ msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">རང
msgctxt ""
"main0106.xhp\n"
"hd_id3150044\n"
-"6\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">སྲོལ་སྒྲིག་འབད་ནི་</link>"
@@ -661,7 +604,6 @@ msgstr "ལག་ཆས་ཕྲ་རིང་ཚུ།"
msgctxt ""
"main0200.xhp\n"
"hd_id3148663\n"
-"1\n"
"help.text"
msgid "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
msgstr "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Toolbars\">ལག་ཆས་ཕྲ་རིང་ཚུ་</link></variable>"
@@ -670,7 +612,6 @@ msgstr "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"
msgctxt ""
"main0200.xhp\n"
"par_id3125863\n"
-"2\n"
"help.text"
msgid "This section provides an overview of the toolbars available in $[officename] Draw."
msgstr "དབྱེ་ཚན་འདི་གིས་ $[officename]ཌཱ་གི་ནང་ལུ་འཐོབ་ཚུགས་པའི་ལག་ཆས་ཕྲ་རིང་ཚུའི་སྤྱི་མཐོང་བྱིནམ་ཨིན།"
@@ -687,7 +628,6 @@ msgstr "གྲལ་ཐིག་དང་ཕྲ་རིང་ཚགས་མ་
msgctxt ""
"main0202.xhp\n"
"hd_id3149669\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sdraw/main0202.xhp\" name=\"Line and Filling Bar\">Line and Filling Bar</link>"
msgstr "<link href=\"text/sdraw/main0202.xhp\" name=\"Line and Filling Bar\">གྲལ་ཐིག་དང་ཕྲ་རིང་བཀང་དོ།</link>"
@@ -696,7 +636,6 @@ msgstr "<link href=\"text/sdraw/main0202.xhp\" name=\"Line and Filling Bar\">ག
msgctxt ""
"main0202.xhp\n"
"par_id3150543\n"
-"2\n"
"help.text"
msgid "The Line and Filling bar contains commands for the current editing mode."
msgstr "གྲལ་ཐིག་དང་ཕྲ་རིང་བཀང་དོ་འདི་གིས་ ད་ལྟོའི་ཞུན་དག་འབད་མི་ཐབས་ལམ་དོན་ལུ་ བརྡ་བཀོད་གནས་ཏེ་ཡོད།"
@@ -705,7 +644,6 @@ msgstr "གྲལ་ཐིག་དང་ཕྲ་རིང་བཀང་དོ
msgctxt ""
"main0202.xhp\n"
"hd_id3149664\n"
-"3\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">གྲལ་ཐིག་གི་བཟོ་རྣམ་</link>"
@@ -714,7 +652,6 @@ msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">གྲལ
msgctxt ""
"main0202.xhp\n"
"hd_id3156285\n"
-"4\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">གྲལ་ཐིག་གི་རྒྱ་ཚད་</link>"
@@ -723,7 +660,6 @@ msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">གྲལ
msgctxt ""
"main0202.xhp\n"
"hd_id3154015\n"
-"5\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">གྲལ་ཐིག་གི་ཚོས་གཞི་</link>"
@@ -732,7 +668,6 @@ msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">གྲལ
msgctxt ""
"main0202.xhp\n"
"hd_id3155767\n"
-"6\n"
"help.text"
msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">མངའ་ཁོངས་བཟོ་རྣམ་/བཀང་ནི་</link>"
@@ -757,7 +692,6 @@ msgstr "པར་རིས་ཕྲ་རིང་།"
msgctxt ""
"main0210.xhp\n"
"hd_id3150398\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sdraw/main0210.xhp\" name=\"Drawing Bar\">Drawing Bar</link>"
msgstr "<link href=\"text/sdraw/main0210.xhp\" name=\"Drawing Bar\">པར་རིས་ཕྲ་རིང་</link>"
@@ -766,7 +700,6 @@ msgstr "<link href=\"text/sdraw/main0210.xhp\" name=\"Drawing Bar\">པར་ར
msgctxt ""
"main0210.xhp\n"
"par_id3149656\n"
-"2\n"
"help.text"
msgid "The <emph>Drawing</emph> bar holds the main drawing tools."
msgstr "<emph>པར་རིས་</emph>ཕྲ་རིང་འདི་གིས་ པར་རིས་ལག་ཆས་ངོ་མ་ཚུ་འཛིནམ་ཨིན།"
@@ -911,7 +844,6 @@ msgstr "གདམ་ཁ་ཚུའི་ཕྲ་རིང་།"
msgctxt ""
"main0213.xhp\n"
"hd_id3150793\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sdraw/main0213.xhp\" name=\"Options Bar\">Options Bar</link>"
msgstr "<link href=\"text/sdraw/main0213.xhp\" name=\"Options Bar\">གདམ་ཁའི་ཕྲ་རིང་</link>"
@@ -920,7 +852,6 @@ msgstr "<link href=\"text/sdraw/main0213.xhp\" name=\"Options Bar\">གདམ་
msgctxt ""
"main0213.xhp\n"
"par_id3154685\n"
-"2\n"
"help.text"
msgid "The <emph>Options</emph> bar can be displayed by choosing <emph>View - Toolbars - Options</emph>."
msgstr "<emph>མཐོང་སྣང་-ལག་ཆས་ཕྲ་རིང་-གདམ་ཁ་ཚུ་</emph> གདམ་ཁ་བརྐྱབ་བའི་ཐོག་ལས་ <emph>གདམ་ཁ་ཚུ་</emph>འདི་ བཀྲམ་སྟོན་འབད་ཚུགས།"
@@ -929,7 +860,6 @@ msgstr "<emph>མཐོང་སྣང་-ལག་ཆས་ཕྲ་རིང
msgctxt ""
"main0213.xhp\n"
"hd_id3145251\n"
-"3\n"
"help.text"
msgid "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Display Grid</link>"
msgstr "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">གིརིཌི་ བཀྲམ་སྟོན་འབད་</link>"
@@ -938,7 +868,6 @@ msgstr "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">གི
msgctxt ""
"main0213.xhp\n"
"hd_id3149018\n"
-"5\n"
"help.text"
msgid "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Helplines While Moving</link>"
msgstr "<link href=\"text/shared/02/01171400.xhp\" name=\"Guides When Moving\">འགུལ་བསྐྱོད་འབད་བའི་སྐབས་ལུ་འཁྱིདཔ་ཨིན་</link>"
@@ -947,7 +876,6 @@ msgstr "<link href=\"text/shared/02/01171400.xhp\" name=\"Guides When Moving\">
msgctxt ""
"main0213.xhp\n"
"hd_id3147338\n"
-"6\n"
"help.text"
msgid "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Snap to Grid</link>"
msgstr "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">གིརིཌི་ལུ་པར་བཏབ་</link>"
@@ -956,7 +884,6 @@ msgstr "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">གི
msgctxt ""
"main0213.xhp\n"
"hd_id3146313\n"
-"7\n"
"help.text"
msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Guides\">འཁྱིད་མི་ལུ་ པར་བཏབ།</link>"
@@ -965,7 +892,6 @@ msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Guides\">འ
msgctxt ""
"main0213.xhp\n"
"hd_id3155111\n"
-"8\n"
"help.text"
msgid "<link href=\"text/simpress/02/13150000.xhp\" name=\"Snap to Page Margins\">Snap to Page Margins</link>"
msgstr "<link href=\"text/simpress/02/13150000.xhp\" name=\"Snap to Page Margins\">ཤོག་ལེབ་ས་སྟོང་ལུ་པར་བཏབ་</link>"
@@ -974,7 +900,6 @@ msgstr "<link href=\"text/simpress/02/13150000.xhp\" name=\"Snap to Page Margins
msgctxt ""
"main0213.xhp\n"
"hd_id3150343\n"
-"9\n"
"help.text"
msgid "<link href=\"text/simpress/02/13160000.xhp\" name=\"Snap to Object Border\">Snap to Object Border</link>"
msgstr "<link href=\"text/simpress/02/13160000.xhp\" name=\"Snap to Object Border\">དངོས་པོའི་མཐའ་མཚམས་ལུ་པར་བཏབ་</link>"
@@ -983,7 +908,6 @@ msgstr "<link href=\"text/simpress/02/13160000.xhp\" name=\"Snap to Object Borde
msgctxt ""
"main0213.xhp\n"
"hd_id3150368\n"
-"10\n"
"help.text"
msgid "<link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\">Snap to Object Points</link>"
msgstr "<link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\">དངོས་པོའི་ས་ཚིགས་ལུ་པར་བཏབ་</link>"
@@ -992,7 +916,6 @@ msgstr "<link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Point
msgctxt ""
"main0213.xhp\n"
"hd_id3146980\n"
-"11\n"
"help.text"
msgid "<link href=\"text/simpress/02/13180000.xhp\" name=\"Allow Quick Editing\">Allow Quick Editing</link>"
msgstr "<link href=\"text/simpress/02/13180000.xhp\" name=\"Allow Quick Editing\">འཕྲལ་མགྱོགས་ཞུན་དག་འབད་བཅུག་</link>"
@@ -1001,7 +924,6 @@ msgstr "<link href=\"text/simpress/02/13180000.xhp\" name=\"Allow Quick Editing\
msgctxt ""
"main0213.xhp\n"
"hd_id3148870\n"
-"12\n"
"help.text"
msgid "<link href=\"text/simpress/02/13190000.xhp\" name=\"Select Text Area Only\">Select Text Area Only</link>"
msgstr "<link href=\"text/simpress/02/13190000.xhp\" name=\"Select Text Area Only\">ཚིག་ཡིག་མངའ་ཁོངས་རྐྱངམ་ཅིག་སེལ་འཐུ་འབད་</link>"
@@ -1018,7 +940,6 @@ msgstr "$[officename]ཌཱ་ཁྱད་རྣམ་ཚུ།"
msgctxt ""
"main0503.xhp\n"
"hd_id3148797\n"
-"1\n"
"help.text"
msgid "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"$[officename] Draw Features\">$[officename] Draw Features</link></variable>"
msgstr "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"$[officename] Draw Features\">$[officename] ཌཱ་ཁྱད་རྣམ་ཚུ་</link></variable>"
@@ -1027,7 +948,6 @@ msgstr "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"
msgctxt ""
"main0503.xhp\n"
"par_id3146975\n"
-"2\n"
"help.text"
msgid "$[officename] Draw lets you create simple and complex drawings and export them in a number of common image formats. You can also insert tables, charts, formulas and other items created in $[officename] programs into your drawings."
msgstr "$[officename] ཌཱ་འདི་གིས་ ཁྱོད་ལུ་འཇམ་སམ་དང་གོ་དཀའ་བའི་པར་རིས་ཚུ་གསར་བསྐྲུན་འབད་བཅུགཔ་ཨིནམ་དང་ ཐུན་མོང་གཟུགས་བརྙན་རྩ་སྒྲིག་གི་ཨང་གྲངས་ཅིག་ནང་དེ་ཚུ་ཕྱིར་འདྲེན་འབད་བཅུགཔ་ཨིན། དེ་མ་ཚད་ཁྱོད་ཀྱིས་ ཁྱོད་རའི་པར་རིས་ཚུ་ནང་ ཐིག་ཁྲམ་དང་དཔེ་རིས་ཚུ་དེ་ལས་ མན་ངག་དང་གཞན་ $[officename] ལས་རིམ་ཚུ་ནང་གསར་བསྐྲུན་འབད་ཡོད་པའི་རྣམ་གྲངས་ཚུ་བཙུགས་བཏུབ།"
@@ -1036,7 +956,6 @@ msgstr "$[officename] ཌཱ་འདི་གིས་ ཁྱོད་ལུ་
msgctxt ""
"main0503.xhp\n"
"hd_id3147435\n"
-"11\n"
"help.text"
msgid "Vector Graphics"
msgstr "མཉམ་ཐིག་ཚད་རིས་ཚུ།"
@@ -1045,7 +964,6 @@ msgstr "མཉམ་ཐིག་ཚད་རིས་ཚུ།"
msgctxt ""
"main0503.xhp\n"
"par_id3153142\n"
-"12\n"
"help.text"
msgid "$[officename] Draw creates vector graphics using lines and curves defined by mathematical vectors. Vectors describe lines, ellipses, and polygons according to their geometry."
msgstr "$[officename]ཌཱ་གིས་ ཨང་རྩིས་མཉམ་ཐིག་གིས་ངེས་འཛིན་འབད་ཡོད་པའི་གྲལ་ཐིག་དང་གུག་གུགཔ་ཚུ་ལག་ལེན་འཐབ་པའི་ཐོག་ལས་ མཉམ་ཐིག་ཚད་རིས་ཚུ་གསར་བསྐྲུན་འབད་ཚུགས། མཉམ་ཐིག་གིས་ དེ་ཚུ་གི་ཐིག་རྩིས་དང་འཁྲིལ་ཏེ་ གྲལ་ཐིག་དང་སྒོང་དབྱིབས་ཚུ་དེ་ལས་ཟུར་མང་དབྱིབས་ཚུ་འགྲེལ་བཤད་འབདཝ་ཨིན།"
@@ -1054,7 +972,6 @@ msgstr "$[officename]ཌཱ་གིས་ ཨང་རྩིས་མཉམ་
msgctxt ""
"main0503.xhp\n"
"hd_id3154320\n"
-"14\n"
"help.text"
msgid "Creating 3D Objects"
msgstr "༣ཌི་དངོས་པོ་ཚུ་ གསར་བསྐྲུན་འབད་དོ།"
@@ -1063,7 +980,6 @@ msgstr "༣ཌི་དངོས་པོ་ཚུ་ གསར་བསྐྲ
msgctxt ""
"main0503.xhp\n"
"par_id3145251\n"
-"15\n"
"help.text"
msgid "You can create simple 3D objects such as cubes, spheres, and cylinders in $[officename] Draw and even modify the light source of the objects."
msgstr "ཁྱོད་ཀྱིས་ $[officename]ཌཱ་ནང་ལུ་ འཇམ་སམ་གྱི་ ༣ཌི་ དངོས་པོ་ དཔེར་ན་ ཤོ་དབྱིབས་དང་ཟླུམ་གཟུགས་དེ་ལས་ སི་ལིན་ཌར་ཚུ་གསར་བསྐྲུན་འབད་ཚུགས་པའི་ཁར་ དངོས་པོ་ཚུའི་འོད་ཀྱི་འབྱུང་ཁུངས་ཚུ་ཡང་ལེགས་བཅོས་འབད་ཚུགས།"
@@ -1072,7 +988,6 @@ msgstr "ཁྱོད་ཀྱིས་ $[officename]ཌཱ་ནང་ལུ་
msgctxt ""
"main0503.xhp\n"
"hd_id3154491\n"
-"20\n"
"help.text"
msgid "Grids and Snap Lines"
msgstr ""
@@ -1081,7 +996,6 @@ msgstr ""
msgctxt ""
"main0503.xhp\n"
"par_id3149379\n"
-"6\n"
"help.text"
msgid "Grids and snap lines provide a visual cue to help you align objects in your drawing. You can also choose to snap an object to a grid line, snap line or to the edge of another object."
msgstr "གིརིཌིསི་དང་ལམ་སྟོན་གྱིས་ ཁྱོད་ཀྱི་པར་རིས་ནང་དངོས་པོ་ཚུ་ཕྲང་སྒྲིག་གྲོགས་རམ་གྱི་དོན་ལུ་བརྡ་མཚོན་བྱིནམ་ཨིན། དེ་མ་ཚད་ཁྱོད་ཀྱིས་ གིརིཌི་གྲལ་ཐིག་དང་ལམ་སྟོན་ ཡང་ན་ དངོས་པོ་གཞན་གྱི་མཐའམ་ལུ་ དངོས་པོ་པར་བཏབ་ནིའི་དོན་ལུ་ གདམ་ཁ་བརྐྱབ་ཚུགས།"
@@ -1090,7 +1004,6 @@ msgstr "གིརིཌིསི་དང་ལམ་སྟོན་གྱིས
msgctxt ""
"main0503.xhp\n"
"hd_id3155601\n"
-"16\n"
"help.text"
msgid "Connecting Objects to Show Relationships"
msgstr "མཐུན་འབྲེལ་སྟོན་ནིའི་དོན་ལུ་ དངོས་པོ་ཚུ་མཐུད་དོ།"
@@ -1099,7 +1012,6 @@ msgstr "མཐུན་འབྲེལ་སྟོན་ནིའི་དོན
msgctxt ""
"main0503.xhp\n"
"par_id3149124\n"
-"17\n"
"help.text"
msgid "You can connect objects in $[officename] Draw with special lines called \"connectors\" to show the relationship between objects. Connectors attach to glue points on drawing objects and remain attached when the connected objects are moved. Connectors are useful for creating organization charts and technical diagrams."
msgstr "ཁྱོད་ཀྱིས་ དངོས་པོ་ཚུའི་བར་ན་མཐུན་འབྲེལ་སྟོན་ནིའི་དོན་ལས་ $[officename] ཌཱ་ནང་ དམིགས་བསལ་གྱི་གྲལ་ཐིག་\"connectors\"ཟེར་མི་དང་བཅས་ དངོས་པོ་ཚུ་མཐུད་ཚུགས། པར་རིས་དངོས་པོའི་གུ་མཐུད་བྱེད་ཚུ་ གུ་ལུ་པོ་ཡིནཊིསི་ལུ་མཉམ་སྦྲགས་དང་འབྲེལ་མཐུད་འབད་ཡོད་པའི་དངོས་པོ་ཚུ་རྩ་བསྐྲད་བཏངམ་ད་ མཉམ་སྦྲགས་འབད་དེ་སྡོད་འོང་། མཐུད་བྱེད་ཚུ་ ཚོགས་སྡེ་དཔེ་རིས་དང་ཐབས་རིག་བཀོད་རིས་ཚུ་གསར་བསྐྲུན་འབད་ནིའི་དོན་ལས་ ཕན་ཐོགས་ཅན་ཅིག་ཨིན།"
@@ -1108,7 +1020,6 @@ msgstr "ཁྱོད་ཀྱིས་ དངོས་པོ་ཚུའི་
msgctxt ""
"main0503.xhp\n"
"hd_id3155764\n"
-"21\n"
"help.text"
msgid "Displaying Dimensions"
msgstr "རྒྱ་ཁྱོན་བཀྲམ་སྟོན་འབད་དོ།"
@@ -1117,7 +1028,6 @@ msgstr "རྒྱ་ཁྱོན་བཀྲམ་སྟོན་འབད་ད
msgctxt ""
"main0503.xhp\n"
"par_id3155333\n"
-"22\n"
"help.text"
msgid "Technical diagrams often show the dimensions of objects in the drawing. In $[officename] Draw, you can use dimension lines to calculate and display linear dimensions."
msgstr "ཐབས་རིག་བཀོད་རིས་ཀྱིས་འཕྲལ་འཕྲལ་རང་པར་རིས་ནང་ དངོས་པོ་ཚུའི་རྒྱ་ཁྱོན་སྟོནམ་ཨིན། $[officename]ཌཱ་ནང་ ཁྱོད་ཀྱིས་རྩིས་སྟོན་ནི་དང་ཐིག་གི་རྒྱ་ཁྱོན་ཚུ་བཀྲམ་སྟོན་འབད་ནིའི་དོན་ལས་ རྒྱ་ཁྱོན་གྲལ་ཐིག་ཚུ་ལག་ལེན་འཐབ་ཚུགས།"
@@ -1126,7 +1036,6 @@ msgstr "ཐབས་རིག་བཀོད་རིས་ཀྱིས་འཕ
msgctxt ""
"main0503.xhp\n"
"hd_id3154705\n"
-"18\n"
"help.text"
msgid "Gallery"
msgstr "སྟོན་ཁང་།"
@@ -1135,7 +1044,6 @@ msgstr "སྟོན་ཁང་།"
msgctxt ""
"main0503.xhp\n"
"par_id3154022\n"
-"7\n"
"help.text"
msgid "The Gallery contains images, animations, sounds and other items that you can insert and use in your drawings as well as other $[officename] programs."
msgstr "སྟོན་ཁང་ནང་ལུ་ གཟུགས་བརྙན་དང་བསྒུལ་བཟོ་དེ་ལས་ སྒྲ་སྐད་དང་གཞན་རྣམ་གྲངས་ཚུ་ཡོདཔ་ཨིནམ་དང་ དེ་ཚུ་ཁྱོད་ཀྱིས་བཙུགས་བཏུབ་དང་ཁྱོད་རའི་པར་རིས་ཚུ་ནང་མ་ཚད་པར་ གཞན་$[officename]ལས་རིམ་ཚུ་ནང་ལུ་ཡང་ལག་ལེན་འཐབ་བཏུབ།"
@@ -1144,7 +1052,6 @@ msgstr "སྟོན་ཁང་ནང་ལུ་ གཟུགས་བརྙ
msgctxt ""
"main0503.xhp\n"
"hd_id3149207\n"
-"19\n"
"help.text"
msgid "Graphic File Formats"
msgstr "ཚད་རིས་ཡིག་སྣོད་རྩ་སྒྲིག"
@@ -1153,7 +1060,6 @@ msgstr "ཚད་རིས་ཡིག་སྣོད་རྩ་སྒྲིག
msgctxt ""
"main0503.xhp\n"
"par_id3155112\n"
-"5\n"
"help.text"
msgid "$[officename] Draw can export to many common graphic file formats, such as BMP, GIF, JPG, and PNG."
msgstr "$[officename] ཌཱ་གིས་ དཔེར་ན་ བི་ཨེམ་པི་དང་ཇི་ཨའི་ཨེཕི་དེ་ལས་ ཇེ་པི་ཇི་དང་པི་ཨེན་ཇི་ལ་སོགས་པའི་ཐུན་མོང་ཚད་རིས་ཡིག་སྣོད་རྩ་སྒྲིག་ལེ་ཤ་ཅིག་ལུ་ཕྱིར་འདྲེན་འབད་ཚུགས།"
diff --git a/source/dz/helpcontent2/source/text/sdraw/00.po b/source/dz/helpcontent2/source/text/sdraw/00.po
index dd59813f6cc..4a4c10933e7 100644
--- a/source/dz/helpcontent2/source/text/sdraw/00.po
+++ b/source/dz/helpcontent2/source/text/sdraw/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:02+0100\n"
-"PO-Revision-Date: 2011-04-05 19:29+0200\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"PO-Revision-Date: 2013-05-24 08:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,8 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369384082.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -27,7 +28,6 @@ msgstr "བརྡ་བཀོད་འདི་ འཛུལ་སྤྱོད
msgctxt ""
"00000004.xhp\n"
"hd_id3156024\n"
-"1\n"
"help.text"
msgid "<variable id=\"wie\">To access this command...</variable>"
msgstr "<variable id=\"wie\">བརྡ་བཀོད་འདི་ འཛུལ་སྤྱོད་འབད་ནི་ལུ་...</variable>"
diff --git a/source/dz/helpcontent2/source/text/sdraw/01.po b/source/dz/helpcontent2/source/text/sdraw/01.po
index 15c461ea12f..7b5cd3d76f6 100644
--- a/source/dz/helpcontent2/source/text/sdraw/01.po
+++ b/source/dz/helpcontent2/source/text/sdraw/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:02+0100\n"
-"PO-Revision-Date: 2011-04-05 19:29+0200\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"PO-Revision-Date: 2013-05-24 08:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,8 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369384082.000000\n"
#: 04010000.xhp
msgctxt ""
@@ -27,7 +28,6 @@ msgstr "ཤོག་ལེབ་ བཙུགས།"
msgctxt ""
"04010000.xhp\n"
"hd_id3150202\n"
-"1\n"
"help.text"
msgid "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Insert Page\">Insert Page</link>"
msgstr "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Insert Page\">Insert Page</link>"
@@ -36,7 +36,6 @@ msgstr "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Insert Page\">Insert Pa
msgctxt ""
"04010000.xhp\n"
"par_id3152988\n"
-"2\n"
"help.text"
msgid "<variable id=\"seitetext\">Inserts a blank page after the selected page.</variable>"
msgstr "<variable id=\"seitetext\">སེལ་འཐུ་འབད་ཡོད་པའི་ཤོག་ལེབ་ཀྱི་ཤུལ་མ་ ཤོག་ལེབ་སྟོངམ་བཙུགསཔ་ཨིན། </variable>"
diff --git a/source/dz/helpcontent2/source/text/sdraw/04.po b/source/dz/helpcontent2/source/text/sdraw/04.po
index 2bcdb48c092..855cb7f3e0e 100644
--- a/source/dz/helpcontent2/source/text/sdraw/04.po
+++ b/source/dz/helpcontent2/source/text/sdraw/04.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:02+0100\n"
-"PO-Revision-Date: 2011-04-05 19:29+0200\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"PO-Revision-Date: 2013-05-24 08:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,8 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369384082.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -35,7 +36,6 @@ msgstr "<bookmark_value>མགྱོགས་ཐབས་ལྡེ་མིག
msgctxt ""
"01020000.xhp\n"
"hd_id3156441\n"
-"1\n"
"help.text"
msgid "<variable id=\"draw_keys\"><link href=\"text/sdraw/04/01020000.xhp\" name=\"Shortcut Keys for Drawings\">Shortcut Keys for Drawings</link></variable>"
msgstr "<variable id=\"draw_keys\"><link href=\"text/sdraw/04/01020000.xhp\" name=\"Shortcut Keys for Drawings\">པར་རིས་ཀྱི་དོན་ལུ་ མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ་ </link></variable>"
@@ -44,7 +44,6 @@ msgstr "<variable id=\"draw_keys\"><link href=\"text/sdraw/04/01020000.xhp\" nam
msgctxt ""
"01020000.xhp\n"
"par_id3153877\n"
-"2\n"
"help.text"
msgid "The following is a list of shortcut keys specific to Drawing documents."
msgstr "འོག་ལུ་ཡོད་མི་འདི་ པར་རིས་ཡིག་ཆའི་དོན་ལུ་ དམིགས་བསལ་མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ་གི་ཐོ་ཡིག་ཨིན།"
@@ -53,7 +52,6 @@ msgstr "འོག་ལུ་ཡོད་མི་འདི་ པར་རི
msgctxt ""
"01020000.xhp\n"
"par_id3154730\n"
-"103\n"
"help.text"
msgid "You can also use the <link href=\"text/shared/04/01010000.xhp\" name=\"general shortcut keys for $[officename]\">general shortcut keys for $[officename]</link>."
msgstr "ཁྱོད་ཀྱིས་ $[officename] གི་དོན་ལུ་ <link href=\"text/shared/04/01010000.xhp\" name=\"general shortcut keys for $[officename]\">ཡོངས་ཁྱབ་མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ་ ལག་ལེན་འཐབ་ཚུགས།</link>"
@@ -62,7 +60,6 @@ msgstr "ཁྱོད་ཀྱིས་ $[officename] གི་དོན་ལུ
msgctxt ""
"01020000.xhp\n"
"hd_id3149121\n"
-"3\n"
"help.text"
msgid "Function Keys for Drawings"
msgstr "པར་རིས་ཀྱི་དོན་ལུ་ ལས་འགན་ལྡེ་མིག་ཚུ།"
@@ -71,7 +68,6 @@ msgstr "པར་རིས་ཀྱི་དོན་ལུ་ ལས་འག
msgctxt ""
"01020000.xhp\n"
"hd_id3155768\n"
-"4\n"
"help.text"
msgid "Shortcut Keys"
msgstr "མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ།"
@@ -80,7 +76,6 @@ msgstr "མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ།"
msgctxt ""
"01020000.xhp\n"
"par_id3153713\n"
-"6\n"
"help.text"
msgid "<emph>Effect</emph>"
msgstr "<emph>ནུས་པ།</emph>"
@@ -89,7 +84,6 @@ msgstr "<emph>ནུས་པ།</emph>"
msgctxt ""
"01020000.xhp\n"
"hd_id3150044\n"
-"7\n"
"help.text"
msgid "F2"
msgstr "F2"
@@ -98,7 +92,6 @@ msgstr "F2"
msgctxt ""
"01020000.xhp\n"
"par_id3152346\n"
-"8\n"
"help.text"
msgid "Add or edit text."
msgstr "ཚིག་ཡིག་ཁ་སྐོང་རྐྱབས་ ཡང་ན་ ཞུན་དག་འབད།"
@@ -107,7 +100,6 @@ msgstr "ཚིག་ཡིག་ཁ་སྐོང་རྐྱབས་ ཡང
msgctxt ""
"01020000.xhp\n"
"hd_id3154705\n"
-"9\n"
"help.text"
msgid "F3"
msgstr "F3"
@@ -116,7 +108,6 @@ msgstr "F3"
msgctxt ""
"01020000.xhp\n"
"par_id3147004\n"
-"10\n"
"help.text"
msgid "Opens group to edit individual objects."
msgstr "དངོས་པོ་རེ་རེ་ཞུན་དག་འབད་ནིའི་དོན་ལས་ སྡེ་ཚན་ཁ་ཕྱེཝ་ཨིན།"
@@ -125,7 +116,6 @@ msgstr "དངོས་པོ་རེ་རེ་ཞུན་དག་འབད
msgctxt ""
"01020000.xhp\n"
"hd_id3155113\n"
-"11\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
@@ -134,7 +124,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3159238\n"
-"12\n"
"help.text"
msgid "Close group editor."
msgstr "སྡེ་ཚན་ཞུན་དགཔ་ ཁ་སྡམས།"
@@ -143,7 +132,6 @@ msgstr "སྡེ་ཚན་ཞུན་དགཔ་ ཁ་སྡམས།"
msgctxt ""
"01020000.xhp\n"
"hd_id3150199\n"
-"13\n"
"help.text"
msgid "Shift+F3"
msgstr "སོར་ལྡེ་+F3"
@@ -152,7 +140,6 @@ msgstr "སོར་ལྡེ་+F3"
msgctxt ""
"01020000.xhp\n"
"par_id3152994\n"
-"14\n"
"help.text"
msgid "Opens the <emph>Duplicate</emph> dialog."
msgstr "<emph>Duplicate</emph> ཌའི་ལོག་ ཁ་ཕྱེཝ་ཨིན།"
@@ -161,7 +148,6 @@ msgstr "<emph>Duplicate</emph> ཌའི་ལོག་ ཁ་ཕྱེཝ་ཨ
msgctxt ""
"01020000.xhp\n"
"hd_id3154488\n"
-"15\n"
"help.text"
msgid "F4"
msgstr "F4"
@@ -170,7 +156,6 @@ msgstr "F4"
msgctxt ""
"01020000.xhp\n"
"par_id3149406\n"
-"16\n"
"help.text"
msgid "Opens the <emph>Position and Size</emph> dialog."
msgstr "<emph>Position and Size</emph>ཌའི་ལོག་ ཁ་ཕྱེཝ་ཨིན།"
@@ -179,7 +164,6 @@ msgstr "<emph>Position and Size</emph>ཌའི་ལོག་ ཁ་ཕྱེ
msgctxt ""
"01020000.xhp\n"
"hd_id3148870\n"
-"21\n"
"help.text"
msgid "F5"
msgstr "F5"
@@ -188,7 +172,6 @@ msgstr "F5"
msgctxt ""
"01020000.xhp\n"
"par_id3153917\n"
-"22\n"
"help.text"
msgid "Opens the <emph>Navigator</emph>."
msgstr "<emph>Navigator</emph> ཁ་ཕྱེཝ་ཨིན།"
@@ -197,7 +180,6 @@ msgstr "<emph>Navigator</emph> ཁ་ཕྱེཝ་ཨིན།"
msgctxt ""
"01020000.xhp\n"
"hd_id3157982\n"
-"25\n"
"help.text"
msgid "F7"
msgstr "F7"
@@ -206,7 +188,6 @@ msgstr "F7"
msgctxt ""
"01020000.xhp\n"
"par_id3154649\n"
-"26\n"
"help.text"
msgid "Checks spelling."
msgstr "ཡིག་སྡེབ་ ཞིབ་དཔྱད་འབདཝ་ཨིན།"
@@ -215,7 +196,6 @@ msgstr "ཡིག་སྡེབ་ ཞིབ་དཔྱད་འབདཝ་
msgctxt ""
"01020000.xhp\n"
"hd_id3152869\n"
-"27\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7"
@@ -224,7 +204,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3154765\n"
-"28\n"
"help.text"
msgid "Opens the <emph>Thesaurus</emph>."
msgstr "<emph>Thesaurus</emph> ཁ་ཕྱེཝ་ཨིན།"
@@ -233,7 +212,6 @@ msgstr "<emph>Thesaurus</emph> ཁ་ཕྱེཝ་ཨིན།"
msgctxt ""
"01020000.xhp\n"
"hd_id3146962\n"
-"29\n"
"help.text"
msgid "F8"
msgstr "F8"
@@ -242,7 +220,6 @@ msgstr "F8"
msgctxt ""
"01020000.xhp\n"
"par_id3154707\n"
-"30\n"
"help.text"
msgid "Edit points on/off."
msgstr "དོན་ཚན་ཚུ་ ཨཱོན་/ཨོཕ་སྦེ་ཞུན་དག་འབད།"
@@ -251,7 +228,6 @@ msgstr "དོན་ཚན་ཚུ་ ཨཱོན་/ཨོཕ་སྦེ་
msgctxt ""
"01020000.xhp\n"
"hd_id3149317\n"
-"31\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F8"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F8"
@@ -260,7 +236,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3147250\n"
-"32\n"
"help.text"
msgid "Fits to frame."
msgstr "གཞི་ཁྲམ་ནང་ཚུད་སྒྲིག་འབདཝ་ཨིན།"
@@ -269,7 +244,6 @@ msgstr "གཞི་ཁྲམ་ནང་ཚུད་སྒྲིག་འབད
msgctxt ""
"01020000.xhp\n"
"hd_id3150434\n"
-"35\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
@@ -278,7 +252,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3151389\n"
-"36\n"
"help.text"
msgid "Opens Styles and Formatting window."
msgstr "བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་ནིའི་སྒོ་སྒྲིག་ཚུ་ ཁ་ཕྱེཝ་ཨིན།"
@@ -295,7 +268,6 @@ msgstr "<bookmark_value>རྒྱས་ཟུམ་འབད་དོ་ མག
msgctxt ""
"01020000.xhp\n"
"hd_id3150393\n"
-"41\n"
"help.text"
msgid "Shortcut Keys for Drawings"
msgstr "པར་རིས་ཀྱི་དོན་ལུ་ མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ།"
@@ -304,7 +276,6 @@ msgstr "པར་རིས་ཀྱི་དོན་ལུ་ མགྱོག
msgctxt ""
"01020000.xhp\n"
"hd_id3156401\n"
-"42\n"
"help.text"
msgid "Shortcut Keys"
msgstr "མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ།"
@@ -313,7 +284,6 @@ msgstr "མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ།"
msgctxt ""
"01020000.xhp\n"
"par_id3146323\n"
-"43\n"
"help.text"
msgid "<emph>Effect</emph>"
msgstr "<emph>ནུས་པ།</emph>"
@@ -322,7 +292,6 @@ msgstr "<emph>ནུས་པ།</emph>"
msgctxt ""
"01020000.xhp\n"
"hd_id3149946\n"
-"44\n"
"help.text"
msgid "Plus(+) Key"
msgstr "བསྡོམས་རྟགས་(+) ལྡེ་མིག"
@@ -331,7 +300,6 @@ msgstr "བསྡོམས་རྟགས་(+) ལྡེ་མིག"
msgctxt ""
"01020000.xhp\n"
"par_id3159119\n"
-"45\n"
"help.text"
msgid "Zooms in."
msgstr "ཕྱིར་རྒྱས་འབདཝ་ཨིན།"
@@ -340,7 +308,6 @@ msgstr "ཕྱིར་རྒྱས་འབདཝ་ཨིན།"
msgctxt ""
"01020000.xhp\n"
"hd_id3150655\n"
-"46\n"
"help.text"
msgid "Minus(-) Key"
msgstr "ཕབ་རྟགས་(-)ལྡེ་མིག"
@@ -349,7 +316,6 @@ msgstr "ཕབ་རྟགས་(-)ལྡེ་མིག"
msgctxt ""
"01020000.xhp\n"
"par_id3145827\n"
-"47\n"
"help.text"
msgid "Zooms out."
msgstr "ནང་ཟུམ་འབདཝ་ཨིན།"
@@ -358,7 +324,6 @@ msgstr "ནང་ཟུམ་འབདཝ་ཨིན།"
msgctxt ""
"01020000.xhp\n"
"hd_id3149886\n"
-"99\n"
"help.text"
msgid "Multiple(×) Key (number pad)"
msgstr "སྣ་མང་(×)ལྡེ་མིག་ (ཨང་གྲངས་གདན་)།"
@@ -367,7 +332,6 @@ msgstr "སྣ་མང་(×)ལྡེ་མིག་ (ཨང་གྲངས་
msgctxt ""
"01020000.xhp\n"
"par_id3150746\n"
-"102\n"
"help.text"
msgid "Zooms to fit entire page in screen."
msgstr "གསལ་གཞིའི་ནང་ ཤོག་ལེབ་ཧྲིལ་བུ་སྦེ་ ཚུད་སྒྲིག་འབད་ནིའི་དོན་ལུ་ ཕྱིར་རྒྱས་འབདཝ་ཨིན།"
@@ -376,7 +340,6 @@ msgstr "གསལ་གཞིའི་ནང་ ཤོག་ལེབ་ཧྲ
msgctxt ""
"01020000.xhp\n"
"hd_id3154841\n"
-"101\n"
"help.text"
msgid "Divide (÷) Key (number pad)"
msgstr "བགོ་བཤའ་(÷) ལྡེ་མིག་ (ཨང་གྲངས་གདན་)།"
@@ -385,7 +348,6 @@ msgstr "བགོ་བཤའ་(÷) ལྡེ་མིག་ (ཨང་གྲ
msgctxt ""
"01020000.xhp\n"
"par_id3153039\n"
-"100\n"
"help.text"
msgid "Zooms in on the current selection."
msgstr "ད་ལྟོའི་སེལ་འཐུ་གུ་ ཕྱིར་རྒྱས་འབདཝ་ཨིན།"
@@ -394,7 +356,6 @@ msgstr "ད་ལྟོའི་སེལ་འཐུ་གུ་ ཕྱིར
msgctxt ""
"01020000.xhp\n"
"hd_id3150867\n"
-"52\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+G"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+G"
@@ -403,7 +364,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3149250\n"
-"53\n"
"help.text"
msgid "Groups selected objects."
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ་ཚུ་ སྡེ་ཚན་སྦེ་གནསཔ་ཨིན།"
@@ -412,7 +372,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་དངོས
msgctxt ""
"01020000.xhp\n"
"hd_id3149955\n"
-"54\n"
"help.text"
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+A"
msgstr "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་+གདམ་ཁ་ </caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+A"
@@ -421,7 +380,6 @@ msgstr "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ
msgctxt ""
"01020000.xhp\n"
"par_id3148582\n"
-"55\n"
"help.text"
msgid "Ungroups selected group."
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་སྡེ་ཚན་ཚུ་ སྡེ་ཚན་སྦེ་མི་གནསཔ་ཨིན།"
@@ -430,7 +388,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་སྡེ་
msgctxt ""
"01020000.xhp\n"
"hd_id3146852\n"
-"56\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+K"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+K"
@@ -439,7 +396,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3153110\n"
-"57\n"
"help.text"
msgid "Combines selected objects."
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ་ཚུ་ མཉམ་མཐུད་འབདཝ་ཨིན།"
@@ -448,7 +404,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་དངོས
msgctxt ""
"01020000.xhp\n"
"hd_id3153567\n"
-"58\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Shift+K"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་+Option </caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Shift+K"
@@ -457,7 +412,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3147366\n"
-"59\n"
"help.text"
msgid "Uncombines selected objects."
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ་ཚུ་ མཉམ་མཐུད་མི་འབདཝ་ཨིན།"
@@ -466,7 +420,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་དངོས
msgctxt ""
"01020000.xhp\n"
"hd_id3153730\n"
-"60\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+ +"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift++"
@@ -475,7 +428,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3155928\n"
-"61\n"
"help.text"
msgid "Bring to front."
msgstr "ཡིག་གཟུགས་ལུ་ འབག་ཤོག"
@@ -484,7 +436,6 @@ msgstr "ཡིག་གཟུགས་ལུ་ འབག་ཤོག"
msgctxt ""
"01020000.xhp\n"
"hd_id3145245\n"
-"62\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ +"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>++"
@@ -493,7 +444,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3148393\n"
-"63\n"
"help.text"
msgid "Bring forward."
msgstr "གདོང་ཁར་འབག་ཤོག"
@@ -502,7 +452,6 @@ msgstr "གདོང་ཁར་འབག་ཤོག"
msgctxt ""
"01020000.xhp\n"
"hd_id3150928\n"
-"64\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ -"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+-"
@@ -511,7 +460,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3156062\n"
-"65\n"
"help.text"
msgid "Send backward."
msgstr "རྒྱབ་ཁར་ གཏང་།"
@@ -520,7 +468,6 @@ msgstr "རྒྱབ་ཁར་ གཏང་།"
msgctxt ""
"01020000.xhp\n"
"hd_id3145298\n"
-"66\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+ -"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+-"
@@ -529,7 +476,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3149028\n"
-"67\n"
"help.text"
msgid "Send to back."
msgstr "རྒྱབ་ལུ་ གཏང་།"
@@ -538,7 +484,6 @@ msgstr "རྒྱབ་ལུ་ གཏང་།"
msgctxt ""
"01020000.xhp\n"
"hd_id3147533\n"
-"68\n"
"help.text"
msgid "Shortcut Keys Specific to Drawings"
msgstr "པར་རིས་བྲིས་ནི་ལུ་ དམིགས་བསལ་གྱི་མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ།"
@@ -547,7 +492,6 @@ msgstr "པར་རིས་བྲིས་ནི་ལུ་ དམིགས
msgctxt ""
"01020000.xhp\n"
"hd_id3154865\n"
-"69\n"
"help.text"
msgid "Shortcut Keys"
msgstr "མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ།"
@@ -556,7 +500,6 @@ msgstr "མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ།"
msgctxt ""
"01020000.xhp\n"
"par_id3155370\n"
-"70\n"
"help.text"
msgid "<emph>Effect</emph>"
msgstr "<emph>ནུས་པ།</emph>"
@@ -629,7 +572,6 @@ msgstr "ཤུལ་མམ་གྱི་བང་རིམ་ལུ་ སོ
msgctxt ""
"01020000.xhp\n"
"hd_id3153927\n"
-"71\n"
"help.text"
msgid "Arrow Key"
msgstr "མདའ་རྟགས་ལྡེ་མིག"
@@ -638,7 +580,6 @@ msgstr "མདའ་རྟགས་ལྡེ་མིག"
msgctxt ""
"01020000.xhp\n"
"par_id3155986\n"
-"72\n"
"help.text"
msgid "Moves the selected object in the direction of the arrow key."
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ་འདི་ མདའ་རྟགས་ལྡེ་མིག་གི་ཁ་ཕྱོགས་ལུ་ སྤོ་བཤུད་འབདཝ་ཨིན།"
@@ -647,7 +588,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་དངོས
msgctxt ""
"01020000.xhp\n"
"hd_id3156259\n"
-"73\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Arrow Key"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+མདའ་རྟགས་ལྡེ་མིག"
@@ -656,7 +596,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3147171\n"
-"74\n"
"help.text"
msgid "Moves the page view in the direction of the arrow key."
msgstr "ཤོག་ལེབ་ཀྱི་མཐོང་སྣང་འདི་ མདའ་རྟགས་ལྡེ་མིག་གི་ཁ་ཕྱོགས་ལུ་ སྤོ་བཤུད་འབདཝ་ཨིན།"
@@ -665,7 +604,6 @@ msgstr "ཤོག་ལེབ་ཀྱི་མཐོང་སྣང་འདི
msgctxt ""
"01020000.xhp\n"
"hd_id3152484\n"
-"79\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click while dragging an object. Note: this shortcut key works only when the <link href=\"text/shared/optionen/01070500.xhp\" name=\"Copy when moving\">Copy when moving</link> option in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Draw - General is enabled (it is enabled by default)."
msgstr ""
@@ -674,7 +612,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"par_id3149450\n"
-"80\n"
"help.text"
msgid "Creates a copy of the dragged object when mouse button is released."
msgstr "མའུསི་ཨེབ་རྟ་འདི་ལག་པ་ལས་བཏངམ་ད་ འདྲུད་ཡོད་པའི་དངོས་པོའི་འདྲ་བཤུས་ཅིག་ གསར་བསྐྲུན་འབདཝ་ཨིན།"
@@ -683,7 +620,6 @@ msgstr "མའུསི་ཨེབ་རྟ་འདི་ལག་པ་ལས
msgctxt ""
"01020000.xhp\n"
"hd_id3154643\n"
-"104\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter with keyboard focus (F6) on a drawing object icon on Tools bar"
msgstr ""
@@ -692,7 +628,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"par_id3150756\n"
-"105\n"
"help.text"
msgid "Inserts a drawing object of default size into the center of the current view."
msgstr "ད་ལྟོའི་མཐོང་སྣང་གི་དབུས་ནང་ སྔོན་སྒྲིག་ཚད་ཀྱི་པར་རིས་དངོས་པོ་ བཙུགསཔ་ཨིན།"
@@ -701,7 +636,6 @@ msgstr "ད་ལྟོའི་མཐོང་སྣང་གི་དབུས
msgctxt ""
"01020000.xhp\n"
"hd_id3151189\n"
-"106\n"
"help.text"
msgid "Shift+F10"
msgstr "སོར་ལྡེ་+F10"
@@ -710,7 +644,6 @@ msgstr "སོར་ལྡེ་+F10"
msgctxt ""
"01020000.xhp\n"
"par_id3151266\n"
-"107\n"
"help.text"
msgid "Opens the context menu for the selected object."
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོའི་དོན་ལུ་ སྐབས་དོན་དཀར་ཆག་ ཁ་ཕྱེཝ་ཨིན།"
@@ -719,7 +652,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་དངོས
msgctxt ""
"01020000.xhp\n"
"hd_id3156100\n"
-"108\n"
"help.text"
msgid "F2"
msgstr "F2"
@@ -728,7 +660,6 @@ msgstr "F2"
msgctxt ""
"01020000.xhp\n"
"par_id3156323\n"
-"109\n"
"help.text"
msgid "Enters text mode."
msgstr "ཚིག་ཡིག་ཐབས་ལམ་ བཙུགསཔ་ཨིན།"
@@ -737,7 +668,6 @@ msgstr "ཚིག་ཡིག་ཐབས་ལམ་ བཙུགསཔ་ཨ
msgctxt ""
"01020000.xhp\n"
"hd_id3147563\n"
-"110\n"
"help.text"
msgid "Enter"
msgstr "བཙུགས།"
@@ -746,7 +676,6 @@ msgstr "བཙུགས།"
msgctxt ""
"01020000.xhp\n"
"par_id3150258\n"
-"111\n"
"help.text"
msgid "Enters text mode if a text object is selected."
msgstr "ཚིག་ཡིག་དངོས་པོ་འདི་སེལ་འཐུ་འབད་དེ་ཡོད་པ་ཅིན་ ཚིག་ཡིག་ཐབས་ལམ་བཙུགས།"
@@ -755,7 +684,6 @@ msgstr "ཚིག་ཡིག་དངོས་པོ་འདི་སེལ་
msgctxt ""
"01020000.xhp\n"
"hd_id3155851\n"
-"112\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>++"
@@ -764,7 +692,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"01020000.xhp\n"
"par_id3154046\n"
-"113\n"
"help.text"
msgid "Enters text mode if a text object is selected. If there are no text objects or if you have cycled through all of the text objects on the page, a new page is inserted."
msgstr "ཚིག་ཡིག་དངོས་པོ་ཅིག་སེལ་འཐུ་འབད་ཡོད་པ་ཅིན་ ཚིག་ཡིག་ཐབས་ལམ་བཙུགསཔ་ཨིན། ཚིག་ཡིག་དངོས་པོ་མེད་པ་ཅིན་ ཡང་ན་ ཁྱོད་ཀྱིས་ ཤོག་ལེབ་གུ་ལུ་ ཚིག་ཡིག་དངོས་པོ་ཚུ་ལས་བརྒྱུད་དེ་ བསྐྱར་འཁོར་སྦེ་ སོང་ཡོད་པ་ཅིན་ ཤོག་ལེབ་གསརཔ་ཅིག་བཙུགསཔ་ཨིན།"
@@ -773,7 +700,6 @@ msgstr "ཚིག་ཡིག་དངོས་པོ་ཅིག་སེལ་
msgctxt ""
"01020000.xhp\n"
"hd_id3149977\n"
-"81\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་ </caseinline><defaultinline>Alt</defaultinline></switchinline>"
@@ -782,7 +708,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ
msgctxt ""
"01020000.xhp\n"
"par_id3152812\n"
-"82\n"
"help.text"
msgid "Press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key and drag with the mouse to draw or resize an object from the center of the object outward."
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་ </caseinline><defaultinline>གདམ་ལྡེ་</defaultinline></switchinline> ལྡེ་མིག་འདི་ ཨེབ་ཞིནམ་ལས་ ཕྱི་ཕྱོགས་དངོས་པོའི་དབུས་ནང་ལས་ དངོས་པོ་འབྲི་ནི་ ཡང་ན་ ཚད་བསྐྱར་བཟོ་འབད་ནིའི་དོན་ལུ་ མའུསི་གི་ཐོག་ལས་ འདྲུད།"
@@ -791,7 +716,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ
msgctxt ""
"01020000.xhp\n"
"hd_id3143232\n"
-"83\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+ click on an object"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་</caseinline><defaultinline>Alt</defaultinline></switchinline>+སོར་ལྡེ་+དངོས་པོ་ལུ་ ཨེབ་གཏང་འབད།"
@@ -800,7 +724,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ
msgctxt ""
"01020000.xhp\n"
"par_id3156007\n"
-"84\n"
"help.text"
msgid "Selects the object behind the currently selected object."
msgstr "ད་ལྟོ་སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོའི་རྒྱབ་ཁའི་དངོས་པོ་འདི་ སེལ་འཐུ་འབདཝ་ཨིན།"
@@ -809,7 +732,6 @@ msgstr "ད་ལྟོ་སེལ་འཐུ་འབད་ཡོད་པའ
msgctxt ""
"01020000.xhp\n"
"hd_id3147252\n"
-"85\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift+click an object"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་</caseinline><defaultinline>Alt</defaultinline></switchinline>+སོར་ལྡེ་+དངོས་པོ་ལུ་ ཨེབ་གཏང་འབད།"
@@ -818,7 +740,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ
msgctxt ""
"01020000.xhp\n"
"par_id3145666\n"
-"86\n"
"help.text"
msgid "Selects the object in front of the currently selected object."
msgstr "ད་ལྟོ་སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོའི་གདོང་ཁའི་དངོས་པོ་འདི་ སེལ་འཐུ་འབདཝ་ཨིན།"
@@ -827,7 +748,6 @@ msgstr "ད་ལྟོ་སེལ་འཐུ་འབད་ཡོད་པའ
msgctxt ""
"01020000.xhp\n"
"hd_id3155325\n"
-"87\n"
"help.text"
msgid "Shift key while selecting an object"
msgstr "དངོས་པོ་སེལ་འཐུ་འབད་བའི་སྐབས་ལུ་ ལྡེ་མིག་སོར་ལྡེ་འབད།"
@@ -836,7 +756,6 @@ msgstr "དངོས་པོ་སེལ་འཐུ་འབད་བའི་
msgctxt ""
"01020000.xhp\n"
"par_id3159343\n"
-"88\n"
"help.text"
msgid "Adds or removes object to or from the selection."
msgstr "སེལ་འཐུ་ནང་ལུ་ ཡང་ན་ དེ་ནང་ལས་དངོས་པོ་ ཁ་སྐོང་ ཡང་ན་ རྩ་བསྐྲད་གཏངམ་ཨིན།"
@@ -845,7 +764,6 @@ msgstr "སེལ་འཐུ་ནང་ལུ་ ཡང་ན་ དེ་ན
msgctxt ""
"01020000.xhp\n"
"hd_id3083282\n"
-"75\n"
"help.text"
msgid "Shift+ drag while moving an object"
msgstr ""
@@ -854,7 +772,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"par_id3145620\n"
-"76\n"
"help.text"
msgid "The movement of the selected object is constrained by multiples of 45 degrees."
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོའི་བསྒུལ་བསྐྱོད་འདི་ ཁུག་ཟུར་ ༤༥ འི་སྣ་མང་གིས་ བར་ཆད་རྐྱབས་བརྐྱབ་ཨིན།"
@@ -863,7 +780,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་དངོས
msgctxt ""
"01020000.xhp\n"
"hd_id3154933\n"
-"89\n"
"help.text"
msgid "Shift+drag while creating or resizing an object"
msgstr "དངོས་པོ་གསར་བསྐྲུན་འབད་བའི་སྐབས་ ཡང་ན་ ཚད་བསྐྱར་བཟོའི་སྐབས་ལུ་ སོར་ལྡེ་+འདྲུད་ནི་གཉིས་ ལག་ལེན་འཐབ།"
@@ -872,7 +788,6 @@ msgstr "དངོས་པོ་གསར་བསྐྲུན་འབད་བ
msgctxt ""
"01020000.xhp\n"
"par_id3148831\n"
-"90\n"
"help.text"
msgid "Constrains the size to keep the object's aspect ratio."
msgstr ""
@@ -881,7 +796,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"hd_id3154205\n"
-"91\n"
"help.text"
msgid "Tab"
msgstr "མཆོང་ལྡེ།"
@@ -890,7 +804,6 @@ msgstr "མཆོང་ལྡེ།"
msgctxt ""
"01020000.xhp\n"
"par_id3148804\n"
-"92\n"
"help.text"
msgid "Cycles through the objects on the page in the order in which they were created."
msgstr "གསར་བསྐྲུན་འབད་ཡོད་པའི་གོ་རིམ་བསྟར་ ཤོག་ལེབ་གུ་ དངོས་པོ་ཚུ་ལས་བརྒྱུད་དེ་ བསྐྱར་འཁོར་སྦེ་སོངམ་ཨིན།"
@@ -899,7 +812,6 @@ msgstr "གསར་བསྐྲུན་འབད་ཡོད་པའི་ག
msgctxt ""
"01020000.xhp\n"
"hd_id3145410\n"
-"93\n"
"help.text"
msgid "Shift+Tab"
msgstr "སོར་ལྡེ་+མཆོང་ལྡེ།"
@@ -908,7 +820,6 @@ msgstr "སོར་ལྡེ་+མཆོང་ལྡེ།"
msgctxt ""
"01020000.xhp\n"
"par_id3149764\n"
-"94\n"
"help.text"
msgid "Cycles through the objects on the page in the reverse-order in which they were created."
msgstr "གསར་བསྐྲུན་འབད་ཡོད་པའི་གོ་རིམ་རིམ་ལོག་བསྟར་ ཤོག་ལེབ་གུ་ དངོས་པོ་ཚུ་ལས་བརྒྱུད་དེ་ བསྐྱར་འཁོར་སྦེ་སོངམ་ཨིན།"
@@ -917,7 +828,6 @@ msgstr "གསར་བསྐྲུན་འབད་ཡོད་པའི་ག
msgctxt ""
"01020000.xhp\n"
"hd_id3158399\n"
-"97\n"
"help.text"
msgid "Esc"
msgstr "Esc"
@@ -926,7 +836,6 @@ msgstr "Esc"
msgctxt ""
"01020000.xhp\n"
"par_id3109840\n"
-"98\n"
"help.text"
msgid "Exits current mode."
msgstr "ད་ལྟོའི་ཐབས་ལམ་ ཕྱིར་འཐོན་འབདཝ་ཨིན།"
diff --git a/source/dz/helpcontent2/source/text/sdraw/guide.po b/source/dz/helpcontent2/source/text/sdraw/guide.po
index e1341f03141..b7760e4dae9 100644
--- a/source/dz/helpcontent2/source/text/sdraw/guide.po
+++ b/source/dz/helpcontent2/source/text/sdraw/guide.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-03-09 20:48+0100\n"
-"PO-Revision-Date: 2015-12-11 12:13+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-05-12 14:35+0200\n"
+"PO-Revision-Date: 2016-05-02 10:42+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449836026.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462185765.000000\n"
#: align_arrange.xhp
msgctxt ""
@@ -28,7 +28,6 @@ msgstr "དངོས་པོ་ཚུ་ བདེ་ཞིབ་དང་ཕ
msgctxt ""
"align_arrange.xhp\n"
"hd_id3149656\n"
-"73\n"
"help.text"
msgid "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Arranging and Aligning Objects\">Arranging, Aligning and Distributing Objects</link></variable>"
msgstr "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Arranging and Aligning Objects\">དངོས་པོ་ཚུ་ བདེ་ཞིབ་དང་ཕྲང་སྒྲིག་ དེ་ལས་བགོ་བཀྲམ་འབད་ནི་ </link></variable>"
@@ -45,7 +44,6 @@ msgstr "<bookmark_value>དངོས་པོ་འདི་ཚུ་ གོ་
msgctxt ""
"align_arrange.xhp\n"
"hd_id3125863\n"
-"17\n"
"help.text"
msgid "Arranging Objects"
msgstr "དངོས་པོ་ཚུ་ བདེ་ཞིབ་འབད་དོ།"
@@ -54,7 +52,6 @@ msgstr "དངོས་པོ་ཚུ་ བདེ་ཞིབ་འབད་
msgctxt ""
"align_arrange.xhp\n"
"par_id3153727\n"
-"18\n"
"help.text"
msgid "Each object that you place in your document is successively stacked on the preceding object. To re-arrange the stacking order of a selected object, proceed as follows."
msgstr "ཁྱོད་ཀྱིས་ཁྱོད་རའི་ཡིག་ཆ་ནང་བཙུགས་བཞག་པའི་དངོས་པོ་ཡོད་ཚད་ཅིགཔ་ དངོས་པོ་སྦོམ་ཤོས་གུ་ བརྒྱུད་རིམ་ཅན་སྦེ་བརྩེགས་ནུག སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོའི་བརྩེགས་ཕུང་གོ་རིམ་འདི་ ལོག་བདེ་ཞིབ་འབད་ནིའི་དོན་ལུ་ འོག་གི་ཚུ་བཟུམ་སྦེ་འཕྲོ་མཐུད་དེ་འབད།"
@@ -71,7 +68,6 @@ msgstr ""
msgctxt ""
"align_arrange.xhp\n"
"par_id3150327\n"
-"78\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to bring up the context menu and choose one of the arrange options:"
msgstr "སྐབས་དོན་དཀར་ཆག་འབད་འོང་ནིའི་དོན་ལུ་ <item type=\"menuitem\"> ལེགས་བཅོས་-བདེ་ཞིབ་</item> གདམ་ཁ་རྐྱབས་ ཡང་ན་ བདེ་ཞིབ་གདམ་ཁ་ཚུའི་ནང་ལས་ གཅིག་གདམ་ཁ་རྐྱབས།"
@@ -120,7 +116,6 @@ msgstr "<emph>དངོས་པོའི་རྒྱབ་ཁར་</emph> ད
msgctxt ""
"align_arrange.xhp\n"
"hd_id3155766\n"
-"79\n"
"help.text"
msgid "Arranging an Object Behind Another Object"
msgstr "དངོས་པོ་གཞན་ཅིག་གི་རྒྱབ་ཁར་ དངོས་པོ་འདི་བདེ་ཞིབ་འབད་དོ།"
@@ -137,7 +132,6 @@ msgstr ""
msgctxt ""
"align_arrange.xhp\n"
"par_id3154253\n"
-"80\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Behind Object</emph>. The mouse pointer changes to a hand."
msgstr "སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ་ནིའི་དོན་ལུ་ <item type=\"menuitem\">ལེགས་བཅོས་-བདེ་ཞིབ་</item>འདི་་གདམས་ དེ་ལས་ <emph>དངོས་པོའི་རྒྱབ་ཁར་</emph>འདི་གདམ་ཁ་རྐྱབས། མའུསི་དཔག་བྱེད་འདི་ ལགཔ་ལུ་བསྒྱུརཝ་ཨིན།"
@@ -146,7 +140,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ་ནི
msgctxt ""
"align_arrange.xhp\n"
"par_id3149126\n"
-"81\n"
"help.text"
msgid "Click the object behind which you want to place the selected object."
msgstr "ཁྱོད་ཀྱིས་སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ་བདེ་ཞིབ་འབད་ནི་ལུ་ རྒྱབ་ཁའི་དངོས་པོ་ལུ་ཨེབ་གཏང་འབད།"
@@ -155,7 +148,6 @@ msgstr "ཁྱོད་ཀྱིས་སེལ་འཐུ་འབད་ཡོ
msgctxt ""
"align_arrange.xhp\n"
"hd_id3145789\n"
-"20\n"
"help.text"
msgid "Reversing The Stacking Order of Two Objects"
msgstr "དངོས་པོ་གཉིས་ཀྱི་བརྩེགས་ཕུང་གོ་རིམ་ རིམ་ལོག་འབད་དོ།"
@@ -164,7 +156,6 @@ msgstr "དངོས་པོ་གཉིས་ཀྱི་བརྩེགས་
msgctxt ""
"align_arrange.xhp\n"
"par_id3154022\n"
-"83\n"
"help.text"
msgid "Shift-click both objects to select them."
msgstr "དེ་ཚུ་སེལ་འཐུ་འབད་ནི་ལུ་ དངོས་པོ་གཉིས་ཆ་ར་ལུ་ སོར་ལྡེ་-ཨེབ་གཏང་འབད།"
@@ -173,7 +164,6 @@ msgstr "དེ་ཚུ་སེལ་འཐུ་འབད་ནི་ལུ་
msgctxt ""
"align_arrange.xhp\n"
"par_id3155114\n"
-"84\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Reverse</emph>."
msgstr "སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ་ནིའི་དོན་ལུ་ <item type=\"menuitem\">ལེགས་བཅོས་-བདེ་ཞིབ་</item> འདི་གདམས་ དེ་ལས་ <emph>རིམ་ལོག་</emph>འདི་གདམ་ཁ་རྐྱབས།"
@@ -182,7 +172,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ་ནི
msgctxt ""
"align_arrange.xhp\n"
"hd_id3166425\n"
-"21\n"
"help.text"
msgid "Aligning Objects"
msgstr "དངོས་པོ་ཚུ་ ཕྲང་སྒྲིག་འབད་དོ།"
@@ -191,7 +180,6 @@ msgstr "དངོས་པོ་ཚུ་ ཕྲང་སྒྲིག་འབ
msgctxt ""
"align_arrange.xhp\n"
"par_id3152994\n"
-"22\n"
"help.text"
msgid "The <emph>Alignment</emph> function enables you to align objects relative to each other or relative to the page."
msgstr "<emph>ཕྲང་སྒྲིག་</emph> ལས་འགན་འདི་གིས་ཁྱོད་ལུ་ གཅིག་གིས་གཅིག་ལེ་འབྲེལ་བ་ཡོད་པའི་དངོས་པོ་ཚུ་ ཡང་ན་ ཤོག་ལེབ་ལུ་འབྲེལ་བ་ཡོད་མི་ལུ་ ཕྲང་སྒྲིག་འབད་ནིའི་ལྕོགས་ཅན་བཟོཝ་ཨིན།"
@@ -224,7 +212,6 @@ msgstr "དངོས་པོ་ཚུ་ བགོ་བཀྲམ་འབད
msgctxt ""
"align_arrange.xhp\n"
"par_id3151390\n"
-"71\n"
"help.text"
msgid "If you select three or more objects in Draw, you can also use the <link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\"><emph>Distribution</emph></link> command to distribute the vertical and horizontal spacing evenly between the objects."
msgstr "ཁྱོད་ཀྱིས་འབྲི་ནི་ནང་དངོས་པོ་གསུམ་ ཡངན་ ལེ་ཤ་ར་སེལ་འཐུ་འབད་བ་ཅིན་ དངོས་པོ་ཚུའི་བར་ན་ བར་སྟོང་ཆ་ཅན་སྦེ་ཀེར་ཕྲང་དང་ཐད་སྙོམས་གཉིས་ལུ་ བགོ་བཀྲམ་འབད་ནིའི་དོན་ལུ་ <link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\"><emph>བགོ་བཀྲམ་</emph></link> བརྡ་བཀོད་འདི་ཡང་ ལག་ལེན་འཐབ་ཚུགསཔ་ཨིན།"
@@ -257,7 +244,6 @@ msgstr "ཐད་སྙོམས་དང་ཀེར་ཕྲང་གི་ག
msgctxt ""
"align_arrange.xhp\n"
"par_id3150535\n"
-"72\n"
"help.text"
msgid "Selected objects are distributed evenly along the horizontal or vertical axis. The two outermost objects are used as reference points and do not move when the <emph>Distribution</emph> command is applied."
msgstr "སེལའཐུ་འབད་ཡོད་པའི་དངོས་པོ་ཚུ་ ཐད་སྙོམས་ཡང་ན་ ཀེར་ཕྲང་ཚད་ཐིག་མདའ་སྟེ་ ཆ་ཅན་སྦེ་བགོ་བཀྲམ་འབད་ཡི། ཕྱི་མཐའི་དངོས་པོ་གཉིསཔ་འདི་ གཞི་བསྟུན་དོན་ཚན་སྦེ་ ལག་ལེན་འཐབ་ཡོདཔ་དང་ <emph>བགོ་བཀྲམ་</emph>བརྡ་བཀོད་འདི་ འཇུག་སྤྱོད་འབད་ཡོད་པའི་སྐབས་ སྤོ་བཤུད་མ་འབད།"
@@ -282,7 +268,6 @@ msgstr "<bookmark_value>ཚོས་གཞི་ཚུ་ ངེས་འཛི
msgctxt ""
"color_define.xhp\n"
"hd_id3149263\n"
-"7\n"
"help.text"
msgid "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define.xhp\" name=\"Defining Custom Colors\">Defining Custom Colors</link></variable>"
msgstr "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define.xhp\" name=\"Defining Custom Colors\">སྲོལ་སྒྲིག་ཚོས་གཞི་ཚུ་ ངེས་འཛིན་འབད་དོ་</link></variable>"
@@ -291,7 +276,6 @@ msgstr "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define
msgctxt ""
"color_define.xhp\n"
"par_id3154511\n"
-"8\n"
"help.text"
msgid "If you want, you can mix a custom color and add it to a color table."
msgstr "ཁྱོད་རང་དགོ་པ་ཅིན་ སྲོལ་སྒྲིག་ཚོས་གཞི་སླ་བསྲེ་ཞིནམ་ལས་ཚོས་གཞིའི་ཐིག་ཁྲམ་ལུ་ ཁ་སྐོང་རྐྱབས།"
@@ -300,7 +284,6 @@ msgstr "ཁྱོད་རང་དགོ་པ་ཅིན་ སྲོལ་
msgctxt ""
"color_define.xhp\n"
"hd_id3155600\n"
-"9\n"
"help.text"
msgid "To define a custom color"
msgstr "སྲོལ་སྒྲིག་ཚོས་གཞི་ངེས་འཛིན་འབད་ནིའི་དོན་ལུ།"
@@ -309,7 +292,6 @@ msgstr "སྲོལ་སྒྲིག་ཚོས་གཞི་ངེས་འ
msgctxt ""
"color_define.xhp\n"
"par_id3150327\n"
-"25\n"
"help.text"
msgid "Choose <emph>Format - Area</emph> and click the <emph>Colors</emph> tab. A table of the predefined colors is displayed."
msgstr "<emph>རྩ་སྒྲིག་-མངའ་ཁོངས་</emph> འདི་གདམ་ཞིནམ་ལས་ <emph>ཚོས་གཞི་</emph> མཆོང་ལྡེ་ལུ་ ཨེབ་གཏང་འབད། སྔ་གོང་ངེས་འཛིན་འབད་ཡོད་པའི་ཚོས་གཞི་ཚུའི་ཐིག་ཁྲམ་འདི་ བཀྲམ་སྟོན་འབད་ཡི།"
@@ -318,7 +300,6 @@ msgstr "<emph>རྩ་སྒྲིག་-མངའ་ཁོངས་</emph> འ
msgctxt ""
"color_define.xhp\n"
"par_id3154657\n"
-"13\n"
"help.text"
msgid "Changes made to the standard color table are permanent and are saved automatically."
msgstr "ཚད་ལྡན་གྱི་ཚོས་གཞི་ཐིག་ཁྲམ་ལུ་བསྒྱུར་བཅོས་འབད་མི་ཚུ་རྟག་བརྟན་ཨིནམ་དང་དེ་ཚུ་རང་བཞིན་གྱིས་སྲུང་འོང་།"
@@ -327,7 +308,6 @@ msgstr "ཚད་ལྡན་གྱི་ཚོས་གཞི་ཐིག་ཁ
msgctxt ""
"color_define.xhp\n"
"par_id3166425\n"
-"14\n"
"help.text"
msgid "Click a color in the table that is similar to the one you want to mix. The color appears in the upper preview box to the right of the table."
msgstr "ཁྱོད་ཀྱིས་བླ་བསྲེ་ནི་ཨིན་པའི་ཚོས་གཞི་འདི་དང་ཅོག་འཐད་མིའི་ཐིག་ཁྲམ་ནང་ཡོད་པའི་ཚོས་གཞི་ལུ་ ཨེབ་གཏང་འབད།"
@@ -336,7 +316,6 @@ msgstr "ཁྱོད་ཀྱིས་བླ་བསྲེ་ནི་ཨིན
msgctxt ""
"color_define.xhp\n"
"par_id3152992\n"
-"15\n"
"help.text"
msgid "Select the RGB or CMYK color model in the box below the preview boxes."
msgstr "སྔོན་ལྟའི་སྒྲོམ་ཚུའི་འོག་ལུ་ཡོད་པའི་སྒྲོམ་ནང་ ཨར་ཇི་བི་ ཡང་ན་ སི་ཨེམ་ཝའི་ཀེ་ཚོས་གཞི་སེལ་འཐུ་འབད།"
@@ -353,7 +332,6 @@ msgstr ""
msgctxt ""
"color_define.xhp\n"
"par_id3152987\n"
-"16\n"
"help.text"
msgid "The RGB color model mixes red, green and blue light to create colors on a computer screen. In the RGB model, the three color components are additive and can have values ranging from 0 (black) to 255 (white). The CMYK color model combines Cyan (C), Magenta (M), Yellow (Y), and blacK (K, also used for \"Key\") to create colors for printing. The four colors of the CMYK models are subtractive and are defined as percentages. Black corresponds to 100 % and white to 0 %."
msgstr "ཨར་ཇི་བི་ཚོས་གཞིའི་དཔེ་འདི་གིས་ གློག་རིག་གསལ་གཞིའི་གུ་ ཚོས་གཞི་གསར་བསྐྲུན་འབད་ནིའི་དོན་ལུ་ དམརཔོ་དང་ལྗང་ཁུ་དེ་ལས་ སྔོ་སྐྱ་ཚུ་བླ་བསྲེཝ་ཨིན། ཨར་ཇི་བིའི་དཔེ་ནང་ ཚོས་གཞིའི་ཆ་ཤས་གསུམ་ཆ་ར་བསྡོམས་བཏུབ་དང་ ༠ (གནགཔ་) ལས་ ༢༥༥ (དཀརཔོ་)གི་བར་སྡེ་ཚན་བསྟར་སྦེ་ གནས་གོང་ཡོདཔ་ཨིན། སི་ཨེམ་ཝའི་ཀེ་ཚོས་གཞིའི་དཔེ་འདི་ དཔར་བསྐྲུན་འབད་ནི་ལུ་ ཚོས་གཞི་གསར་བསྐྲུན་འབད་ནིའི་དོན་ལས་ སྔོ་ལྗང་(C)དང་དམར་སྨུག་(M)དེ་ལས་ སེརཔོ་(Y)དང་གནགཔ་(Kའདི་ཡང་\"Key\"འབད་ལག་ལེན་འདབ་ཨིན་)ཚུ་ མཉམ་བསྡོམས་འབདཝ་ཨིན། སི་ཨེམ་ཝའི་ཀེ་དཔེ་ཚུའི་ཚོས་གཞི་བཞིཔ་འདི་ ཕབ་བཏུབ་པའི་ཁར་རྒྱ་ཆ་་སྦེ་ངེས་འཛིན་འབད་ཡི། གནགཔ་འདི་ ༡༠༠%དང་དཀརཔོ་འདི་ ༠%འབད་ཆ་མཉམ་ཨིན།"
@@ -362,7 +340,6 @@ msgstr "ཨར་ཇི་བི་ཚོས་གཞིའི་དཔེ་འ
msgctxt ""
"color_define.xhp\n"
"par_id3145386\n"
-"17\n"
"help.text"
msgid "Enter a numeric value in the boxes next to the color components. The new color appears in the preview box directly above the color model box."
msgstr "ཚོས་གཞི་ཆ་ཤས་ཚུའི་སྦོ་ལོགས་ཁར་ཡོད་པའི་སྒྲོམ་ཚུ་ནང་ ཨང་གྲངས་བེ་ལུ་བཙུགས། ཚོས་གཞི་གསརཔ་འདི་ཚོས་གཞི་དཔེ་སྒྲོམ་གྱི་ལྟག་ལུ་ སྔོན་ལྟའི་སྒྲོམ་ནང་ ཐད་ཀར་དུ་འབྱུངམ་ཨིན།"
@@ -371,7 +348,6 @@ msgstr "ཚོས་གཞི་ཆ་ཤས་ཚུའི་སྦོ་ལོ
msgctxt ""
"color_define.xhp\n"
"par_id3152871\n"
-"18\n"
"help.text"
msgid "You can also create a color using a color spectrum. Click the <emph>Edit</emph> button to open the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog. Click a color. Use the Hue, Saturation, and Brightness boxes to adjust your color selection."
msgstr "ཁྱོད་ཀྱིས་ ཚོས་གཞིའི་ཚོན་མདངས་ལག་ལེན་གྱི་ཐོ་ག་ལས་ ཚོས་གཞི་ཅིག་གསར་བསྐྲུན་འབད་ཚུགས། <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>ཚོས་གཞི་</emph></link>ཌའི་ལོག་ཁ་ཕྱེ་ནིའི་དོན་ལུ་ <emph>ཞུན་དག་</emph>ཨེབ་རྟ་འདི་ལུ་ ཨེབ་གཏང་འབད། ཚོས་གཞི་ལུ་ཨེབ་གཏང་འབད་ཞིནམ་ལས་ བཏུབ་ལུ་ ཨེབ་གཏང་འབད། ཁྱོད་རའི་ཚོས་གཞི་སེལ་འཐུའི་དོན་ལས་ ཚོན་མདངས་དང་མཐའ་ཚད་དེ་ལས་ དཀར་མདངས་ཀྱི་སྒྲོམ་ཚུ་ ལག་ལེན་འཐབ།"
@@ -380,7 +356,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཚོས་གཞིའི་ཚོན
msgctxt ""
"color_define.xhp\n"
"par_id3153011\n"
-"19\n"
"help.text"
msgid "Do one of the following:"
msgstr "འོག་གི་ཚུ་ནང་ལས་ གཅིག་འབད་:"
@@ -389,7 +364,6 @@ msgstr "འོག་གི་ཚུ་ནང་ལས་ གཅིག་འབ
msgctxt ""
"color_define.xhp\n"
"par_id3147244\n"
-"26\n"
"help.text"
msgid "If you want to replace the color in the standard color table that your custom color is based on, click <emph>Modify</emph>."
msgstr "ཁྱོད་ཀྱིས་ཁྱོད་རའི་སྲོལ་སྒྲིག་ཚོས་གཞི་འདི་གཞི་བཞག་ཡོད་པའི་ཚད་ལྡན་ཚོས་གཞིའི་ཐིག་ཁྲམ་ནང་ ཚོས་གཞི་ཚབ་བཙུགས་ནི་ཨིན་པ་ཅིན་ <emph>ལེགས་བཅོས་</emph> ལུ་ཨེབ་གཏང་འབད།"
@@ -398,7 +372,6 @@ msgstr "ཁྱོད་ཀྱིས་ཁྱོད་རའི་སྲོལ་
msgctxt ""
"color_define.xhp\n"
"par_id3145116\n"
-"20\n"
"help.text"
msgid "If you want to add your custom color to the standard color table, enter a name in the <emph>Name</emph> text box and click <emph>Add</emph>."
msgstr "ཁྱོད་ཀྱིས་ ཚད་ལྡན་ཚོས་གཞིའི་ཐིག་ཁྲམ་ལུ་ ཁྱོད་རའི་སྲོལ་སྒྲིག་ཚོས་གཞི་ ཁ་སྐོང་འབད་ནི་ཨིན་པ་ཅིན་ <emph>མིང་</emph>ཚིག་ཡིག་སྒྲོམ་ནང་ མིང་བཙུགས་དེ་ལས་ <emph>ཁ་སྐོང་</emph> ལུ་ཨེབ་གཏང་འབད།"
@@ -407,7 +380,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཚད་ལྡན་ཚོས་གཞ
msgctxt ""
"color_define.xhp\n"
"par_id3145236\n"
-"23\n"
"help.text"
msgid "<link href=\"text/shared/01/03170000.xhp\" name=\"Color bar\">Color bar</link>"
msgstr "<link href=\"text/shared/01/03170000.xhp\" name=\"Color bar\">ཚོས་གཞི་ཕྲ་རིང་</link>"
@@ -432,7 +404,6 @@ msgstr "<bookmark_value>མཉམ་མཐུད་འབད་དོ་ དང
msgctxt ""
"combine_etc.xhp\n"
"hd_id3156443\n"
-"64\n"
"help.text"
msgid "<variable id=\"combine_etc\"><link href=\"text/sdraw/guide/combine_etc.xhp\" name=\"Combining Objects and Constructing Shapes\">Combining Objects and Constructing Shapes</link> </variable>"
msgstr "<variable id=\"combine_etc\"><link href=\"text/sdraw/guide/combine_etc.xhp\" name=\"Combining Objects and Constructing Shapes\">དངོས་པོ་ཚུ་མཉམ་མཐུད་འབད་ནི་དང་དབྱིབས་ཚུ་བཟོ་བསྐྲུན་འབད་ནི་</link></variable>"
@@ -441,7 +412,6 @@ msgstr "<variable id=\"combine_etc\"><link href=\"text/sdraw/guide/combine_etc.x
msgctxt ""
"combine_etc.xhp\n"
"par_id3149020\n"
-"65\n"
"help.text"
msgid "Combined drawing objects act as grouped objects, except that you cannot enter the group to edit the individual objects."
msgstr "ཁྱོད་ཀྱིས་ དངོས་པོ་རེ་རེ་བཞིན་དུ་ཞུན་དག་འབད་ནི་ལུ་སྡེ་ཚན་བཙུགས་མ་ཚུགསཔ་མ་གཏོགས་ཅིགཔ་ གཞན་མཉམ་མཐུད་འབད་ཡོད་པའི་པར་རིས་དངོས་པོ་ཚུ་ སྡེ་ཚན་ཅན་གྱི་དངོས་པོ་སྦེ་ ཚབ་མ་འབདཝ་ཨིན།"
@@ -450,7 +420,6 @@ msgstr "ཁྱོད་ཀྱིས་ དངོས་པོ་རེ་རེ
msgctxt ""
"combine_etc.xhp\n"
"par_id3154659\n"
-"87\n"
"help.text"
msgid "You can only combine 2D objects."
msgstr "ཁྱོད་ཀྱིས་ ༢ཌི་ དངོས་པོ་ཚུ་རྐྱངམ་ཅིག་ མཉམ་མཐུད་འབད་ཚུགས།"
@@ -459,7 +428,6 @@ msgstr "ཁྱོད་ཀྱིས་ ༢ཌི་ དངོས་པོ་ཚ
msgctxt ""
"combine_etc.xhp\n"
"hd_id3150344\n"
-"32\n"
"help.text"
msgid "To combine 2D objects:"
msgstr "༢ཌི་ དངོས་པོ་ཚུ་མཉམ་མཐུད་འབད་ནི་ལུ་:"
@@ -468,7 +436,6 @@ msgstr "༢ཌི་ དངོས་པོ་ཚུ་མཉམ་མཐུད
msgctxt ""
"combine_etc.xhp\n"
"par_id3166428\n"
-"66\n"
"help.text"
msgid "Select two or more 2D objects."
msgstr "༢ཌི་ དངོས་པོ་གཅིག་ཡང་ཅིན་ གཅིག་ལས་ལྷག་སྟེ་ སེལ་འཐུ་འབད།"
@@ -477,7 +444,6 @@ msgstr "༢ཌི་ དངོས་པོ་གཅིག་ཡང་ཅིན
msgctxt ""
"combine_etc.xhp\n"
"par_id3145587\n"
-"67\n"
"help.text"
msgid "Choose <emph>Modify - Combine</emph>."
msgstr "<emph>ལེགས་བཅོས་-མཉམ་མཐུད་</emph> གདམ་ཁ་རྐྱབས།"
@@ -486,7 +452,6 @@ msgstr "<emph>ལེགས་བཅོས་-མཉམ་མཐུད་</emph>
msgctxt ""
"combine_etc.xhp\n"
"par_id3146978\n"
-"33\n"
"help.text"
msgid "Unlike groups, a combined object takes on the properties of the lowermost object in the stacking order. You can split apart combined objects, but the original object properties are lost."
msgstr "མཉམ་མཐུད་འབད་ཡོད་པའི་སྡེ་ཚན་གྱིས་ སྡེ་ཚན་གཞན་དང་མ་འདྲཝ་སྦེ་ བརྩེགས་ཕུང་གོ་རིམ་ནང་ དངོས་པོ་དམའ་ཤོས་ཀྱི་རྒྱུ་དངོས་ཚུ་གུ་འབག་འགྱོཝ་ཨིན། ཁྱོད་ཀྱིས་ མཉམ་མཐུད་འབད་ཡོད་པའི་དངོས་པོ་ཚུ་གཤག་ཚུགས་ དེ་འབད་ཝ་ད་ དངོས་པོའི་རྒྱུ་དངོས་ངོ་མ་ཚུ་ བརླག་སྟོར་ཞུགསཔ་ཨིན།"
@@ -495,7 +460,6 @@ msgstr "མཉམ་མཐུད་འབད་ཡོད་པའི་སྡེ
msgctxt ""
"combine_etc.xhp\n"
"par_id3155088\n"
-"34\n"
"help.text"
msgid "When you combine objects, holes appear where the objects overlap."
msgstr "ཁྱོད་ཀྱིས་ དངོས་པོ་ཚུ་མཉམ་མཐུད་འབདཝ་ད་ དངོས་པོ་མཐའ་མནོན་འབད་ས་ལས་ དོང་ཕུ་འབྱུངམ་ཨིན།"
@@ -505,14 +469,13 @@ msgctxt ""
"combine_etc.xhp\n"
"par_id3156019\n"
"help.text"
-msgid "<image id=\"img_id3157978\" src=\"res/helpimg/kombi1.png\" width=\"8.3646inch\" height=\"2.5inch\"><alt id=\"alt_id3157978\">Illustration for combining objects</alt></image>"
-msgstr "<image id=\"img_id3157978\" src=\"res/helpimg/kombi1.png\" width=\"212.46mm\" height=\"63.5mm\"><alt id=\"alt_id3157978\">དངོས་པོ་ཚུ་མཉམ་མཐུད་འབད་ནི་ལུ་ རི་མོ་</alt></image>"
+msgid "<image id=\"img_id3157978\" src=\"media/helpimg/kombi1.png\" width=\"8.3646inch\" height=\"2.5inch\"><alt id=\"alt_id3157978\">Illustration for combining objects</alt></image>"
+msgstr "<image id=\"img_id3157978\" src=\"media/helpimg/kombi1.png\" width=\"212.46mm\" height=\"63.5mm\"><alt id=\"alt_id3157978\">དངོས་པོ་ཚུ་མཉམ་མཐུད་འབད་ནི་ལུ་ རི་མོ་</alt></image>"
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
"par_id3153249\n"
-"35\n"
"help.text"
msgid "In the illustration, the uncombined objects are on the left and the combined objects on the right."
msgstr "རི་མོའི་ནང་ མཉམ་མཐུད་མ་འབད་བའི་དངོས་པོ་ཚུ་གཡོན་དང་ མཉམ་མཐུད་འབད་ཡོད་མི་ཚུ་གཡས་ལུ་ཡོདཔ་ཨིན།"
@@ -521,7 +484,6 @@ msgstr "རི་མོའི་ནང་ མཉམ་མཐུད་མ་འ
msgctxt ""
"combine_etc.xhp\n"
"hd_id3159229\n"
-"68\n"
"help.text"
msgid "Constructing Shapes"
msgstr "དབྱིབས་ཚུ་བཟོ་བསྐྲུན་འབད་དོ།"
@@ -530,7 +492,6 @@ msgstr "དབྱིབས་ཚུ་བཟོ་བསྐྲུན་འབད
msgctxt ""
"combine_etc.xhp\n"
"par_id3150049\n"
-"63\n"
"help.text"
msgid "You can construct shapes by applying the <link href=\"text/simpress/01/13180000.xhp\" name=\"Shapes\"><emph>Shapes</emph></link> <emph>- Merge, Subtract and Intersect</emph> commands to two or more drawing objects."
msgstr "ཁྱོད་ཀྱིས་ <link href=\"text/simpress/01/13180000.xhp\" name=\"Shapes\"><emph>དབྱིབས་</emph></link><emph> འཇུག་སྤྱོད་འབད་བའི་ཐོག་ལས་ དབྱིབས་བཟོ་བསྐྲུན་འབད་ཚུགས་-</emph>བརྡ་བཀོད་འདི་ པར་རིས་དངོས་པོ་གཉིས་ ཡང་ཅིན་ ལེ་ཤ་ལུ་ མཉམ་བསྡོམས་འབད་ནི་དང་ཕབ་ནི་དེ་ལས་ དུམ་བུར་གཅོད།"
@@ -539,7 +500,6 @@ msgstr "ཁྱོད་ཀྱིས་ <link href=\"text/simpress/01/13180000.xh
msgctxt ""
"combine_etc.xhp\n"
"par_id3147403\n"
-"88\n"
"help.text"
msgid "Shape commands only work on 2D objects."
msgstr "དབྱིབས་ཀྱི་བརྡ་བཀོད་ཚུ་ ༢ཌི་དངོས་པོ་ཚུ་གུ་རྐྱངམ་ཅིག་ ལཱ་འབདཝ་ཨིན།"
@@ -548,7 +508,6 @@ msgstr "དབྱིབས་ཀྱི་བརྡ་བཀོད་ཚུ་
msgctxt ""
"combine_etc.xhp\n"
"par_id3150539\n"
-"89\n"
"help.text"
msgid "Constructed shapes take on the properties of the lowermost object in the stacking order."
msgstr "བཟོ་བསྐྲུན་འབད་ཡོད་པའི་དབྱིབས་ཚུ་གིས་ བརྩེགས་ཕུང་གོ་རིམ་ནང་ དངོས་པོ་དམའ་ཤོས་ཀྱི་རྒྱུ་དངོས་ཚུ་གུ་ འབགཔ་ཨིན།"
@@ -557,7 +516,6 @@ msgstr "བཟོ་བསྐྲུན་འབད་ཡོད་པའི་ད
msgctxt ""
"combine_etc.xhp\n"
"hd_id3156402\n"
-"90\n"
"help.text"
msgid "To construct a shape:"
msgstr "དབྱིབས་བཟོ་བསྐྲུན་འབད་ནི་ལུ་:"
@@ -566,7 +524,6 @@ msgstr "དབྱིབས་བཟོ་བསྐྲུན་འབད་ནི
msgctxt ""
"combine_etc.xhp\n"
"par_id3157874\n"
-"69\n"
"help.text"
msgid "Select two or more 2D objects."
msgstr "༢ཌི་ དངོས་པོ་གཅིག་ཡང་ཅིན་ གཅིག་ལས་ལྷག་སྟེ་ སེལ་འཐུ་འབད།"
@@ -575,7 +532,6 @@ msgstr "༢ཌི་ དངོས་པོ་གཅིག་ཡང་ཅིན
msgctxt ""
"combine_etc.xhp\n"
"par_id3150650\n"
-"70\n"
"help.text"
msgid "Choose <emph>Modify - Shapes</emph> and one of the following:"
msgstr "<emph>ལེགས་བཅོས་-དབྱིབས་</emph> དེ་ལས་ འོག་གི་ནང་ལས་གཅིག་ གདམ་ཁ་རྐྱབས་:"
@@ -584,7 +540,6 @@ msgstr "<emph>ལེགས་བཅོས་-དབྱིབས་</emph> དེ
msgctxt ""
"combine_etc.xhp\n"
"par_id3145829\n"
-"91\n"
"help.text"
msgid "<emph>Merge</emph>"
msgstr "<emph>མཉམ་བསྡོམས་</emph>"
@@ -593,7 +548,6 @@ msgstr "<emph>མཉམ་བསྡོམས་</emph>"
msgctxt ""
"combine_etc.xhp\n"
"par_id3154680\n"
-"92\n"
"help.text"
msgid "<emph>Subtract</emph>"
msgstr "<emph>ཕབ་</emph>"
@@ -602,7 +556,6 @@ msgstr "<emph>ཕབ་</emph>"
msgctxt ""
"combine_etc.xhp\n"
"par_id3153034\n"
-"93\n"
"help.text"
msgid "<emph>Intersect</emph>."
msgstr "<emph>དུམ་བུར་གཅོད་པ་</emph>."
@@ -611,7 +564,6 @@ msgstr "<emph>དུམ་བུར་གཅོད་པ་</emph>."
msgctxt ""
"combine_etc.xhp\n"
"hd_id3145144\n"
-"94\n"
"help.text"
msgid "Shape Commands"
msgstr "དབྱིབས་ཀྱི་བརྡ་བཀོད་ཚུ།"
@@ -620,7 +572,6 @@ msgstr "དབྱིབས་ཀྱི་བརྡ་བཀོད་ཚུ།"
msgctxt ""
"combine_etc.xhp\n"
"par_id3153931\n"
-"71\n"
"help.text"
msgid "In the following illustrations, the original objects are on the left and the modified shapes on the right."
msgstr "འོག་གི་རི་མོ་ཚུ་ནང་ལུ་ དངོས་པོ་ངོ་མ་ཚུ་གཡོན་ལུ་ཡོདཔ་དང་ ལེགས་བཅོས་འབད་ཡོད་པའི་དངོས་པོ་ཚུ་གཡས་ལུ་ཡོདཔ་ཨིན།"
@@ -629,7 +580,6 @@ msgstr "འོག་གི་རི་མོ་ཚུ་ནང་ལུ་ ད
msgctxt ""
"combine_etc.xhp\n"
"hd_id3149950\n"
-"72\n"
"help.text"
msgid "Shapes - Merge"
msgstr "དབྱིབས་ཚུ་-མཉམ་བསྡོམས།"
@@ -639,14 +589,13 @@ msgctxt ""
"combine_etc.xhp\n"
"par_id3148585\n"
"help.text"
-msgid "<image id=\"img_id3145593\" src=\"res/helpimg/formvers.png\" width=\"3.4791inch\" height=\"1.3126inch\"><alt id=\"alt_id3145593\">Illustration for merging shapes</alt></image>"
-msgstr "<image id=\"img_id3145593\" src=\"res/helpimg/formvers.png\" width=\"88.37mm\" height=\"33.34mm\"><alt id=\"alt_id3145593\">དབྱིབས་ཚུ་མཉམ་བསྡོམས་འབད་ནིའི་དོན་ལུ་ རི་མོ་</alt></image>"
+msgid "<image id=\"img_id3145593\" src=\"media/helpimg/formvers.png\" width=\"3.4791inch\" height=\"1.3126inch\"><alt id=\"alt_id3145593\">Illustration for merging shapes</alt></image>"
+msgstr "<image id=\"img_id3145593\" src=\"media/helpimg/formvers.png\" width=\"88.37mm\" height=\"33.34mm\"><alt id=\"alt_id3145593\">དབྱིབས་ཚུ་མཉམ་བསྡོམས་འབད་ནིའི་དོན་ལུ་ རི་མོ་</alt></image>"
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
"par_id3150001\n"
-"73\n"
"help.text"
msgid "Adds the area of the selected objects to the area of the lowermost object in the stacking order."
msgstr "བརྩེགས་ཕུང་གོ་རིམ་ནང་ སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ་ཚུའི་མངའ་ཁོངས་འདི་ དངོས་པོ་དམའ་ཤོས་ཀྱི་མངའ་ཁོངས་ནང་ ཁ་སྐོང་འབདཝ་ཨིན།"
@@ -655,7 +604,6 @@ msgstr "བརྩེགས་ཕུང་གོ་རིམ་ནང་ སེ
msgctxt ""
"combine_etc.xhp\n"
"hd_id3153002\n"
-"74\n"
"help.text"
msgid "Shapes - Subtract"
msgstr "དབྱིབས་ཚུ་-ཕབ་ནི།"
@@ -665,14 +613,13 @@ msgctxt ""
"combine_etc.xhp\n"
"par_id3150338\n"
"help.text"
-msgid "<image id=\"img_id3154505\" src=\"res/helpimg/formsubt.png\" width=\"3.4689inch\" height=\"1.3126inch\"><alt id=\"alt_id3154505\">Illustration for subtracting shapes</alt></image>"
-msgstr "<image id=\"img_id3154505\" src=\"res/helpimg/formsubt.png\" width=\"88.11mm\" height=\"33.34mm\"><alt id=\"alt_id3154505\">དབྱིབས་ཚུ་ཕབ་ནིའི་དོན་ལུ་ རི་མོ་</alt></image>"
+msgid "<image id=\"img_id3154505\" src=\"media/helpimg/formsubt.png\" width=\"3.4689inch\" height=\"1.3126inch\"><alt id=\"alt_id3154505\">Illustration for subtracting shapes</alt></image>"
+msgstr "<image id=\"img_id3154505\" src=\"media/helpimg/formsubt.png\" width=\"88.11mm\" height=\"33.34mm\"><alt id=\"alt_id3154505\">དབྱིབས་ཚུ་ཕབ་ནིའི་དོན་ལུ་ རི་མོ་</alt></image>"
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
"par_id3150022\n"
-"75\n"
"help.text"
msgid "Subtracts the area of the selected objects from the area of the lowermost object in the stacking order."
msgstr "བརྩེགས་ཕུང་གོརིམ་ནང་ དངོས་པོ་དམའ་ཤོས་ཀྱི་མངའ་ཁོངས་ནང་ལས་ སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ་ཚུ་ ཕབ་ཨིན།"
@@ -681,7 +628,6 @@ msgstr "བརྩེགས་ཕུང་གོརིམ་ནང་ དངོ
msgctxt ""
"combine_etc.xhp\n"
"hd_id3147370\n"
-"78\n"
"help.text"
msgid "Shapes - Intersect"
msgstr "དབྱིབས་ཚུ་:དུམ་བུར་གཅོད་པ།"
@@ -691,14 +637,13 @@ msgctxt ""
"combine_etc.xhp\n"
"par_id3150570\n"
"help.text"
-msgid "<image id=\"img_id3150658\" src=\"res/helpimg/formschn.png\" width=\"3.4272inch\" height=\"1.302inch\"><alt id=\"alt_id3150658\">Illustration for intersecting shapes</alt></image>"
-msgstr "<image id=\"img_id3150658\" src=\"res/helpimg/formschn.png\" width=\"87.05mm\" height=\"33.07mm\"><alt id=\"alt_id3150658\">དབྱིབས་ཚུ་དུམ་བུར་གཅོད་ནི་ལུ་ རི་མོ་</alt></image>"
+msgid "<image id=\"img_id3150658\" src=\"media/helpimg/formschn.png\" width=\"3.4272inch\" height=\"1.302inch\"><alt id=\"alt_id3150658\">Illustration for intersecting shapes</alt></image>"
+msgstr "<image id=\"img_id3150658\" src=\"media/helpimg/formschn.png\" width=\"87.05mm\" height=\"33.07mm\"><alt id=\"alt_id3150658\">དབྱིབས་ཚུ་དུམ་བུར་གཅོད་ནི་ལུ་ རི་མོ་</alt></image>"
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
"par_id3157972\n"
-"79\n"
"help.text"
msgid "The overlapping area of the selected objects creates the new shape."
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ་ཚུའི་མཐའ་མནོན་མངའ་ཁོངས་ཀྱིས་ དབྱིབས་གསརཔ་གསར་བསྐྲུན་འབདཝ་ཨིན།"
@@ -707,7 +652,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་དངོས
msgctxt ""
"combine_etc.xhp\n"
"par_id3151020\n"
-"80\n"
"help.text"
msgid "The area outside the overlap is removed."
msgstr "མཐའ་མནོན་གྱི་ཕྱིའི་མངའ་ཁོངས་འདི་ རྩ་བསྐྲད་བཏང་ཡི།"
@@ -732,7 +676,6 @@ msgstr "<bookmark_value>དངོས་པོ་ཚུ་བྲིས་ དང
msgctxt ""
"cross_fading.xhp\n"
"hd_id3150715\n"
-"17\n"
"help.text"
msgid "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading.xhp\" name=\"Cross-Fading Two Objects\">Cross-Fading Two Objects</link></variable>"
msgstr "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading.xhp\" name=\"Cross-Fading Two Objects\">དངོས་པོ་གཉིས་ སྐེདཔ་བཏོག་ཡལ་དོ་</link></variable>"
@@ -741,7 +684,6 @@ msgstr "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading
msgctxt ""
"cross_fading.xhp\n"
"par_id3154754\n"
-"18\n"
"help.text"
msgid "Cross-fading creates shapes and distributes them by uniform increments between two drawing objects."
msgstr "སྐེདཔ་བཏོག་ཡལ་ནི་གིས་ དབྱིབས་གསར་བསྐྲུན་འབདཝ་ཨིནམ་དང་ པར་རིས་དངོས་པོ་གཉིས་ཀྱི་བར་ན་ ཡར་འཕར་གཅིག་མཚུངས་ཀྱི་སྒོ་ལས་ དེ་ཚུ་ལུ་བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -750,7 +692,6 @@ msgstr "སྐེདཔ་བཏོག་ཡལ་ནི་གིས་ དབ
msgctxt ""
"cross_fading.xhp\n"
"par_id3155112\n"
-"41\n"
"help.text"
msgid "The cross-fading command is only available in $[officename] Draw. You can, however, copy and paste cross-faded objects into $[officename] Impress."
msgstr "སྐེདཔ་བཏོག་ཡལ་བའི་བརྡ་བཀོད་འདི་ $[officename] འབྲི་ནི་ནང་རྐྱངམ་ཅིག་ཐོབ་ཚུགསཔ་ཨིན། ག་དེ་འབད་རུང་ཁྱོད་ཀྱིས་ $[officename] ཨིམ་པིརེསི་ནང་ལུ་ འདྲ་བཤུས་དང་སྐེདཔ་བཏོག་ཡལ་མི་དངོས་པོ་ཚུ་སྦྱར་ཚུགས།"
@@ -759,7 +700,6 @@ msgstr "སྐེདཔ་བཏོག་ཡལ་བའི་བརྡ་བཀ
msgctxt ""
"cross_fading.xhp\n"
"hd_id3149209\n"
-"20\n"
"help.text"
msgid "To cross-fade two objects:"
msgstr "དངོས་པོ་གཉིས་སྐེདཔ་བཏོག་ཡལ་ནི་ལུ་:"
@@ -768,7 +708,6 @@ msgstr "དངོས་པོ་གཉིས་སྐེདཔ་བཏོག་
msgctxt ""
"cross_fading.xhp\n"
"par_id3150370\n"
-"45\n"
"help.text"
msgid "Hold down Shift and click each object."
msgstr "སོར་ལྡེ་བཟུང་ཞིནམལས་དངོས་པོ་རེ་རེ་ལུ་ ཨེབ་གཏང་འབད།"
@@ -777,7 +716,6 @@ msgstr "སོར་ལྡེ་བཟུང་ཞིནམལས་དངོས
msgctxt ""
"cross_fading.xhp\n"
"par_id3166428\n"
-"22\n"
"help.text"
msgid "Choose <emph>Edit - Cross-fading</emph>."
msgstr "<emph>སྐེདཔ་བཏོག་ཡལ་བའི་ཞུན་དག་འབད་</emph> གདམ་ཁ་རྐྱབས།"
@@ -786,7 +724,6 @@ msgstr "<emph>སྐེདཔ་བཏོག་ཡལ་བའི་ཞུན་
msgctxt ""
"cross_fading.xhp\n"
"par_id3156450\n"
-"44\n"
"help.text"
msgid "Enter a value to specify the number of objects between the start and end of the cross-fade in the <emph>Increments</emph> box."
msgstr "འགོ་བཙུགས་ཀྱི་བར་ན་དང་སྐེདཔ་བཏོག་ཡལ་བའི་མཇུག་ལུ་ དངོས་པོའི་ཨང་གྲངས་ཚུ་གསལ་བཀོད་འབད་ནིའི་དོན་ལུ་ <emph>ཡར་འཕར་</emph> སྒྲོམ་ནང་ བེ་ལུ་བཙུགས།"
@@ -795,7 +732,6 @@ msgstr "འགོ་བཙུགས་ཀྱི་བར་ན་དང་སྐ
msgctxt ""
"cross_fading.xhp\n"
"par_id3149405\n"
-"23\n"
"help.text"
msgid "Click <emph>OK</emph>."
msgstr "<emph>བཏུབ་</emph> ལུ་ཨེབ་གཏང་འབད།"
@@ -804,7 +740,6 @@ msgstr "<emph>བཏུབ་</emph> ལུ་ཨེབ་གཏང་འབད
msgctxt ""
"cross_fading.xhp\n"
"par_id3151240\n"
-"24\n"
"help.text"
msgid "A group containing the two original objects and the specified number (increments) of cross-faded objects is displayed."
msgstr "དངོས་པོ་ངོ་མ་གཉིས་ཡོད་པའི་སྡེ་ཚན་དང་སྐེདཔ་བཏོག་ཡལ་བའི་དངོས་པོ་ཚུའི་གསལ་བཀོད་འབད་ཡོད་པའི་ཨང་གྲངས་(ཡར་འཕར་)འདི་ བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -814,14 +749,13 @@ msgctxt ""
"cross_fading.xhp\n"
"par_id3159203\n"
"help.text"
-msgid "<image id=\"img_id3150210\" src=\"res/helpimg/ueberblenden.png\" width=\"74.88mm\" height=\"65.62mm\"><alt id=\"alt_id3150210\">Illustration for crossfading</alt></image>"
-msgstr "<image id=\"img_id3150210\" src=\"res/helpimg/ueberblenden.png\" width=\"74.88mm\" height=\"65.62mm\"><alt id=\"alt_id3150210\">སྐེདཔ་བཏོག་ཡལ་ནི་ལུ་ རི་མོ་</alt></image>"
+msgid "<image id=\"img_id3150210\" src=\"media/helpimg/ueberblenden.png\" width=\"74.88mm\" height=\"65.62mm\"><alt id=\"alt_id3150210\">Illustration for crossfading</alt></image>"
+msgstr "<image id=\"img_id3150210\" src=\"media/helpimg/ueberblenden.png\" width=\"74.88mm\" height=\"65.62mm\"><alt id=\"alt_id3150210\">སྐེདཔ་བཏོག་ཡལ་ནི་ལུ་ རི་མོ་</alt></image>"
#: cross_fading.xhp
msgctxt ""
"cross_fading.xhp\n"
"par_id3154766\n"
-"25\n"
"help.text"
msgid "You can edit the individual objects of a group by selecting the group and pressing F3. Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3 to exit the group editing mode."
msgstr ""
@@ -830,7 +764,6 @@ msgstr ""
msgctxt ""
"cross_fading.xhp\n"
"par_id3155760\n"
-"42\n"
"help.text"
msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Editing - Cross-fading\">Editing - Cross-fading</link>"
msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Editing - Cross-fading\">སྐེདཔ་བཏོག་ཡལ་བའི་ཞུན་དག་འབད་དོ་</link>"
@@ -855,7 +788,6 @@ msgstr "<bookmark_value>སྒོར་ཐིག་/སྒོར་དབྱི
msgctxt ""
"draw_sector.xhp\n"
"hd_id3146974\n"
-"30\n"
"help.text"
msgid "<variable id=\"draw_sector\"><link href=\"text/sdraw/guide/draw_sector.xhp\" name=\"Drawing Sectors and Segments\">Drawing Sectors and Segments</link></variable>"
msgstr "<variable id=\"draw_sector\"><link href=\"text/sdraw/guide/draw_sector.xhp\" name=\"Drawing Sectors and Segments\">དུམ་ཚན་དང་ཆ་བགོས་ཚུ་བྲིས་དོ་</link></variable>"
@@ -864,7 +796,6 @@ msgstr "<variable id=\"draw_sector\"><link href=\"text/sdraw/guide/draw_sector.x
msgctxt ""
"draw_sector.xhp\n"
"par_id3147396\n"
-"31\n"
"help.text"
msgid "The <emph>Ellipse</emph> toolbar contains tools for drawing ellipses and circles. You can also draw segments and sectors of circles and ellipses."
msgstr "སྒོང་དབྱིབས་དང་སྒོར་ཐིག་ཚུ་འབྲི་ནིའང་དོན་ལུ་ <emph>Ellipse</emph> ལག་ཆས་ཕྲ་རིང་ནང་ལུ་ ལག་ཆས་ཚུ་ཡོདཔ་ཨིན།དེ་མ་ཚད་ཁྱོད་ཀྱིས་ ཆ་བགོས་དང་དེ་ལས་ སྒོར་ཐིག་གི་དུམ་ཚན་དང་སྒོང་དབྱིབས་ཚུ་འབྲི་ཚུགས།"
@@ -873,7 +804,6 @@ msgstr "སྒོང་དབྱིབས་དང་སྒོར་ཐིག་
msgctxt ""
"draw_sector.xhp\n"
"hd_id3151075\n"
-"32\n"
"help.text"
msgid "To draw a sector of a circle or an ellipse:"
msgstr "སྒོར་ཐིག་གི་དུམ་ཚན་ ཡང་ན་ སྒོང་དབྱིབས་ཚུ་འབྲི་ནི་ལུ་:"
@@ -882,7 +812,6 @@ msgstr "སྒོར་ཐིག་གི་དུམ་ཚན་ ཡང་ན
msgctxt ""
"draw_sector.xhp\n"
"par_id3155335\n"
-"33\n"
"help.text"
msgid "Open the <emph>Ellipses</emph> toolbar and click one of the <emph>Circle Pie</emph> or <emph>Ellipse Pie</emph> icons <image id=\"img_id3155768\" src=\"cmd/sc_circlepie_unfilled.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3155768\">Icon</alt></image>. The mouse pointer changes to a cross hair with a small icon of a sector."
msgstr "<emph>Ellipses</emph> ལག་ཆས་ཕྲ་རིང་ ཁ་ཕྱེ་ཞིནམ་ལས་ <emph>སྒོར་ཐིག་པ་ཡི་</emph> or <emph>སྒོང་དབྱིབས་པ་ཡི་</emph>ངོས་པར་ <image id=\"img_id3155768\" src=\"cmd/sc_circlepie_unfilled.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3155768\">ངོས་པར་</alt></image> ཚུ་ནང་ལས་ གཅིག་ལུ་ཨེབ་གཏང་འབད། མའུསི་དཔག་བྱེད་འདི་ དུམ་ཚན་གྱི་ངོས་པར་ཆུང་ཀུ་ཅིག་དང་བཅས་ ཀོརོསི་ཧེའར་ལུ་བསྒྱུར་བཅོས་འབདཝ་ཨིན།"
@@ -891,7 +820,6 @@ msgstr "<emph>Ellipses</emph> ལག་ཆས་ཕྲ་རིང་ ཁ་ཕ
msgctxt ""
"draw_sector.xhp\n"
"par_id3150199\n"
-"34\n"
"help.text"
msgid "Position the pointer at the edge of the circle you want to draw and drag to create the circle."
msgstr "ཁྱོད་ཀྱིས་འབྲི་ནི་ཨིན་པའི་དཔག་བྱེད་འདི་ སྒོར་ཐིག་གི་མཐའ་མ་ལུ་གནས་ས་བཟོ་ དེ་ལས་ སྒོར་ཐིག་གསར་བསྐྲུན་གྱི་དོན་ལུ་འདྲུད།"
@@ -900,7 +828,6 @@ msgstr "ཁྱོད་ཀྱིས་འབྲི་ནི་ཨིན་པའ
msgctxt ""
"draw_sector.xhp\n"
"par_id3148868\n"
-"35\n"
"help.text"
msgid "To create a circle by dragging from the center, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> while dragging."
msgstr "དབུས་ན་ལས་འདྲུད་པའི་ཐོག་ལས་ སྒོར་ཐིག་གསར་བསྐྲུན་འབད་ནིའི་དོན་ལུ་འདྲུད་པའི་སྐབས་ <switchinline select=\"sys\"><caseinline select=\"MAC\">གདམ་ཁ་ </caseinline><defaultinline>གདམ་ལྡེ་</defaultinline></switchinline> ལུ་ཨེབ་གཏང་འབད།"
@@ -909,7 +836,6 @@ msgstr "དབུས་ན་ལས་འདྲུད་པའི་ཐོག་
msgctxt ""
"draw_sector.xhp\n"
"par_id3145361\n"
-"36\n"
"help.text"
msgid "Release the mouse button when the circle has reached the size you want. A line corresponding to the circle radius appears in the circle."
msgstr "སྒོར་ཐིག་འདི་ ཁྱོད་ཀྱིས་དགོ་པའི་ཚད་ཁར་ལྷོདཔ་ད་ མའུསི་ཨེབ་རྟ་འདི་ལག་པ་ལས་གཏང་། སྒོར་ཐིག་གི་མཐའ་འཁོར་ལུ་ཆ་མཉམ་པའི་གྲལ་ཐིག་འདི་ སྒོར་ཐིག་ནང་འབྱུངམ་ཨིན།"
@@ -918,7 +844,6 @@ msgstr "སྒོར་ཐིག་འདི་ ཁྱོད་ཀྱིས་
msgctxt ""
"draw_sector.xhp\n"
"par_id3149872\n"
-"37\n"
"help.text"
msgid "Position the pointer where you want to place the first boundary of the sector and click."
msgstr "ཁྱོད་ཀྱིས་ དུམ་ཚན་གྱི་མཐའ་མཚམས་དང་པམ་འདི་ ག་སྟེ་བཞག་ནི་ཨིན་ན་ དེ་ཁར་དཔག་བྱེད་ཀྱི་གནས་ས་བཟོ་ དེ་ལས་ ཨེབ་གཏང་འབད།"
@@ -927,7 +852,6 @@ msgstr "ཁྱོད་ཀྱིས་ དུམ་ཚན་གྱི་མཐ
msgctxt ""
"draw_sector.xhp\n"
"par_id3157871\n"
-"51\n"
"help.text"
msgid "As the radius line that follows the pointer is constrained to the circle boundaries, you can click anywhere in the document."
msgstr "དཔག་བྱེད་ལུ་རྗེས་སུ་འབྲང་མི་མཐའ་འཁོར་གྲལ་ཐིག་འདི་ སྒོར་ཐིག་མཐའ་མཚམས་ལུ་དམས་ཡོདཔ་ལས་ ཁྱོད་ཀྱིས་ཡིག་ཆ་ནང་ ག་སྟེ་ལུ་ཡང་ཨེབ་གཏང་འབད་ཚུགས།"
@@ -936,7 +860,6 @@ msgstr "དཔག་བྱེད་ལུ་རྗེས་སུ་འབྲང
msgctxt ""
"draw_sector.xhp\n"
"par_id3146874\n"
-"38\n"
"help.text"
msgid "Position the pointer where you want to place the second boundary of the sector and click. The completed sector is displayed."
msgstr "ཁྱོད་ཀྱིས་དུམ་ཚན་གྱི་མཐའ་མཚམས་གཉིས་པམ་འདི་ག་སྟེ་བཞག་ནི་ཨིན་ན་ དེ་ཁར་དཔག་བྱེད་ཀྱི་གནས་ས་བཟོ་ དེ་ལས་ ཨེབ་གཏང་འབད། མཇུག་བསྡུ་ཡོད་པའི་དུམ་ཚན་འདི་ བཀྲམ་སྟོན་འབད་ཡི།"
@@ -945,7 +868,6 @@ msgstr "ཁྱོད་ཀྱིས་དུམ་ཚན་གྱི་མཐའ
msgctxt ""
"draw_sector.xhp\n"
"par_id3148581\n"
-"41\n"
"help.text"
msgid "To draw a segment of a circle or ellipse, follow the steps for creating a sector based on a circle."
msgstr "སྒོར་ཐིག་གི་ཆ་བགོས་ ཡང་ན་ སྒོང་དབྱིབས་འབྲི་དགོ་པ་ཅིན་ སྒོར་ཐིག་ལུ་གཞི་བཞག་པའི་དུམ་ཚན་ཅིག་ གསར་བསྐྲུན་འབད་ནིའི་དོན་ལུ་ རིམ་པ་དང་འཁྲིལ་ཏེ་འབད།"
@@ -954,7 +876,6 @@ msgstr "སྒོར་ཐིག་གི་ཆ་བགོས་ ཡང་ན
msgctxt ""
"draw_sector.xhp\n"
"par_id3153084\n"
-"42\n"
"help.text"
msgid "To draw an arc based on an ellipse, choose one of the arc icons and follow the same steps for creating a sector based on a circle."
msgstr "སྒོང་དབྱིབས་ལུ་གཞི་བཞག་པའི་གཞུ་དབྱིབས་ཅིག་འབྲི་དགོ་པ་ཅིན་ གཞུ་དབྱིབས་ངོས་པར་ཚུ་ནང་ལས་གཅིག་ གདམ་ཁ་རྐྱབས་ཞིནམ་ལས་ སྒོར་ཐིག་ལུ་གཞི་བཞག་པའི་དུམ་ཚན་གསར་བསྐྲུན་འབད་ནིའི་དོན་ལུ་ རིམ་པ་དང་འཁྲིལ་དགོ་དོ་བཟུམ་སྦེ་འབད།"
@@ -979,7 +900,6 @@ msgstr "<bookmark_value>ཌཱ་གི་དངོས་པོ་ཚུ་ ག
msgctxt ""
"duplicate_object.xhp\n"
"hd_id3145750\n"
-"3\n"
"help.text"
msgid "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicate_object.xhp\" name=\"Duplicating Objects\">Duplicating Objects</link></variable>"
msgstr "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicate_object.xhp\" name=\"Duplicating Objects\">དངོས་པོ་ཚུ་ ངོ་བཤུས་བཟོ་དོ་</link></variable>"
@@ -988,7 +908,6 @@ msgstr "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicat
msgctxt ""
"duplicate_object.xhp\n"
"par_id3149400\n"
-"4\n"
"help.text"
msgid "You can create duplicate or multiple copies of an object. The copies can be identical or can differ in size, color, orientation and location."
msgstr "ཁྱོད་ཀྱིས་རྫུན་མ་ ཡང་ཅིན་ དངོས་པོའི་འདྲ་བཤུས་སྣ་མང་གསར་བསྐྲུན་འབད་ཚུགས། འདྲ་བཤུས་ཚུ་དབྱེར་མེད་ ཡང་ན་ ཚད་དང་ཚོས་གཞི་དེ་ལས་ ཕྱོགས་དང་གནས་ཁོངས་ཚུ་སོ་སོ་ཨིནམ་སྲིད།"
@@ -997,7 +916,6 @@ msgstr "ཁྱོད་ཀྱིས་རྫུན་མ་ ཡང་ཅིན
msgctxt ""
"duplicate_object.xhp\n"
"par_id3153415\n"
-"5\n"
"help.text"
msgid "The following example creates a stack of coins by making multiple copies of a single ellipse."
msgstr "སྒོང་དབྱིབས་རྐྱང་པའི་འདྲ་བཤུས་སྣ་མང་བཟོ་བའི་ཐོག་ལས་ འོག་གི་དཔེ་འདི་གིས་ ཏིག་རྐྱང་གི་བརྩེགས་ཕུང་ཚུ་ གསར་བསྐྲུན་འབདཝ་ཨིན།"
@@ -1006,7 +924,6 @@ msgstr "སྒོང་དབྱིབས་རྐྱང་པའི་འདྲ
msgctxt ""
"duplicate_object.xhp\n"
"par_id3149129\n"
-"6\n"
"help.text"
msgid "Use the <emph>Ellipse</emph> tool to draw a solid yellow ellipse."
msgstr "སྒོང་དབྱིབས་སེརཔོ་ཉག་རྐྱང་འབྲི་ནིའི་དོན་ལུ་ <emph>Ellipse</emph>ལག་ཆས་ ལག་ལེན་འཐབ།"
@@ -1015,7 +932,6 @@ msgstr "སྒོང་དབྱིབས་སེརཔོ་ཉག་རྐྱ
msgctxt ""
"duplicate_object.xhp\n"
"par_id3149209\n"
-"8\n"
"help.text"
msgid "Select the ellipse and choose <emph>Edit - Duplicate</emph>."
msgstr "སྒོང་དབྱིབས་སེལ་འཐུ་འབད་ཞིནམ་ལས་ <emph>Edit - Duplicate</emph>གདམ་ཁ་རྐྱབས།"
@@ -1024,7 +940,6 @@ msgstr "སྒོང་དབྱིབས་སེལ་འཐུ་འབད་
msgctxt ""
"duplicate_object.xhp\n"
"par_id3145585\n"
-"9\n"
"help.text"
msgid "Enter 12 as <emph>Number of copies.</emph>"
msgstr "༡༢ འདི་ <emph>འདྲ་བཤུས་ཨང་གྲངས་སྦེ་ བཙུགས། </emph>"
@@ -1033,7 +948,6 @@ msgstr "༡༢ འདི་ <emph>འདྲ་བཤུས་ཨང་གྲང
msgctxt ""
"duplicate_object.xhp\n"
"par_id3151192\n"
-"11\n"
"help.text"
msgid "Enter a negative value for the <emph>Width</emph> and <emph>Height</emph> so that the coins decrease in size as you go up the stack."
msgstr "<emph>Width</emph> དང་ <emph>མཐོ་ཚད་</emph>གི་དོན་ལུ་ མེད་ཆ་བེ་ལུ་བཙུགས་ དེ་སྦེ་འབད་བ་ཅིན་ ཁྱོད་ཀྱིས་བརྩེགས་ཕུང་གི་ཡར་འཛེགསཔ་ད་ ཏིག་རྐྱང་མར་ཕབ་འབད་འོང་།"
@@ -1042,7 +956,6 @@ msgstr "<emph>Width</emph> དང་ <emph>མཐོ་ཚད་</emph>གི་
msgctxt ""
"duplicate_object.xhp\n"
"par_id3151387\n"
-"39\n"
"help.text"
msgid "To define a color transition for the coins, select different colors in the <emph>Start</emph> and <emph>End</emph> boxes. The <emph>Start</emph> color is applied to the object that you are duplicating."
msgstr "ཏིག་རྐྱང་གི་དོན་ལུ་ཚོས་གཞིའི་འགྱུར་བ་ ངེས་འཛིན་འབད་ནིའི་དོན་ལས་ <emph>འགོ་བཙུགས་</emph> དང་ <emph>མཇུག་</emph>སྒྲོམ་ནང་ལུ་ ཚོས་གཞི་སོ་སོ་ཚུ་སེལ་འཐུ་འབད། <emph>འོག་བཙུགས་</emph>ཚོས་གཞི་འདི་ ཁྱོད་ཀྱིས་ངོ་བཤུས་བཟོ་དོ་ཡོད་པའི་དངོས་པོ་ལུ་ འཇུག་སྤྱོད་འབད་ཡི།"
@@ -1051,7 +964,6 @@ msgstr "ཏིག་རྐྱང་གི་དོན་ལུ་ཚོས་ག
msgctxt ""
"duplicate_object.xhp\n"
"par_id3149947\n"
-"12\n"
"help.text"
msgid "Click <emph>OK</emph> to create the duplicates."
msgstr "ངོ་བཤུས་བཟོ་ནིའི་དོན་ལུ་ <emph>བཏུབ་</emph>ལུ་ཨེབ་གཏང་འབད།"
@@ -1060,7 +972,6 @@ msgstr "ངོ་བཤུས་བཟོ་ནིའི་དོན་ལུ་
msgctxt ""
"duplicate_object.xhp\n"
"par_id3153935\n"
-"50\n"
"help.text"
msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Edit - Duplicate\">Edit - Duplicate</link>"
msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Edit - Duplicate\">ངོ་བཤུས་ ཞུན་དག་འབད་</link>"
@@ -1085,7 +996,6 @@ msgstr "<bookmark_value>ཚོས་གཞི་འདེམས་བྱེད
msgctxt ""
"eyedropper.xhp\n"
"hd_id3147436\n"
-"38\n"
"help.text"
msgid "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp\" name=\"Replacing Colors\">Replacing Colors</link></variable>"
msgstr "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp\" name=\"Replacing Colors\">ཚོས་གཞི་ཚུ་ཚབ་བཙུགས་དོ་</link></variable>"
@@ -1094,7 +1004,6 @@ msgstr "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
"par_id3156286\n"
-"24\n"
"help.text"
msgid "You can replace colors in bitmaps with the <emph>Color Replacer</emph> tool."
msgstr "ཁྱོད་ཀྱིས་ <emph>ཚོས་གཞི་འདེམས་བྱེད་</emph>ལག་ཆས་ཀྱི་ཐོག་ལས་ བིཊི་མེཔསི་ནང་ ཚོས་གཞི་ཚུ་ཚབ་མ་བཙུགས་ཚུགས།"
@@ -1103,7 +1012,6 @@ msgstr "ཁྱོད་ཀྱིས་ <emph>ཚོས་གཞི་འདེ
msgctxt ""
"eyedropper.xhp\n"
"par_id3154704\n"
-"25\n"
"help.text"
msgid "Up to four colors can be replaced at once."
msgstr "ཚོས་གཞི་བཞི་ཚུན་ཚོད་ ཚར་གཅིག་ནང་ཚབ་མ་བཙུགས་ཚུགས།"
@@ -1112,7 +1020,6 @@ msgstr "ཚོས་གཞི་བཞི་ཚུན་ཚོད་ ཚར་
msgctxt ""
"eyedropper.xhp\n"
"par_id3147344\n"
-"26\n"
"help.text"
msgid "You can also use the <emph>Transparency</emph> option to replace the transparent areas of an image with a color."
msgstr "ཁྱོད་ཀྱིས་ གཟུགས་བརྙན་གྱི་དྭངས་གསལ་མངའ་ཁོངས་ཚུ་ཚོས་གཞི་དག་བཅས་ ཚབ་མ་བཙུགས་ནིའི་དོན་ལས་ <emph>Transparency</emph>གདམ་ཁ་འདི་ཡང་ ལག་ལེན་འཐབ་ཚུགས།"
@@ -1121,7 +1028,6 @@ msgstr "ཁྱོད་ཀྱིས་ གཟུགས་བརྙན་གྱ
msgctxt ""
"eyedropper.xhp\n"
"par_id3148488\n"
-"27\n"
"help.text"
msgid "Similarly, you can use the <emph>Color Replacer</emph> to make a color on your image transparent."
msgstr "དེ་བཟུམ་སྦེ་ ཁྱོད་རའི་གཟུགས་བརྙན་དྭངས་གསལ་གུ་ཚོས་གཞི་བཟོ་ནིའི་དོན་ལུ་ ཁྱོད་ཀྱིས་ <emph>ཚོས་གཞི་འདེམས་བྱེད་</emph>འདི་ ལག་ལེན་འཐབ་ཚུགས།"
@@ -1130,7 +1036,6 @@ msgstr "དེ་བཟུམ་སྦེ་ ཁྱོད་རའི་གཟ
msgctxt ""
"eyedropper.xhp\n"
"hd_id3150205\n"
-"28\n"
"help.text"
msgid "To replace colors with the Color Replacer tool"
msgstr "ཚོས་གཞི་འདེམས་བྱེད་ཀྱི་ལག་ཆས་ཐོག་ལས་ ཚོས་གཞི་ཚབ་མ་བཙུགས་ནི་ལུ།"
@@ -1139,7 +1044,6 @@ msgstr "ཚོས་གཞི་འདེམས་བྱེད་ཀྱི་ལ
msgctxt ""
"eyedropper.xhp\n"
"par_id3154656\n"
-"29\n"
"help.text"
msgid "Ensure that the image you are using is a bitmap (for example, BMP, GIF, JPG, or PNG) or a metafile (for example, WMF)."
msgstr "ཁྱོད་ཀྱིས་ལག་ལེན་འཐབ་མི་འདི་ བིཊི་མེཔ་(དཔེར་ན་ བི་ཨེམ་པི་ ཇི་ཨའི་ཇི་ ཇེ་པི་ཇི་ ཡང་ན་ པི་ཨེན་ཇི་) ཡངན་ མེ་ཊ་ཕ་ཡིལ་(དཔེར་ན་ ཌབ་ལུ་ཨེམ་ཨེཕི་)ཨིནམ་སྦེ་ ངེས་ལྡན་བཟོ།"
@@ -1148,7 +1052,6 @@ msgstr "ཁྱོད་ཀྱིས་ལག་ལེན་འཐབ་མི་
msgctxt ""
"eyedropper.xhp\n"
"par_id3150202\n"
-"30\n"
"help.text"
msgid "Choose <emph>Tools - Color Replacer</emph>."
msgstr "ལག་ཆས་ཚུ་ <emph>གདམ་ཁ་རྐྱབས་ - རྩིས་རྐྱབས་</emph>"
@@ -1157,7 +1060,6 @@ msgstr "ལག་ཆས་ཚུ་ <emph>གདམ་ཁ་རྐྱབས་ -
msgctxt ""
"eyedropper.xhp\n"
"par_id3155531\n"
-"31\n"
"help.text"
msgid "Click the Color Replacer icon and position the mouse pointer over the color you want to replace in the image. The color appears in the box next to the icon."
msgstr "ཚོས་གཞི་འདེམས་བྱེད་ལུ་ ཨེབ་གཏང་འབད་ དེ་ལས་ ཁྱོད་ཀྱིས་གཟུགས་བརྙན་ནང་ཚབ་མ་བཙུགས་ནི་ཨིན་པའི་ཚོས་གཞིའི་ལྟག་ལས་ མའུསི་དཔག་བྱེད་ཀྱི་གནས་ས་བཟོ། ཚོས་གཞི་འདེམས་བྱེད་ངོས་པར་གྱི་སྦོ་ལོགས་ཁའི་སྒྲོམ་ནང་ ཚོས་གཞི་འབྱུངམ་ཨིན།"
@@ -1166,7 +1068,6 @@ msgstr "ཚོས་གཞི་འདེམས་བྱེད་ལུ་ ཨ
msgctxt ""
"eyedropper.xhp\n"
"par_id3152985\n"
-"32\n"
"help.text"
msgid "Click the color in the image. The color appears in the first <emph>Source color</emph> box and the check box next to the color is selected."
msgstr "གཟུགས་བརྙན་ནང་ཚོས་གཞི་ལུ་ ཨེབ་གཏང་འབད། ཚོས་གཞི་འདི་ <emph>འབྱུང་ཁུངས་ཚོས་གཞི་</emph>དང་པའི་སྒྲོམ་ནང་འབྱུངམ་ཨིནམ་དང་ཚོས་གཞི་གི་སྦོ་ལོགས་ཁར་ཡོད་པའི་ཞིབ་དཔྱད་སྒྲོམ་འདི་ སེལ་འཐུ་འབད་ཡི།"
@@ -1175,7 +1076,6 @@ msgstr "གཟུགས་བརྙན་ནང་ཚོས་གཞི་ལུ
msgctxt ""
"eyedropper.xhp\n"
"par_id3148866\n"
-"33\n"
"help.text"
msgid "In the <emph>Replace with</emph> box, select the new color."
msgstr "<emph>དང་བཅས་ཚབ་མ་བཙུགས་</emph> སྒྲོམ་ནང་ལས་ ཚོས་གཞི་གསརཔ་ སེལ་འཐུ་འབད།"
@@ -1184,7 +1084,6 @@ msgstr "<emph>དང་བཅས་ཚབ་མ་བཙུགས་</emph> ས
msgctxt ""
"eyedropper.xhp\n"
"par_id3145362\n"
-"41\n"
"help.text"
msgid "This replaces all occurrences of the <emph>Source color</emph> in the image."
msgstr "འདི་གིས་ <emph>འབྱུང་ཁུངས་ཚོས་གཞི་</emph> གི་འབྱུང་བ་ཚུ་ཆ་མཉམ་ གཟུགས་བརྙན་ནང་ ཚབ་བཙུགསཔ་ཨིན།"
@@ -1193,7 +1092,6 @@ msgstr "འདི་གིས་ <emph>འབྱུང་ཁུངས་ཚོ
msgctxt ""
"eyedropper.xhp\n"
"par_id3151191\n"
-"34\n"
"help.text"
msgid "If you want to replace another color while the dialog is open, select the check box in front of <emph>Source color</emph> in the next row and repeat steps 3 to 5."
msgstr "ཁྱོད་ཀྱིས་ ཌའི་ལོག་འདི་ཁ་ཕྱེ་བའི་སྐབས་ལུ་ ཚོས་གཞི་སོ་སོ་ཅིག་ཚབ་བཙུགས་དགོ་མནོ་བ་ཅིན་ གྲལ་ཐིག་གཞན་མི་ནང་ <emph>འབྱུང་ཁུངས་ཚོས་གཞི་</emph>གི་གདོང་ཁའི་ཞིབ་དཔྱད་སྒྲོམ་འདི་ སེལ་འཐུ་འབད་དེ་ལས་ རིམ་པ་གསུམ་ལས་ལྔའི་བར་ ཡང་བསྐྱར་འབད།"
@@ -1202,7 +1100,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཌའི་ལོག་འདི་ཁ
msgctxt ""
"eyedropper.xhp\n"
"par_id3149876\n"
-"36\n"
"help.text"
msgid "Click <emph>Replace</emph>."
msgstr "<emph>ཚབ་བཙུགས་</emph> ལུ་ཨེབ་གཏང་འབད།"
@@ -1211,7 +1108,6 @@ msgstr "<emph>ཚབ་བཙུགས་</emph> ལུ་ཨེབ་གཏང
msgctxt ""
"eyedropper.xhp\n"
"par_id3157871\n"
-"37\n"
"help.text"
msgid "If you want to expand or contract the color selection area, increase or decrease the tolerance of the <emph>Color Replacer</emph> tool and repeat your selection."
msgstr "ཁྱོད་ལུ་ ཚོས་གཞི་སེལ་འཐུའི་མངའ་ཁོངས་འདི་ རྒྱ་འཕར་དང་བསྐུམ་ནིའི་རེ་འདོད་ཡོད་པ་ཅིན་ <emph>ཚོས་གཞི་འདེམས་བྱེད་</emph> ལག་ཆས་ཀྱི་བཟོད་སྲན་འདི་ ཡར་འཕར་དང་མར་ཕབ་འབད་ཞིནམ་ལས་ ཁྱོད་རའི་སེལ་འཐུ་ ཡང་བསྐྱར་འབད།"
@@ -1220,7 +1116,6 @@ msgstr "ཁྱོད་ལུ་ ཚོས་གཞི་སེལ་འཐུ
msgctxt ""
"eyedropper.xhp\n"
"par_id3146878\n"
-"39\n"
"help.text"
msgid "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Color Replacer</link>"
msgstr "<link href=\"text/shared/01/03170000.xhp\" name=\"Color bar\">ཚོས་གཞི་ཕྲ་རིང་</link>"
@@ -1245,7 +1140,6 @@ msgstr "<bookmark_value>སྟེགས་རིས་ཚུ་ འཇུག་
msgctxt ""
"gradient.xhp\n"
"hd_id3150792\n"
-"3\n"
"help.text"
msgid "<variable id=\"gradient\"><link href=\"text/sdraw/guide/gradient.xhp\" name=\"Creating Gradient Fills\">Creating Gradient Fills</link> </variable>"
msgstr "<variable id=\"gradient\"><link href=\"text/sdraw/guide/gradient.xhp\" name=\"Creating Gradient Fills\">སྟེགས་རིས་ཀྱི་བཀང་བ་ཚུ་ གསར་བསྐྲུན་འབད་དོ་་</link></variable>"
@@ -1254,7 +1148,6 @@ msgstr "<variable id=\"gradient\"><link href=\"text/sdraw/guide/gradient.xhp\" n
msgctxt ""
"gradient.xhp\n"
"par_id3154012\n"
-"4\n"
"help.text"
msgid "A gradient fill is an incremental blend of two different colors, or shades of the same color, that you can apply to a drawing object."
msgstr "སྟེགས་རིས་ཀྱི་བཀང་བ་འདི་ ཚོས་གཞི་སོ་སོ་གཉིས་ཀྱི་ཡར་འཕར་མཉམ་སྡེབ་ཨིན་ ཡང་ན་ ཁྱོད་ཀྱིས་ པར་རིས་དངོས་པོ་ཅིག་ལུ་འཇུག་སྤྱོད་འབད་བཏུབ་པའི་ཚོས་གཞི་ཅོག་འཐད་པའི་ནག་གྲིབ་ཚུ་ཨིན།"
@@ -1263,7 +1156,6 @@ msgstr "སྟེགས་རིས་ཀྱི་བཀང་བ་འདི་
msgctxt ""
"gradient.xhp\n"
"hd_id3147436\n"
-"61\n"
"help.text"
msgid "To apply a gradient:"
msgstr "སྟེགས་རིས་འཇུག་སྤྱོད་འབད་ནི་ལུ་:"
@@ -1272,7 +1164,6 @@ msgstr "སྟེགས་རིས་འཇུག་སྤྱོད་འབད
msgctxt ""
"gradient.xhp\n"
"par_id3146974\n"
-"5\n"
"help.text"
msgid "Select a drawing object."
msgstr "དཔར་་རིས་དངོས་པོ་ཅིག་ སེལ་འཐུ་འམབད།"
@@ -1281,7 +1172,6 @@ msgstr "དཔར་་རིས་དངོས་པོ་ཅིག་ སེ
msgctxt ""
"gradient.xhp\n"
"par_id3154491\n"
-"6\n"
"help.text"
msgid "Choose <emph>Format - Area</emph> and select <emph>Gradient</emph> as the <emph>Fill</emph> type."
msgstr "<emph>རྩ་སྒྲིག་-མངའ་ཁོངས་</emph>གདམ་ཞིནམ་ལས་ <emph>སྟེགས་རིས་</emph>འདི་ <emph>བཀང་བ་</emph>དབྱེ་བ་སྦེ་ སེལ་འཐུ་འབད།"
@@ -1290,7 +1180,6 @@ msgstr "<emph>རྩ་སྒྲིག་-མངའ་ཁོངས་</emph>ག
msgctxt ""
"gradient.xhp\n"
"par_id3153415\n"
-"7\n"
"help.text"
msgid "Select a gradient style from the list and click <emph>OK</emph>."
msgstr "ཐོ་ཡིག་ནང་ལས་ སྟེགས་རིས་ཀྱི་བཟོ་རྣམ་སེལ་འཐུ་འབད་ཞིནམ་ལས་ <emph>བཏུབ་</emph>ལུ་ ཨེབ་གཏང་འབད།"
@@ -1299,7 +1188,6 @@ msgstr "ཐོ་ཡིག་ནང་ལས་ སྟེགས་རིས་
msgctxt ""
"gradient.xhp\n"
"hd_id3154702\n"
-"8\n"
"help.text"
msgid "Creating Custom Gradients"
msgstr "སྲོལ་སྒྲིག་སྟེགས་རིས་ཚུ་ གསར་བསྐྲུན་འབད་དོ།"
@@ -1308,7 +1196,6 @@ msgstr "སྲོལ་སྒྲིག་སྟེགས་རིས་ཚུ་
msgctxt ""
"gradient.xhp\n"
"par_id3145791\n"
-"9\n"
"help.text"
msgid "You can define your own gradients and modify existing gradients, as well as save and load a list of gradient files."
msgstr "ཁྱོད་ཀྱིས་ཁྱོད་རའི་སྟེགས་རིས་ཚུ་ངེས་འཛིན་འབད་ཚུགས་པ་མ་ཚད་ཡོད་བཞིན་པའི་སྟེགས་རིས་ཚུ་ལེགས་བཅོས་འབད་ཚུགས་ དེ་མ་ཚད་སྲུང་ནི་དང་སྟེགས་རིས་ཡིག་སྣོད་ཚུའི་ཐོ་ཡིག་ཅིག་ མངོན་གསལ་འབད་ཚུགས།"
@@ -1317,7 +1204,6 @@ msgstr "ཁྱོད་ཀྱིས་ཁྱོད་རའི་སྟེགས
msgctxt ""
"gradient.xhp\n"
"hd_id3145384\n"
-"62\n"
"help.text"
msgid "To create a custom gradient:"
msgstr "སྲོལ་སྒྲིག་སྟེགས་རིས་ གསར་བསྐྲུན་འབད་ནི་ལུ་:"
@@ -1326,7 +1212,6 @@ msgstr "སྲོལ་སྒྲིག་སྟེགས་རིས་ གས
msgctxt ""
"gradient.xhp\n"
"par_id3151242\n"
-"11\n"
"help.text"
msgid "Choose <emph>Format - Area</emph> and click the <emph>Gradients</emph> tab."
msgstr "<emph>རྩ་སྒྲིག་-མངའ་ཁོངས་</emph> གདམ་ཞིནམ་ལས་ <emph>སྟེགས་རིས་ཚུ་</emph>མཆོང་ལྡེ་ལུ་ ཨེབ་གཏང་འབད།"
@@ -1335,7 +1220,6 @@ msgstr "<emph>རྩ་སྒྲིག་-མངའ་ཁོངས་</emph> ག
msgctxt ""
"gradient.xhp\n"
"par_id3150046\n"
-"12\n"
"help.text"
msgid "Select a gradient from the list to use as the basis for your new gradient and click <emph>Add</emph>."
msgstr "ཁྱོད་ཀྱི་སྟེགས་རིས་གསརཔ་གི་དོན་ལས་ གཞི་རྩ་སྦེ་ལག་ལེན་འཐབ་ནིའི་དོན་ལུ་ ཐོ་ཡིག་ནང་ལས་ སྟེགས་རིས་ཅིག་གསར་བསྐྲུན་འབད་ཞིནམ་ལས་ <emph>ཁ་སྐོང་</emph>ལུ་ཨེབ་གཏང་འབད།"
@@ -1344,7 +1228,6 @@ msgstr "ཁྱོད་ཀྱི་སྟེགས་རིས་གསརཔ་
msgctxt ""
"gradient.xhp\n"
"par_id3145116\n"
-"13\n"
"help.text"
msgid "Type a name for the gradient in the text box and click <emph>OK</emph>."
msgstr "སྟེགས་རིས་ཀྱི་དོན་ལུ་ ཚིག་ཡིག་སྒྲོམ་ནང་ལུ་ མིང་ཡིག་དཔར་རྐྱབས་དེ་ལས་ <emph>བཏུབ་</emph>ལུ་ཨེབ་གཏང་འབད།"
@@ -1361,7 +1244,6 @@ msgstr "མིང་འདི་ སྟེགས་རིས་ཐོ་ཡི
msgctxt ""
"gradient.xhp\n"
"par_id3150391\n"
-"15\n"
"help.text"
msgid "Set the gradient properties and click <emph>Modify</emph> to save the gradient."
msgstr "སྟེགས་རིས་ཀྱི་རྒྱུ་དངོས་ཚུ་གཞི་སྒྲིག་འབད་ཞིནམ་ལས་ སྟེགས་རིས་སྲུང་ནིའི་དོན་ལུ་ <emph>ལེགས་བཅོས་</emph> ལུ་ཨེབ་གཏང་འབད།"
@@ -1370,7 +1252,6 @@ msgstr "སྟེགས་རིས་ཀྱི་རྒྱུ་དངོས་
msgctxt ""
"gradient.xhp\n"
"par_id3156396\n"
-"16\n"
"help.text"
msgid "Click <emph>OK.</emph>"
msgstr "<emph>བཏུབ་ལུ་ཨེབ་གཏང་འབད། </emph>"
@@ -1379,7 +1260,6 @@ msgstr "<emph>བཏུབ་ལུ་ཨེབ་གཏང་འབད། </emp
msgctxt ""
"gradient.xhp\n"
"hd_id3149947\n"
-"40\n"
"help.text"
msgid "Using Gradients and Transparency"
msgstr "སྟེགས་རིས་ཚུ་དང་དྭངས་གསལ་ ལག་ལེན་འཐབ་དོ།"
@@ -1388,7 +1268,6 @@ msgstr "སྟེགས་རིས་ཚུ་དང་དྭངས་གསལ
msgctxt ""
"gradient.xhp\n"
"par_id3157905\n"
-"41\n"
"help.text"
msgid "You can adjust the properties of a gradient as well as the transparency of a drawing object with your mouse."
msgstr "ཁྱོད་ཀྱིས་ སྟེགས་རིས་ཀྱི་རྒྱུ་དངོས་ཚུ་གིས་མ་ཚད་པར་ ཁྱོད་རའི་མའུསི་གི་ཐོག་ལས་ པར་རིས་དངོས་པོ་ཅིག་ བདེ་སྒྲིག་འབད་ཚུགས།"
@@ -1397,7 +1276,6 @@ msgstr "ཁྱོད་ཀྱིས་ སྟེགས་རིས་ཀྱི
msgctxt ""
"gradient.xhp\n"
"hd_id3150653\n"
-"63\n"
"help.text"
msgid "To adjust the gradient of a drawing object:"
msgstr "པར་རིས་དངོས་པོའི་སྟེགས་རིས་ བདེ་སྒྲིག་འབད་ནི་ལུ་:"
@@ -1406,7 +1284,6 @@ msgstr "པར་རིས་དངོས་པོའི་སྟེགས་ར
msgctxt ""
"gradient.xhp\n"
"par_id3154844\n"
-"42\n"
"help.text"
msgid "Select a drawing object with the gradient that you want to modify."
msgstr "ཁྱོད་ཀྱིས་ལེགས་བཅོས་འབད་ནི་ཨིན་པའི་སྟེགས་རིས་དང་བཅས་ པར་རིས་དངོས་པོ་ཅིག་ སེལ་འཐུ་འབད།"
@@ -1415,7 +1292,6 @@ msgstr "ཁྱོད་ཀྱིས་ལེགས་བཅོས་འབད་
msgctxt ""
"gradient.xhp\n"
"par_id3145592\n"
-"43\n"
"help.text"
msgid "Choose <emph>Format - Area</emph> and click the <emph>Gradients</emph> tab."
msgstr "<emph>རྩ་སྒྲིག་-མངའ་ཁོངས་</emph> གདམ་ཞིནམ་ལས་ <emph>སྟེགས་རིས་ཚུ་</emph>མཆོང་ལྡེ་ལུ་ ཨེབ་གཏང་འབད།"
@@ -1432,7 +1308,6 @@ msgstr "ཁྱོད་རའི་དགོས་མཁོ་དང་མཐུ
msgctxt ""
"gradient.xhp\n"
"par_id3150659\n"
-"46\n"
"help.text"
msgid "To adjust the transparency of an object, select the object, choose <emph>Format - Area</emph> and click the <emph>Transparency</emph> tab."
msgstr "དངོས་པོའི་དྭངས་གསལ་བདེ་སྒྲིག་འབད་ནི་ལུ་ དངོས་པོ་སེལ་འཐུ་འབད་དེ་ལས་ <emph>རྩ་སྒྲིག་-མངའ་ཁོངས་</emph>གདམ་ཁ་བརྐྱབ་ཞིནམ་ལས་ <emph>དྭངས་གསལ་</emph> མཆོང་ལྡེ་ལུ་ཨེབ་གཏང་འབད།"
@@ -1457,50 +1332,41 @@ msgstr "<bookmark_value>པར་ཚུ་ བཙུགས་དོ་</bookmark
msgctxt ""
"graphic_insert.xhp\n"
"hd_id3156443\n"
-"1\n"
"help.text"
msgid "<variable id=\"graphic_insert\"><link href=\"text/sdraw/guide/graphic_insert.xhp\" name=\"Inserting Graphics\">Inserting Pictures</link></variable>"
msgstr "<variable id=\"graphic_insert\"><link href=\"text/sdraw/guide/graphic_insert.xhp\" name=\"Inserting Graphics\">པར་ཚུ་བཙུགས་དོ་</link></variable>"
#: graphic_insert.xhp
-#, fuzzy
msgctxt ""
"graphic_insert.xhp\n"
"par_id3155600\n"
-"2\n"
"help.text"
msgid "Choose <emph>Insert - Image</emph>."
-msgstr "<emph>ཡིག་སྣོད་བཙུགས་</emph>འདི་ གདམས།"
+msgstr ""
#: graphic_insert.xhp
-#, fuzzy
msgctxt ""
"graphic_insert.xhp\n"
"par_id3150749\n"
-"3\n"
"help.text"
msgid "Locate the image you want to insert. Select the <emph>Link</emph> check box to insert only a link to the image. If you want to see the image before you insert it, select <emph>Preview</emph>."
-msgstr "ཁྱོད་ཀྱིས་བཙུགས་ནི་ཨིན་པའི་པར་འདི་ ག་ཡོད་འཚོེལ། པར་ལུ་འབྲེལ་ལམ་རྐྱངམ་ཅིག་བཙུགས་ནིའི་དོན་ལུ་ <emph>འབྲེལ་ལམ་</emph> ཞིབ་དཔྱད་སྒྲོམ་འདི་ སེལ་འཐུ་འབད། ཁྱོད་ཀྱིས་པར་འདི་མ་བཙུགས་པའི་ཧེ་མ་བལྟ་དགོ་པ་ཅིན་ <emph>སྔོན་ལྟ་</emph> འདི་སེལ་འཐུ་འབད།"
+msgstr ""
#: graphic_insert.xhp
-#, fuzzy
msgctxt ""
"graphic_insert.xhp\n"
"par_id3155764\n"
-"4\n"
"help.text"
msgid "After you insert a linked image, do not change the name of the source image or move the source image to another directory."
-msgstr "ཁྱོད་ཀྱིས་འབྲེལ་མཐུད་འབད་ཡོད་པའི་པར་ཅིག་བཙུགས་པའི་ཤུལ་མ་ འབྱུང་ཁུངས་པར་གྱི་མིང་ བསྒྱུར་བཅོས་མ་འབད་ ཡངན་ འབྱུང་ཁུངས་པར་འདི་ སྣོད་ཐོ་གཞན་ཅིག་ནང་སྤོ།"
+msgstr ""
#: graphic_insert.xhp
-#, fuzzy
msgctxt ""
"graphic_insert.xhp\n"
"par_id3150044\n"
-"5\n"
"help.text"
msgid "Click <emph>Open</emph> to insert the image."
-msgstr "པར་བཙུགས་ནིའི་དོན་ལས་ <emph>ཁ་ཕྱེ་</emph>ལུ་ཨེབ་གཏང་འབད།"
+msgstr ""
#: groups.xhp
msgctxt ""
@@ -1522,7 +1388,6 @@ msgstr ""
msgctxt ""
"groups.xhp\n"
"hd_id3150793\n"
-"26\n"
"help.text"
msgid "<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\" name=\"Grouping Objects\">Grouping Objects</link></variable>"
msgstr "<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\" name=\"Grouping Objects\">སྡེ་བཟོའི་དངོས་པོ་ཚུ་</link></variable>"
@@ -1531,7 +1396,6 @@ msgstr "<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\" name=
msgctxt ""
"groups.xhp\n"
"par_id3153728\n"
-"27\n"
"help.text"
msgid "You can combine several objects into a group so that they act as a single object. You can move and transform all objects in a group as a single unit. You can also change the properties (for example, line size, fill color) of all objects in a group as a whole or for individual objects in a group. Groups can be temporary or assigned:"
msgstr "ཁྱོད་ཀྱིས་ དངོས་པོ་ལེ་ཤ་རང་སྡེ་ཚན་ཅིག་ནང་ མཉམ་མཐུད་འབད་ཚུགས་ དེ་འབདཝ་ལས་དེ་ཚུ་གིས་ དངོས་པོ་རྐྱང་པ་སྦེ་གནསཔ་ཨིན། དེ་ལས་ཁྱོད་ཀྱིས་ དངོས་པོ་ཚུ་ཆ་མཉམ་རང་ སྡེ་ཚན་ནང་ཆ་ཕྲན་རྐྱང་པ་སྦེ་ སྤོ་བཤུད་དང་བཟོ་བསྒྱུར་འབད་ཚུགས། དེ་གིས་མ་ཚད་པར་ དོ་རུང་ཁྱོད་ཀྱིས་ དངོས་པོ་ཆ་མཉམ་གྱི་རྒྱུ་དངོས་(དཔེར་ན་ གྲལ་ཐིག་ཚད་དང་བཀང་བའི་ཚོས་གཞི་)ཚུ་ ཧྲིལ་བུམ་སྦེ་ སྡེ་ཚན་ཅིག་ནང་ ཡང་ཅིན་ སྡེ་ཚན་ནང་ངོ་རྐྱང་དངོས་པོའི་དོན་ལུ་ བསྒྱུར་བཅོས་འབད་ཚུགས། སྡེ་ཚན་འདི་ཡང་ གནས་སྐབས་ ཡང་ན་ འགན་སྤྲོད་འབད་ཡོདཔ་ཨིན་རུང་བཏུབ།"
@@ -1540,7 +1404,6 @@ msgstr "ཁྱོད་ཀྱིས་ དངོས་པོ་ལེ་ཤ་
msgctxt ""
"groups.xhp\n"
"par_id3147434\n"
-"64\n"
"help.text"
msgid "Temporary - group only lasts as long as all of the combined objects are selected."
msgstr "མཉམ་མཐུད་འབད་ཡོད་པའི་དངོས་པོ་ཚུ་ཆ་མཉམ་སེལ་འཐུ་འབད་བའི་རིང་ལུ་ གནས་སྐབས་ཀྱི་སྡེ་ཚན་འདི་རྐྱང་ཅིག་གནསཔ་ཨིན།"
@@ -1549,7 +1412,6 @@ msgstr "མཉམ་མཐུད་འབད་ཡོད་པའི་དངོ
msgctxt ""
"groups.xhp\n"
"par_id3154490\n"
-"65\n"
"help.text"
msgid "Assigned - group lasts until it is ungrouped through a menu command."
msgstr "འགན་སྤྲོད་འབད་ཡོད་པའི་སྡེ་ཚན་འདི་ དཀར་ཆག་བརྡ་ཀོད་ལས་བརྒྱུད་དེ་ སྡེ་ཚན་བཟོ་མ་བཤོལ་གྱི་བར་གནསཔ་ཨིན།"
@@ -1558,7 +1420,6 @@ msgstr "འགན་སྤྲོད་འབད་ཡོད་པའི་སྡ
msgctxt ""
"groups.xhp\n"
"par_id3145252\n"
-"66\n"
"help.text"
msgid "Groups can also be grouped in other groups. Actions applied to a group do not affect the relative position of the individual objects to each other in the group."
msgstr "སྡེ་ཚན་ཚུ་གིས་ སྡེ་ཚན་གཞན་ཚུ་ནང་ལུ་ཡང་ སྡེ་ཚན་བཟོ་ཚུགས། སྡེ་ཚན་ལུ་འཇུག་སྤྱོད་འབད་ཡོད་པའི་བྱ་བ་འདི་གིས་ སྡེ་ཚན་ནང་གཅིག་གིས་གཅིག་ལུ་ངོ་རྐྱང་དངོས་པོ་གི་འབྲེལ་བའི་གནས་ས་ལུ་མི་གནོད།"
@@ -1567,7 +1428,6 @@ msgstr "སྡེ་ཚན་ཚུ་གིས་ སྡེ་ཚན་གཞ
msgctxt ""
"groups.xhp\n"
"hd_id3150716\n"
-"28\n"
"help.text"
msgid "To group objects:"
msgstr "སྡེ་ཚན་དངོས་པོ་ཚུ་ལུ་:"
@@ -1584,7 +1444,6 @@ msgstr "<image id=\"img_id3145643\" src=\"cmd/sc_formatgroup.png\" width=\"4.23m
msgctxt ""
"groups.xhp\n"
"par_id3147346\n"
-"29\n"
"help.text"
msgid "Select the objects you want to group and choose <emph>Modify - Group</emph>."
msgstr "ཁྱོད་ཀྱིས་སྡེ་ཚན་བཟོ་ནི་ཨིན་པའི་དངོས་པོ་ཚུ་ སེལ་འཐུ་འབད་ཞིནམ་ལས་ <emph>ལེགས་བཅོས་-སྡེ་ཚན་</emph>ལུ་ཨེབ་གཏང་འབད།"
@@ -1593,7 +1452,6 @@ msgstr "ཁྱོད་ཀྱིས་སྡེ་ཚན་བཟོ་ནི་
msgctxt ""
"groups.xhp\n"
"par_id3148485\n"
-"30\n"
"help.text"
msgid "For example, you can group all of the objects in a company logo to move and resize the logo as a single object."
msgstr "དཔེར་ན་ ཁྱོད་ཀྱིས་ ལས་རྟགས་འདི་རྐྱང་པའི་དངོས་པོ་སྦེ་ སྤོ་བཤུད་དང་ཚད་བསྐྱར་བཟོའི་དོན་ལུ་ དངོས་པོ་ཚུ་ཆ་མཉམ་རང་ཚོང་སྡེ་ལས་རྟགས་ནང་སྡེ་ཚན་བཟོ་ཚུགས།"
@@ -1602,7 +1460,6 @@ msgstr "དཔེར་ན་ ཁྱོད་ཀྱིས་ ལས་རྟག
msgctxt ""
"groups.xhp\n"
"par_id3147002\n"
-"31\n"
"help.text"
msgid "After you have grouped objects, selecting any part of the group selects the entire group."
msgstr "ཁྱོད་ཀྱིས་དངོས་པོ་ཚུ་སྡེ་ཚན་བཟོ་བའི་ཤུལ་མ་ སྡེ་ཚན་ཡན་ལག་གང་རུང་ཅིག་སེལ་འཐུ་འབད་མི་འདི་གིས་ སྡེ་ཚན་ཧྲིལ་བུ་སེལ་འཐུ་འབདཝ་ཨིན།"
@@ -1611,7 +1468,6 @@ msgstr "ཁྱོད་ཀྱིས་དངོས་པོ་ཚུ་སྡེ
msgctxt ""
"groups.xhp\n"
"hd_id3150205\n"
-"55\n"
"help.text"
msgid "Selecting Objects in a Group"
msgstr "དངོས་པོ་ཚུ་སྡེ་ཚན་ནང་ སེལ་འཐུ་འབད་དོ།"
@@ -1628,7 +1484,6 @@ msgstr "<image id=\"img_id3155376\" src=\"cmd/sc_entergroup.png\" width=\"4.23mm
msgctxt ""
"groups.xhp\n"
"par_id3156450\n"
-"56\n"
"help.text"
msgid "You can select single objects in a group by entering the group. Double-click a group to enter it and click on the object to select it. You can also add or delete objects to and from a group in this mode. The objects that are not part of the group are grayed out."
msgstr "ཁྱོད་ཀྱིས་ སྡེ་ཚན་བཙུགས་པའི་ཐོག་ལས་ སྡེ་ཚན་ནང་ དངོས་པོ་རྐྱང་པ་ཚུ་སེལ་འཐུ་འབད་ཚུགས། བཙུགས་ནིའི་དོན་ལུ་ ཨེབ་གཏང་ཚར་གཉིས་འབད་ནི་དང་སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ དངོས་པོའི་གུ་ཨེབ་གཏང་འབད། དེ་མ་ཚད་ཁྱོད་ཀྱིས་ ཐབས་ལམ་ནང་སྡེ་ཚན་ལུ་ ཡང་ན་ དེ་ནང་ལས་ དངོས་པོ་ཚུ་ ཁ་སྐོང་དང་ཡང་ཅིན་བཏོན་གཏང་ཚུགས། སྡེ་ཚན་གྱི་ཡན་ལག་མེད་པའི་དངོས་པོ་ཚུ་ སྐྱ་ཐལ་བཟོཝ་ཨིན།"
@@ -1645,7 +1500,6 @@ msgstr "<image id=\"img_id3155264\" src=\"cmd/sc_leavegroup.png\" width=\"4.23mm
msgctxt ""
"groups.xhp\n"
"par_id3150213\n"
-"58\n"
"help.text"
msgid "To exit a group, double-click anywhere outside it."
msgstr "སྡེ་ཚན་ཕྱིར་འཐོན་གྱི་དོན་ལུ་ ཕྱི་ཁ་ག་སྟེ་ཡང་ ཨེབ་གཏང་ཚར་གཉིས་འབད།"
@@ -1670,7 +1524,6 @@ msgstr "<bookmark_value>དངོས་པོ་ཚུ་བྲིས་ དེ
msgctxt ""
"join_objects.xhp\n"
"hd_id3145799\n"
-"1\n"
"help.text"
msgid "<variable id=\"join_objects\"><link href=\"text/sdraw/guide/join_objects.xhp\" name=\"Connecting Lines\">Connecting Lines</link></variable>"
msgstr "<variable id=\"join_objects\"><link href=\"text/sdraw/guide/join_objects.xhp\" name=\"Connecting Lines\">གྲལ་ཐིག་ཚུ་མཐུད་དོ་</link></variable>"
@@ -1679,7 +1532,6 @@ msgstr "<variable id=\"join_objects\"><link href=\"text/sdraw/guide/join_objects
msgctxt ""
"join_objects.xhp\n"
"par_id3154512\n"
-"3\n"
"help.text"
msgid "When you connect lines, lines are drawn between neighboring endpoints."
msgstr "ཁྱོད་ཀྱིས་གྲལ་ཐིག་མཐུདཔ་ད་ གྲལ་ཐིག་ཚུ་སྦོ་ལོགས་ཁའི་མཐའ་རྩེ་གི་བར་ན་བྲིསཝ་ཨིན།"
@@ -1688,7 +1540,6 @@ msgstr "ཁྱོད་ཀྱིས་གྲལ་ཐིག་མཐུདཔ་
msgctxt ""
"join_objects.xhp\n"
"hd_id3150752\n"
-"2\n"
"help.text"
msgid "To connect lines:"
msgstr "གྲལ་ཐིག་ཚུ་མཐུད་ནི་ལུ་:"
@@ -1697,7 +1548,6 @@ msgstr "གྲལ་ཐིག་ཚུ་མཐུད་ནི་ལུ་:"
msgctxt ""
"join_objects.xhp\n"
"par_id3153714\n"
-"4\n"
"help.text"
msgid "Select two or more lines."
msgstr "གྲལ་ཐིག་གཉིས་ ཡང་ན་ ལེ་ཤ་སེལ་འཐུ་འབད།"
@@ -1706,7 +1556,6 @@ msgstr "གྲལ་ཐིག་གཉིས་ ཡང་ན་ ལེ་ཤ་
msgctxt ""
"join_objects.xhp\n"
"par_id3156383\n"
-"5\n"
"help.text"
msgid "Right-click and choose <emph>Modify - Connect</emph>."
msgstr "གཡས་ཀྱི་ཨེབ་གཏང་ལུ་ཨེབ་གཏང་འབད་ཞིནམ་ལས་ <emph>ལེགས་བཅོས་-མཐུད་</emph>འདི་གདམས།"
@@ -1715,7 +1564,6 @@ msgstr "གཡས་ཀྱི་ཨེབ་གཏང་ལུ་ཨེབ་ག
msgctxt ""
"join_objects.xhp\n"
"par_id3149257\n"
-"11\n"
"help.text"
msgid "To create a closed object, right-click a line and choose <emph>Close Object</emph>."
msgstr "ཁ་བསྡམས་ཡོད་པའི་དངོས་པོ་ཅིག་གསར་བསྐྲུན་འབད་ནི་ལུ་ གྲལ་ཐིག་ཅིག་ལུ་གཡས་ཀྱི་ཨེབ་གཏང་ལུ་ཨེབ་གཏང་འབད་ དེ་ལས་ <emph>དངོས་པོ་ཁ་བསྡམ་</emph> འདི་གདམས།"
@@ -1724,7 +1572,6 @@ msgstr "ཁ་བསྡམས་ཡོད་པའི་དངོས་པོ་
msgctxt ""
"join_objects.xhp\n"
"par_id3150363\n"
-"9\n"
"help.text"
msgid "You can only use the <emph>Close Object</emph> command on connected lines, <emph>Freeform Lines </emph>and unfilled <emph>Curves</emph>."
msgstr "ཁྱོད་ཀྱིས་ འབྲེལ་མཐུད་འབད་ཡོད་པའི་གྲལ་ཐིག་ <emph>རང་དབང་གྲལ་ཐིག་ཚུ་ </emph>ཚུ་དང་མ་བཀང་བའི་<emph>གུག་གུགཔ་ཚུ་</emph>ཚུ་གུ་རྐྱངམ་ཅིག་ <emph>ཁ་བསྡམ་པའི་དངོས་པོ་</emph>བརྡ་བཀོད་འདི་ ལག་ལེན་འཐབ་ཚུགས།"
@@ -1749,7 +1596,6 @@ msgstr "<bookmark_value>༣ཌི་ དངོས་པོ་ཚུ་ འཛོ
msgctxt ""
"join_objects3d.xhp\n"
"hd_id3156442\n"
-"29\n"
"help.text"
msgid "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objects3d.xhp\" name=\"Assembling 3D Objects\">Assembling 3D Objects</link></variable>"
msgstr "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objects3d.xhp\" name=\"Assembling 3D Objects\">༣ཌི་ དངོས་པོ་ཚུ་ འཛོམས་དོ་</link></variable>"
@@ -1758,7 +1604,6 @@ msgstr "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objec
msgctxt ""
"join_objects3d.xhp\n"
"par_id3145251\n"
-"30\n"
"help.text"
msgid "3D objects that each form a 3D scene can be combined into a single 3D scene."
msgstr ""
@@ -1767,7 +1612,6 @@ msgstr ""
msgctxt ""
"join_objects3d.xhp\n"
"hd_id3150042\n"
-"41\n"
"help.text"
msgid "To combine 3D objects:"
msgstr "༣ཌི་ དངོས་པོ་ཚུ་ མཉམ་མཐུད་འབད་ནི་ལུ་:"
@@ -1776,7 +1620,6 @@ msgstr "༣ཌི་ དངོས་པོ་ཚུ་ མཉམ་མཐུད
msgctxt ""
"join_objects3d.xhp\n"
"par_id3154702\n"
-"31\n"
"help.text"
msgid "Insert a 3D object from the <emph>3D Objects</emph> toolbar (for example, a cube)."
msgstr "<emph>༣ཌི་ དངོས་པོ་ཚུ་</emph>ལག་ཆས་ཕྲ་རིང་(དཔེར་ན་ ཤོ་དབྱིབས་)ནང་ལས་ ༣ཌི་ དངོས་པོ་ཚུ་བཙུགས།"
@@ -1785,7 +1628,6 @@ msgstr "<emph>༣ཌི་ དངོས་པོ་ཚུ་</emph>ལག་ཆ
msgctxt ""
"join_objects3d.xhp\n"
"par_id3155335\n"
-"32\n"
"help.text"
msgid "Insert a second slightly larger 3D object (for example, a sphere)."
msgstr "དུམ་གྲ་ཅིག་སྦོམ་མི་ ༣ཌི་དངོས་པོ་གཉིས་པམ་འདི་བཙུགས་(དཔེར་ན་ ཟླུམ་གཟུགས་བཟུམ་)།"
@@ -1794,7 +1636,6 @@ msgstr "དུམ་གྲ་ཅིག་སྦོམ་མི་ ༣ཌི་
msgctxt ""
"join_objects3d.xhp\n"
"par_id3148488\n"
-"33\n"
"help.text"
msgid "Select the second 3D object (sphere) and choose <emph>Edit - Cut</emph>."
msgstr "༣ཌི་ དངོས་པོ་(ཟླུམ་གཟུགས་)གཉིས་པམ་འདི་སེལ་འཐུ་འབད་ཞིནམ་ལས་ <emph>ཞུན་དག་ - བཏོག་</emph>འདི་ གདམས།"
@@ -1803,7 +1644,6 @@ msgstr "༣ཌི་ དངོས་པོ་(ཟླུམ་གཟུགས་)
msgctxt ""
"join_objects3d.xhp\n"
"par_id3149211\n"
-"34\n"
"help.text"
msgid "Double-click the first object (cube) to enter its group."
msgstr "ཁོང་པའི་སྡེ་ཚན་ནང་འཛུལ་ནིའི་དོན་ལུ་ དངོས་པོ་(ཤོ་དབྱིབས་)ལུ་ ཚར་གཉིས་ཨེབ་གཏང་འབད།"
@@ -1812,7 +1652,6 @@ msgstr "ཁོང་པའི་སྡེ་ཚན་ནང་འཛུལ་ན
msgctxt ""
"join_objects3d.xhp\n"
"par_id3154652\n"
-"35\n"
"help.text"
msgid "Choose <emph>Edit - Paste</emph>. Both objects are now part of the same group. If you want, you can edit the individual objects or change their position within the group."
msgstr "<emph>ཞུན་དག་ - སྦྱར་</emph>འདི་གདམས། ད་ལས་ཕར་དངོས་པོ་གཉིས་ཆ་རང་ སྡེ་ཚན་གཅིག་གི་ཡན་ལག་ཨིན།ཁྱོད་རང་དགོ་པ་ཅིན་ ངོ་རྐྱང་དངོས་པོ་ཚུ་ཞུན་དག་འབད་ཚུགས་ ཡངན་ སྡེ་ཚན་ནང་ལུ་དེ་ཚུའི་གནས་ས་ བསྒྱུར་བཅོས་འབད་ཚུགས།"
@@ -1821,7 +1660,6 @@ msgstr "<emph>ཞུན་དག་ - སྦྱར་</emph>འདི་གད
msgctxt ""
"join_objects3d.xhp\n"
"par_id3155376\n"
-"36\n"
"help.text"
msgid "Double-click outside the group to exit the group."
msgstr "སྡེ་ཚན་ཕྱིར་འཐོན་གྱི་དོན་ལུ་ སྡེ་ཚན་གྱི་ཕྱི་ཁ་ལུ་ ཨེབ་གཏང་ཚར་གཉིས་འབད།"
@@ -1830,7 +1668,6 @@ msgstr "སྡེ་ཚན་ཕྱིར་འཐོན་གྱི་དོན
msgctxt ""
"join_objects3d.xhp\n"
"par_id3148606\n"
-"38\n"
"help.text"
msgid "You cannot intersect or subtract 3D objects."
msgstr "ཁྱོད་ཀྱིས་ ༣ཌི་དངོས་པོ་འདི་དུམ་བུར་གཅོད་ནི་ ཡང་ན་ ཕབ་མི་ཚུགས།"
@@ -1839,7 +1676,6 @@ msgstr "ཁྱོད་ཀྱིས་ ༣ཌི་དངོས་པོ་འ
msgctxt ""
"join_objects3d.xhp\n"
"par_id3154537\n"
-"39\n"
"help.text"
msgid "<link href=\"text/simpress/02/10090000.xhp\" name=\"Objects in 3D\">Objects in 3D</link>"
msgstr "<link href=\"text/simpress/02/10090000.xhp\" name=\"Objects in 3D\">༣ཌི་ནང་ལུ་དངོས་པོ་</link>"
@@ -1864,7 +1700,6 @@ msgstr "<bookmark_value>འཛུལ་སྤྱོད་ %PRODUCTNAME ཌཱ་
msgctxt ""
"keyboard.xhp\n"
"hd_id3155628\n"
-"1\n"
"help.text"
msgid "<variable id=\"keyboard\"><link href=\"text/sdraw/guide/keyboard.xhp\" name=\"Shortcut Keys for Drawing Objects\">Shortcut Keys for Drawing Objects</link></variable>"
msgstr "<variable id=\"keyboard\"><link href=\"text/sdraw/guide/keyboard.xhp\" name=\"Shortcut Keys for Drawing Objects\">པར་རིས་འབྲི་ནིའི་དོན་ལུ་ མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ་</link></variable>"
@@ -1873,7 +1708,6 @@ msgstr "<variable id=\"keyboard\"><link href=\"text/sdraw/guide/keyboard.xhp\" n
msgctxt ""
"keyboard.xhp\n"
"par_id3148663\n"
-"13\n"
"help.text"
msgid "You can create and edit drawing objects using the keyboard."
msgstr "ཁྱོད་ཀྱིས་ལྡེ་སྒྲོམ་ལག་ལེན་འཐབ་པའི་ཐོག་ལས་ པར་རིས་དངོས་པོ་ཚུ་གསར་བསྐྲུན་ ཡང་ན་ ཞུན་དག་འབད་ཚུགས།"
@@ -1882,7 +1716,6 @@ msgstr "ཁྱོད་ཀྱིས་ལྡེ་སྒྲོམ་ལག་ལ
msgctxt ""
"keyboard.xhp\n"
"hd_id3125863\n"
-"12\n"
"help.text"
msgid "To Create and Edit a Drawing Object"
msgstr "པར་རིས་དངོས་པོ་ཅིག་ གསར་བསྐྲུན་དང་ཞུན་དག་འབད་ནི་ལུ།"
@@ -1891,7 +1724,6 @@ msgstr "པར་རིས་དངོས་པོ་ཅིག་ གསར་
msgctxt ""
"keyboard.xhp\n"
"par_id3153188\n"
-"11\n"
"help.text"
msgid "Press <item type=\"keycode\">F6</item> to navigate to the <emph>Drawing</emph> bar."
msgstr "<emph>པར་རིས་</emph> ཕྲ་རིང་ལུ་ འགྲུལ་བསྐྱོད་འབད་ནིའི་དོན་ལས་ <item type=\"keycode\">F6</item>ལུ་ཨེབས།"
@@ -1900,7 +1732,6 @@ msgstr "<emph>པར་རིས་</emph> ཕྲ་རིང་ལུ་ འག
msgctxt ""
"keyboard.xhp\n"
"par_id3146971\n"
-"10\n"
"help.text"
msgid "Press the <item type=\"keycode\">Right</item> arrow key until you reach the toolbar icon of a drawing tool."
msgstr "པར་རིས་ལག་ཆས་ཀྱི་ལག་ཆས་ཕྲ་རིང་གི་ངོས་པར་ལུ་མ་ལྷོད་ཚུན་ <item type=\"keycode\">གཡས་</item>མདའ་རྟགས་ལྡེ་མིག་ལུ་ ཨེབས།"
@@ -1917,7 +1748,6 @@ msgstr "ངོས་པར་གྱི་སྦོ་ལོགས་ཁར་མ
msgctxt ""
"keyboard.xhp\n"
"par_id3147338\n"
-"8\n"
"help.text"
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\">+Enter</item>."
msgstr ""
@@ -1926,7 +1756,6 @@ msgstr ""
msgctxt ""
"keyboard.xhp\n"
"par_id3154705\n"
-"7\n"
"help.text"
msgid "The object is created at the center of the current document."
msgstr "དངོས་པོ་འདི་ ད་ལྟོའི་ཡིག་ཆ་གི་དབུས་ནང་ལུ་ གསར་བསྐྲུན་འབད་ཡི།"
@@ -1935,7 +1764,6 @@ msgstr "དངོས་པོ་འདི་ ད་ལྟོའི་ཡིག
msgctxt ""
"keyboard.xhp\n"
"par_id3155962\n"
-"6\n"
"help.text"
msgid "To return to the document, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\">+F6</item>."
msgstr ""
@@ -1944,7 +1772,6 @@ msgstr ""
msgctxt ""
"keyboard.xhp\n"
"par_id3155062\n"
-"5\n"
"help.text"
msgid "You can use the arrow keys to position the object where you want. To choose a command from the context menu for the object, press <item type=\"keycode\">Shift+F10</item>."
msgstr "ཁྱོད་ཀྱིས་ཁྱོད་རའི་དགོ་འདོད་དང་འཁྲིལ་ཏེ་ དངོས་པོའི་གནས་ས་བཟོ་ནིའི་དོན་ལུ་ བརྡ་རྟགས་ལྡེ་མིག་ཚུ་ལག་ལེན་འཐབ་ཚུགས། སྐབས་དོན་དཀར་ཆག་ནང་ལས་དངོས་པོའི་དོན་ལུ་ བརྡ་བཀོད་གདམ་དགོ་པ་ཅིན་ <item type=\"keycode\">སོར་ལྡེ་+F10</item>ལུ་ ཨེབས།"
@@ -1953,7 +1780,6 @@ msgstr "ཁྱོད་ཀྱིས་ཁྱོད་རའི་དགོ་འ
msgctxt ""
"keyboard.xhp\n"
"hd_id3150306\n"
-"4\n"
"help.text"
msgid "To Select an Object"
msgstr "དངོས་པོ་སེལ་འཐུ་འབད་ནི་ལུ།"
@@ -1962,7 +1788,6 @@ msgstr "དངོས་པོ་སེལ་འཐུ་འབད་ནི་ལ
msgctxt ""
"keyboard.xhp\n"
"par_id3152990\n"
-"3\n"
"help.text"
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\">+F6</item> to enter the document."
msgstr ""
@@ -1971,7 +1796,6 @@ msgstr ""
msgctxt ""
"keyboard.xhp\n"
"par_id3145587\n"
-"2\n"
"help.text"
msgid "Press <item type=\"keycode\">Tab</item> until you reach the object you want to select."
msgstr "ཁྱོད་ཀྱིས་སེལ་འཐུ་འབད་དགོ་མནོ་མིའི་དངོས་པོ་འདི་ལུ་མ་ལྷོད་ཀྱི་བར་ <item type=\"keycode\">མཆོང་ལྡེ་</item>ལུ་ ཨེབས།"
@@ -1996,7 +1820,6 @@ msgstr ""
msgctxt ""
"main.xhp\n"
"hd_id3146119\n"
-"1\n"
"help.text"
msgid "<variable id=\"main\"><link href=\"text/sdraw/guide/main.xhp\" name=\"Instructions for Using $[officename] Draw\">Instructions for Using $[officename] Draw</link></variable>"
msgstr "<variable id=\"main\"><link href=\"text/sdraw/guide/main.xhp\" name=\"Instructions for Using $[officename] Draw\"> $[officename] ཌཱ་ ལག་ལེན་འཐབ་ནིའི་དོན་ལས་ བསླབ་སྟོན་</link></variable>"
@@ -2005,7 +1828,6 @@ msgstr "<variable id=\"main\"><link href=\"text/sdraw/guide/main.xhp\" name=\"In
msgctxt ""
"main.xhp\n"
"hd_id3143218\n"
-"2\n"
"help.text"
msgid "Editing and Grouping Objects"
msgstr "དངོས་པོ་ཚུ་ ཞུན་དག་དང་སྡེ་ཚན་བཟོ་དོ།"
@@ -2014,7 +1836,6 @@ msgstr "དངོས་པོ་ཚུ་ ཞུན་དག་དང་སྡ
msgctxt ""
"main.xhp\n"
"hd_id3149018\n"
-"3\n"
"help.text"
msgid "Editing Colors and Textures"
msgstr "ཚོས་གཞི་དང་རེག་བྱ་ཚུ་ ཞུན་དག་འབད་དོ།"
@@ -2023,7 +1844,6 @@ msgstr "ཚོས་གཞི་དང་རེག་བྱ་ཚུ་ ཞུ
msgctxt ""
"main.xhp\n"
"hd_id3150043\n"
-"4\n"
"help.text"
msgid "Editing Text"
msgstr "ཚིག་ཡིག་ཞུན་དག་འབད་དོ།"
@@ -2032,7 +1852,6 @@ msgstr "ཚིག་ཡིག་ཞུན་དག་འབད་དོ།"
msgctxt ""
"main.xhp\n"
"hd_id3147003\n"
-"6\n"
"help.text"
msgid "Working with Layers"
msgstr "བང་རིམ་དང་བཅས་ ལཱ་འབད་དོ།"
@@ -2041,7 +1860,6 @@ msgstr "བང་རིམ་དང་བཅས་ ལཱ་འབད་དོ
msgctxt ""
"main.xhp\n"
"hd_id3145585\n"
-"5\n"
"help.text"
msgid "Miscellaneous"
msgstr "སྣ་ཚོགས།"
@@ -2066,7 +1884,6 @@ msgstr "<bookmark_value>བསྒྱིར་དོ་ དངོས་པོ་
msgctxt ""
"rotate_object.xhp\n"
"hd_id3154684\n"
-"12\n"
"help.text"
msgid "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Rotating Objects\">Rotating Objects</link></variable>"
msgstr "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Rotating Objects\">དངོས་པོ་ཚུ་བསྒྱིར་དོ་</link></variable>"
@@ -2075,7 +1892,6 @@ msgstr "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_obje
msgctxt ""
"rotate_object.xhp\n"
"par_id3149262\n"
-"13\n"
"help.text"
msgid "You can rotate an object around its default pivot point (center point) or a pivot point that you designate."
msgstr "ཁྱོད་ཀྱིས་ སྔོན་སྒྲིག་ལྟེ་ཤིང་ས་ཚིགས་(དབུས་ཚིགས་)འདི་གི་མཐའ་འཁོར་དང་ ཡང་ན་ ཁྱོད་ཀྱིས་བཀོད་སྒྲིག་འབད་བའི་ལྟེ་ཤིང་ས་ཚིགས་ལུ་ དངོས་པོ་བསྒྱིར་ཚུགས།"
@@ -2092,7 +1908,6 @@ msgstr "<image id=\"img_id3154729\" src=\"cmd/sc_toggleobjectrotatemode.png\" wi
msgctxt ""
"rotate_object.xhp\n"
"par_id3150716\n"
-"14\n"
"help.text"
msgid "Select the object you want to rotate. On the <emph>Mode</emph> toolbar in $[officename] Draw or on the <emph>Drawing</emph> bar in $[officename] Impress, click the <emph>Rotate</emph> icon."
msgstr "ཁྱོད་ཀྱིས་བསྒྱིར་ནི་ཨིན་པའི་དངོས་པོ་འདི་ སེལ་འཐུ་འབད། $[officename]ཌཱ་ནང་ <emph>ཐབས་ལམ་</emph>ལག་ཆས་ཕྲ་རིང་གུ་ ཡང་ན་ $[officename]ཨིམ་པིརེསི་ནང་ <emph>པར་རིས་</emph>ཕྲ་རིང་གུ་ལུ་ <emph>བསྒྱིར་བ་</emph> ངོས་པར་ལུ་ ཨེབ་གཏང་འབད།"
@@ -2101,7 +1916,6 @@ msgstr "ཁྱོད་ཀྱིས་བསྒྱིར་ནི་ཨིན་
msgctxt ""
"rotate_object.xhp\n"
"par_id3149021\n"
-"69\n"
"help.text"
msgid "Move the pointer to a corner handle so that the pointer changes to a rotate symbol. Drag the handle to rotate the object."
msgstr "དཔག་བྱེད་འདི་ སྒྱིད་ཁུག་གི་བཤེད་བཟུང་ཅིག་ལུ་ སྤོ་བཤུད་འབད་ དེ་འབད་བ་ཅིན་ དཔག་བྱེད་འདི་བསྒྱིར་བའི་བརྡ་མཚོན་ལུ་བསྒྱུརཝ་ཨིན། དངོས་པོ་བསྒྱིར་ནིའི་དོན་ལུ་ བཤེད་བཟུང་འདི་འདྲུད།"
@@ -2127,14 +1941,13 @@ msgctxt ""
"rotate_object.xhp\n"
"par_id3155962\n"
"help.text"
-msgid "<image id=\"img_id3154023\" src=\"res/helpimg/rotieren.png\" width=\"5.424cm\" height=\"3.916cm\"><alt id=\"alt_id3154023\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154023\" src=\"res/helpimg/rotieren.png\" width=\"54.24mm\" height=\"39.16mm\"><alt id=\"alt_id3154023\">དངོས་པོ་བསྒྱིར་</alt></image>"
+msgid "<image id=\"img_id3154023\" src=\"media/helpimg/rotieren.png\" width=\"5.424cm\" height=\"3.916cm\"><alt id=\"alt_id3154023\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154023\" src=\"media/helpimg/rotieren.png\" width=\"54.24mm\" height=\"39.16mm\"><alt id=\"alt_id3154023\">དངོས་པོ་བསྒྱིར་</alt></image>"
#: rotate_object.xhp
msgctxt ""
"rotate_object.xhp\n"
"par_id3166424\n"
-"16\n"
"help.text"
msgid "To change the pivot point, drag the small circle in the center of the object to a new location."
msgstr "ལྟེ་ཤིང་ས་ཚིགས་སོར་དགོ་པ་ཅིན་ སྒོར་ཐིག་ཆུང་ཀུ་འདི་དངོས་པོའི་དབུས་ནང་ལས་ གནས་ཁོངས་གསརཔ་ཅིག་ལུ་ འདྲུད།"
@@ -2143,7 +1956,6 @@ msgstr "ལྟེ་ཤིང་ས་ཚིགས་སོར་དགོ་པ
msgctxt ""
"rotate_object.xhp\n"
"par_id3159236\n"
-"28\n"
"help.text"
msgid "To skew the object vertically or horizontally, drag one of the side handles."
msgstr "དངོས་པོ་འདི་ཀེར་ཕྲང་སྦེ་ ཡང་ན་ ཐད་སྙོམས་སྦེ་གསེག་ལོག་འབད་ནིའི་དོན་ལུ་ ཟུར་ཁའི་བཤེད་བཟུང་ནང་ལས་གཅིག་འདྲུད།"
@@ -2168,7 +1980,6 @@ msgstr ""
msgctxt ""
"text_enter.xhp\n"
"hd_id3153144\n"
-"45\n"
"help.text"
msgid "<variable id=\"text_enter\"><link href=\"text/sdraw/guide/text_enter.xhp\" name=\"Adding Text\">Adding Text</link></variable>"
msgstr "<variable id=\"text_enter\"><link href=\"text/sdraw/guide/text_enter.xhp\" name=\"Adding Text\">ཚིག་ཡིག་ཁ་སྐོང་རྐྱབ་དོ་</link></variable>"
@@ -2177,7 +1988,6 @@ msgstr "<variable id=\"text_enter\"><link href=\"text/sdraw/guide/text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
"par_id3145750\n"
-"46\n"
"help.text"
msgid "There are several types of text you can add to a drawing or presentation:"
msgstr "ཁྱོད་ཀྱིས་པར་རིས་ ཡངན་ གསལ་སྟོན་ལུ་ ཁ་སྐོང་འབད་ནིའི་ཚིག་ཡིག་གི་དབྱེ་བ་ལེ་ཤ་རང་ཡོད།"
@@ -2226,7 +2036,6 @@ msgstr "ཚིག་ཡིག་ ཡང་ན་ ཨེཅི་ཊི་ཨེ
msgctxt ""
"text_enter.xhp\n"
"hd_id3150202\n"
-"48\n"
"help.text"
msgid "Adding a Text Box"
msgstr ""
@@ -2235,7 +2044,6 @@ msgstr ""
msgctxt ""
"text_enter.xhp\n"
"par_id3155266\n"
-"49\n"
"help.text"
msgid "Click the <emph>Text</emph> icon <image id=\"img_id3156450\" src=\"cmd/sc_text.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3156450\">Icon</alt></image> and move the mouse pointer to where you want to enter the text box."
msgstr "<emph>Text</emph> ངོས་པར་ <image id=\"img_id3156450\" src=\"cmd/sc_text.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156450\">ངོས་པར་</alt></image> ལུ་ཨེབ་གཏང་འབད་ཞིནམ་ལས་ མའུསི་དཔག་བྱེད་འདི་ ཁྱོད་ཀྱིས་ཚིག་ཡིག་ག་སྟེ་བཙུགས་ནི་ཨིན་ན་ ས་སྒོ་དེ་ནང་སྤོ།"
@@ -2244,7 +2052,6 @@ msgstr "<emph>Text</emph> ངོས་པར་ <image id=\"img_id3156450\" src=
msgctxt ""
"text_enter.xhp\n"
"par_id3149052\n"
-"50\n"
"help.text"
msgid "Drag a text box to the size you want in your document."
msgstr "ཁྱོད་རའི་ཡིག་ཆ་ནང་དགོསཔ་ཨིན་པའི་ཚད་འདི་ཁར་ ཚིག་ཡིག་གཞི་ཁྲམ་ཅིག་འདྲུད།"
@@ -2253,7 +2060,6 @@ msgstr "ཁྱོད་རའི་ཡིག་ཆ་ནང་དགོསཔ་
msgctxt ""
"text_enter.xhp\n"
"par_id3151194\n"
-"51\n"
"help.text"
msgid "Type or paste your text into the text box."
msgstr "ཚིག་ཡིག་གཞི་ཁྲམ་ནང་ ཁྱོད་རའི་ཚིག་ཡིག་འདི་ཡིག་དཔར་རྐྱབས་ ཡང་ཅིན་སྦྱར།"
@@ -2262,7 +2068,6 @@ msgstr "ཚིག་ཡིག་གཞི་ཁྲམ་ནང་ ཁྱོད
msgctxt ""
"text_enter.xhp\n"
"par_id3145118\n"
-"53\n"
"help.text"
msgid "Double-click the text to edit it or to format text properties, such as font size or font color. Click the border of the text box to edit the object properties, such as border color or arranging in front or behind other objects."
msgstr "ཞུན་དག་འབད་ནི་དང་ ཚིག་ཡིག་གི་རྒྱུ་དངོས་ཚུ་ ཡིག་གཟུགས་ཀྱི་ཚད་ ཡང་ན་ ཡིག་གཟུགས་ཀྱི་ཚོས་གཞི་བཟུམ་སྦེ་ རྩ་སྒྲིག་འབད་ནིའི་དོན་ལུ་ ཚིག་ཡིག་ལུ་ཚར་གཉིས་ཨེབ་གཏང་འབད། དངོས་པོའི་རྒྱུ་དངོས་ཚུ་ དཔེར་ན་ མཐའ་མཚམས་ཀྱི་ཚོས་གཞི་ ཡང་ཅིན་ དངོས་པོའི་གདོང་ཁ་དང་ ཡང་ན་ རྒྱབ་ཁར་བདེ་ཞིབ་འབད་ནི་ཚུ་བཟུམ་སྦེ་ ཞུན་དག་འབད་ནིའི་དོན་ལས་ ཚིག་ཡིག་དངོས་པོའི་མཐའ་མཚམས་ལུ་ ཨེབ་གཏང་འབད།"
@@ -2271,7 +2076,6 @@ msgstr "ཞུན་དག་འབད་ནི་དང་ ཚིག་ཡི
msgctxt ""
"text_enter.xhp\n"
"hd_id3150437\n"
-"54\n"
"help.text"
msgid "Fitting Text to Frames"
msgstr "ཚིག་ཡིག་འདི་ གཞི་ཁྲམ་ལུ་ཚུད་སྒྲིག་འབད་དོ།"
@@ -2280,7 +2084,6 @@ msgstr "ཚིག་ཡིག་འདི་ གཞི་ཁྲམ་ལུ་
msgctxt ""
"text_enter.xhp\n"
"par_id3146877\n"
-"56\n"
"help.text"
msgid "Create a text box as described in the steps above."
msgstr ""
@@ -2313,7 +2116,6 @@ msgstr ""
msgctxt ""
"text_enter.xhp\n"
"hd_id3155955\n"
-"58\n"
"help.text"
msgid "Text Tied to a Graphic"
msgstr "ཚིག་ཡིག་འདི་ཚད་རིས་ཅིག་ལུ་བསྡམས་ནུག"
@@ -2338,7 +2140,6 @@ msgstr ""
msgctxt ""
"text_enter.xhp\n"
"par_id3147366\n"
-"59\n"
"help.text"
msgid "For example, click the arrow next to the <emph>Callouts</emph> icon <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154508\">Icon</alt></image> to open the Callouts toolbar."
msgstr "འབོ་ནིའི་ལག་ཆས་ཕྲ་རིང་ཁ་ཕྱེ་ནིའི་དོན་ལུ་ <emph>འབོ་ནི་</emph> ངོས་པར་ <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3154508\">ངོས་པར་</alt></image> གི་སྦོ་ལོགས་ཁར་ཡོད་པའི་ མདའ་རྟགས་ལུ་ཨེབ་གཏང་འབད།"
@@ -2355,7 +2156,6 @@ msgstr "འབོ་ནི་སེལ་འཐུ་འབད་ཞིནམ་
msgctxt ""
"text_enter.xhp\n"
"par_id3150272\n"
-"60\n"
"help.text"
msgid "Drag to draw the callout."
msgstr "འབོ་ནི་འབྲི་ནིའི་དོན་ལུ་ འདྲུད།"
diff --git a/source/dz/helpcontent2/source/text/shared.po b/source/dz/helpcontent2/source/text/shared.po
index 8d48abe835e..e5889f6285a 100644
--- a/source/dz/helpcontent2/source/text/shared.po
+++ b/source/dz/helpcontent2/source/text/shared.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-05 21:12+0000\n"
+"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"PO-Revision-Date: 2016-05-02 10:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467753138.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462185766.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -436,7 +436,6 @@ msgstr "གྲོགས་རམ།"
msgctxt ""
"main0108.xhp\n"
"hd_id3155364\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/main0108.xhp\" name=\"Help\">Help</link>"
msgstr "<link href=\"text/shared/main0108.xhp\" name=\"Help\">གྲོགས་རམ།</link>"
@@ -445,7 +444,6 @@ msgstr "<link href=\"text/shared/main0108.xhp\" name=\"Help\">གྲོགས་
msgctxt ""
"main0108.xhp\n"
"par_id3153990\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:HelpMenu\">The Help menu allows you to start and control the $[officename] Help system.</ahelp>"
msgstr "<ahelp hid=\".uno:HelpMenu\">གྲོགས་རམ་དཀར་ཆག་གིས་ཁྱོད་ལུ་ $[officename] གྲོགས་རམ་རིམ་ལུགས་ ཁ་ཕྱེ་ནི་དང་ཚད་འཛིན་འབད་བཅུགཔ་ཨིན།</ahelp>"
@@ -454,7 +452,6 @@ msgstr "<ahelp hid=\".uno:HelpMenu\">གྲོགས་རམ་དཀར་ཆ
msgctxt ""
"main0108.xhp\n"
"hd_id3147399\n"
-"5\n"
"help.text"
msgid "$[officename] Help"
msgstr "$[officename]གྲོགས་རམ།"
@@ -463,7 +460,6 @@ msgstr "$[officename]གྲོགས་རམ།"
msgctxt ""
"main0108.xhp\n"
"par_id3147576\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\".uno:HelpIndex\">Opens the main page of the $[officename] Help for the current application.</ahelp> You can scroll through the Help pages and you can search for index terms or any text."
msgstr "<ahelp hid=\".uno:HelpIndex\">ད་ལྟོའི་གློག་རིམ་གྱི་དོན་ལུ་ $[officename]གྲོགས་རམ་གྱི་ཤོག་ལེབ་ངོ་མ་འདི་ཁ་ཕྱེཝ་ཨིན། </ahelp>ཁྱོད་ཀྱིས་ གྲོགས་རམ་ཤོག་ལེབ་ལས་བརྒྱུད་དེ་བཤུད་སྒྲིལ་འབད་ཚུགསཔ་དང་ ཟུར་ཐོའི་ལམ་ལུགས་ ཡང་ན་ ཚིག་ཡིག་གང་རུང་ཅིག་འཚོལ་ཞིབ་འབད་ཚུགས།"
@@ -473,8 +469,8 @@ msgctxt ""
"main0108.xhp\n"
"par_idN1064A\n"
"help.text"
-msgid "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id1619006\">icon</alt></image>"
-msgstr "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id1619006\">ངོས་པར་</alt></image>"
+msgid "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id1619006\">icon</alt></image>"
+msgstr ""
#: main0108.xhp
msgctxt ""
@@ -487,6 +483,38 @@ msgstr "%PRODUCTNAME གྲོགས་རམ།"
#: main0108.xhp
msgctxt ""
"main0108.xhp\n"
+"hd_id230120170827187813\n"
+"help.text"
+msgid "User Guides"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id230120170827189453\n"
+"help.text"
+msgid "<ahelp hid=\".uno:Documentation\">Opens the documentation page in the web browser, where users can download, read or purchase %PRODUCTNAME user guides, written by the community.</ahelp>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id230120170827196253\n"
+"help.text"
+msgid "Get Help Online"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id230120170827196850\n"
+"help.text"
+msgid "<ahelp hid=\".uno:QuestionAnswers\">Opens the community support page in the web browser.</ahelp> Use this page to ask questions on using %PRODUCTNAME. For professional support with service level agreement, refer to the <link href=\"http://www.documentfoundation.org/gethelp/support/\">page of professional %PRODUCTNAME support</link>."
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
"hd_id2752763\n"
"help.text"
msgid "Send Feedback"
@@ -503,8 +531,23 @@ msgstr ""
#: main0108.xhp
msgctxt ""
"main0108.xhp\n"
+"par_id230120170903409011\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Restart in Safe Mode</link>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".uno:SafeMode\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
"hd_id4153881\n"
-"7\n"
"help.text"
msgid "License Information"
msgstr ""
@@ -513,7 +556,6 @@ msgstr ""
msgctxt ""
"main0108.xhp\n"
"par_id4144510\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowLicense\">Displays the Licensing and Legal information dialog.</ahelp>"
msgstr ""
@@ -522,7 +564,6 @@ msgstr ""
msgctxt ""
"main0108.xhp\n"
"hd_id5153881\n"
-"7\n"
"help.text"
msgid "%PRODUCTNAME Credits"
msgstr ""
@@ -531,7 +572,6 @@ msgstr ""
msgctxt ""
"main0108.xhp\n"
"par_id5144510\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowLicense\">Displays the CREDITS.odt document which lists the names of individuals who have contributed to OpenOffice.org source code (and whose contributions were imported into LibreOffice) or LibreOffice since 2010-09-28.</ahelp>"
msgstr ""
@@ -556,7 +596,6 @@ msgstr ""
msgctxt ""
"main0108.xhp\n"
"hd_id3153881\n"
-"7\n"
"help.text"
msgid "About $[officename]"
msgstr "$[officename]གི་སྐོར་ལས།"
@@ -565,7 +604,6 @@ msgstr "$[officename]གི་སྐོར་ལས།"
msgctxt ""
"main0108.xhp\n"
"par_id3144510\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\".uno:About\">Displays general program information such as version number and copyrights.</ahelp>"
msgstr "<ahelp hid=\".uno:About\">ཡོངས་ཁྱབ་ལས་རིམ་བརྡ་དོན་ བཀྲམ་སྟོན་འབདཝ་ཨིན་ དཔེར་ན་ ཐོན་རིམ་ཨང་དང་འདྲ་བཤུས་དབང་ཆ་ཚུ་</ahelp>"
@@ -582,7 +620,6 @@ msgstr "ཚད་ལྡན་གྱི་ཕྲ་རིང་།"
msgctxt ""
"main0201.xhp\n"
"hd_id3154186\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/main0201.xhp\" name=\"Standard Bar\">Standard Bar</link>"
msgstr "<link href=\"text/shared/main0201.xhp\" name=\"Standard Bar\">ཚད་ལྡན་ཕྲ་རིང་</link>"
@@ -591,7 +628,6 @@ msgstr "<link href=\"text/shared/main0201.xhp\" name=\"Standard Bar\">ཚད་
msgctxt ""
"main0201.xhp\n"
"par_id3145136\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"RID_ENVTOOLBOX\">The <emph>Standard</emph> bar is available in every $[officename] application.</ahelp>"
msgstr "<ahelp hid=\"RID_ENVTOOLBOX\"> <emph>ཚད་ལྡན་</emph> ཕྲ་རིང་འདི་ $[officename] གློག་རིམ་ཆ་མཉམ་ནང་འཐོབ་ཚུགས་</ahelp>"
@@ -600,7 +636,6 @@ msgstr "<ahelp hid=\"RID_ENVTOOLBOX\"> <emph>ཚད་ལྡན་</emph> ཕྲ
msgctxt ""
"main0201.xhp\n"
"hd_id3166460\n"
-"4\n"
"help.text"
msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open File\">Open File</link>"
msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open File\">ཡིག་སྣོད་ཁ་ཕྱེ་</link>"
@@ -774,7 +809,6 @@ msgid "Table Bar"
msgstr "ཐིག་ཁྲམ་གི་ཕྲ་རིང་།"
#: main0204.xhp
-#, fuzzy
msgctxt ""
"main0204.xhp\n"
"hd_id3145587\n"
@@ -791,7 +825,6 @@ msgid "<ahelp hid=\".\">The <emph>Table</emph> Bar contains functions you need w
msgstr "<ahelp hid=\"HID_TABLE_TOOLBOX\">ཐིག་ཁྲམ་ཚུ་དང་ <emph>གཅིག་ཁར་ལཱ་འབདཝ་ད་</emph>ཐིག་ཁྲམ་ཕྲ་རིང་འདི་གི་ནང་ ཁྱོད་རང་ལུ་དགོ་པའི་ལས་འགན་ཚུ་ཡོདཔ་ཨིན། ཁྱོད་ཀྱི་འོད་རྟགས་འདི་ཐིག་ཁྲམ་ཅིག་ནང་སྤོ་བཤུད་འབདཝ་ད་ འདི་བྱུངམ་ཨིན། </ahelp>"
#: main0204.xhp
-#, fuzzy
msgctxt ""
"main0204.xhp\n"
"hd_id319945759\n"
@@ -803,7 +836,6 @@ msgstr "#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\\n<link href=\"text/
msgctxt ""
"main0204.xhp\n"
"hd_id3147592\n"
-"6\n"
"help.text"
msgid "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Merge Cells</link>"
msgstr ""
@@ -812,7 +844,6 @@ msgstr ""
msgctxt ""
"main0204.xhp\n"
"hd_id3147820\n"
-"9\n"
"help.text"
msgid "<link href=\"text/swriter/01/05110500.xhp\" name=\"Delete Row\">Delete Row</link>"
msgstr "<link href=\"text/swriter/01/05110500.xhp\" name=\"Delete Row\">གྲལ་ཐིག་བཏོན་གཏང་།</link>"
@@ -821,7 +852,6 @@ msgstr "<link href=\"text/swriter/01/05110500.xhp\" name=\"Delete Row\">གྲ
msgctxt ""
"main0204.xhp\n"
"hd_id3147231\n"
-"10\n"
"help.text"
msgid "<link href=\"text/swriter/01/05120500.xhp\" name=\"Delete Column\">Delete Column</link>"
msgstr "<link href=\"text/swriter/01/05120500.xhp\" name=\"Delete Column\">ཀེར་ཐིག་བཏོན་གཏང་།</link>"
@@ -878,7 +908,6 @@ msgstr "$[officename] གཞི་རིམ་ཡིག་ཆ་ཚུ་ནང
msgctxt ""
"main0208.xhp\n"
"hd_id3148520\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/main0208.xhp\" name=\"Status Bar in $[officename] Basic Documents\">Status Bar in $[officename] Basic Documents</link>"
msgstr "<link href=\"text/shared/main0208.xhp\" name=\"Status Bar in $[officename] Basic Documents\"> $[officename] གཞི་རིམ་ཡིག་ཆ་ནང་ གནས་ཚད་ཕྲ་རིང་</link>"
@@ -887,7 +916,6 @@ msgstr "<link href=\"text/shared/main0208.xhp\" name=\"Status Bar in $[officenam
msgctxt ""
"main0208.xhp\n"
"par_id3154136\n"
-"2\n"
"help.text"
msgid "The <emph>Status</emph> Bar displays information about the current $[officename] Basic document."
msgstr "<emph>གནས་ཚད་</emph> ཕྲ་རིང་གིས་ ད་ལྟོའི་$[officename] གཞི་རིམ་ཡིག་ཆའི་སྐོར་ལས་ བརྡ་དོན་བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -904,7 +932,6 @@ msgstr "ཐིག་ཁྲམ་གནད་སྡུད་ཕྲ་རིང་
msgctxt ""
"main0212.xhp\n"
"hd_id3147102\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/main0212.xhp\" name=\"Table Data Bar\">Table Data Bar</link>"
msgstr "<link href=\"text/shared/main0212.xhp\" name=\"Table Data Bar\">ཐིག་ཁྲམ་ཕྲ་རིང་</link>"
@@ -913,7 +940,6 @@ msgstr "<link href=\"text/shared/main0212.xhp\" name=\"Table Data Bar\">ཐི
msgctxt ""
"main0212.xhp\n"
"par_id3153394\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\".\">Use the Table Data bar to control the data view. </ahelp>"
msgstr "<ahelp hid=\".\">གནད་སྡུད་ཀྱི་མཐོང་སྣང་ཚད་འཛིན་འབད་ནིའི་དོན་ལུ་ ཐིག་ཁྲམ་གནད་སྡུད་ཕྲ་རིང་ལག་ལེན་འཐབ། </ahelp>"
@@ -922,7 +948,6 @@ msgstr "<ahelp hid=\".\">གནད་སྡུད་ཀྱི་མཐོང་
msgctxt ""
"main0212.xhp\n"
"par_id3149346\n"
-"12\n"
"help.text"
msgid "The filtered data view is active until you change or cancel the sorting or filtering criteria. If a filter is active, the <emph>Apply Filter</emph> icon on the <emph>Table Data</emph> bar is activated."
msgstr "བཙགས་ཡོད་པའི་གནད་སྡུད་མཐོང་སྣང་འདི་ ཁྱོད་ཀྱིས་ བསྒྱུར་བཅོས་ ཡངན་ དབྱེ་སེལ་ཆ་མེད་གཏང་ནི་ ཡང་ན་ ཁྱད་ཚད་བཙགས་ཚུན་ ཤུགས་ལྡན་ཨིན། ཚགས་མ་འདི་ཤུགས་ལྡན་ཨིན་པ་ཅིན་ <emph>ཚགས་མ་འཇུག་སྤྱོད་འབད་</emph> ངོས་པར་ <emph>ཐིག་ཁྲམ་གནད་སྡུད་གུ་</emph>ཕྲ་རིང་འདི་ ཤུགས་ལྡན་བཟོ་འོང་།"
@@ -939,7 +964,6 @@ msgstr "<image id=\"img_id3153896\" src=\"cmd/sc_recsave.png\" width=\"0.222inch
msgctxt ""
"main0212.xhp\n"
"par_id3153360\n"
-"13\n"
"help.text"
msgid "Save Record"
msgstr "དྲན་ཐོ་སྲུངས།"
@@ -956,7 +980,6 @@ msgstr "<image id=\"img_id3154123\" src=\"cmd/sc_recundo.png\" width=\"0.222inch
msgctxt ""
"main0212.xhp\n"
"par_id3151382\n"
-"14\n"
"help.text"
msgid "Undo: Data Input"
msgstr "འབད་བཤོལ་:གནད་སྡུད་ཨིན་པུཊི།"
@@ -1013,7 +1036,6 @@ msgstr "<bookmark_value>ལག་ཆས་ཕྲ་རིང་ཚུ་; འབ
msgctxt ""
"main0213.xhp\n"
"hd_id3157896\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/main0213.xhp\" name=\"Form Navigation Bar\">Form Navigation Bar</link>"
msgstr "<link href=\"text/shared/main0213.xhp\" name=\"Form Navigation Bar\">འབྲི་ཤོག་འགྲུལ་བསྐྱོད་ཕྲ་རིང་</link>"
@@ -1022,7 +1044,6 @@ msgstr "<link href=\"text/shared/main0213.xhp\" name=\"Form Navigation Bar\">འ
msgctxt ""
"main0213.xhp\n"
"par_id3154751\n"
-"2\n"
"help.text"
msgid "The <emph>Form Navigation</emph> bar contains icons to edit a database table or to control the data view. The bar is displayed at the bottom of a document that contains fields that are linked to a database."
msgstr "<emph>འབྲི་ཤོག་འགྲུལ་བསྐྱོད་</emph>ཕྲ་རིང་ནང་ གནད་སྡུད་གཞི་རྟེན་གྱི་ཐིག་ཁྲམ་ཅིག་ཞུན་དག་འབད་ནི་དང་ ཡང་ན་ གནད་སྡུད་ཀྱི་མཐོང་སྣང་ཚད་འཛིན་འབད་ནིའི་དོན་ལུ་ ངོས་པར་ཚུ་ཡོདཔ་ཨིན། ཕྲ་རིང་འདི་གནད་སྡུད་གཞི་རྟེན་ལུ་འབྲེལ་མཐུད་འབད་དེ་ཡོད་མི་ས་སྒོ་ཚུ་ཡོདཔ་ཨིན་པའི་ཡིག་ཆ་་ཅིག་གི་མཇུག་ལུ་ བཀྲམ་སྟོན་འབད་དེ་ཡོདཔ་ཨིན།"
@@ -1031,7 +1052,6 @@ msgstr "<emph>འབྲི་ཤོག་འགྲུལ་བསྐྱོད་
msgctxt ""
"main0213.xhp\n"
"par_id3157958\n"
-"27\n"
"help.text"
msgid "You can use the <emph>Form Navigation</emph> bar to move within records as well as to insert and to delete records. If data is saved in a form, the changes are transferred to the database. The <emph>Form Navigation</emph> bar also contains sort, filter, and search functions for data records."
msgstr "ཁྱོད་ཀྱིས་ དྲན་ཐོ་ནང་འཁོད་ལུ་སྤོ་ནི་དང་ དེ་ལས་གཞན་བཙུགས་ནི་དང་དྲན་ཐོ་ཚུ་བཏོན་བཀོག་ནིའི་དོན་ལུ་ <emph>འགྲུལ་བསྐྱོད་རྣམ་པ་</emph> ཕྲ་རིང་ལག་ལེན་འཐབ་བཏུབ། གནད་སྡུད་འདི་འབྲི་ཤོག་ཅིག་ནང་སྲུང་སྟེ་ཡོད་པ་ཅིན་ བསྒྱུར་བཅོས་ཚུ་གནད་སྡུད་གཞི་རྟེན་ནང་གནས་སོར་གཏངམ་ཨིན། <emph>འགྲུལ་བསྐྱོད་རྣམ་པ་</emph>ཕྲ་རིང་ནང་ལུ་ གནད་སྡུད་དྲན་ཐོའི་དོན་ལུ་ དབྱེ་སེལ་དང་ཚགས་མ་དེ་ལས་ འཚོལ་ཞིབ་ལས་འགན་ཚུ་ཡང་ཡོདཔ་ཨིན།"
@@ -1048,7 +1068,6 @@ msgstr "ཁྱོད་ཀྱིས་ འབྲི་ཤོག་ཅིག་
msgctxt ""
"main0213.xhp\n"
"par_id3157910\n"
-"3\n"
"help.text"
msgid "The Navigation bar is only visible for forms connected to a database. In the <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Design view\">Design view</link> of a form, the Navigation bar is not available. See also <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\">Table Data bar</link>."
msgstr "འགྲུལ་བསྐྱོད་ཕྲ་རིང་འདི་ གནད་སྡུད་གཞི་རྟེན་ཅིག་ལུ་འབྲེལ་མཐུད་འབད་ཡོད་པའི་འབྲི་ཤོག་གི་དོན་ལུ་རྐྱངམ་ཅིག་མཐོང་ཚུགས། <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Design view\">བཀོད་སྒྲིག་མཐོང་སྣང་</link>འབྲི་ཤོག་གི་ནང་ན་ འགྲུལ་བསྐྱོད་ཕྲ་རིང་འཐོབ་མི་ཚུགས། དེ་མ་ཚད་ <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\">ཐིག་ཁྲམ་གནད་སྡུད་ཕྲ་རིང་</link>ལུ་ཡང་བལྟ།"
@@ -1057,7 +1076,6 @@ msgstr "འགྲུལ་བསྐྱོད་ཕྲ་རིང་འདི་
msgctxt ""
"main0213.xhp\n"
"par_id3153880\n"
-"22\n"
"help.text"
msgid "You can control the view of data with the sorting and filtering functions. Original tables are not changed."
msgstr "ཁྱོད་ཀྱིས་ དབྱེ་སེལ་དང་ལས་འགན་ཚུ་བཙགས་པའི་ཐོག་ལས་ གནད་སྡུད་མཐོང་སྣང་ཚད་འཛིན་འབད་ཚུགས། ཐིག་ཁྲམ་ངོ་མ་ཚུ་བསྒྱུར་བཅོས་མ་འབད།"
@@ -1066,7 +1084,6 @@ msgstr "ཁྱོད་ཀྱིས་ དབྱེ་སེལ་དང་ལ
msgctxt ""
"main0213.xhp\n"
"par_id3153062\n"
-"23\n"
"help.text"
msgid "The current sort order or filter is saved with the current document. If a filter is set, the <emph>Apply Filter</emph> icon on the <emph>Navigation</emph> bar is activated. Sorting and filtering features in the document can also be configured in the <emph>Form Properties</emph> dialog. (Choose <emph>Form Properties - Data</emph> - properties <link href=\"text/shared/02/01170203.xhp\" name=\"Sort\"><emph>Sort</emph></link> and <link href=\"text/shared/02/01170203.xhp\" name=\"Filter\"><emph>Filter</emph></link>)."
msgstr "ད་ལྟོའི་དབྱེ་སེལ་གོ་རིམ་ ཡང་ན་ ཚགས་མ་འདི་ ད་ལྟོའི་ཡིག་ཆ་དང་བཅས་སྲུངས་ཡི། ཚགས་མ་འདི་སྲུང་ཡོད་པ་ཅིན་ <emph>ཚགས་མ་འཇུག་སྤྱོད་འབད་</emph> གུ་ལུ་ <emph>འགྲུལ་བསྐྱོད་</emph> ཕྲ་རིང་འདི་ཤུགས་ལྡན་བཟོ་འོང་། ཡིག་ཆ་ནང་དབྱེ་སེལ་དང་བཙགས་ནིའི་ཁྱད་རྣམ་ཚུ་ <emph>རྒྱུ་དངོས་རྣམ་པ་ཚུ་</emph>ཌའི་ལོག་ནང་ལུ་ཡང་རིམ་སྒྲིག་འབད་ཚུགས། ( <emph>རྒྱུ་དངོས་རྣམ་པ་ - གནད་སྡུད་</emph> - རྒྱུ་དངོས་ཚུ་ <link href=\"text/shared/02/01170203.xhp\" name=\"Sort\"><emph>Sort</emph></link> དང་ <link href=\"text/shared/02/01170203.xhp\" name=\"Filter\"><emph>ཚགས་མ་</emph></link> གདམས་)།"
@@ -1075,7 +1092,6 @@ msgstr "ད་ལྟོའི་དབྱེ་སེལ་གོ་རིམ་
msgctxt ""
"main0213.xhp\n"
"par_id3149810\n"
-"24\n"
"help.text"
msgid "If an SQL statement is the basis for a form (see <emph>Form Properties</emph> - tab <emph>Data</emph> - <link href=\"text/shared/02/01170203.xhp\" name=\"Data Source\"><emph>Data Source</emph></link>), then the filter and sort functions are only available when the SQL statement refers to only one table and is not written in the native SQL mode."
msgstr "f an SQL statement is the basis for a form (see <emph>Form Properties</emph> - tab <emph>Data</emph> - <link href=\"text/shared/02/01170203.xhp\" name=\"Data Source\"><emph>Data Source</emph></link>), then the filter and sort functions are only available when the SQL statement refers to only one table and is not written in the native SQL mode."
@@ -1084,7 +1100,6 @@ msgstr "f an SQL statement is the basis for a form (see <emph>Form Properties</e
msgctxt ""
"main0213.xhp\n"
"hd_id3153192\n"
-"4\n"
"help.text"
msgid "Absolute Record"
msgstr "དྲན་ཐོ་ཡང་དག"
@@ -1093,7 +1108,6 @@ msgstr "དྲན་ཐོ་ཡང་དག"
msgctxt ""
"main0213.xhp\n"
"par_id3146922\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\".uno:AbsoluteRecord\">Shows the number of the current record. Enter a number to go to the corresponding record.</ahelp>"
msgstr "<ahelp hid=\".uno:AbsoluteRecord\">ད་ལྟོའི་དྲན་ཐོ་གི་ཨང་གྲངས་ཚུ་སྟོནམ་ཨིན། ཆ་མཉམ་དྲན་ཐོ་ལུ་འགྱོ་ནིའི་དོན་ལས་ ཨང་གྲངས་བཙུགས། </ahelp>"
@@ -1102,7 +1116,6 @@ msgstr "<ahelp hid=\".uno:AbsoluteRecord\">ད་ལྟོའི་དྲན་
msgctxt ""
"main0213.xhp\n"
"hd_id3153573\n"
-"6\n"
"help.text"
msgid "First Record"
msgstr "དྲན་ཐོ་དང་པམ།"
@@ -1119,7 +1132,6 @@ msgstr "<image id=\"img_id3150753\" src=\"cmd/sc_nextrecord.png\" width=\"0.222i
msgctxt ""
"main0213.xhp\n"
"par_id3155308\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\".uno:FirstRecord\">Takes you to the first record.</ahelp>"
msgstr "<ahelp hid=\".uno:FirstRecord\">གིས་ཁྱོད་དྲན་ཐོ་དང་པམ་ནང་འབགཔཨིན། </ahelp>"
@@ -1128,7 +1140,6 @@ msgstr "<ahelp hid=\".uno:FirstRecord\">གིས་ཁྱོད་དྲན་
msgctxt ""
"main0213.xhp\n"
"hd_id3154792\n"
-"8\n"
"help.text"
msgid "Previous Record"
msgstr "ཧེ་མའི་དྲན་ཐོ།"
@@ -1145,7 +1156,6 @@ msgstr "<image id=\"img_id3147394\" src=\"cmd/sc_prevrecord.png\" width=\"0.222i
msgctxt ""
"main0213.xhp\n"
"par_id3157846\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\".uno:PrevRecord\">Takes you to the previous record.</ahelp>"
msgstr "<ahelp hid=\".uno:PrevRecord\">གིས་ཁྱོད་ ཧེ་མའི་དྲན་ཐོ་ལུ་འབགཔ་ཨིན། </ahelp>"
@@ -1154,7 +1164,6 @@ msgstr "<ahelp hid=\".uno:PrevRecord\">གིས་ཁྱོད་ ཧེ་མ
msgctxt ""
"main0213.xhp\n"
"hd_id3149121\n"
-"10\n"
"help.text"
msgid "Next Record"
msgstr "དྲན་ཐོ་ཤུལ་མམ།"
@@ -1171,7 +1180,6 @@ msgstr "<image id=\"img_id3150753\" src=\"cmd/sc_nextrecord.png\" width=\"0.222i
msgctxt ""
"main0213.xhp\n"
"par_id3148914\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\".uno:NextRecord\">Takes you to the next record.</ahelp>"
msgstr "<ahelp hid=\".uno:NextRecord\">གིས་ ཁྱོད་ཤུལ་མམ་གྱི་དྲན་ཐོ་ལུ་འབགཔ་ཨིན། </ahelp>"
@@ -1180,7 +1188,6 @@ msgstr "<ahelp hid=\".uno:NextRecord\">གིས་ ཁྱོད་ཤུལ་
msgctxt ""
"main0213.xhp\n"
"hd_id3148997\n"
-"12\n"
"help.text"
msgid "Last Record"
msgstr "མཇུག་གི་དྲན་ཐོ།"
@@ -1197,7 +1204,6 @@ msgstr "<image id=\"img_id3155578\" src=\"cmd/sc_newrecord.png\" width=\"0.222in
msgctxt ""
"main0213.xhp\n"
"par_id3151248\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\".uno:LastRecord\">Takes you to the last record.</ahelp>"
msgstr "<ahelp hid=\".uno:LastRecord\">གིས་ ཁྱོད་མཇུག་གི་དྲན་ཐོ་ལུ་འབགཔ་ཨིན། </ahelp>"
@@ -1206,7 +1212,6 @@ msgstr "<ahelp hid=\".uno:LastRecord\">གིས་ ཁྱོད་མཇུག
msgctxt ""
"main0213.xhp\n"
"hd_id3145231\n"
-"14\n"
"help.text"
msgid "Save Record"
msgstr "དྲན་ཐོ་སྲུངས།"
@@ -1223,7 +1228,6 @@ msgstr "<image id=\"img_id3150941\" src=\"cmd/sc_recsave.png\" width=\"0.222inch
msgctxt ""
"main0213.xhp\n"
"par_id3146808\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\".uno:RecSave\">Saves a new data entry. The change is registered in the database.</ahelp>"
msgstr "<ahelp hid=\".uno:RecSave\">གིས་ གནད་སྡུད་ཐོ་འགོད་གསརཔ་ཅིག་སྲུངམ་ཨིན། བསྒྱུར་བཅོས་འདི་གནད་སྡུད་གཞི་རྟེན་་ནང་ལུ་ ཐོ་འགོད་འབད་ཡི། </ahelp>"
@@ -1232,7 +1236,6 @@ msgstr "<ahelp hid=\".uno:RecSave\">གིས་ གནད་སྡུད་ཐ
msgctxt ""
"main0213.xhp\n"
"hd_id3158446\n"
-"16\n"
"help.text"
msgid "Undo: Data entry"
msgstr "འབད་བཤོལ་:གནད་སྡུད་ཐོ་འགོད།"
@@ -1249,7 +1252,6 @@ msgstr "<image id=\"img_id3156138\" src=\"cmd/sc_recundo.png\" width=\"0.222inch
msgctxt ""
"main0213.xhp\n"
"par_id3151276\n"
-"17\n"
"help.text"
msgid "<ahelp hid=\".uno:RecUndo\">Allows you to undo a data entry.</ahelp>"
msgstr "<ahelp hid=\".uno:RecUndo\">གིས་ ཁྱོད་ལུ་གནད་སྡུད་ཐོ་འགོད་འབད་བཤོལ་བཅུགཔ་ཨིན།</ahelp>"
@@ -1258,7 +1260,6 @@ msgstr "<ahelp hid=\".uno:RecUndo\">གིས་ ཁྱོད་ལུ་གན
msgctxt ""
"main0213.xhp\n"
"hd_id3149967\n"
-"18\n"
"help.text"
msgid "New Record"
msgstr "དྲན་ཐོ་གསརཔ།"
@@ -1275,7 +1276,6 @@ msgstr "<image id=\"img_id3155578\" src=\"cmd/sc_newrecord.png\" width=\"0.222in
msgctxt ""
"main0213.xhp\n"
"par_id3148460\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\".uno:NewRecord\">Creates a new record.</ahelp>"
msgstr "<ahelp hid=\".uno:NewRecord\">དྲན་ཐོ་གསརཔ་ཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན།</ahelp>"
@@ -1284,7 +1284,6 @@ msgstr "<ahelp hid=\".uno:NewRecord\">དྲན་ཐོ་གསརཔ་ཅི
msgctxt ""
"main0213.xhp\n"
"hd_id3153659\n"
-"20\n"
"help.text"
msgid "Delete Record"
msgstr "དྲན་ཐོ་བཏོན་གཏང་།"
@@ -1301,7 +1300,6 @@ msgstr "<image id=\"img_id3166434\" src=\"cmd/sc_deleterecord.png\" width=\"0.22
msgctxt ""
"main0213.xhp\n"
"par_id3148817\n"
-"21\n"
"help.text"
msgid "<ahelp hid=\".uno:DeleteRecord\">Deletes a record. A query needs to be confirmed before deleting.</ahelp>"
msgstr "<ahelp hid=\".uno:DeleteRecord\">གིས་ དྲན་ཐོ་བཏོན་གཏངམ་ཨིན། དེ་བཏོན་མ་གཏང་པའི་ཧེ་མ་ འདྲི་དཔྱད་ངེས་དཔྱད་འབད་དགོཔ་ཨིན།</ahelp>"
@@ -1310,7 +1308,6 @@ msgstr "<ahelp hid=\".uno:DeleteRecord\">གིས་ དྲན་ཐོ་བ
msgctxt ""
"main0213.xhp\n"
"hd_id3156448\n"
-"25\n"
"help.text"
msgid "<link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">Find Record</link>"
msgstr "<link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">དྲན་ཐོ་འཚོལ་</link>"
@@ -1319,7 +1316,6 @@ msgstr "<link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">དྲ
msgctxt ""
"main0213.xhp\n"
"hd_id3148599\n"
-"26\n"
"help.text"
msgid "<link href=\"text/shared/02/12100100.xhp\" name=\"Sort\">Sort</link>"
msgstr "<link href=\"text/shared/02/12100100.xhp\" name=\"Sort\">དབྱེ་སེལ་འབད་</link>"
@@ -1336,7 +1332,6 @@ msgstr "བཀོད་སྒྲིག་ཕྲ་རིང་ འདྲི་
msgctxt ""
"main0214.xhp\n"
"hd_id3159176\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/main0214.xhp\" name=\"Query Design Bar\">Query Design Bar</link>"
msgstr "<link href=\"text/shared/main0214.xhp\" name=\"Query Design Bar\">འདྲི་དཔྱད་བཀོད་སྒྲིག་ཕྲ་རིང་</link>"
@@ -1345,7 +1340,6 @@ msgstr "<link href=\"text/shared/main0214.xhp\" name=\"Query Design Bar\">འད
msgctxt ""
"main0214.xhp\n"
"par_id3150085\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">When creating or editing an SQL query, use the icons in the <emph>Query Design</emph> Bar to control the display of data.</ahelp>"
msgstr "<ahelp hid=\".\"> ཨེསི་ཀིའུ་ཨེལ་འདྲི་དཔྱད་ཅིག་ཞུན་དག་འབདཝ་ད་ ཡང་ན་ གསར་བསྐྲུན་འབདཝ་ད་ གནས་སྡུད་ཀྱི་བཀྲམ་སྟོན་ཚད་འཛིན་འབད་ནི་ལུ་<emph>འདྲི་དཔྱད་བཀོད་སྒྲིག་</emph>ཕྲ་རིང་ནང་གི་ ངོས་དཔར་ཚུ་ལག་ལེན་འཐབ།</ahelp>"
@@ -1354,7 +1348,6 @@ msgstr "<ahelp hid=\".\"> ཨེསི་ཀིའུ་ཨེལ་འདྲི
msgctxt ""
"main0214.xhp\n"
"par_id3150276\n"
-"5\n"
"help.text"
msgid "Depending on whether you have created the query or view in the <emph>Design</emph> or <emph>SQL</emph> tab page, the following icons appear:"
msgstr "འོག་གི་ངོས་པར་ཚུ་འབྱུང་ཚུལ་ཡང་ ཁྱོད་ཀྱིས་ <emph>Design</emph> ཡང་ན་ <emph>SQL</emph> མཆོང་ལྡེ་ཤོག་ལེབ་ནང་ འདྲི་དཔྱད་ ཡངན་ མཐོང་སྣང་གསར་བསྐྲུན་འབད་ཡོདཔ་དང་མེདཔ་ལུ་རག་ལསཔ་ཨིན།"
@@ -1363,7 +1356,6 @@ msgstr "འོག་གི་ངོས་པར་ཚུ་འབྱུང་ཚ
msgctxt ""
"main0214.xhp\n"
"hd_id3151384\n"
-"3\n"
"help.text"
msgid "<link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link>"
msgstr "<link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">ཐིག་ཁྲམ་ཚུ་ཁ་སྐོང་འབད་</link>"
@@ -1372,7 +1364,6 @@ msgstr "<link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">ཐིག
msgctxt ""
"main0214.xhp\n"
"par_id3151041\n"
-"4\n"
"help.text"
msgid "The following icon is on the <emph>SQL</emph> tab page:"
msgstr "འོག་གི་ངོས་པར་འདི་ <emph>SQL</emph>མཆོང་ལྡེ་ཤོག་ལེབ་གུ་ཡོད་:"
@@ -1389,7 +1380,6 @@ msgstr "འབྲི་ཤོག་བཀོད་སྒྲིག་ལག་ཆ
msgctxt ""
"main0226.xhp\n"
"hd_id3148520\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/main0226.xhp\" name=\"Form Design Toolbar\">Form Design Toolbar</link>"
msgstr "<link href=\"text/shared/main0226.xhp\" name=\"Form Design Toolbar\">འབྲི་ཤོག་བཀོད་སྒྲིག་ལག་ཆས་ཕྲ་རིང་</link>"
@@ -1398,7 +1388,6 @@ msgstr "<link href=\"text/shared/main0226.xhp\" name=\"Form Design Toolbar\">འ
msgctxt ""
"main0226.xhp\n"
"par_id3155364\n"
-"2\n"
"help.text"
msgid "The Form Design toolbar becomes visible as soon as you select a form object when working in the design mode."
msgstr "ཁྱོད་ཀྱིས་ བཀོད་སྒྲིག་ཐབས་ལམ་ནང་ལཱ་འབད་བའི་བསྒང་ འབྲི་ཤོག་ཅིག་སེལ་འཐུ་འབད་བའི་ཚེ་ར་ འབྲི་ཤོག་བཀོད་སྒྲིག་ལག་ཆས་ཕྲ་རིང་འདི་མཐོང་ཚུགསཔ་ལུ་འགྱུརཝ་ཨིན།"
@@ -1407,7 +1396,6 @@ msgstr "ཁྱོད་ཀྱིས་ བཀོད་སྒྲིག་ཐབ
msgctxt ""
"main0226.xhp\n"
"hd_id3163802\n"
-"8\n"
"help.text"
msgid "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">Add Field</link>"
msgstr "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">ས་སྒོ་ཁ་སྐོང་འབད་</link>"
@@ -1416,7 +1404,6 @@ msgstr "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">ས་ས
msgctxt ""
"main0226.xhp\n"
"hd_id3150669\n"
-"4\n"
"help.text"
msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
msgstr "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">སྡེ་ཚན་</link>"
@@ -1425,7 +1412,6 @@ msgstr "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">སྡེ་
msgctxt ""
"main0226.xhp\n"
"hd_id3147335\n"
-"5\n"
"help.text"
msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">སྡེ་ཚན་བཟོ་བཤོལ་</link>"
@@ -1434,7 +1420,6 @@ msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">སྡེ་
msgctxt ""
"main0226.xhp\n"
"hd_id3156024\n"
-"6\n"
"help.text"
msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Enter Group</link>"
msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">སྡེ་ཚན་ཐོ་བཀོད་འབད།</link>"
@@ -1443,7 +1428,6 @@ msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">སྡ
msgctxt ""
"main0226.xhp\n"
"hd_id3149295\n"
-"7\n"
"help.text"
msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">སྡེ་ཚན་ཕྱིར་འཐོན་འབད་</link>"
@@ -1452,7 +1436,6 @@ msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">སྡེ
msgctxt ""
"main0226.xhp\n"
"hd_id3150398\n"
-"9\n"
"help.text"
msgid "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Display Grid</link>"
msgstr "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">གིརིཌི་བཀྲམ་སྟོན་འབད།</link>"
@@ -1461,7 +1444,6 @@ msgstr "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">གི
msgctxt ""
"main0226.xhp\n"
"hd_id3148798\n"
-"10\n"
"help.text"
msgid "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Snap to Grid</link>"
msgstr "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">གིརིཌི་ པར་བཏབ་</link>"
@@ -1470,7 +1452,6 @@ msgstr "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">གི
msgctxt ""
"main0226.xhp\n"
"par_id3145419\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\".uno:GridUse\">Specifies that you can move objects only between grid points.</ahelp>"
msgstr "<ahelp hid=\".uno:GridUse\">ཁྱོད་ཀྱིས་ གིརིཌི་ས་ཚིགས་ཀྱི་བར་ན་རྐྱངམ་ཅིག་ དངོས་པོ་ཚུ་སྤོ་ཚུགས་པའི་གསལ་བཀོད་འབདཝ་ཨིན། </ahelp>"
@@ -1479,7 +1460,6 @@ msgstr "<ahelp hid=\".uno:GridUse\">ཁྱོད་ཀྱིས་ གིརི
msgctxt ""
"main0226.xhp\n"
"hd_id3148920\n"
-"11\n"
"help.text"
msgid "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Helplines While Moving</link>"
msgstr "<link href=\"text/shared/02/01171400.xhp\" name=\"Guides When Moving\">འགུལ་བསྐྱོད་འབད་བའི་སྐབས་ལུ་འཁྱིདཔ་ཨིན་</link>"
@@ -1504,7 +1484,6 @@ msgstr "<bookmark_value>གྲལ་ཐིག་ཚུ་; དོན་ཚན་
msgctxt ""
"main0227.xhp\n"
"hd_id3149987\n"
-"39\n"
"help.text"
msgid "<link href=\"text/shared/main0227.xhp\" name=\"Edit Points Bar\">Edit Points Bar</link>"
msgstr "<link href=\"text/shared/main0227.xhp\" name=\"Edit Points Bar\">ས་ཚིགས་ཕྲ་རིང་ཚུ་ཞུན་དག་འབད་</link>"
@@ -1513,7 +1492,6 @@ msgstr "<link href=\"text/shared/main0227.xhp\" name=\"Edit Points Bar\">ས་
msgctxt ""
"main0227.xhp\n"
"par_id3150402\n"
-"40\n"
"help.text"
msgid "<ahelp hid=\"HID_BEZIER_TOOLBOX\">The <emph>Edit Points </emph>Bar appears when you select a polygon object and click <emph>Edit Points</emph>.</ahelp>"
msgstr "<ahelp hid=\"HID_BEZIER_TOOLBOX\">ཁྱོད་ཀྱིས་ ཟུར་མང་དབྱིབས་ཅིག་སེལ་འཐུ་འབད་བའི་ཚེ་དང་ <emph>ས་ཚིགས་ཞུན་དག་འབད་</emph>ལུ་ཨེབ་གཏང་འབད་བའི་བསྒང་ལུ་ <emph>ས་ཚིགས་ཞུན་དག་འབད་</emph>ཕྲ་རིང་འབྱུངམ་ཨིན།</ahelp>"
@@ -1522,7 +1500,6 @@ msgstr "<ahelp hid=\"HID_BEZIER_TOOLBOX\">ཁྱོད་ཀྱིས་ ཟུ
msgctxt ""
"main0227.xhp\n"
"par_id3144762\n"
-"68\n"
"help.text"
msgid "The functions provided allow you to edit the points of a curve or an object converted to a curve. The following icons are available:"
msgstr "བྱིན་ཏེ་ཡོད་པའི་ལས་འགན་ཚུ་གིས་ ཁྱོད་ལུ་གུག་གུགཔ་གི་ས་ཚིགས་ ཡང་ན་ གུག་གུགཔ་ཅིག་ལུ་གཞི་བསྒྱུར་འབད་ཡོད་པའི་དངོས་པོ་ཚུ་ཞུན་དག་འབད་བཅུགཔ་ཨིན། འོག་གི་ངོས་པར་ཚུ་འཐོབ་ཚུགསཔ་ཨིན་:"
@@ -1531,7 +1508,6 @@ msgstr "བྱིན་ཏེ་ཡོད་པའི་ལས་འགན་ཚ
msgctxt ""
"main0227.xhp\n"
"hd_id3153105\n"
-"42\n"
"help.text"
msgid "Edit Points"
msgstr "ས་ཚིགས་ཞུན་དག་འབད།"
@@ -1540,7 +1516,6 @@ msgstr "ས་ཚིགས་ཞུན་དག་འབད།"
msgctxt ""
"main0227.xhp\n"
"par_id3159151\n"
-"43\n"
"help.text"
msgid "The <link href=\"text/shared/01/05270000.xhp\" name=\"Edit Points\"><emph>Edit Points</emph></link> icon allows you to activate or deactivate the edit mode for Bézier objects. In the edit mode, individual points of the drawing object can be selected."
msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Edit Points\"><emph>Edit Points</emph></link>ངོས་པར་གིས་ཁྱོད་ལུ་ བི་ཛི་ཡར་དངོས་པོའི་དོན་ལུ་ཞུན་དག་ཐབས་ལམ་ ཤུགས་ལྡན་ ཡང་ན་ ཤུགས་མེད་བཟོ་བཅུགཔ་ཨིན། ཞུན་དག་ཐབས་ལམ་ནང་ པར་རིས་དངོས་པོའི་ས་ཚིགས་ཚུ་རེ་རེ་བཞིན་དུ་སེལ་འཐུ་འབད་ཚུགས།"
@@ -1557,7 +1532,6 @@ msgstr "<image id=\"img_id3153951\" src=\"cmd/sc_toggleobjectbeziermode.png\" wi
msgctxt ""
"main0227.xhp\n"
"par_id3150105\n"
-"44\n"
"help.text"
msgid "Edit Points"
msgstr "ས་ཚིགས་ཞུན་དག་འབད།"
@@ -1566,7 +1540,6 @@ msgstr "ས་ཚིགས་ཞུན་དག་འབད།"
msgctxt ""
"main0227.xhp\n"
"hd_id3146976\n"
-"45\n"
"help.text"
msgid "Move Points"
msgstr "ས་ཚིགས་ཚུ་སྤོ།"
@@ -1575,7 +1548,6 @@ msgstr "ས་ཚིགས་ཚུ་སྤོ།"
msgctxt ""
"main0227.xhp\n"
"par_id3147435\n"
-"46\n"
"help.text"
msgid "<ahelp hid=\".uno:BezierMove\">Activates a mode in which you can move points.</ahelp> The mouse pointer displays a small empty square when resting on a point. Drag that point to another location. The curve on both sides of the point follows the movement; the section of the curve between the next points changes shape."
msgstr "<ahelp hid=\".uno:BezierMove\">ཁྱོད་ཀྱིས་ ས་ཚིགས་སྤོ་ཚུགས་པའི་ཐབས་ལམ་ཅིག་ཤུགས་ལྡན་བཟོཝ་ཨིན། </ahelp> མའུསི་དཔག་བྱེད་ཀྱིས་ ས་ཚིགས་གུ་ངལ་འཚོ་བའི་སྐབས་ལུ་ གྲུ་བཞི་སྟོངམ་ཆུང་ཀུ་ཅིག་བཀྲམ་སྟོན་འབདཝ་ཨིན། ས་ཚིགས་དེ་ གནས་ཁོངས་གཞན་ཅིག་ནང་འདྲུད། ས་ཚིགས་ཀྱི་མཐའམ་གཉིས་ལུ་ཡོད་པའི་གུག་གུགཔ་གིས་ འགུལ་བསྐྱོད་ཤུལ་དཔྱད་འབདཝ་ཨིན་ ས་ཚིགས་ཤུལ་མམ་གྱི་བར་ན་ཡོད་པའི་གུག་གུགཔ་དབྱེ་ཚན་གྱི་དབྱིབས་ བསྒྱུར་བཅོས་འབདཝ་ཨིན།"
@@ -1584,7 +1556,6 @@ msgstr "<ahelp hid=\".uno:BezierMove\">ཁྱོད་ཀྱིས་ ས་ཚ
msgctxt ""
"main0227.xhp\n"
"par_id3149481\n"
-"47\n"
"help.text"
msgid "Point at the curve between two points or within a closed curve and drag the mouse to shift the entire curve without distorting the form."
msgstr "ས་ཚིགས་གཉིས་ཀྱི་བར་ན་གུག་གུགཔ་གི་ས་ཚིགས་ ཡངན་ གུག་གུགཔ་ཐག་ཉེ་ཤོས་ཅིག་གི་ནང་ན་དང་ འབྲི་ཤོག་བཟོ་ཉེས་མ་བཟོ་བར་ གུག་གུགཔ་ཧྲིལ་བུ་སྦེ་བཤུད་ནིའི་དོན་ལུ་མའུསི་འདྲུད།"
@@ -1601,7 +1572,6 @@ msgstr "<image id=\"img_id3149377\" src=\"cmd/sc_beziermove.png\" width=\"0.222i
msgctxt ""
"main0227.xhp\n"
"par_id3147397\n"
-"48\n"
"help.text"
msgid "Move Points"
msgstr "ས་ཚིགས་ཚུ་སྤོ།"
@@ -1610,7 +1580,6 @@ msgstr "ས་ཚིགས་ཚུ་སྤོ།"
msgctxt ""
"main0227.xhp\n"
"hd_id3150115\n"
-"49\n"
"help.text"
msgid "Insert Points"
msgstr "ས་ཚིགས་ཚུ་བཙུགས།"
@@ -1619,7 +1588,6 @@ msgstr "ས་ཚིགས་ཚུ་བཙུགས།"
msgctxt ""
"main0227.xhp\n"
"par_id3160478\n"
-"50\n"
"help.text"
msgid "<ahelp hid=\".uno:BezierInsert\">Activates the insert mode. This mode allows you to insert points.</ahelp> You can also move points, just as in the move mode. If, however, you click at the curve between two points and move the mouse a little while holding down the mouse button you insert a new point. The point is a smooth point, and the lines to the control points are parallel and remain so when moved."
msgstr "<ahelp hid=\".uno:BezierInsert\">བཙུགས་པའི་ཐབས་ལམ་ ཤུགས་ལྡན་བཟོ། ཐབས་ལམ་འདི་གིས་ ཁྱོད་ལུ་ས་ཚིགས་ཚུ་བཙུགས་བཅུགཔ་ཨིན། </ahelp>དེ་མ་ཚད་ སྤོ་བཤུད་ཐབས་ལམ་ནང་བཟུམ་སྦེ་ ཁྱོད་ཀྱིས་ས་ཚིགས་ཚུ་སྤོ་ཚུགས། ག་དེ་ཨིན་རུང་ ས་ཚིགས་གཉིས་ཀྱི་བར་ན་ གུག་གུགཔ་ལུ་ཨེབ་གཏང་འབད་ཞིནམ་ལས་ མའུསི་འདི་དུམ་གྲ་ཅིག་སྤོ་བཤུད་འབད་དེ་ མའུསི་ཨེབ་རྟ་འདི་མར་ཁ་ཐུག་ལུ་བཟུང་སྟེ་ཡོད་པའི་སྐབས་ ས་ཚིགས་གསརཔ་ཅིག་བཙུགས། དེ་ཡང་ས་ཚིགས་ཧུམ་ཁྱུག་ཁྱུག་ཨིནམ་དང་ ཚད་འཛིན་ས་ཚིགས་ལུ་གྲལ་ཐིག་ཚུ་མཉམ་སྤྱོད་དང་སྤོ་བཤུད་འབད་བའི་སྐབས་ལུ་འགྱུར་བ་མེད་པར་གནསཔ་ཨིན།"
@@ -1628,7 +1596,6 @@ msgstr "<ahelp hid=\".uno:BezierInsert\">བཙུགས་པའི་ཐབས
msgctxt ""
"main0227.xhp\n"
"par_id3157846\n"
-"51\n"
"help.text"
msgid "If you wish to create a corner point you must first insert either a smooth or a symmetrical point which is then converted to a corner point by using <emph>Corner Point</emph>."
msgstr "སྒྱིད་ཁུག་གི་ས་ཚིགས་ཅིག་གསར་བསྐྲུན་འབད་དགོ་མནོ་བ་ཅིན་ ཁྱོད་ཀྱིས་དང་པ་ར་ ཧུམ་ཁྱུག་ཁྱུ་ ཡང་ན་ མཛེས་སྙོམས་ཀྱི་ས་ཚིགས་ཅིག་བཙུགས་དགོ་ དེ་ཡང་<emph>སྒྱིད་ཁུག་</emph>ལག་ལེན་་འཐབ་པའི་ཐོག་ལས་ སྒྱིད་ཁུག་ས་ཚིགས་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན།"
@@ -1645,7 +1612,6 @@ msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_bezierinsert.png\" width=\"0.22
msgctxt ""
"main0227.xhp\n"
"par_id3153710\n"
-"54\n"
"help.text"
msgid "Insert Points"
msgstr "ས་ཚིགས་ཚུ་བཙུགས།"
@@ -1654,7 +1620,6 @@ msgstr "ས་ཚིགས་ཚུ་བཙུགས།"
msgctxt ""
"main0227.xhp\n"
"hd_id3149020\n"
-"55\n"
"help.text"
msgid "Delete Points"
msgstr "ས་ཚིགས་ཚུ་བཏོན་གཏང་།"
@@ -1663,7 +1628,6 @@ msgstr "ས་ཚིགས་ཚུ་བཏོན་གཏང་།"
msgctxt ""
"main0227.xhp\n"
"par_id3148917\n"
-"56\n"
"help.text"
msgid "<ahelp hid=\".uno:BezierDelete\">Use the <emph>Delete Points</emph> icon to delete one or several selected points. If you wish to select several points click the appropriate points while holding down the Shift key.</ahelp>"
msgstr "<ahelp hid=\".uno:BezierDelete\">ས་ཚིགས་གཅིག་ ཡངན་ ལེ་ཤ་སེལ་འཐུ་འབད་ཡོད་པའི་ས་ཚིགས་ཚུ་བཏོན་གཏང་ནིའི་དོན་ལུ་ <emph>ས་ཚིགས་བཏོན་གཏང་</emph> ལག་ལེན་འཐབ། ས་ཚིགས་ལེ་ཤ་ སེལ་འཐུ་འབད་དགོ་མནོ་བ་ཅིན་ སོར་ལྡེ་མར་བཟུང་འབད་བའི་སྐབས་འོས་ལྡན་ས་ཚིགས་ལུ་ཨེབ་གཏང་འབད། </ahelp>"
@@ -1672,7 +1636,6 @@ msgstr "<ahelp hid=\".uno:BezierDelete\">ས་ཚིགས་གཅིག་
msgctxt ""
"main0227.xhp\n"
"par_id3153766\n"
-"57\n"
"help.text"
msgid "First select the points to be deleted, and then click this icon, or press Del."
msgstr "དང་པ་ར་ བཏོན་གཏང་ནི་ཨིན་པའི་ས་ཚིགས་ཚུ་སེལ་འཐུ་འབད་ཞིནམ་ལས་ ངོས་པར་འདི་ལུ་ཨེབ་གཏང་འབད་ ཡངན་ ཌི་ཨི་ཨེལ་ལུ་ཨེབ།"
@@ -1689,7 +1652,6 @@ msgstr "<image id=\"img_id3146920\" src=\"cmd/sc_bezierdelete.png\" width=\"0.22
msgctxt ""
"main0227.xhp\n"
"par_id3155961\n"
-"58\n"
"help.text"
msgid "Delete Points"
msgstr "ས་ཚིགས་ཚུ་བཏོན་གཏང་།"
@@ -1698,7 +1660,6 @@ msgstr "ས་ཚིགས་ཚུ་བཏོན་གཏང་།"
msgctxt ""
"main0227.xhp\n"
"hd_id3147361\n"
-"59\n"
"help.text"
msgid "Split Curve"
msgstr "གུག་གུགཔ་བཤག"
@@ -1707,7 +1668,6 @@ msgstr "གུག་གུགཔ་བཤག"
msgctxt ""
"main0227.xhp\n"
"par_id3151248\n"
-"60\n"
"help.text"
msgid "<ahelp hid=\".uno:BezierCutLine\">The<emph> Split Curve </emph>icon splits a curve. Select the point or points where you want to split the curve, then click the icon</ahelp>."
msgstr "<ahelp hid=\".uno:BezierCutLine\"> <emph> གུག་གུགཔ་གཤག་ </emph>གིས་ གུག་གུགཔ་གཤགཔ་ཨིན། ཁྱོད་ཀྱིས་ གུག་གུགཔ་ཚུ་ག་སྟེ་ལུ་གཤག་ནི་ཨིན་ན་ ས་ཚིགས་ ཡངན་ ས་ཚིགས་ཚུ་སེལ་འཐུ་འབད་ཞིནམ་ལས་ ངོས་པར་</ahelp>ལུ་ཨེབ་གཏང་འབད།"
@@ -1724,7 +1684,6 @@ msgstr "<image id=\"img_id3148489\" src=\"cmd/sc_beziercutline.png\" width=\"0.2
msgctxt ""
"main0227.xhp\n"
"par_id3152581\n"
-"61\n"
"help.text"
msgid "Split Curve"
msgstr "གུག་གུགཔ་བཤག"
@@ -1733,7 +1692,6 @@ msgstr "གུག་གུགཔ་བཤག"
msgctxt ""
"main0227.xhp\n"
"hd_id3150345\n"
-"62\n"
"help.text"
msgid "Convert To Curve"
msgstr "གུག་གུགཔ་ལུ་གཞི་བསྒྱུར་འབད།"
@@ -1742,7 +1700,6 @@ msgstr "གུག་གུགཔ་ལུ་གཞི་བསྒྱུར་འ
msgctxt ""
"main0227.xhp\n"
"par_id3148420\n"
-"63\n"
"help.text"
msgid "<ahelp hid=\".uno:BezierConvert\">Converts a curve into a straight line or converts a straight line into a curve.</ahelp> If you select a single point, the curve before the point will be converted. If two points are selected, the curve between both points will be converted. If you select more than two points, each time you click this icon, a different portion of the curve will be converted. If necessary, round points are converted into corner points and corner points are converted into round points."
msgstr "<ahelp hid=\".uno:BezierConvert\">གིས་ གུག་གུགཔ་འདི་ཐིག་ཕྲང་ལུ་ ཡང་ན་ ཐིག་ཕྲང་འདི་གུག་གུགཔ་ཅིག་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན། </ahelp>ཁྱོད་ཀྱིས་ས་ཚིགས་རྐྱང་པ་ཅིག་སེལ་འཐུ་འབད་བ་ཅིན་ ས་ཚིགས་ཀྱི་གདོང་ཁར་ཡོད་པའི་གུག་གུགཔ་གཞི་བསྒྱུར་འབད་འོང་། ས་ཚིགས་གཉིས་་ཆ་རང་སེལ་འཐུ་འབད་ཡོད་པ་ཅིན་ ས་ཚིགས་གཉིས་ཀྱི་བར་ནའི་གུག་གུགཔ་འདི་གཞི་བསྒྱུར་འབད་འོང་། ག་དེམ་ཅིག་སྦེ་ཁྱོད་ཀྱིས་ ས་ཚིགས་གཉིས་ལས་ལྷག་སྟེ་སེལ་འཐུ་འབད་ཡོད་པ་ཅིན་ ངོས་པར་ལུ་ཚར་རེ་ཨེབ་གཏང་འབདཝ་ད་ གུག་གུགཔ་གི་ཡན་ལག་སོ་སོ་སྦེ་གཞི་བསྒྱུར་འབད་འོང་། ཉེར་མཁོ་ཡོད་པ་ཅིན་ སྒོར་སྒོརམ་ས་ཚིགས་ཚུ་སྒྱིད་ཁུག་ས་ཚིགས་དང་སྒྱིད་ཁུག་ས་ཚིགས་ཚུ་སྒོར་སྒོརམ་ས་ཚིགས་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན།"
@@ -1751,7 +1708,6 @@ msgstr "<ahelp hid=\".uno:BezierConvert\">གིས་ གུག་གུགཔ
msgctxt ""
"main0227.xhp\n"
"par_id3150304\n"
-"64\n"
"help.text"
msgid "If a certain section of the curve is straight, the end points of the line have a maximum of one control point each. They cannot be modified to round points unless the straight line is converted back to a curve."
msgstr "གུག་གུགཔ་གི་དབྱེ་ཚན་ལ་ལོ་ཅིག་ཕྲང་ཏང་ཏ་ཨིན་པ་ཅིན་ གྲལ་ཐིག་མཇུག་གི་ས་ཚིགས་ལུ་ མང་མཐའ་ཚད་འཛིན་ས་ཚིགས་རེ་ཡོདཔ་ཨིན། གྲལ་ཐིག་ཕྲང་བ་འདི་ལོག་གུག་གུགཔ་ལུ་གཞི་བསྒྱུར་མ་འབད་ཚུན་ དེ་ཚུ་སྒོར་སྒོརམ་ས་ཚིགས་ལུ་ལེགས་བཅོས་འབད་མི་ཚུགས།"
@@ -1768,7 +1724,6 @@ msgstr "<image id=\"img_id3149036\" src=\"cmd/sc_bezierconvert.png\" width=\"0.2
msgctxt ""
"main0227.xhp\n"
"par_id3158445\n"
-"65\n"
"help.text"
msgid "Convert To Curve"
msgstr "གུག་གུགཔ་ལུ་གཞི་བསྒྱུར་འབད།"
@@ -1777,7 +1732,6 @@ msgstr "གུག་གུགཔ་ལུ་གཞི་བསྒྱུར་འ
msgctxt ""
"main0227.xhp\n"
"hd_id3153199\n"
-"66\n"
"help.text"
msgid "Corner Point"
msgstr "སྒྱིད་ཁུག་གི་ས་ཚིགས།"
@@ -1786,7 +1740,6 @@ msgstr "སྒྱིད་ཁུག་གི་ས་ཚིགས།"
msgctxt ""
"main0227.xhp\n"
"par_id3148460\n"
-"67\n"
"help.text"
msgid "<ahelp hid=\".uno:BezierEdge\">Converts the selected point or points into corner points.</ahelp> Corner points have two movable control points, which are independent from each other. A curved line, therefore, does not go straight through a corner point, but forms a corner."
msgstr "<ahelp hid=\".uno:BezierEdge\">སེལ་འཐུ་འབད་ཡོད་པའི་ས་ཚིགས་ ཡངན་ ས་ཚིགས་ཚུ་སྒྱིད་ཁུག་ས་ཚིགས་ལུ་གཞི་བསྒྱུར་འབདཝ་ཨིན། </ahelp>སྒྱིད་ཁུག་ས་ཚིགས་ལུ་སྤོ་བཏུབ་པའི་ཚད་འཛིན་ས་ཚིགས་གཉིས་ཡོད་ དེ་ཚུ་གཅིག་གི་གཅིག་ལུ་བརྟེན་མི་དགོ དེ་འབད་ནི་འདི་གིས་ གུག་ཡོད་པའི་གྲལ་ཐིག་གིས་ སྒྱིད་ཁུག་ས་ཚིགས་ལས་བརྒྱུད་དེ་ཕྲང་མི་འགྱོ་ ཨིན་རུང་སྒྱིད་ཁུག་ཅིག་གཞི་སྒྲུབ་འབདཝ་ཨིན།"
@@ -1803,7 +1756,6 @@ msgstr "<image id=\"img_id3154201\" src=\"cmd/sc_bezieredge.png\" width=\"0.222i
msgctxt ""
"main0227.xhp\n"
"par_id3166429\n"
-"25\n"
"help.text"
msgid "Corner Point"
msgstr "སྒྱིད་ཁུག་གི་ས་ཚིགས།"
@@ -1812,7 +1764,6 @@ msgstr "སྒྱིད་ཁུག་གི་ས་ཚིགས།"
msgctxt ""
"main0227.xhp\n"
"hd_id3166436\n"
-"27\n"
"help.text"
msgid "Smooth Transition"
msgstr "ཧུམ་ཁྱུག་ཁྱུའི་འགྱུར་བ།"
@@ -1821,7 +1772,6 @@ msgstr "ཧུམ་ཁྱུག་ཁྱུའི་འགྱུར་བ།"
msgctxt ""
"main0227.xhp\n"
"par_id3155510\n"
-"29\n"
"help.text"
msgid "<ahelp hid=\".uno:BezierSmooth\">Converts a corner point or symmetrical point into a smooth point.</ahelp> Both control points of the corner point are aligned in parallel, and can only be moved simultaneously. The control points may differentiate in length, allowing you to vary the degree of curvature."
msgstr "<ahelp hid=\".uno:BezierSmooth\">ཧུམ་ཁྱུག་ཁྱུའི་ས་ཚིགས་ཅིག་ནང་སྒྱིད་ཁུག་ས་ཚིགས་ ཡངན་ མཛེས་སྙོམས་ས་ཚིགས་གཞི་བསྒྱུར་འབདཝ་ཨིན། </ahelp> སྒྱིད་ཁུག་ས་ཚིགས་ཀྱི་ཚད་འཛིན་ས་ཚིགས་ཚུ་ མཉམ་སྤྱོད་ནང་ཕྲང་སྒྲིག་འབད་ཡོདཔ་དང་ དེ་ཚུ་དུས་མཉམ་ལུ་སྤོ་ཚུགས། ཚད་འཛིན་ས་ཚིགས་ཀྱིས་ གུག་གུགཔ་རྣམ་པའི་ཁུག་ཟུར་འགྱུར་བཅུག་པའི་རིང་ཚད་ནང་ སོ་སོ་སྦེ་ངོས་འཛིན་འབད་འོང་།"
@@ -1838,7 +1788,6 @@ msgstr "<image id=\"img_id3151183\" src=\"cmd/sc_beziersmooth.png\" width=\"0.22
msgctxt ""
"main0227.xhp\n"
"par_id3154258\n"
-"28\n"
"help.text"
msgid "Smooth Transition"
msgstr "ཧུམ་ཁྱུག་ཁྱུའི་འགྱུར་བ།"
@@ -1847,7 +1796,6 @@ msgstr "ཧུམ་ཁྱུག་ཁྱུའི་འགྱུར་བ།"
msgctxt ""
"main0227.xhp\n"
"hd_id3159622\n"
-"30\n"
"help.text"
msgid "Symmetric Transition"
msgstr "མཛེས་སྙོམས་འགྱུར་བ།"
@@ -1856,7 +1804,6 @@ msgstr "མཛེས་སྙོམས་འགྱུར་བ།"
msgctxt ""
"main0227.xhp\n"
"par_id3155812\n"
-"32\n"
"help.text"
msgid "<ahelp hid=\".uno:BezierSymmetric\">This icon converts a corner point or a smooth point into a symmetrical point.</ahelp> Both control points of the corner point are aligned in parallel and have the same length. They can only be moved simultaneously and the degree of curvature is the same in both directions."
msgstr "<ahelp hid=\".uno:BezierSymmetric\">ངོས་པར་འདི་གིས་ མཛེས་སྙོམས་ས་ཚིགས་ནང་ལུ་སྒྱིད་ཁུག་ས་ཚིགས་ ཡང་ན་ ཧུམ་ཁྱུག་ཁྱུའི་ས་ཚིགསཅིག་གཞི་བསྒྱུར་འབདཝ་ཨིན། </ahelp>སྒྱིད་ཁུག་ས་ཚིགས་ཀྱི་ཚད་འཛིན་ས་ཚིགས་ཚུ་མཉམ་སྤྱོད་ནང་ཕྲང་སྒྲིག་འབད་ཡོདཔ་དང་ རིང་ཚད་ཡང་ཅོག་འཐདཔ་སྦེ་ཡོདཔ་ཨིན། དེ་ཚུ་དུས་མཉམ་ལུ་སྤོ་ཚུགསཔ་དང་ གུག་གུགཔ་གི་ཁུག་ཟུར་འདི་ཁ་ཕྱོགས་གཉིས་ཆ་ར་ནང་ཅོག་འཐདཔ་ཨིན།"
@@ -1873,7 +1820,6 @@ msgstr "<image id=\"img_id3159218\" src=\"cmd/sc_beziersymmetric.png\" width=\"0
msgctxt ""
"main0227.xhp\n"
"par_id3146866\n"
-"31\n"
"help.text"
msgid "Symmetric Transition"
msgstr "མཛེས་སྙོམས་འགྱུར་བ།"
@@ -1882,7 +1828,6 @@ msgstr "མཛེས་སྙོམས་འགྱུར་བ།"
msgctxt ""
"main0227.xhp\n"
"hd_id3146786\n"
-"33\n"
"help.text"
msgid "Close Bézier"
msgstr "བི་ཛི་ཡར་ཁ་སྡམས།"
@@ -1891,7 +1836,6 @@ msgstr "བི་ཛི་ཡར་ཁ་སྡམས།"
msgctxt ""
"main0227.xhp\n"
"par_id3156032\n"
-"35\n"
"help.text"
msgid "<ahelp hid=\".uno:BezierClose\">Closes a line or a curve.</ahelp> A line is closed by connecting the last point with the first point, indicated by an enlarged square."
msgstr "<ahelp hid=\".uno:BezierClose\">གྲལ་ཐིག་ ཡངན་ གུག་གུགཔ་ཅིག་ཁ་བསྡམ་ཨིན། </ahelp>ཆེར་བསྐྱེད་གྲུ་བཞི་གིས་བརྡ་སྟོན་འབད་དེ་ ས་ཚིགས་དང་པམ་དང་གཅིག་ཁར་མཇུག་གི་ས་ཚིགས་མཐུད་པའི་ཐོག་ལས་ གྲལ་ཐིག་འདི་ཁ་བསྡམས་ཡོདཔ།"
@@ -1908,7 +1852,6 @@ msgstr "<image id=\"img_id3148607\" src=\"cmd/sc_bezierclose.png\" width=\"0.222
msgctxt ""
"main0227.xhp\n"
"par_id3147070\n"
-"34\n"
"help.text"
msgid "Close Bézier"
msgstr "བི་ཛི་ཡར་ཁ་སྡམས།"
@@ -1917,7 +1860,6 @@ msgstr "བི་ཛི་ཡར་ཁ་སྡམས།"
msgctxt ""
"main0227.xhp\n"
"hd_id3156351\n"
-"36\n"
"help.text"
msgid "Eliminate Points"
msgstr "ས་ཚིགས་རྩ་བསྐྲད་གཏང་།"
@@ -1926,7 +1868,6 @@ msgstr "ས་ཚིགས་རྩ་བསྐྲད་གཏང་།"
msgctxt ""
"main0227.xhp\n"
"par_id3149441\n"
-"38\n"
"help.text"
msgid "<ahelp hid=\".uno:BezierEliminatePoints\">Marks the current point or the selected points for deletion.</ahelp> This happens in the event that the point is located on a straight line. If you convert a curve or a polygon with the <emph>Convert to Curve </emph>icon into a straight line or you change a curve with the mouse so that a point lies on the straight line, it is removed. The angle from which the point reduction is to take place <switchinline select=\"appl\"><caseinline select=\"DRAW\">can be set by choosing <link href=\"text/shared/optionen/01070300.xhp\" name=\"Drawing - Grid\"><emph>%PRODUCTNAME Draw - Grid</emph></link> in the Options dialog box</caseinline><caseinline select=\"IMPRESS\">can be set by choosing <link href=\"text/shared/optionen/01070300.xhp\" name=\"Presentation - Grid\"><emph>%PRODUCTNAME Impress - Grid</emph></link> in the Options dialog box</caseinline><defaultinline>is 15° by default.</defaultinline></switchinline>"
msgstr "<ahelp hid=\".uno:BezierEliminatePoints\">བཏོན་གཏང་ནིའི་དོན་ལུ་ ད་ལྟོའི་ས་ཚིགས་ ཡངན་ སེལ་འཐུ་འབད་ཡོད་པའི་ས་ཚིགས་ཚུ་རྟགས་བཀལཝ་ཨིན། </ahelp>འ་ནཱི་འདི་འབྱུང་ལས་ནང་འབྱུངམ་ཨིན་ དེ་ཡང་ ས་ཚིགས་འདི་ཕྲང་བའི་གྲལ་ཐིག་གུ་གནས་ཏེ་ཡོདཔ་ཨིན། ཁྱོད་ཀྱིས་ གུག་གུགཔ་ ཡང་ན་ ཟུར་མང་དབྱིབས་ཅིག ་<emph>Convert to Curve </emph>ངོས་པར་དང་གཅིག་ཁར་ ཕྲང་བའི་གྲལ་ཐིག་ནང་གཞི་བསྒྱུར་འབད་བ་ཅིན་ ཡང་ན་ མའུསི་གི་ཐོག་ལས་གུག་གུགཔ་ཅིག་བསྒྱུར་བཅོས་འབད་བ་ཅིན་ ས་ཚིགས་འདི་རྩ་བསྐྲད་བཏང་སྟེ་ ཕྲང་བའི་གྲལ་ཐིག་གུ་སྡོད་འོང་། ས་ཚིགས་མར་ཕབ་ནང་ལས་ཀྱི་གྲུ་ཟུར་འདི་ <switchinline select=\"appl\"><caseinline select=\"DRAW\">གནས་བཅུག་ནི་དང་ <link href=\"text/shared/optionen/01070300.xhp\" name=\"Tools - Options - Drawing - Grid\"><emph>ལག་ཆས་ -གདམ་ཁ་ - %PRODUCTNAME ཌཱ་ - གིརིཌི་</emph></link></caseinline><caseinline select=\"IMPRESS\">གདམ་ཁ་རྐྱབ་པའི་ཐོག་ལས་ གཞི་སྒྲིག་འབད་ཚུགས། <link href=\"text/shared/optionen/01070300.xhp\" name=\"Tools - Options - Presentation - Grid\"><emph>ལག་ཆས་ - གདམ་ཁ་ - %PRODUCTNAME ཨིམ་པིརེསི་ - གིརིཌི་</emph></link></caseinline><defaultinline>འདི་སྔོན་སྒྲིག་གི་ཐོག་ལས་ ཁུག་ཟུར་༡༥ཨིན། </defaultinline></switchinline>གདམ་ཁ་རྐྱབ་པའི་ཐོག་ལས་གཞི་སྒྲིག་འབད་ཚུགས།"
@@ -1943,7 +1884,6 @@ msgstr "<image id=\"img_id3155385\" src=\"cmd/sc_beziereliminatepoints.png\" wid
msgctxt ""
"main0227.xhp\n"
"par_id3152869\n"
-"37\n"
"help.text"
msgid "Eliminate Points"
msgstr "ས་ཚིགས་རྩ་བསྐྲད་གཏང་།"
@@ -1960,7 +1900,6 @@ msgstr "མགྱོགས་ཐབས་ལྡེ་མིག་ཚུ།"
msgctxt ""
"main0400.xhp\n"
"hd_id3149495\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/main0400.xhp\" name=\"Shortcut Keys\">Shortcut Keys</link>"
msgstr "<link href=\"text/shared/main0400.xhp\" name=\"Shortcut Keys\">གྱོགས་ཐབས་ལྡེ་མིག་ཚུ་</link>"
@@ -1969,7 +1908,6 @@ msgstr "<link href=\"text/shared/main0400.xhp\" name=\"Shortcut Keys\">གྱོ
msgctxt ""
"main0400.xhp\n"
"par_id3150040\n"
-"2\n"
"help.text"
msgid "This section contains descriptions of frequently used shortcut keys in $[officename]."
msgstr "དབྱེ་ཚན་འདི་གི་ནང་ན་ $[officename]ནང་ འཕྲལ་འཕྲལ་ར་ལག་ལེན་འཐབ་ཡོད་པའིམགྱོགས་ཐབས་ལྡེ་མིག་གི་འགྲེལ་བཤད་ཚུ་ཡོདཔ་ཨིན།"
@@ -1986,7 +1924,6 @@ msgstr "ཚིག་ཐོ་ཚུ།"
msgctxt ""
"main0500.xhp\n"
"hd_id3156183\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/main0500.xhp\" name=\"Glossaries\">Glossaries</link>"
msgstr "<link href=\"text/shared/main0500.xhp\" name=\"Glossaries\">ཚིག་ཐོ་ཚུ་</link>"
@@ -1995,7 +1932,6 @@ msgstr "<link href=\"text/shared/main0500.xhp\" name=\"Glossaries\">ཚིག་
msgctxt ""
"main0500.xhp\n"
"par_id3157898\n"
-"2\n"
"help.text"
msgid "This section provides a general glossary of technical terms used in $[officename], along with a list of Internet terms."
msgstr "དབྱེ་ཚན་འདི་གིས་ $[officename]ནང་ ལག་ལེན་འཐབ་ཏེ་ཡོད་པའི་འཕྲུལ་རིག་མིང་ཚིག་གི་སྤྱིར་བཏང་ཚིག་ཐོ་ཚུ་ ཨིན་ཊར་ནེཊི་གི་མིང་ཚིག་ཚུ་དང་གཅིག་ཁར་བྱིནམ་ཨིན།"
@@ -2020,7 +1956,6 @@ msgstr "<bookmark_value>ལས་རིམ་བཟོ་ལས་;$[officename]
msgctxt ""
"main0600.xhp\n"
"hd_id3154232\n"
-"1\n"
"help.text"
msgid "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">Programming $[officename]</link></variable>"
msgstr "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\"> $[officename] ལས་རིམ་བཟོ་བ་</link></variable>"
@@ -2029,7 +1964,6 @@ msgstr "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" nam
msgctxt ""
"main0600.xhp\n"
"par_id3149760\n"
-"2\n"
"help.text"
msgid "<variable id=\"basic\">$[officename] can be controlled by using the $[officename] API. </variable>"
msgstr "<variable id=\"basic\">$[officename]འདི་ $[officename]ཨེ་པི་ཨའི་ལག་ལེན་གྱ྄ི་ཐོག་ལས་ ཚད་འཛིན་འབད་ཚུགས། </variable>"
@@ -2038,7 +1972,6 @@ msgstr "<variable id=\"basic\">$[officename]འདི་ $[officename]ཨེ་
msgctxt ""
"main0600.xhp\n"
"par_id3151111\n"
-"12\n"
"help.text"
msgid "$[officename] provides an Application Programming Interface (API) that enables you to control $[officename] components by using various programming languages. A $[officename] Software Development Kit is available for the programming interface."
msgstr "$[officename]གིས་ གློག་རིམ་ལས་རིམ་གྱི་ངོས་འདྲ་བ་(ཨེ་པི་ཨའི་)བྱིནམ་ཨིནམ་དང་དེ་གིས་ ཁྱོད་ལུ་ ལས་རིམ་སྐད་ཡིག་སྣ་ཚོགས་ལག་ལེན་གྱི་ཐོག་ལས་ $[officename]ཆ་ཤས་ཚད་འཛིན་འབད་ནིའི་ལྕགས་ཅན་བཟོཝ་ཨིན། ལས་རིམ་ངོས་འདྲ་བའི་དོན་ལུ་ $[officename] མཉེན་ཆས་གོང་འཕེལ་གྱི་ལག་ཆས་སྒྲོམ་འདི་འཐོབ་ཚུགས།"
@@ -2047,7 +1980,6 @@ msgstr "$[officename]གིས་ གློག་རིམ་ལས་རིམ
msgctxt ""
"main0600.xhp\n"
"par_id3156346\n"
-"15\n"
"help.text"
msgid "For more information about $[officename] API reference, please visit http://api.libreoffice.org/"
msgstr ""
@@ -2056,7 +1988,6 @@ msgstr ""
msgctxt ""
"main0600.xhp\n"
"par_id3153825\n"
-"13\n"
"help.text"
msgid "Macros created with $[officename] Basic based on the old programming interface will no longer be supported by the current version."
msgstr "ལས་རིམ་ངོས་འདྲ་བ་རྙིངམ་ལུ་བརྟེན་པའི་$[officename]གཞི་རིམ་དང་བཅས་གསར་བསྐྲུན་འབད་ཡོད་པའི་མེཀ་ཀོརོསི་འདི་ ད་ལས་ཕར་ ད་ལྟོའི་ཐོན་རིམ་གྱིས་རྒྱབ་སྐྱོར་མི་འབད།"
@@ -2065,7 +1996,6 @@ msgstr "ལས་རིམ་ངོས་འདྲ་བ་རྙིངམ་ལ
msgctxt ""
"main0600.xhp\n"
"par_id3149795\n"
-"14\n"
"help.text"
msgid "For more information on $[officename] Basic, select \"$[officename] Basic\" in the list box."
msgstr "$[officename]གཞི་རིམ་གུ་བརྡ་དོན་ཧེང་བཀལ་གྱི་དོན་ལུ་ ཐོ་ཡིག་སྒྲོམ་ནང་ \"$[officename] Basic\" སེལ་འཐུ་འབད།"
@@ -2082,7 +2012,6 @@ msgstr "ཇ་བ་མཉེན་རིམ་རྒྱབ་སྐྱོར།
msgctxt ""
"main0650.xhp\n"
"hd_id3153089\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/main0650.xhp\" name=\"Java Platform Support\">Java Platform Support</link>"
msgstr "<link href=\"text/shared/main0650.xhp\" name=\"Java Platform Support\">ཇ་བ་མཉེན་རིམ་རྒྱབ་སྐྱོར་</link>"
@@ -2091,7 +2020,6 @@ msgstr "<link href=\"text/shared/main0650.xhp\" name=\"Java Platform Support\">
msgctxt ""
"main0650.xhp\n"
"par_id3152363\n"
-"2\n"
"help.text"
msgid "$[officename] supports the Java platform for running applications and components based on the JavaBeans architecture."
msgstr "$[officename]གིས་ གློག་རིམ་དང་ཨེཔ་ལེཊི་ དེ་ལས་ཇ་བ་བིནསི་བཟོ་བཀོད་གུ་བརྟེན་པའི་ཆ་ཤས་ཚུ་གཡོག་བཀོལ་ནིའི་དོན་ལུ་ རྒྱབ་སྐྱོར་འབདཝ་ཨིན།"
@@ -2100,7 +2028,6 @@ msgstr "$[officename]གིས་ གློག་རིམ་དང་ཨེཔ
msgctxt ""
"main0650.xhp\n"
"par_id3154751\n"
-"3\n"
"help.text"
msgid "For $[officename] to support the Java platform, you must install the Java 2 Runtime Environment software. When you installed $[officename], you automatically received the option to install these files if they were not yet installed. You can also install these files now if required."
msgstr ""
@@ -2109,7 +2036,6 @@ msgstr ""
msgctxt ""
"main0650.xhp\n"
"par_id3155338\n"
-"4\n"
"help.text"
msgid "The Java platform support needs to be activated under $[officename] to run Java applications."
msgstr "ཇ་བ་གློག་རིམ་གཡོག་བཀོལ་ནིའི་དོན་ལས་ ཇ་བ་མཉེན་རིམ་རྒྱབ་སྐྱོར་འདི་ $[officename] གི་འོག་ལུ་ ཤུགས་ལྡན་བཟོ་དགོཔ་འདུག"
@@ -2118,7 +2044,6 @@ msgstr "ཇ་བ་གློག་རིམ་གཡོག་བཀོལ་ན
msgctxt ""
"main0650.xhp\n"
"par_id3155892\n"
-"5\n"
"help.text"
msgid "Enable Java platform support by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/java.xhp\" name=\"$[officename] - Advanced\"><emph>$[officename] - Advanced</emph></link>."
msgstr ""
@@ -2135,7 +2060,6 @@ msgstr ""
msgctxt ""
"main0650.xhp\n"
"par_id3153822\n"
-"11\n"
"help.text"
msgid "Your modifications at the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Advanced</emph> tab page will be used even if the Java Virtual Machine (JVM) has been started already. After any modifications to the ClassPath you must restart $[officename]. The same is true for modifications under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Internet - Proxy</emph>. Only the boxes \"HTTP Proxy\" and \"FTP Proxy\" and their ports do not require a restart—they will be evaluated when you click <emph>OK</emph>."
msgstr ""
@@ -2152,7 +2076,6 @@ msgstr "$[officename]དང་ཨིན་ཊར་ནེཊི།"
msgctxt ""
"main0800.xhp\n"
"hd_id3153089\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/main0800.xhp\" name=\"$[officename] and the Internet\">$[officename] and the Internet</link>"
msgstr "<link href=\"text/shared/main0800.xhp\" name=\"$[officename] and the Internet\">$[officename] དང་ཨིན་ཊར་ནེཊི་</link>"
@@ -2161,7 +2084,6 @@ msgstr "<link href=\"text/shared/main0800.xhp\" name=\"$[officename] and the Int
msgctxt ""
"main0800.xhp\n"
"par_id3155150\n"
-"2\n"
"help.text"
msgid "This section provides information on the subject of the Internet. An <link href=\"text/shared/00/00000002.xhp\" name=\"Internet glossary\">Internet glossary</link> explains the most important terms."
msgstr "དབྱེ་ཚན་འདི་གིས་ ཨིན་ཊར་ནེཊི་དོན་ཚན་གྱི་བརྡ་དོན་བྱིནམ་ཨིན། <link href=\"text/shared/00/00000002.xhp\" name=\"Internet glossary\">ཨིན་ཊར་ནེཊི་ཚིག་ཐོ་</link> གིས་ གལ་ཅན་གྱི་ཐ་སྙད་མང་ཤོས་བཤདཔ་ཨིན།"
diff --git a/source/dz/helpcontent2/source/text/shared/00.po b/source/dz/helpcontent2/source/text/shared/00.po
index ed075d9a597..88fa709c768 100644
--- a/source/dz/helpcontent2/source/text/shared/00.po
+++ b/source/dz/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"POT-Creation-Date: 2017-05-12 14:35+0200\n"
"PO-Revision-Date: 2016-05-24 05:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28,7 +28,6 @@ msgstr "འཕྲལ་འཕྲལ་རང་ལག་ལེན་འཐབ་
msgctxt ""
"00000001.xhp\n"
"hd_id3152952\n"
-"1\n"
"help.text"
msgid "Frequently-Used Buttons"
msgstr "འཕྲལ་འཕྲལ་རང་ལག་ལེན་འཐབ་ཡོད་པའི་ཨེབ་རྟ་ཚུ།"
@@ -37,7 +36,6 @@ msgstr "འཕྲལ་འཕྲལ་རང་ལག་ལེན་འཐབ་
msgctxt ""
"00000001.xhp\n"
"hd_id3147617\n"
-"4\n"
"help.text"
msgid "Cancel"
msgstr "ཆ་མེད་གཏང་།"
@@ -46,7 +44,6 @@ msgstr "ཆ་མེད་གཏང་།"
msgctxt ""
"00000001.xhp\n"
"par_id3155913\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\".\">Clicking <emph>Cancel</emph> closes a dialog without saving any changes made.</ahelp>"
msgstr "<ahelp hid=\".\">ཨེབ་གཏང་ <emph>ཆ་མེད་གཏང་དེ་གིས་</emph> བསྒྱུར་བཅོས་ཚུ་མ་སྲུང་པར་ ཌའི་ལོག་འདི་ཁ་བསྡམས་བཞགཔ་ཨིན།</ahelp>"
@@ -68,20 +65,17 @@ msgid "<ahelp hid=\".\">Applies all changes and closes the wizard.</ahelp>"
msgstr "<ahelp hid=\".\">བསྒྱུར་བཅོས་ཚུ་ཆ་མཉམ་འཇུགཔ་དང་ཝི་ཛརཌི་འདི་ཁ་བསྡམས་ཨིན།</ahelp>"
#: 00000001.xhp
-#, fuzzy
msgctxt ""
"00000001.xhp\n"
"hd_id3147477\n"
-"39\n"
"help.text"
msgid "Toolbars"
-msgstr "#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# database.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# sdraw.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# scalc.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ་།"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3149783\n"
-"40\n"
"help.text"
msgid "By clicking the arrow next to some icons you open a toolbar. To move a toolbar, drag the title bar. As soon as you release the mouse button, the toolbar remains at the new position. Drag the title bar to another position, or drag to an edge of the window, where the toolbar will dock. Close a toolbar by clicking the Close Window icon. Make the toolbar visible again by choosing <emph>View - Toolbars - (toolbar name)</emph>."
msgstr "མདའ་རྟགས་འདི་ ངོས་དཔར་ཚུ་གི་ཤུལ་མམ་ཨེབ་གཏང་བཞིནམ་ལས་ ཁྱོད་རང་གི་ལག་ཆས་ཕྲ་རིང་འདི་ཁ་ཕྱེ། ལག་ཆས་ཕྲ་རིང་སྤོ་བཤུད་འབད་ནིའི་དོན་ལུ་ འགོ་མིང་ཕྲ་རིང་འདི་འདྲུད་ད། ཁྱོད་ཀྱིས་མཱའུསི་ཨེབ་རྟ་འདི་འཛིན་འགྲེལ་འབདཝ་ཅིག་ ལག་ཆས་ཕྲ་རིང་འདི་གནས་ས་གསརཔ་གུ་ལྷག་ལུསཔ་ཨིན། ལག་ཆས་ཕྲ་རིང་ཌོཀ་འབད་ས་ལུ་ འགོ་མིང་ཕྲ་རིང་འདི་གནས་ས་གཞན་མི་ཅིག་ལུ་འདྲུད་ནི་དང་ ཡང་ཅིན་ སྒོ་སྒྲིག་གི་མཐའམ་ལུ་འདྲུད་ད། སྒོ་སྒྲིག་ངོས་་དཔར་ཁ་བསྡམས་ཟེར་མི་ལུ་ ཨེབ་གཏང་བཞིནམ་ལས་ ལག་ཆས་ཕྲ་རིང་འདི་ཁ་བསྡམས་<emph>སྟོན་ - ལག་ཆས་ཕྲ་རིང་ - (ལག་ཆས་ཕྲ་རིང་གི་མིང་)</emph> འདི་གདམ་ཁ་རྐྱབ་བཞིནམ་ལས་ ལག་ཆས་ཕྲ་རིངདེ་ ལོག་འདི་རང་མཐོང་ཚུགསཔ་བཟོ།"
@@ -90,7 +84,6 @@ msgstr "མདའ་རྟགས་འདི་ ངོས་དཔར་ཚུ
msgctxt ""
"00000001.xhp\n"
"hd_id3152414\n"
-"79\n"
"help.text"
msgid "Spin button"
msgstr ""
@@ -115,7 +108,6 @@ msgstr ""
msgctxt ""
"00000001.xhp\n"
"par_id3155599\n"
-"78\n"
"help.text"
msgid "You can type a numerical value into the field next to the spin button, or select the value with the up-arrow or down-arrow symbols on the spin button. On the keyboard you can press the up arrow and down arrow keys to increase or reduce the value. You can press the Page Up and Page Down keys to set the maximum and minimum value."
msgstr ""
@@ -124,7 +116,6 @@ msgstr ""
msgctxt ""
"00000001.xhp\n"
"par_id3150264\n"
-"38\n"
"help.text"
msgid "If the field next to the spin button defines numerical values, you can also define a <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement unit\">measurement unit</link>, for example, 1 cm or 5 mm, 12 pt or 2\"."
msgstr "བསྒྱིར་སྒྲོམ་གྱིས་ཨང་གྲངས་ཀྱི་གནས་གོང་འདི་ངེས་འཛིན་འབད་བ་ཅིན་ ཁྱོད་ཀྱིས་<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement unit\">ཚད་འཇལ་ཆ་ཕྲེན་</link>, དཔེར་ན, 1 cm or 5 mm, 12 pt or 2\"འདི་ངེས་འཛིན་འབད་བཏུབ།"
@@ -133,7 +124,6 @@ msgstr "བསྒྱིར་སྒྲོམ་གྱིས་ཨང་གྲང
msgctxt ""
"00000001.xhp\n"
"hd_id3154232\n"
-"76\n"
"help.text"
msgid "Convert"
msgstr "གཞི་བསྒྱུར་འབད།"
@@ -142,7 +132,6 @@ msgstr "གཞི་བསྒྱུར་འབད།"
msgctxt ""
"00000001.xhp\n"
"par_id3148983\n"
-"77\n"
"help.text"
msgid "<ahelp hid=\".\">If you click forward through the dialog, this button is called <emph>Next</emph>. On the last page the button has the name <emph>Convert</emph>. The conversion is then performed by clicking the button.</ahelp>"
msgstr "<ahelp hid=\".\"> ཁྱོད་ཀྱིས་ཌའི་ལོག་ལས་གདོང་བསྐྱོད་འབད་བ་ཅིན་ ཨེབ་རྟ་འདི་ལུ་ཤུལ་མམ་ཟེར་སླབ་ཨིན།<emph>ཤུལ་མམ་</emph> མཇུག་གི་ཤོག་ལེབ་གུ་ཨེབ་རྟ་དེ་ལུ་མིང་ཡོད་ <emph>གཞི་བསྒྱུར་</emph>དེ་ལས་གཞི་བསྒྱུར་འདི་ཨེབ་རྟ་ཨེབ་བཞིནམ་ལས་ལཱ་འགན་འགྲུབ་ཨིན།</ahelp>"
@@ -151,7 +140,6 @@ msgstr "<ahelp hid=\".\"> ཁྱོད་ཀྱིས་ཌའི་ལོག
msgctxt ""
"00000001.xhp\n"
"hd_id3145129\n"
-"42\n"
"help.text"
msgid "Context Menu"
msgstr "སྐབས་དོན་གྱི་དཀར་ཆག"
@@ -160,7 +148,6 @@ msgstr "སྐབས་དོན་གྱི་དཀར་ཆག"
msgctxt ""
"00000001.xhp\n"
"par_id3156553\n"
-"44\n"
"help.text"
msgid "<variable id=\"context\">To activate the context menu of an object, first click the object with the <switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>left</defaultinline></switchinline> mouse button to select it, and then, <switchinline select=\"sys\"><caseinline select=\"MAC\">while holding down the Ctrl key or the Command and Option keys, click the mouse button again</caseinline><defaultinline> click the right mouse button</defaultinline></switchinline>. Some context menus can be called even if the object has not been selected. Context menus are found just about everywhere in $[officename].</variable>"
msgstr "<variable id=\"context\">དངོས་པོ་གི་སྐབས་དོན་་དཀར་ཆག་འདི་ཤུགས་ལྡན་བཟོ་ནའི་དོན་ལས་ དང་པ་རང་ དངོས་པོ་འདི་ <switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>གཡོན་</defaultinline></switchinline> དང་བཅས་ཨེབ་ནི་དང་ མཱའུསི་ཨེབ་རྟ་འདི་སེལ་འཐུ་འབད་ནའི་དོན་ལུ་ཨིན་ དེ་ལས་ <switchinline select=\"sys\"><caseinline select=\"MAC\"> གདམ་ཁའི་ལྡེ་མིག་དང་ བརྡ་བཀོད་ ཡང་ཅིན་ ཚད་འཛིན་གྱི་ལྡེ་མིག་འདི་མར་འབད་འཆང་བའི་བསྒང་ མཱའུསི་ཨེབ་རྟ་འདི་ཨེབ་གཏང་།</caseinline><defaultinline>གཡས་ཀྱི་མཱའུསི་ཨེབ་རྟ་འདི་ཨེབ་གཏང་།</defaultinline></switchinline> དངོས་པོ་འདི་སེལ་འཐུ་འདབ་འདི་མེད་རུང་ནང་དོན་དཀར་ཆག་ལ་ལོ་ཅིག་བོད་བརྡ་འབད་བཏུབ། $[officename] ནང་ལུ་ནང་དོན་གྱི་དཀར་ཆག་འདི་ག་སྟེ་རང་ཐོབ་ཚུགས། </variable>"
@@ -169,7 +156,6 @@ msgstr "<variable id=\"context\">དངོས་པོ་གི་སྐབས
msgctxt ""
"00000001.xhp\n"
"hd_id3149180\n"
-"24\n"
"help.text"
msgid "Delete"
msgstr "བཏོན་གཏང་།"
@@ -178,7 +164,6 @@ msgstr "བཏོན་གཏང་།"
msgctxt ""
"00000001.xhp\n"
"par_id3153750\n"
-"25\n"
"help.text"
msgid "<ahelp hid=\".\">Deletes the selected element or elements after confirmation.</ahelp>"
msgstr "<ahelp hid=\".\">གིས་ སེལ་འཐུ་འབད་ཡོད་པའི་ཆ་ཤས་དང་ ཡང་ན་ ངེས་དཔྱད་འདི་བཏོན་གཏངམ་ཨིན།</ahelp>"
@@ -187,7 +172,6 @@ msgstr "<ahelp hid=\".\">གིས་ སེལ་འཐུ་འབད་ཡོ
msgctxt ""
"00000001.xhp\n"
"hd_id3147557\n"
-"45\n"
"help.text"
msgid "Delete"
msgstr "བཏོན་གཏང་།"
@@ -196,7 +180,6 @@ msgstr "བཏོན་གཏང་།"
msgctxt ""
"00000001.xhp\n"
"par_id3155338\n"
-"46\n"
"help.text"
msgid "<ahelp hid=\".\">Deletes the selected element or elements without requiring confirmation.</ahelp>"
msgstr "<ahelp hid=\".\">སེལ་འཐུ་འབད་ཡོད་མི་གི་ཆ་ཤས་དང་ ཡང་ཅིན་ ངེས་དཔྱད་དགོས་མཁོ་མེད་པའི་ཆ་ཤས་ཚུ་བཏོན་གཏངམ་ཨིན།</ahelp>"
@@ -205,7 +188,6 @@ msgstr "<ahelp hid=\".\">སེལ་འཐུ་འབད་ཡོད་མི
msgctxt ""
"00000001.xhp\n"
"hd_id3148620\n"
-"6\n"
"help.text"
msgid "Metrics"
msgstr "མེ་ཊིཀ།"
@@ -214,16 +196,14 @@ msgstr "མེ་ཊིཀ།"
msgctxt ""
"00000001.xhp\n"
"par_id3145345\n"
-"7\n"
"help.text"
-msgid "You can enter values in the input fields in different units of measurement. The default unit is inches. However, if you want a space of exactly 1cm, then type \"1cm\". Additional units are available according to the context, for example, 12 pt for a 12 point spacing. If the value of the new unit is unrealistic, the program uses a predefined maximum or minimum value."
-msgstr "ཚད་འཇལ་ཆ་ཕྲན་སོ་སོ་ཚུ་གི་ནང་ལུ་ཡོད་པའི་ཨིན་པུཊི་གི་ས་སྒོ་ཚུ་ནང་ ཁྱོད་ཀྱིས་གནས་གོང་འདི་བཙུགས། སྔོན་སྒྲིག་གི་ཆ་ཕྲན་འདི་ཨིན་ཅེསི་ཨིན། ག་ལས་གོ་རུང་ ཁྱོད་རང་ས་སྟོོང་འདི་ངེས་སྟིག་འབད་ 1cm དགོ་པ་ཅིན་\"1cm\"འབད་ཡིག་དཔར་རྐྱབས། སྐབས་དོན་དང་འཁྲིལ་ཏེ་ ཆ་ཕྲན་ཁ་སྐོང་ཚུ་འཐོབ་ཚུགསཔ་ཡོད་ དཔེར་ན་དོན་ཚན་ས་སྟོང་ ༡༢ གི་དོན་ལས་ པི་ཊི་ ༡༢། གནས་གོང་གི་ཆ་ཕྲན་གསརཔ་འདི་དངོས་མཐོང་མེན་པ་ཅིན་ ལས་རིམ་འདི་གིས་ ངེས་འཛིན་གྱི་ཧེ་མ་ གནས་གོང་མང་མཐའ་ ཡང་ཅིན་ ཉུང་མཐའ་འདི་ལག་ལེན་འཐབ་ཨིན།"
+msgid "You can enter values in the input fields in different <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"units of measurement\">units of measurement</link>. The default unit is inches. However, if you want a space of exactly 1cm, then type \"1cm\". Additional units are available according to the context, for example, 12 pt for a 12 point spacing. If the value of the new unit is unrealistic, the program uses a predefined maximum or minimum value."
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"hd_id3155535\n"
-"8\n"
"help.text"
msgid "Close"
msgstr "ཁ་བསྡམས།"
@@ -232,7 +212,6 @@ msgstr "ཁ་བསྡམས།"
msgctxt ""
"00000001.xhp\n"
"par_id3147008\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\".\">Closes the dialog and saves all changes.</ahelp>"
msgstr "<ahelp hid=\".\">ཌའི་ལོག་ཁ་བསྡམས་ནི་དང་བསྒྱུར་བཅོས་ཚུ་ཆ་མཉམ་སྲུང་བཞག་འབདཝ་ཨིན།</ahelp>"
@@ -241,7 +220,6 @@ msgstr "<ahelp hid=\".\">ཌའི་ལོག་ཁ་བསྡམས་ནི
msgctxt ""
"00000001.xhp\n"
"hd_id3147275\n"
-"57\n"
"help.text"
msgid "Close"
msgstr "ཁ་བསྡམས།"
@@ -250,7 +228,6 @@ msgstr "ཁ་བསྡམས།"
msgctxt ""
"00000001.xhp\n"
"par_id3153031\n"
-"58\n"
"help.text"
msgid "<ahelp hid=\".\">Closes the dialog.</ahelp>"
msgstr "<ahelp hid=\".\">ཌའི་ལོག་འདི་ཁ་བསྡམས་ཨིན།</ahelp>"
@@ -259,7 +236,6 @@ msgstr "<ahelp hid=\".\">ཌའི་ལོག་འདི་ཁ་བསྡམ
msgctxt ""
"00000001.xhp\n"
"hd_id3156113\n"
-"16\n"
"help.text"
msgid "Apply"
msgstr "འཇུག་སྤྱོད་འབད།"
@@ -268,7 +244,6 @@ msgstr "འཇུག་སྤྱོད་འབད།"
msgctxt ""
"00000001.xhp\n"
"par_id3155341\n"
-"17\n"
"help.text"
msgid "<ahelp hid=\".\">Applies the modified or selected values without closing the dialog.</ahelp>"
msgstr "<ahelp hid=\".\">ཌའི་ལོག་འདི་ཁ་མ་བསྡམས་པར་ གནས་གོང་སེལ་འཐུ་འབད་ཡོད་མི་ ཡང་ཅིན་ ལེགས་བཅོས་འབད་ཡོད་མི་འདི་འཇུག་བཅོས་འབདཝ་ཨིན།</ahelp>"
@@ -277,7 +252,6 @@ msgstr "<ahelp hid=\".\">ཌའི་ལོག་འདི་ཁ་མ་བས
msgctxt ""
"00000001.xhp\n"
"hd_id3153760\n"
-"47\n"
"help.text"
msgid "Shrink / Maximize"
msgstr "བསྐུམ/འཕར་ནི།"
@@ -286,7 +260,6 @@ msgstr "བསྐུམ/འཕར་ནི།"
msgctxt ""
"00000001.xhp\n"
"par_id3153087\n"
-"48\n"
"help.text"
msgid "<ahelp hid=\".\">Click the<emph> Shrink </emph>icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the <emph>Maximize</emph> icon. Click it to restore the dialog to its original size.</ahelp>"
msgstr "<ahelp hid=\".\">ཌའི་ལོག་འདི་ཨིན་པུཊི་ས་སྒོ་གི་ཚད་ལུ་མར་ཕབ་འབད་ནའི་དོན་ལུ་ <emph>ངེས་དཔར་</emph> བསྐུམ་ ཨེབ་གཏང་། ནེ་སྦེ་འབད་བ་ཅིན་ ཤོག་ཁྲམ་གྱི་ནང་ལུ་དགོས་མཁོ་ཡོད་མིའི་གཞི་བསྟུན་གུ་ རྟགས་བཀལ་ནི་འདི་འཇམ། དེ་ལས་ངེས་དཔར་ཚུ་རང་བཞིན་གྱིས་འབད་<emph>Maximize</emph>ངེས་དཔར་ལུ་གཞི་བསྒྱུར་འབད་ཚུགས། ཌའི་ལོག་འདི་ཚད་ངོ་མ་ལུ་སོར་ཆུད་འབད་ནའི་དོན་ལུ་ཨེབ་གཏང་།</ahelp>"
@@ -295,13 +268,11 @@ msgstr "<ahelp hid=\".\">ཌའི་ལོག་འདི་ཨིན་པུ
msgctxt ""
"00000001.xhp\n"
"par_id3155062\n"
-"49\n"
"help.text"
msgid "The dialog is automatically minimized when you click into a sheet with the mouse. As soon as you release the mouse button, the dialog is restored and the reference range defined with the mouse is highlighted in the document by a blue frame."
msgstr "མཱའུསི་དང་བཅས་ ཁྱོད་ཀྱིས་ ཤོག་ཁྲམ་གྱི་ནང་ལུ་ཨེབ་གཏང་པའི་བསྒང་ ཌའི་ལོག་འདི་རང་བཞིན་གྱིས་ཆུང་ཀུ་བཟོཝ་ཨིན། ཁྱོད་ཀྱིས་མཱའུས་ཨེབ་རྟ་འདི་འཛིན་འགྲེལ་འབདཝ་ཅིག་ ཌའི་ལོག་འདི་སོར་ཆུད་འབད་ནི་དང་ མཱའུསི་དང་བཅས་ཡོད་མི་ གཞི་བསྟུན་ཁྱབ་ཚད་ངེས་འཛིན་འབད་ཡོད་མི་འདི་ ཡིག་ཆ་གི་ནང་ལུ་གཞི་ཁྲམ་ཧོནམ་གྱིས་གཙོ་དམིགས་བཀོད་ཡོདཔ་ཨིན།"
#: 00000001.xhp
-#, fuzzy
msgctxt ""
"00000001.xhp\n"
"par_id3157808\n"
@@ -313,13 +284,11 @@ msgstr "<image id=\"img_id3157869\" src=\"cmd/sc_showfmexplorer.png\" width=\"0.
msgctxt ""
"00000001.xhp\n"
"par_id3153321\n"
-"50\n"
"help.text"
msgid "Shrink"
msgstr "བསྐུམ།"
#: 00000001.xhp
-#, fuzzy
msgctxt ""
"00000001.xhp\n"
"par_id3153349\n"
@@ -331,7 +300,6 @@ msgstr "<image id=\"img_id3157869\" src=\"cmd/sc_showfmexplorer.png\" width=\"0.
msgctxt ""
"00000001.xhp\n"
"par_id3155628\n"
-"51\n"
"help.text"
msgid "Maximize"
msgstr "འཕར་ནི།"
@@ -340,7 +308,6 @@ msgstr "འཕར་ནི།"
msgctxt ""
"00000001.xhp\n"
"hd_id3156192\n"
-"34\n"
"help.text"
msgid "Preview Field"
msgstr "ས་སྒོ་སྔོན་ལྟ།"
@@ -349,7 +316,6 @@ msgstr "ས་སྒོ་སྔོན་ལྟ།"
msgctxt ""
"00000001.xhp\n"
"par_id3154046\n"
-"35\n"
"help.text"
msgid "<ahelp hid=\".\">Displays a preview of the current selection.</ahelp>"
msgstr "<ahelp hid=\".\"> འདི་གིས་ སྔོན་ལྟ་གི་ད་ལྟོའི་སེལ་འཐུ་འབད་ཡོད་མི་འདི་བཀྲམ་སྟོན་འབདཝ་ཨིན།་</ahelp>"
@@ -358,7 +324,6 @@ msgstr "<ahelp hid=\".\"> འདི་གིས་ སྔོན་ལྟ་ག
msgctxt ""
"00000001.xhp\n"
"hd_id3145609\n"
-"70\n"
"help.text"
msgid "Next"
msgstr "ཤུལ་མམ།"
@@ -367,7 +332,6 @@ msgstr "ཤུལ་མམ།"
msgctxt ""
"00000001.xhp\n"
"par_id3152473\n"
-"71\n"
"help.text"
msgid "<ahelp hid=\".\">Click the<emph> Next </emph>button, and the wizard uses the current dialog settings and proceeds to the next step. If you are on the last step, this button becomes <emph>Create</emph>.</ahelp>"
msgstr "ཤུལ་མམ་གྱི་ཨེབ་རྟ་འདི་ཨེབ་གཏང་ནི་དང་ དེ་ལས་ ཝི་ཛརཌི་གིས་ ད་ལྟོའི་ཌའི་ལོག་གི་སྒྲག་སྟངས་འདི་ལག་ལེན་འཐབ་ཨིན།<ahelp hid=\".\">ཨེབ་གཏང་ the<emph> ཤུལ་མམ་ </emph> ཁྱོད་མཇུག་གི་རིམ་པ་གུ་ཨིན་པ་ཅིན་ འ་ནི་ཨེབ་རྟ་འདི་ <emph>གསར་བསྐྲུན་འབད་</emph>.</ahelp> ལུ་འགྱུར་ནི་ཨིན།"
@@ -381,7 +345,6 @@ msgid "Dialog Buttons"
msgstr ""
#: 00000001.xhp
-#, fuzzy
msgctxt ""
"00000001.xhp\n"
"par_id3145069\n"
@@ -398,7 +361,6 @@ msgid "<ahelp hid=\"cui/ui/autocorrectdialog/reset\">Resets modified values back
msgstr ""
#: 00000001.xhp
-#, fuzzy
msgctxt ""
"00000001.xhp\n"
"par_id3145070\n"
@@ -434,7 +396,6 @@ msgstr ""
msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
-"13\n"
"help.text"
msgid "Back"
msgstr "རྒྱབ་ལོག"
@@ -443,7 +404,6 @@ msgstr "རྒྱབ་ལོག"
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">ལེགས་བཅོས་འབད་ཡོད་པའི་གནས་གོང་ཚུ་ ལོག་འདི་རང་སྔོན་སྒྲིག་གི་གནས་གོང་ལུ་སླར་སྒྲིག་འབདཝ་ཨིན།$[officename] </ahelp>"
@@ -452,7 +412,6 @@ msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">ལེགས་བཅོས
msgctxt ""
"00000001.xhp\n"
"hd_id3148755\n"
-"59\n"
"help.text"
msgid "Reset"
msgstr "སླར་སྒྲིག་འབད།"
@@ -461,7 +420,6 @@ msgstr "སླར་སྒྲིག་འབད།"
msgctxt ""
"00000001.xhp\n"
"par_id3149651\n"
-"60\n"
"help.text"
msgid "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Resets changes made to the current tab to those applicable when this dialog was opened. A confirmation query does not appear when you close the dialog.</ahelp>"
msgstr "<ahelp hid=\"HID_TABDLG_RESET_BTN\"> འ་ནི་ཌའི་ལོག་འདི་ཁ་ཕྱེ་ཡོད་པའི་བསྒང་ འཇུག་ཁྱབ་ཀྱི་ད་ལྟོའི་ཨེབ་ལྡེ་ལུ་ བསྒྱུར་བཅོས་བཟོ་ཡོད་མི་འདི་སླར་སྒྲིག་འབདཝ་ཨིན། ཌའི་ལོག་ཁ་གདམ་པའི་བསྒང་ ངེས་དཔྱདཀྱི་འདྲི་དཔྱད་འདི་མི་འབྱུང་།</ahelp>"
@@ -470,7 +428,6 @@ msgstr "<ahelp hid=\"HID_TABDLG_RESET_BTN\"> འ་ནི་ཌའི་ལོ
msgctxt ""
"00000001.xhp\n"
"hd_id3143278\n"
-"18\n"
"help.text"
msgid "Reset"
msgstr "སླར་སྒྲིག་འབད།"
@@ -479,7 +436,6 @@ msgstr "སླར་སྒྲིག་འབད།"
msgctxt ""
"00000001.xhp\n"
"par_id3150791\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Resets modified values back to the default values.</ahelp>"
msgstr "<ahelp hid=\"HID_TABDLG_RESET_BTN\"> ལེགས་བཅོས་འབད་ཡོད་མི་གི་གནས་གོང་འདི་ལོག་འདི་རང་སྔོན་སྒྲིག་གནས་གོང་ལུ་སླར་སྒྲིག་འབདཝ་ཨིན། </ahelp>"
@@ -488,7 +444,6 @@ msgstr "<ahelp hid=\"HID_TABDLG_RESET_BTN\"> ལེགས་བཅོས་འ
msgctxt ""
"00000001.xhp\n"
"par_id3154331\n"
-"20\n"
"help.text"
msgid "A confirmation query does not appear. If you confirm the dialog with OK all settings in this dialog are reset."
msgstr "ངེས་དཔྱད་འདྲི་དཔྱད་འདི་མི་འབྱུང་། ཁྱོད་ཀྱིས་བཏུབ་ཀྱི་ཐོག་ལས་ ཌའི་ལོག་འདི་ངེས་དཔྱད་འབད་བ་ཅིན་ ཌའི་ལོག་འདི་ནང་ཡོད་པའི་སྒྲིག་སྟངས་ཚུ་ཆ་མཉམ་སླར་སྒྲིག་ཨིན།"
@@ -497,7 +452,6 @@ msgstr "ངེས་དཔྱད་འདྲི་དཔྱད་འདི་མ
msgctxt ""
"00000001.xhp\n"
"hd_id3145173\n"
-"10\n"
"help.text"
msgid "Standard"
msgstr "ཚད་ལྡན།"
@@ -506,7 +460,6 @@ msgstr "ཚད་ལྡན།"
msgctxt ""
"00000001.xhp\n"
"par_id3154153\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Resets the values visible in the dialog back to the default installation values.</ahelp>"
msgstr "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\"> ཌའི་ལོག་ནང་མཐོང་ཚུགས་པའི་གནས་གོང་འདི་ལོག་འདི་རང་ སྔོན་སྒྲིག་གཞི་བཙུགས་གནས་གོང་ལུ་སླར་སྒྲིག་འབདཝ་ཨིན། </ahelp>"
@@ -515,7 +468,6 @@ msgstr "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\"> ཌའི་ལོག་ནང
msgctxt ""
"00000001.xhp\n"
"par_id3154299\n"
-"12\n"
"help.text"
msgid "A confirmation does not appear before the defaults are reloaded."
msgstr "སྔོན་སྒྲིག་ཚུ་ཡང་བསྐྱར་མངོན་གསལ་མ་འབད་བའི་ཧེ་མ་ངེས་དཔྱད་མི་འབྱུང་།"
@@ -524,7 +476,6 @@ msgstr "སྔོན་སྒྲིག་ཚུ་ཡང་བསྐྱར་མ
msgctxt ""
"00000001.xhp\n"
"hd_id3147502\n"
-"72\n"
"help.text"
msgid "Back"
msgstr "རྒྱབ་ལོག"
@@ -533,7 +484,6 @@ msgstr "རྒྱབ་ལོག"
msgctxt ""
"00000001.xhp\n"
"par_id3150439\n"
-"73\n"
"help.text"
msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">View the selections in the dialog made in the previous step. The current settings remain unchanged.</ahelp> This button can only be activated from page two on."
msgstr "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">ཧེ་མའི་རིམ་པ་གི་ནང་ལུ་བཟོ་ཡོད་པའི་ཌའི་ལོག་ནང་གི་སེལ་འཐུ་ཚུ་སྟོན། ད་ལྟོའི་སྒྲིག་སྟངས་ཚུ་བསྒྱུར་བཅོས་མེདཔ་འབད་ལུསཔ་ཨིན།་</ahelp> འ་ནི་ཨེབ་རྟ་འདི་ ཤོག་ལེབ་གཉིས་པ་ལས་རྐྱངམ་ཅིག་ཤུགས་ལྡན་བཟོ་བཏུབ།"
@@ -547,20 +497,17 @@ msgid "Options"
msgstr ""
#: 00000001.xhp
-#, fuzzy
msgctxt ""
"00000001.xhp\n"
"par_id3155314\n"
-"53\n"
"help.text"
msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Click the <emph>Options</emph> label to expand the dialog to show further options. Click again to restore the dialog.</ahelp>"
-msgstr "གདམ་ཁ་ཚུ་ཐེབས་སྟོན་ནིའི་དོན་ལུ་ ཌའི་ལོག་རྒྱ་འཕར་འབད་ནི་ལུ་ ཨེབ་རྟ་ཧེང་བཀལ་ཨེབ་གཏང་། <ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Click the<emph> More</emph> ཌའི་ལོག་འདི་སོར་ཆུད་འབད་ནི་ལུ་ལོག་འདི་རང་ཨེབ་གཏང་།</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3161659\n"
-"41\n"
"help.text"
msgid "<variable id=\"siehe\">See also the following functions:</variable>"
msgstr ""
@@ -569,7 +516,6 @@ msgstr ""
msgctxt ""
"00000001.xhp\n"
"par_id3147418\n"
-"55\n"
"help.text"
msgid "<variable id=\"regulaer\">The search supports <link href=\"text/shared/01/02100001.xhp\" name=\"regular expressions\">regular expressions</link>. You can enter \"all.*\", for example to find the first location of \"all\" followed by any characters. If you want to search for a text that is also a regular expression, you must precede every character with a \\ character. You can switch the automatic evaluation of regular expression on and off 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>.</variable>"
msgstr ""
@@ -578,7 +524,6 @@ msgstr ""
msgctxt ""
"00000001.xhp\n"
"par_id3163714\n"
-"56\n"
"help.text"
msgid "<variable id=\"wahr\">If an error occurs, the function returns a logical or numerical value.</variable>"
msgstr ""
@@ -587,7 +532,6 @@ msgstr ""
msgctxt ""
"00000001.xhp\n"
"par_id3154145\n"
-"54\n"
"help.text"
msgid "<variable id=\"kontext\">(This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link>).</variable>"
msgstr ""
@@ -596,7 +540,6 @@ msgstr ""
msgctxt ""
"00000001.xhp\n"
"par_id3152791\n"
-"61\n"
"help.text"
msgid "<variable id=\"wiederholen\">By double-clicking a tool, you can use it for multiple tasks. If you call the tool with a single-click, it reverts back to the last selection after completing the task.</variable>"
msgstr ""
@@ -1093,7 +1036,6 @@ msgstr "<bookmark_value>ཚད་འཇལ་ཆ་ཕྲན་; གཞི་བ
msgctxt ""
"00000003.xhp\n"
"hd_id3147543\n"
-"1\n"
"help.text"
msgid "Conversion of measurement units"
msgstr "ཚད་འཇལ་ཆ་ཕྲན་ཚུ་གི་གཞི་བསྒྱུར།"
@@ -1175,8 +1117,8 @@ msgctxt ""
"00000003.xhp\n"
"par_idN106E1\n"
"help.text"
-msgid "in or \""
-msgstr "ནང་ན་ཡང་ན \""
+msgid "in or ″"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -1278,7 +1220,6 @@ msgstr "བརྡ་བཀོད་འདི་འཛུལ་སྤྱོད་
msgctxt ""
"00000004.xhp\n"
"hd_id3160447\n"
-"1\n"
"help.text"
msgid "<variable id=\"wie\">To access this command...</variable>"
msgstr "<variable id=\"wie\">བརྡ་བཀོད་འདི་འཛུལ་སྤྱོད་འབད་ནི་ལུ... </variable>"
@@ -1287,7 +1228,6 @@ msgstr "<variable id=\"wie\">བརྡ་བཀོད་འདི་འཛུལ
msgctxt ""
"00000004.xhp\n"
"par_id3147212\n"
-"47\n"
"help.text"
msgid "<variable id=\"related\"><emph>Related Topics</emph></variable>"
msgstr "<variable id=\"related\"><emph>འབྲེལ་བ་ཡོད་པའི་གནད་དོན།</emph></variable>"
@@ -1304,7 +1244,6 @@ msgstr "<image id=\"img_id3152427\" src=\"cmd/sc_color.png\" width=\"0.222inch\"
msgctxt ""
"00000004.xhp\n"
"par_id3146067\n"
-"46\n"
"help.text"
msgid "Font Color"
msgstr "ཡིག་གཟུགས་ཀྱི་ཚོས་གཞི།"
@@ -1321,7 +1260,6 @@ msgstr "<image id=\"img_id3149716\" src=\"cmd/sc_color.png\" width=\"0.222inch\"
msgctxt ""
"00000004.xhp\n"
"par_id3149893\n"
-"7\n"
"help.text"
msgid "Font Color"
msgstr "ཡིག་གཟུགས་ཀྱི་ཚོས་གཞི།"
@@ -1338,7 +1276,6 @@ msgstr "<image id=\"img_id3146957\" src=\"cmd/sc_justifypara.png\" width=\"0.222
msgctxt ""
"00000004.xhp\n"
"par_id3150693\n"
-"8\n"
"help.text"
msgid "Line spacing: 1"
msgstr "གྲལ་ཐིག་བར་སྟོང་བཞག་ཐང་ :༡"
@@ -1355,7 +1292,6 @@ msgstr "<image id=\"img_id3163802\" src=\"cmd/sc_spacepara15.png\" width=\"0.222
msgctxt ""
"00000004.xhp\n"
"par_id3154173\n"
-"9\n"
"help.text"
msgid "Line spacing: 1.5"
msgstr "གྲལ་ཐིག་བར་སྟོང་བཞག་ཐངས:༡.༥"
@@ -1372,7 +1308,6 @@ msgstr "<image id=\"img_id3153252\" src=\"cmd/sc_spacepara2.png\" width=\"0.222i
msgctxt ""
"00000004.xhp\n"
"par_id3152824\n"
-"10\n"
"help.text"
msgid "Line spacing: 2"
msgstr "གྲལ་ཐིག་བར་སྟོང་བཞག་ཐང་:༢"
@@ -1389,7 +1324,6 @@ msgstr "<image id=\"img_id3153126\" src=\"cmd/sc_superscript.png\" width=\"0.222
msgctxt ""
"00000004.xhp\n"
"par_id3145121\n"
-"11\n"
"help.text"
msgid "Superscript"
msgstr "སྟེང་ཡིག"
@@ -1406,7 +1340,6 @@ msgstr "<image id=\"img_id3155135\" src=\"cmd/sc_subscript.png\" width=\"0.222in
msgctxt ""
"00000004.xhp\n"
"par_id3151385\n"
-"12\n"
"help.text"
msgid "Subscript"
msgstr "འོག་ཡིག"
@@ -1416,14 +1349,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id3148550\n"
"help.text"
-msgid "<image id=\"img_id3149294\" src=\"res/helpimg/feldurch.png\" width=\"0.9374inch\" height=\"0.2398inch\"><alt id=\"alt_id3149294\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149294\" src=\"res/helpimg/feldurch.png\" width=\"0.9374inch\" height=\"0.2398inch\"><alt id=\"alt_id3149294\">ངོས་དཔར་</alt></image>"
+msgid "<image id=\"img_id3149294\" src=\"media/helpimg/feldurch.png\" width=\"0.9374inch\" height=\"0.2398inch\"><alt id=\"alt_id3149294\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149294\" src=\"media/helpimg/feldurch.png\" width=\"0.9374inch\" height=\"0.2398inch\"><alt id=\"alt_id3149294\">ངོས་དཔར་</alt></image>"
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id3152772\n"
-"15\n"
"help.text"
msgid "Line Style"
msgstr "གྲལ་ཐིག་གི་བཟོ་རྣམ།"
@@ -1433,14 +1365,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id3153379\n"
"help.text"
-msgid "<image id=\"img_id3148401\" src=\"res/helpimg/feldcolo.png\" width=\"1.0417inch\" height=\"0.2398inch\"><alt id=\"alt_id3148401\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148401\" src=\"res/helpimg/feldcolo.png\" width=\"1.0417inch\" height=\"0.2398inch\"><alt id=\"alt_id3148401\">ངོས་དཔར</alt></image>"
+msgid "<image id=\"img_id3148401\" src=\"media/helpimg/feldcolo.png\" width=\"1.0417inch\" height=\"0.2398inch\"><alt id=\"alt_id3148401\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148401\" src=\"media/helpimg/feldcolo.png\" width=\"1.0417inch\" height=\"0.2398inch\"><alt id=\"alt_id3148401\">ངོས་དཔར</alt></image>"
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id3149290\n"
-"16\n"
"help.text"
msgid "Line Color"
msgstr "གྲལ་ཐིག་གི་ཚོས་གཞི།"
@@ -1450,14 +1381,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id3156214\n"
"help.text"
-msgid "<image id=\"img_id3149807\" src=\"res/helpimg/feldbrei.png\" width=\"0.6563inch\" height=\"0.2189inch\"><alt id=\"alt_id3149807\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149807\" src=\"res/helpimg/feldbrei.png\" width=\"0.6563inch\" height=\"0.2189inch\"><alt id=\"alt_id3149807\">ངོས་དཔར</alt></image>"
+msgid "<image id=\"img_id3149807\" src=\"media/helpimg/feldbrei.png\" width=\"0.6563inch\" height=\"0.2189inch\"><alt id=\"alt_id3149807\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149807\" src=\"media/helpimg/feldbrei.png\" width=\"0.6563inch\" height=\"0.2189inch\"><alt id=\"alt_id3149807\">ངོས་དཔར</alt></image>"
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id3163044\n"
-"17\n"
"help.text"
msgid "Line Width"
msgstr "གྲལ་ཐིག་གི་རྒྱ་ཚད།"
@@ -1467,14 +1397,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id3154154\n"
"help.text"
-msgid "<image id=\"img_id3145152\" src=\"res/helpimg/swh00117.png\" width=\"2.0835inch\" height=\"0.2398inch\"><alt id=\"alt_id3145152\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145152\" src=\"res/helpimg/swh00117.png\" width=\"2.0835inch\" height=\"0.2398inch\"><alt id=\"alt_id3145152\">ངོས་དཔར</alt></image>"
+msgid "<image id=\"img_id3145152\" src=\"media/helpimg/swh00117.png\" width=\"2.0835inch\" height=\"0.2398inch\"><alt id=\"alt_id3145152\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145152\" src=\"media/helpimg/swh00117.png\" width=\"2.0835inch\" height=\"0.2398inch\"><alt id=\"alt_id3145152\">ངོས་དཔར</alt></image>"
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id3150650\n"
-"18\n"
"help.text"
msgid "Area Style / Filling"
msgstr "མངའ་ཁོངས་ཀྱི་བཟོ་རྣམ་/ བཀང་དོ།"
@@ -1491,7 +1420,6 @@ msgstr "<image id=\"img_id3147502\" src=\"cmd/sc_aligntop.png\" width=\"0.222inc
msgctxt ""
"00000004.xhp\n"
"par_id3148557\n"
-"20\n"
"help.text"
msgid "Align Top"
msgstr "སྤྱི་ཏོག་ཕྲང་།"
@@ -1508,7 +1436,6 @@ msgstr "<image id=\"img_id3150410\" src=\"cmd/sc_cellvertbottom.png\" width=\"0.
msgctxt ""
"00000004.xhp\n"
"par_id3149287\n"
-"21\n"
"help.text"
msgid "Align Bottom"
msgstr "མཇུག་ཕྲང་།"
@@ -1525,7 +1452,6 @@ msgstr "<image id=\"img_id3153363\" src=\"cmd/sc_alignvcenter.png\" width=\"0.22
msgctxt ""
"00000004.xhp\n"
"par_id3150873\n"
-"22\n"
"help.text"
msgid "Align Center Vertically"
msgstr "དབུས་ཀེར་ཕྲང་འབད་ཕྲང་།"
@@ -1542,7 +1468,6 @@ msgstr "<image id=\"img_id3159123\" src=\"svx/res/nu01.png\" width=\"0.222inch\"
msgctxt ""
"00000004.xhp\n"
"par_id3147418\n"
-"27\n"
"help.text"
msgid "Apply"
msgstr "འཇུག་སྤྱོད་འབད།"
@@ -1559,7 +1484,6 @@ msgstr "<image id=\"img_id3145364\" src=\"svx/res/nu02.png\" width=\"0.222inch\"
msgctxt ""
"00000004.xhp\n"
"par_id3148617\n"
-"28\n"
"help.text"
msgid "Cancel"
msgstr "ཆ་མེད་གཏང་།"
@@ -1576,7 +1500,6 @@ msgstr "<image id=\"img_id3154096\" src=\"svtools/res/up_small.png\" width=\"0.2
msgctxt ""
"00000004.xhp\n"
"par_id3145800\n"
-"30\n"
"help.text"
msgid "Up One Level"
msgstr "གནས་རིམ་ཅིག་ཡར།"
@@ -1593,7 +1516,6 @@ msgstr "<image id=\"img_id3147257\" src=\"fpicker/res/fp011.png\" width=\"0.222i
msgctxt ""
"00000004.xhp\n"
"par_id3154064\n"
-"48\n"
"help.text"
msgid "Create New Directory"
msgstr "སྣོད་ཐོ་གསརཔ་གསར་བསྐྲུན་འབད།"
@@ -1610,7 +1532,6 @@ msgstr "<image id=\"img_id3153334\" src=\"svtools/res/up_small.png\" width=\"0.2
msgctxt ""
"00000004.xhp\n"
"par_id3145646\n"
-"39\n"
"help.text"
msgid "Up One Level"
msgstr "གནས་རིམ་ཅིག་ཡར།"
@@ -1627,7 +1548,6 @@ msgstr "<image id=\"img_id3147257\" src=\"fpicker/res/fp011.png\" width=\"0.222i
msgctxt ""
"00000004.xhp\n"
"par_id3153005\n"
-"40\n"
"help.text"
msgid "Create New Folder"
msgstr ""
@@ -1644,7 +1564,6 @@ msgstr "<image id=\"img_id3150656\" src=\"res/sc06301.png\" width=\"0.222inch\"
msgctxt ""
"00000004.xhp\n"
"par_id3146915\n"
-"35\n"
"help.text"
msgid "<ahelp hid=\".\">Go to the previous comment</ahelp>"
msgstr "<ahelp hid=\".\">ཧེ་མམ་གྱི་འདྲན་འཛིན་འདི་ལུ་འགྱོ།</ahelp>"
@@ -1661,7 +1580,6 @@ msgstr "<image id=\"img_id3154363\" src=\"res/sc06300.png\" width=\"0.222inch\"
msgctxt ""
"00000004.xhp\n"
"par_id3159184\n"
-"36\n"
"help.text"
msgid "<ahelp hid=\".\">Go to the next comment</ahelp>"
msgstr "<ahelp hid=\".\">ཤུལ་མམ་གྱི་འདྲན་འཛིན་འདི་ལུ་འགྱོ</ahelp>"
@@ -1678,7 +1596,6 @@ msgstr "<image id=\"img_id3147100\" src=\"cmd/sc_open.png\" width=\"0.222inch\"
msgctxt ""
"00000004.xhp\n"
"par_id3147339\n"
-"37\n"
"help.text"
msgid "Open File"
msgstr "ཡིག་སྣོད་ཁ་ཕྱེ།"
@@ -1695,7 +1612,6 @@ msgstr "<image id=\"img_id3156318\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\
msgctxt ""
"00000004.xhp\n"
"par_id3149109\n"
-"38\n"
"help.text"
msgid "Save As"
msgstr "དེ་སྦེ་སྲུངས།"
@@ -1712,7 +1628,6 @@ msgstr "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\
msgctxt ""
"00000004.xhp\n"
"par_id3155336\n"
-"76\n"
"help.text"
msgid "Export Directly as PDF"
msgstr "ཐད་ཀར་དུ་པི་ཌི་ཨེཕ་སྦེ་ཕྱིར་འདྲེན་འབད།"
@@ -1737,7 +1652,6 @@ msgstr "<bookmark_value>common terms;glossaries</bookmark_value><bookmark_value>
msgctxt ""
"00000005.xhp\n"
"hd_id3154896\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/00/00000005.xhp\" name=\"General Glossary\">General Glossary</link>"
msgstr "<link href=\"text/shared/00/00000005.xhp\" name=\"General Glossary\">སྤྱིར་གཏང་ཚིག་ཐོ་</link>"
@@ -1746,7 +1660,6 @@ msgstr "<link href=\"text/shared/00/00000005.xhp\" name=\"General Glossary\">ས
msgctxt ""
"00000005.xhp\n"
"par_id3154788\n"
-"2\n"
"help.text"
msgid "This glossary includes explanations of some of the most important terms you will come across in $[officename]."
msgstr "$[officename] ནང་ལུ་ གལ་ཅན་གྱི་ཐ་སྙད་ལ་ལོ་ཅིག་གི་འགྲེལ་བཤད་ཚུ་ ཚིག་ཐོ་དེ་གི་གྲངས་སུ་བཙུགས་ཡོད།"
@@ -1755,7 +1668,6 @@ msgstr "$[officename] ནང་ལུ་ གལ་ཅན་གྱི་ཐ་ས
msgctxt ""
"00000005.xhp\n"
"par_id3154873\n"
-"3\n"
"help.text"
msgid "Use the glossary to look up unfamiliar terms found in any $[officename] application."
msgstr "$[officename] འཇུག་སྤྱོད་ག་བཟུམ་གྱི་ནང་ལུ་འབད་རུང་ དེ་གི་ནང་ལུ་གོམས་འདྲིས་མེད་པའི་ཐ་སྙད་ཚུ་མཐོང་པ་ཅིན་ དེ་ཚུ་བལྟ་ནའི་དོན་ལུ་ཚིག་ཐོ་འདི་རག་ལེན་འཐབ།"
@@ -1772,7 +1684,6 @@ msgstr "<bookmark_value>ཨེ་ཨེསི་སི་ཨའི་ཨའི
msgctxt ""
"00000005.xhp\n"
"hd_id3156192\n"
-"22\n"
"help.text"
msgid "ASCII"
msgstr "ཨེ་ཨེསི་སི་ཨའི་ཨའི།"
@@ -1781,7 +1692,6 @@ msgstr "ཨེ་ཨེསི་སི་ཨའི་ཨའི།"
msgctxt ""
"00000005.xhp\n"
"par_id3155922\n"
-"23\n"
"help.text"
msgid "Abbreviation for American Standard Code for Information Interchange. ASCII is a character set for displaying fonts on personal computers. It consists of 128 characters including letters, numbers, punctuation and symbols. The extended ASCII character set contains 256 characters. Each character has been assigned a unique number, also referred to as ASCII Code."
msgstr "བརྡ་དོན་ཕན་ཚུན་བརྫེ་སོར་གྱི་དོན་ལུ་ཨེ་མི་རི་ཀཱན་ཚད་ལྡན་ཨང་རྟགས་ཀྱི་དོན་ལུ་སྡུད་ཚིག་ ཨེ་ཨེསི་སི་ཨའི་ཨའི་ཟེར་མི་འདི་ རང་དོན་གློག་རིག་གུ་ཡིག་གཟུགས་བཀྲམ་སྟོན་འབད་ནིའི་དོན་ལུ་ཡིག་འབྲུའི་གཞི་སྒྲིག་ཅིག་ཨིན། དེ་གིས་ ཡིག་གུ་ཚུ་དང་ཨང་གྲངས་ཚུ་ ཡིག་རྟགས་ཚུ་དེ་ལས་ བརྡ་མཚོན་ཚུ་བརྩིས་ཏེ་ ཡིག་འབྲུ་༡༢༨་ཡོདཔ་ཨིན། རྒྱ་བསྐྱེད་ཅན་གྱི་ཨེ་ཨེསི་སི་ཨའི་ཨའི་ ཡིག་འབྲུ་གཞི་སྒྲིགས་དེ་གིས་ཡིག་འབྲུ་༢༥༦་ཡོདཔ་ཨིན། ཡིག་འབྲུ་རེ་རེ་གིས་ཨང་གྲངས་མཐུན་མོང་མ་ཡིན་པ་ཅིག་འགན་སྤྲོད་ཡོདཔ་དང་ ཨེ་ཨེསི་སི་ཨའི་ཨའི་ཨང་རྟགས་ལུ་ཡང་གཞི་བསྟུན་འབད་ཡོད།"
@@ -1790,7 +1700,6 @@ msgstr "བརྡ་དོན་ཕན་ཚུན་བརྫེ་སོར་
msgctxt ""
"00000005.xhp\n"
"par_id3150823\n"
-"24\n"
"help.text"
msgid "In HTML pages, only characters from the 7 Bit ASCII character set should appear. Other characters, such as German umlauts, are distinguished by way of a separate code. You can input extended ASCII code characters: the $[officename] export filter performs the necessary conversion."
msgstr "ཨེཆ་ཊི་ཨེམ་ཨེལ་ཤོག་ལེབ་ཚུ་གིས་ ༧་བིཊི་ཨེ་ཨེསི་སི་ཨའི་ཨའི་ཡིག་འབྲུ་གཞི་སྒྲིག་ལས་ཡིག་འབྲུ་ཚུ་རྐྱངམ་ཅིག་འབྱུང་དགོཔ་ཨིན། ཇར་མཱན་ཨམལུཊིསི་བཟུམ་གྱི་གཞན་མི་ཡིག་འབྲུ་ཚུ་ ཨང་རྟགས་ཁ་འཕྱེལ་འཕྱེལཝ་གི་ཐབས་ལམ་གྱིས་འབད་ཁྱད་པར་འཕྱལ་དེ་ཡོདཔ་ཨིན། ཉེར་མཁོའི་གཞི་བསྒྱུར་འདི་རང་བཞིན་གྱིས་འབད་ $[officename] ཕྱིར་འདྲེན་ཚགས་མ་གིས་ལཱ་འགན་འགྲུབ་ཨིན།"
@@ -1799,7 +1708,6 @@ msgstr "ཨེཆ་ཊི་ཨེམ་ཨེལ་ཤོག་ལེབ་ཚ
msgctxt ""
"00000005.xhp\n"
"hd_id3151245\n"
-"25\n"
"help.text"
msgid "Bézier Object"
msgstr "བི་ཛིཡར་གྱི་དངོས་པོ།"
@@ -1808,7 +1716,6 @@ msgstr "བི་ཛིཡར་གྱི་དངོས་པོ།"
msgctxt ""
"00000005.xhp\n"
"par_id3154924\n"
-"26\n"
"help.text"
msgid "Developed by the French mathematician Pierre Bézier, a Bézier curve is a mathematically defined curve used in two-dimensional graphic applications. The curve is defined by four points: the initial position and the terminating position, and two separate middle points. Bézier objects can be modified by moving these points with the mouse."
msgstr "ཕིརེནཆི་རྩིས་རིག་མཁྱེན་པི་རི་བའི་ཛིཡར་གྱིས་བཟོ་ཡོད་པའི་ བ་ཛིཡར་གུག་གུགཔ་འདི་ མཚོན་གྲངས་ཀྱི་ཚད་རིས་འཇུག་སྤྱོད་གཉིས་ནང་ལུ་ལག་ལེན་འཐབ་མི་ རྩིས་རིག་ཀྱི་ངེས་འཛིན་འབད་ཡོད་པའི་གུག་གུགཔ་ཚུ་ཨིན། གུག་གུགཔ་འདི་དོན་ཚན་བཞི་གིས་ངེས་འཛིན་འབད་ཡོད་ : འགོ་ཐོག་གི་གནས་ས་དང་མཇུག་བསྡུ་བའི་གནས་ས་དེ་ལས་ བར་ན་ཁ་འཕྱེལ་འཕྱེལ་བའི་དོན་ཚན་ཚུ་ཨིན། བ་ཛིཡར་གྱི་དངོས་པོ་འདི་ མཱའུསི་དང་ཅིག་ཁར་དོན་ཚད་དེ་ཚུ་སྤོ་བཤུད་འབད་བཏུབ།"
@@ -1825,7 +1732,6 @@ msgstr ""
msgctxt ""
"00000005.xhp\n"
"hd_id3146907\n"
-"169\n"
"help.text"
msgid "Complex Text Layout (CTL)"
msgstr "གོ་དཀའ་བའི་ཚིག་ཡིག་གི་སྒྲིག་བཀོད་(CTL)"
@@ -1834,7 +1740,6 @@ msgstr "གོ་དཀའ་བའི་ཚིག་ཡིག་གི་སྒ
msgctxt ""
"00000005.xhp\n"
"par_id3156081\n"
-"166\n"
"help.text"
msgid "Languages with complex text layout may have some or all of the following features:"
msgstr "གོ་དཀའ་བའི་ཚིག་ཡིག་གི་སྒྲིག་བཀོད་ཀྱི་ཐོག་ལས་ཡོད་པའི་སྐད་ཡིག་ཚུ་ལུ་ ཁྱད་རྣམ་ལ་ལོ་ཅིག་ཡང་ཅིན་ཆ་མཉམ་ཡོདཔ་ཨིན:"
@@ -1843,7 +1748,6 @@ msgstr "གོ་དཀའ་བའི་ཚིག་ཡིག་གི་སྒ
msgctxt ""
"00000005.xhp\n"
"par_id3145116\n"
-"167\n"
"help.text"
msgid "The language is written with characters or glyphs that are composed of several parts"
msgstr "སྐད་ཡིག་འདི་ ཆ་ཤས་ལས་ཤ་ཅིག་གིས་བརྩམ་ཡོད་པའི་ཡིག་འབྲུ་ཡང་ཅིན་གིལིཕ་དང་བཅས་འབྲིཝ་ཨིན།"
@@ -1852,7 +1756,6 @@ msgstr "སྐད་ཡིག་འདི་ ཆ་ཤས་ལས་ཤ་ཅ
msgctxt ""
"00000005.xhp\n"
"par_id3154630\n"
-"168\n"
"help.text"
msgid "The text direction is from right to left."
msgstr "ཚིག་ཡིག་གི་ཕྱོགས་འདི་ གཡས་ལས་གཡོན་ལུ་ཨིན།"
@@ -1861,7 +1764,6 @@ msgstr "ཚིག་ཡིག་གི་ཕྱོགས་འདི་ གཡ
msgctxt ""
"00000005.xhp\n"
"par_id3148677\n"
-"170\n"
"help.text"
msgid "Currently, $[officename] supports Hindi, Thai, Hebrew, and Arabic as CTL languages."
msgstr "ད་ལྟོ་$[officename]གིས་ སི་ཊི་ཨེལ་སྐད་ཡིག་སྦེ་ ཧིན་དི་ ཐཱའི་ ཧེབ་བིརིའུ་དང་ཨ་ར་བིཀ་ཚུ་རྒྱབ་སྐྱོར་འབདཝ་ཨིན།"
@@ -1870,7 +1772,6 @@ msgstr "ད་ལྟོ་$[officename]གིས་ སི་ཊི་ཨེལ
msgctxt ""
"00000005.xhp\n"
"par_id3151176\n"
-"171\n"
"help.text"
msgid "Enable CTL support using <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>."
msgstr ""
@@ -1895,7 +1796,6 @@ msgstr "<bookmark_value>ཌི་ཌི་ཨི་; ངེས་ཚིག་</b
msgctxt ""
"00000005.xhp\n"
"hd_id3147084\n"
-"29\n"
"help.text"
msgid "DDE"
msgstr "ཌི་ཌི་ཨི།"
@@ -1904,7 +1804,6 @@ msgstr "ཌི་ཌི་ཨི།"
msgctxt ""
"00000005.xhp\n"
"par_id3145154\n"
-"30\n"
"help.text"
msgid "DDE stands for \"Dynamic Data Exchange,\" which is a predecessor of OLE, \"Object Linking and Embedding\". With DDE, objects are linked through file reference, but not embedded."
msgstr "ཌི་ཌི་ཨི་འདི་ \"Dynamic Data Exchange,\"ལུ་ དེ་ཡང་ ཨོ་ཨེལ་ཨི་\"Object Linking and Embedding\"གི་སྔོན་མམ་ལུ་གོཝ་ཨིན། ཌི་ཌི་ཨ་དང་བཅས་ དངོས་པོ་ཚུ་ ཡིག་སྣོད་ཀྱི་གཞི་བསྟུན་ཐོག་ལས་འབྲེལ་མཐུད་འབད་ཡོདཔ་ དེ་འབདཝ་ད་གནས་འདྲེན་མ་འབད་བར་ཡོད་མི།"
@@ -1913,7 +1812,6 @@ msgstr "ཌི་ཌི་ཨི་འདི་ \"Dynamic Data Exchange,\"ལུ
msgctxt ""
"00000005.xhp\n"
"par_id3154820\n"
-"79\n"
"help.text"
msgid "You can create a DDE link using the following procedure: Select cells from a Calc spreadsheet, copy them into the clipboard and switch to another spreadsheet and select the <emph>Edit - Paste Special</emph> dialog. Select <emph>the Link</emph> option to insert the contents as a DDE link. When activating a link, the inserted cell area will be read from its original file."
msgstr "ཁྱོད་ཀྱིས་ཌི་ཌི་ཨི་གི་འབྲེལ་མཐུད་འདི་ འོག་གི་བྱ་སྒོའི་ལམ་ལུགས་ལག་ལེན་འཐབ་སྟེ་གསར་བསྐྲུན་འབད་ཚུགས:སི་ཨེ་ཨེལ་སི་ཤོག་ཁྲམ་ལས་ནང་ཐིག་ཅིག་སེལ་འཐུ་འབད་བཞིནམ་ལས་ དེ་ཚུ་འཛིན་པང་ནང་ལུ་འདྲ་བཤུས་བརྐྱབ་ནི་དང་ དེ་ལས་ ཤོག་ཁྲམ་གཞན་མི་ཅིག་ལུ་སོར་བསྒྱུར་འབད་བཞིནམ་ལས་ <emph>ཞུན་དག་འབད་ - དམིགས་བསལ་གྱི་སྦྱར་</emph> dialog སེལ་འཐུ་འབད། ཌི་ཌི་ཨི་འབྲེལ་མཐུད་སྦེ་ནང་དོན་བཙུགས་ནིའི་དོན་ལུ་ <emph>འབྲེལ་མཐུད་</emph>གདམ་ཁ་འདི་ སེལ་འཐུ་འབད། འབྲེལ་མཐུད་དེ་ཤུགས་ལྡན་བཟོ་བའི་བསྒང་ ནང་ཐིག་གི་མངའ་ཁོངས་བཙུགས་ཡོད་མི་འདི་ ཁོ་རའི་ཡིག་སྣོད་ངོ་མ་ལས་ལྷབ་འོང་།"
@@ -1922,7 +1820,6 @@ msgstr "ཁྱོད་ཀྱིས་ཌི་ཌི་ཨི་གི་འབ
msgctxt ""
"00000005.xhp\n"
"hd_id3150439\n"
-"156\n"
"help.text"
msgid "Direct and Style Formatting"
msgstr "ཐད་ཀར་དང་བཟོ་རྣམ་རྩ་སྒྲིག་འབད་དོ།"
@@ -1931,7 +1828,6 @@ msgstr "ཐད་ཀར་དང་བཟོ་རྣམ་རྩ་སྒྲི
msgctxt ""
"00000005.xhp\n"
"par_id3159254\n"
-"34\n"
"help.text"
msgid "If you format a document without Styles, it is referred to as \"direct\" formatting. This means modifying text or other objects, such as frames or tables, by applying various attributes directly. The format applies only to the selected area and all changes must be made separately. Styles, on the other hand, are not applied to the text directly, but rather are defined in the Styles and Formatting window and then applied. One advantage is that when you change a Style, all parts of the document to which that Style is assigned are modified at the same time."
msgstr "ཁྱོད་ཀྱིས་ཡིག་ཆ་འདི་ བཟོ་རྣམ་མེད་པར་རྩ་སྒྲིག་འབད་བ་ཅིན་ དེ་ལུ་ \"direct\" རྩ་སྒྲིག་ཟེར་གཞི་བསྟུན་འབདཝ་ཨིན། དེའི་དོན་དག་འདི་ ཁྱད་ཆོས་སྣ་མང་ཐད་ཀར་དུ་འཇུག་སྤྱོད་འབད་ གཞི་ཁྲམ་ཡང་ན་ཐིག་ཁྲམ་བཟུམ་གྱི་ ཚིག་ཡིག་ཡང་ན་ དངོས་པོ་གཞན་ལེགས་བཅོས་འདི་ཨིན། རྩ་སྒྲིག་དེ་གིས་ སེལ་འཐུ་འབད་ཡོད་མི་མངའ་ཁོངས་རྐྱངམ་ཅིག་ལུ་འཇུག་སྤྱོད་འབདཝ་ལས་ བསྒྱུར་བཅོས་ཚུ་ཆ་མཉམ་སོ་སོ་བཟོ་དགོ། གཞན་མི་ནང་བཟོ་རྣམ་འདི་ ཚིག་ཡིག་ལུ་ཐད་ཀར་དུ་འཇུག་སྤྱོད་འབད་ནི་མེད་པའི་ཁར་ བཟོ་རྣམ་ལུ་ངེས་འཛིན་འབད་ནི་དང་ སྒོ་སྒྲིག་ལུ་རྩ་སྒྲིག་འབད་བཞིནམ་ལས་ དེ་ལས་ འཇུག་སྤྱོད་འབདཝ་ཨིན། ཕན་ཐོགས་ཅིག་འདི་ ཁྱོད་ཀྱིས་བཟོ་རྣམ་བསྒྱུར་བཅོས་འབད་བའི་བསྒང་ བཟོ་རྣམ་འགན་སྤྲོད་ཡོད་པའི་ཡིག་ཆ་གི་ཆ་ཤས་ཚུ་ཆ་མཉམ་དུས་ཡུན་ཅིག་ཁར་ལེགས་བཅོས་འབདཝ་ཨིན།"
@@ -1940,7 +1836,6 @@ msgstr "ཁྱོད་ཀྱིས་ཡིག་ཆ་འདི་ བཟོ
msgctxt ""
"00000005.xhp\n"
"par_id3147287\n"
-"35\n"
"help.text"
msgid "You can remove direct formatting from your document by selecting the entire text with the shortcut keys <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A and then choosing <emph>Format - Clear Direct Formatting</emph>."
msgstr "མགྱོགས་ཐབས་ཀྱི་ལྡེ་མིག་keys <switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཨེ་ དང་དེ་ལས་གདམ་ཁ་བརྐྱབ་སྟེ་<emph>རྩ་སྒྲིག་ - སྔོན་སྒྲིག་རྩ་སྒྲིག་འབད་དོ་</emph> དང་བཅས་ཚིག་ཡིག་གེ་ར་སེལ་འཐུ་འབད་བཞིནམ་ལས་ ཁྱོད་རའི་ཡིག་ཆ་ལས་ཁྱོད་ཀྱིས་ཐད་ཀར་རྩ་སྒྲིག་རྩ་བསྐྲད་གཏང་ཚུགས།"
@@ -1957,7 +1852,6 @@ msgstr "<bookmark_value>ཝན་ཌཱསི་; ཌོ་ཀིངངེས་
msgctxt ""
"00000005.xhp\n"
"hd_id3155132\n"
-"6\n"
"help.text"
msgid "Docking"
msgstr "ཌོ་ཀིང་།"
@@ -1966,7 +1860,6 @@ msgstr "ཌོ་ཀིང་།"
msgctxt ""
"00000005.xhp\n"
"par_id3154638\n"
-"7\n"
"help.text"
msgid "<variable id=\"andock1\">Some windows in $[officename], for example the Styles and Formatting window and the Navigator, are \"dockable\" windows. You can move these windows, re-size them or dock them to an edge. On each edge you can dock several windows on top of, or alongside each other; then, by moving the border lines, you can change the relative proportions of the windows.</variable>"
msgstr "<variable id=\"andock1\"> $[officename] ནང་གི་ཝིན་ཌཱསི་ལ་ལོ་ཅིག་ དཔེར་ན་ བཟོ་རྣམ་དང་སྒོ་སྒྲིག་རྩ་སྒྲིག་འབད་མི་དེ་ལས་ འགྲུལ་བསྐྱོདཔ་ཚུ་\"dockable\"ཝིན་ཌཱསི་ཨིན། ཁྱོད་ཀྱིས་ ཝིན་ཌཱསི་དེ་ཚུ་སྤོ་བཤུད་འབད་རུང་ ཚད་བསྐྱར་བཟོ་འབད་རུང་ཡང་ན་ དེ་ཚུ་མཐའམ་ལུ་ཌོཀ་འབད་ད། མཐའམ་རེ་རེ་ལུ་ མགོ་ལུ་ཡང་ན་རེ་རེ་གི་ཟུར་ཁ་ལུ་ ཁྱོད་ཀྱིས་ཝིན་ཌཱསི་ལས་ཤ་ཅིག་ཌོཀ་འབད་རུང་བཏུབ་ དེ་ལས་ མཐའ་མཚམས་ཀྱི་གྲལ་ཐིག་ཚུ་སྤོ་བཤུད་འབད་འདི་ཁྱོད་རང་ ཝིན་ཌཱསི་གི་འབྲེལ་བའི་སྙོམས་ཚད་བསྒྱུར་བཅོས་འབད་ཚུགས།</variable>"
@@ -1975,7 +1868,6 @@ msgstr "<variable id=\"andock1\"> $[officename] ནང་གི་ཝིན་
msgctxt ""
"00000005.xhp\n"
"par_id3147233\n"
-"127\n"
"help.text"
msgid "<variable id=\"andock2\">To undock and re-dock, holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, double-click a vacant area in the window. In the Styles and Formatting window, you can also double-click a gray part of the window next to the icons, while you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key.</variable>"
msgstr ""
@@ -1984,7 +1876,6 @@ msgstr ""
msgctxt ""
"00000005.xhp\n"
"hd_id3155306\n"
-"10\n"
"help.text"
msgid "Docking (AutoHide)"
msgstr "ཌོ་ཀིང་(རང་བཞིན་གྱི་སྦ་ནི།)"
@@ -1993,7 +1884,6 @@ msgstr "ཌོ་ཀིང་(རང་བཞིན་གྱི་སྦ་ན
msgctxt ""
"00000005.xhp\n"
"par_id3155854\n"
-"115\n"
"help.text"
msgid "On any window edge where another window is docked you will see a button which allows you to show or hide the window."
msgstr "སྒོ་སྒྲིག་འདི་ཌོཀཊི་འབད་ཡོད་པའི་ སྒོ་སྒྲིག་ག་ཅི་འབད་རུང་ཅིག་གི་མཐའམ་ལུ་ ཁྱོད་ལུ་སྒོ་སྒྲིག་སྟོན་ནི་ ཡང་ཅིན་ སྦ་བཅུགས་མི་གི་ཨེབ་རྟ་ཅིག་ཁྱོད་ཀྱིས་མཐོངམ་ཨིན།"
@@ -2002,7 +1892,6 @@ msgstr "སྒོ་སྒྲིག་འདི་ཌོཀཊི་འབད་
msgctxt ""
"00000005.xhp\n"
"par_id3143274\n"
-"161\n"
"help.text"
msgid "If you click the button on the window edge to show the window, the window will remain visible until you manually hide it again (with the same button)."
msgstr "ཁྱོད་ཀྱིས་ སྒོ་སྒྲིག་སྟོན་ནིའི་དོན་ལས་ སྒོ་སྒྲིག་གི་མཐའམ་གུ་ཡོད་པའ་ཨེབ་རྟ་འདི་ཨེབ་གཏང་པ་ཅིན་ སྒོ་སྒྲིག་དེ་གིས་ ཁྱོད་ཀྱི་ལག་ཐོ་ལས་མ་སྦ་ཚུན་ཚོད་ མཐོང་ཚུགསཔ་འབད་ལུསཔ་ཨིན། (ཨེབ་རྟ་ཅིག་པ་དང་བཅས།)"
@@ -2011,7 +1900,6 @@ msgstr "ཁྱོད་ཀྱིས་ སྒོ་སྒྲིག་སྟོ
msgctxt ""
"00000005.xhp\n"
"par_id3153093\n"
-"162\n"
"help.text"
msgid "If you show the window by clicking the window border, but not the button, you activate the <emph>AutoHide</emph> function. The AutoHide function allows you to temporarily show a hidden window by clicking on its edge. When you click in the document, the docked window hides again."
msgstr "ཁྱོད་ཀྱིས་ སྒོ་་སྒྲིག་འདི་ ཨེབ་རྟ་མེན་པར་ སྒོ་སྒྲིག་གི་མཐའམ་ཨེབ་སྦེ་སྟོན་པ་ཅིན་ ཁྱོད་ཀྱིས་<emph>རང་བཞིན་གྱི་སྦ་</emph> ལས་འགན་དེ་ཤུགས་ལྡན་བཟོ། རང་བཞིན་གྱི་ལས་འགན་དེ་གིས་ དེ་གི་མཐའམ་ལུ་ཨེབ་སྟེ་ ཁྱོད་ལུ་ གནས་སྐབས་ཀྱི་སྦ་འདི་ཡོད་མི་སྒོ་སྒྲིག་སྟོནམ་ཨིན། ཁྱོད་ཀྱིས་ཡིག་ཆ་ནང་ལུ་ཨེབ་གཏང་པའི་བསྒང་ ལོག་འདི་རང་ཌོཀཊི་སྒོ་སྒྲིག་སྦ་ནཞགཔ་ཨིན།"
@@ -2028,7 +1916,6 @@ msgstr "<bookmark_value>རྩ་སྒྲིག་གི་ངེས་ཚི
msgctxt ""
"00000005.xhp\n"
"hd_id3163710\n"
-"32\n"
"help.text"
msgid "Formatting"
msgstr "རྩ་སྒྲིག་འབད་དོ།"
@@ -2037,7 +1924,6 @@ msgstr "རྩ་སྒྲིག་འབད་དོ།"
msgctxt ""
"00000005.xhp\n"
"par_id3163821\n"
-"33\n"
"help.text"
msgid "Formatting refers to the visual layout of text using a word-processing or DTP program. This includes defining the paper format, page borders, fonts and font effects, as well as indents and spacing. You can format text <link href=\"text/shared/00/00000005.xhp#Section7\">directly or with Styles</link> provided by $[officename]."
msgstr "རྩ་སྒྲིག་འབད་ནི་འདི་གིས་མིང་ཚིག་-ལས་སྦྱོར་འབད་ནི་ཡང་ན་ཌི་ཊི་པི་ལས་རིམ་ཅིག་ལག་ལེན་འཐབ་དེ་ཚིག་ཡིག་གི་མཐོང་བའི་སྒྲིག་བཀོད་འདི་ལུ་གཞི་བསྟུན་འབདཝ་ཨིན། འདི་ནང་ཤོག་ལེབ་རྩ་སྒྲིག་ ཤོག་ལེབ་མཐའ་མཚམས་ཚུ་ ཡིག་གཟུགས་ཚུ་དང་ཡིག་གཟུགས་ནུས་ཅན་ཚུ་ངེས་འཛིན་འབད་ནི་དེ་བཟུམ་སྦེ་འགོ་མཚམས་ཚུ་དང་བར་སྟོང་བཞག་ཐངས་གྲངས་སུ་ཚུདཔ་ཨིན། ཁྱོད་ཀྱིས་ཚིག་ཡིག་རྩ་སྒྲིིག་ <link href=\"text/shared/00/00000005.xhp#Section7\">ཐད་ཀར་དུ་ཡང་ན་བཟོ་རྣམ་ཚུ་དང་གཅིག་ཁར་</link> བྱིན་ཡོད་མི་གིས་ $[officename]་འབད་བཏུབ་ཨིན།"
@@ -2054,7 +1940,6 @@ msgstr "<bookmark_value>ཨའི་ཨེམ་ཨི་; ངེས་ཚིག
msgctxt ""
"00000005.xhp\n"
"hd_id3156006\n"
-"164\n"
"help.text"
msgid "IME"
msgstr "ཨའི་ཨེམ་ཨི།"
@@ -2063,7 +1948,6 @@ msgstr "ཨའི་ཨེམ་ཨི།"
msgctxt ""
"00000005.xhp\n"
"par_id3157874\n"
-"165\n"
"help.text"
msgid "IME stands for Input Method Editor. A program that allows the user to enter complex characters from non-western character sets using a standard keyboard."
msgstr "ཨའི་ཨེམ་ཨི་འདི་ ཨིན་པུཊི་ཐབས་ལམ་ཞུན་དང་འཙད་མི་ལུ་གོཝ་ཨིན། ཚད་ལྡན་གྱི་ལྡེ་སྒོམ་ལག་ལེན་འཐབ་ཐོག་ལས་ ཝེསི་ཊན་མེན་མིའི་ཡིག་འབྲུ་གཞི་སྒྲིག་ལས་ ལག་ལེན་པ་ལུ་གོ་དཀའ་བའི་ཡིག་འབྲུ་ཚུ་བཙུགས་བཅུགས་མི་ལས་རིམ་ཨིན།"
@@ -2080,7 +1964,6 @@ msgstr "<bookmark_value>ཇེ་ཌི་བི་སི་; ངེས་ཚི
msgctxt ""
"00000005.xhp\n"
"hd_id3151172\n"
-"111\n"
"help.text"
msgid "JDBC"
msgstr "ཇེ་ཌི་བི་སི།"
@@ -2089,7 +1972,6 @@ msgstr "ཇེ་ཌི་བི་སི།"
msgctxt ""
"00000005.xhp\n"
"par_id3148386\n"
-"112\n"
"help.text"
msgid "You can use the Java Database Connectivity (JDBC) API to connect to a database from %PRODUCTNAME. JDBC drivers are written in the Java programming language and are platform independent."
msgstr "%PRODUCTNAME ལས་གནད་སྡུད་གཞི་རྟེན་ལུ་མཐུད་ནིའི་དོན་ལུ་ ཁྱོད་ཀྱིས་ ཇ་བ་གནད་སྡུད་མཐུད་འབྲེལ་(JDBC)ཨེ་པི་ཨའི་འདི་ལག་ལེན་འཐབ། ཇེ་ཌི་བི་སི་ འདྲེན་བྱེད་ཚུ་ཇ་བ་ལས་རིམ་བཟོ་ལས་སྐད་ཡིག་ནང་འབྲི་ཡོདཔ་དང་ མཉེན་རིམ་རང་དབང་ཚུ་ཨིན།"
@@ -2106,7 +1988,6 @@ msgstr "<bookmark_value>ཀར་ནིང་ངེས་ཚིག</bookmark_val
msgctxt ""
"00000005.xhp\n"
"hd_id3151282\n"
-"36\n"
"help.text"
msgid "Kerning"
msgstr "ཀར་ནིང་།"
@@ -2115,7 +1996,6 @@ msgstr "ཀར་ནིང་།"
msgctxt ""
"00000005.xhp\n"
"par_id3146321\n"
-"37\n"
"help.text"
msgid "Kerning means increasing or decreasing the amount of space between pairs of letters to improve the overall appearance of the text."
msgstr "ཀར་ནིང་ཟེར་མི་འདི་ ཚིག་ཡིག་གི་འབྱུང་སྣང་ཆ་མཉམ་ལེགས་བཟོ་ནི་ལུ་ ཡིག་གུའི་ཟུང་གི་བར་ན་བར་སྟོང་མང་ཉུང་གི་ཚད་ ཡར་འཕར་ནི་དང་མར་ཕབ་འབད་མི་འདི་ཨིན།"
@@ -2124,7 +2004,6 @@ msgstr "ཀར་ནིང་ཟེར་མི་འདི་ ཚིག་ཡ
msgctxt ""
"00000005.xhp\n"
"par_id3146078\n"
-"38\n"
"help.text"
msgid "The kerning tables contain information on which pairs of letters require more spacing. These tables are generally a component of a font."
msgstr "ཡིག་གུའི་ཟུང་ཚུ་ལས་ག་ལུ་བར་སྟོང་མངམ་དགོས་མཁོ་ཡོདཔ་ཨིན་ན་གི་ བརྡ་དོན་ཚུ་ཀར་ནིང་གི་ཐིག་ཁྲམ་ནང་ཡོདཔ་ཨིན། ཐིག་ཁྲམ་དེ་ཚུ་སྤྱིར་གཏང་ ཡིག་གཟུགས་ཀྱི་ཆ་ཤས་ཨིན།"
@@ -2141,7 +2020,6 @@ msgstr "<bookmark_value>འབྲེལ་མཐུད་; ངེས་ཚིག
msgctxt ""
"00000005.xhp\n"
"hd_id3150592\n"
-"55\n"
"help.text"
msgid "Link"
msgstr "འབྲེལ་མཐུད།"
@@ -2150,7 +2028,6 @@ msgstr "འབྲེལ་མཐུད།"
msgctxt ""
"00000005.xhp\n"
"par_id3150092\n"
-"56\n"
"help.text"
msgid "The <emph>Links</emph> command is found in the <emph>Edit</emph> menu. The command can only be activated when at least one link is contained in the current document. When you insert a picture, for example, you can either insert the picture directly into the document or insert the picture as a link."
msgstr "<emph>Links</emph> བརྡ་བཀོད་འདི་ <emph>Edit</emph>དཀར་ཆག་ནང་ལུ་འཐོབ་ཨིན། ད་ལྟོའི་ཡིག་ཆ་ནང་ལུ་འབྲལ་མཐུད་ཅིག་ཡོདཔ་ད་རྐྱངམ་ཅིག་ བརྡ་བཀོད་འདི་གིས་ཤུགས་ལྡན་བཟོ་བཏུབ། དཔེར་ན་ ཚད་རིས་བཟུམ་གྱི་དངོས་པོ་ཅིག་ཁྱོད་ཀྱིས་བཙུགསཔ་ད་ ཁྱོད་ཀྱིས་ ཡིག་ཆ་ནང་ལུ་ཐད་ཀར་དུ་འདྲ་བཤུས་བརྐྱབ་རུང་ཡང་ཅིན་ འབྲེལ་མཐུད་འབད་བཙུགས་རུང་བཏུབ།"
@@ -2159,7 +2036,6 @@ msgstr "<emph>Links</emph> བརྡ་བཀོད་འདི་ <emph>Edit</e
msgctxt ""
"00000005.xhp\n"
"par_id3145730\n"
-"57\n"
"help.text"
msgid "When an object is inserted directly into a document, the document size increases by (at least) the size in bytes of the object. You can save the document and open it on another computer, and the inserted object will still be in the same position in the document."
msgstr "དངོས་པོ་དེ་ཐད་ཀར་དུ་ཡིག་ཆ་ནང་འདྲ་བཤུས་བརྐྱབ་ད་ ཡིག་ཆ་གི་ཚད་འདི་ (ཉུང་ཤོས་རང་)དངོས་པོའི་བཱའིཊིསི་ནང་གི་ཚད་ལས་ཡར་འཕར་འགྱོཝ་ཨིན། ཁྱོད་ཀྱིས་ ཡིག་ཆ་འདི་སྲུང་བཞག་འབད་ནི་དང་ གློག་རིག་གཞན་མི་ནང་ལུ་ཁ་ཕྱེ་བ་ཅིན་ བཙུགས་ཡོད་པའི་དངོས་པོ་དེ་ ཡིག་ཆའི་ནང་ལུ་གནས་ས་གཅིག་པ་ལུ་སྡོད་འོང་།"
@@ -2168,7 +2044,6 @@ msgstr "དངོས་པོ་དེ་ཐད་ཀར་དུ་ཡིག་
msgctxt ""
"00000005.xhp\n"
"par_id3144765\n"
-"58\n"
"help.text"
msgid "If you insert the object as a link, only a reference to the file name is inserted. The file size of the document increases only by the path and file reference. If you open your document on another computer, however, the linked file must be in exactly the same position as given by the reference in order to view the object in the document."
msgstr "ཁྱོད་ཀྱིས་དངོས་པོ་འདི་ འབྲེལ་མཐུད་འབད་བཙུགས་པ་ཅིན་ ཡིག་སྣོད་ལུ་གཞི་བསྟུན་རྐྱངམ་ཅིག་བཙུགས་ནུག་ ཡིག་ཆ་གི་ཡིག་སྣོད་ཚད་འདི་ འགྲུལ་ལམ་དང་ཡིག་སྣོད་གཞི་བསྟུན་གིས་རྐྱངམ་ཅིག་ཡར་འཕར་འབདཝ་ཨིན། ཁྱོད་ཀྱིས་ ཁྱོད་རའི་ཡིག་ཆ་འདི་གློག་རིག་གཞན་མི་ཅིག་ནང་ལུ་ཁ་ཕྱེ་བ་ཅིན་ འབྲེལ་མཐུད་ཡིག་སྣོད་འདི་ ཡིག་ཆའི་ནང་གི་དངོས་པོ་སྟོན་ནི་ལུ་གཞི་བསྟུན་བྱིན་དེ་ཡོད་མི་བཟུམ་ གནས་ས་གཅིག་ལུ་སྡོད་དགོ།"
@@ -2177,7 +2052,6 @@ msgstr "ཁྱོད་ཀྱིས་དངོས་པོ་འདི་ འ
msgctxt ""
"00000005.xhp\n"
"par_id3153334\n"
-"59\n"
"help.text"
msgid "Use <emph>Edit - Links</emph> to see which files are inserted as links. The links can be removed if required. This will break the link and insert the object directly."
msgstr ""
@@ -2186,7 +2060,6 @@ msgstr ""
msgctxt ""
"00000005.xhp\n"
"hd_id3154512\n"
-"107\n"
"help.text"
msgid "Number System"
msgstr "ཨང་གྲངས་ཀྱི་རིམ་ལུགས།"
@@ -2195,7 +2068,6 @@ msgstr "ཨང་གྲངས་ཀྱི་རིམ་ལུགས།"
msgctxt ""
"00000005.xhp\n"
"par_id3157846\n"
-"108\n"
"help.text"
msgid "A number system is determined by the number of characters available for representing numbers. The decimal system, for instance is based on the ten numbers (0..9), the binary system is based on the two numbers 0 and 1, the hexadecimal system is based on 16 characters (0...9 and A...F)."
msgstr "ཨང་གྲངས་རིམ་ལུགས་འདི་ ཨང་གྲངས་ཚུའི་ཚབ་ཀྱི་དོན་ལུ་ འཐོབ་ཚུགས་ཡོད་མི་ཡིག་འབྲུ་ཚུ་གི་ཨང་གྲངས་ཀྱིས་གཏན་འབེབ་བཟོ་ཡོད། དཔེར་ན་ བཅུ་ཚག་རིམ་ལུགས་འདི་ ཨང་གྲངས་(༠..༩)གུ་གཞི་རྟེན་འབད་ཡོདཔ་དང་ ཟུང་ལྡན་རིམ་ལུགས་འདི་ ཨང་གྲངས་༠་དང་༡་གུ་གཞི་རྟེན་འབད་ཡོད་ དེ་ལས་ ཧེག་ཟ་ཌེ་སི་མཱལ་རིམ་ལུགས་འདི་ ཡིག་འབྲུ་༡༦་(༠...༩ དང་ ཨེ་...ཨེཕ་)གུ་གཞི་རྟེན་འབད་ཡོད།"
@@ -2212,7 +2084,6 @@ msgstr "<bookmark_value>དངོས་པོའི་;ངེས་ཚིག་
msgctxt ""
"00000005.xhp\n"
"hd_id3156358\n"
-"41\n"
"help.text"
msgid "Object"
msgstr "དངོས་པོ།"
@@ -2221,7 +2092,6 @@ msgstr "དངོས་པོ།"
msgctxt ""
"00000005.xhp\n"
"par_id3144748\n"
-"42\n"
"help.text"
msgid "An object is a screen element containing data. It can refer to application data, such as text or graphics."
msgstr "དངོས་པོ་འདི་གནད་སྡུད་ཡོད་མི་གི་གསལ་གཞི་ཆ་ཤས་ཨིན། དེ་གིས་ ཚིག་ཡིག་ཡང་ན་ ཚད་རིས་བཟུམ་གྱི་གནད་སྡུད་འཇུག་སྤྱོད་ལུ་གཞི་བསྟུན་འབདཝ་ཨིན།"
@@ -2230,7 +2100,6 @@ msgstr "དངོས་པོ་འདི་གནད་སྡུད་ཡོད
msgctxt ""
"00000005.xhp\n"
"par_id3153839\n"
-"43\n"
"help.text"
msgid "Objects are independent and do not influence each other. Any object containing data can be assigned certain commands. For example, a graphic object has commands for image editing and a spreadsheet contains calculation commands."
msgstr "དངོས་པོ་ཚུ་རང་དབང་ཨིནམ་ལས་གཅིག་གི་གཅིག་ལུ་རྒྱུད་བསྐུལ་འབད་ནི་མེད། གནད་སྡུད་ཡོད་མི་གི་དངོས་ཕོ་ག་འབད་རུང་ བརྡ་བཀོད་ཚུ་ལ་ལོ་ཅིག་འགན་སྤྲོད་འབད་བཏུབ། དཔེར་ན་ ཚད་རིས་དངོས་པོ་ལུ་གཟུགས་བརྙན་ཞུན་དག་འབད་ནི་ལུ་བརྡ་བཀོད་ཡོད་ དེ་ལས་ ཤོག་ཁྲམ་ལུ་རྩིས་ལས་ཀྱི་བརྡ་བཀོད་ཚུ་ཡོད།"
@@ -2247,7 +2116,6 @@ msgstr "<bookmark_value>ཨོ་ཌི་བི་སི་;ངེས་ཚི
msgctxt ""
"00000005.xhp\n"
"hd_id3152827\n"
-"44\n"
"help.text"
msgid "ODBC"
msgstr "ཨོ་ཌི་བི་སི།"
@@ -2256,7 +2124,6 @@ msgstr "ཨོ་ཌི་བི་སི།"
msgctxt ""
"00000005.xhp\n"
"par_id3153530\n"
-"45\n"
"help.text"
msgid "Open Database Connectivity (ODBC) is a protocol norm with which applications can access database systems. The query language used is Structured Query Language (SQL). In $[officename], you can determine for each database whether to use SQL commands to run queries. Alternatively, you can use the interactive help to define your query by mouseclick and have it automatically translated into SQL by $[officename]."
msgstr "ཁ་ཕྱེ་བའི་གནད་སྡུད་གཞི་རྟེན་འབྲེལ་མཐུད་ (ODBC)འདི་ འཇུག་སྤྱོད་ཀྱིས་ གནད་སྡུད་གཞི་རྟེན་རིམ་ལུགས་འཛུལ་སྤྱོད་འབད་བཏུབ་པའི་ གནད་སྤེལ་ལམ་ལུགས་ཀྱི་ཚད་གཞི་ཨིན། འདྲི་དཔྱད་སྐད་ཡིག་ལག་ལེན་འཐབ་མི་འདི་ གཞི་བཀོད་འབད་ཡོད་མི་འདྲི་དཔྱད་སྐད་ཡིག་ཨིན།(SQL)$[officename] ནང་ལུ་ཁྱོད་ཀྱིས་ གནད་སྡུད་གཞི་རྟེན་གྱི་དོན་ལུ་ འདྲི་དཔྱད་ཚུ་གཡོག་བཀོལ་ནི་ལུ་ཨེསི་ཀིའུ་ཨེལ་བརྡ་བཀོད་ཚུ་ ལག་ལེན་འཐབ་ནི་ཨིན་ན་མེན་ན་ཚུ་གཏན་འབེབ་བཟོ། ཐབས་གཞན་འབད་ མཱའུསི་ཀིལིཀི་གིས་ ཁྱོད་རའི་འདྲི་དཔྱད་ངེས་འཛིན་འབད་ནི་ལུ་ ཁྱོད་ཀྱིས་ཕན་ཚུན་འབྲེལ་ལྡན་གྱི་སྒྲོག་རམ་ལག་ལེན་འཐབ་བཞིནམ་ལས་ $[officename] གི་འབད་རང་བཞིན་གྱིས་ཨེསི་ཀིའུ་ཨེལ་ནང་ལུ་སྐད་བསྒྱུར་འབད་བཅུག་ད།"
@@ -2265,7 +2132,6 @@ msgstr "ཁ་ཕྱེ་བའི་གནད་སྡུད་གཞི་ར
msgctxt ""
"00000005.xhp\n"
"par_id3153956\n"
-"75\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">The 32bit ODBC functions required here can be installed on your system at any time with the help of the setup program supplied with your database. You can then amend the properties through the Control Panel. </caseinline></switchinline>"
msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\"> ནཱ་ལུ་དགོ་པའི་ ༣༢ བིཊི་ ཨོ་ཌི་བི་སི་ལས་འགན་ཚུ་ ཁྱོད་རའི་གནད་སྡུད་གཞི་རྟེན་གི་ཐོག་ལས་ གཞི་སྒྲིག་ལས་རིམ་བཀྲམ་སྤེལ་གྱི་སྒྲོག་རམ་གོ་ལས་ ཁྱོད་ཀྱི་རིམ་ལུགས་འདི་བཙུགས་བཏུབ། དེ་ལས་ཁྱོད་ཀྱིས་ ཚད་འཛིན་པེ་ནཱལ་ལས་བརྒྱུད་དེ་ རྒྱུ་དངོས་ཚུ་ལེགས་བཅོས་འབད། </caseinline></switchinline>"
@@ -2282,7 +2148,6 @@ msgstr "<bookmark_value>ཨོ་ཨེལ་ཨི་; ངེས་ཚིག་
msgctxt ""
"00000005.xhp\n"
"hd_id3154479\n"
-"46\n"
"help.text"
msgid "OLE"
msgstr "ཨོ་ཨེལ་ཨི།"
@@ -2291,7 +2156,6 @@ msgstr "ཨོ་ཨེལ་ཨི།"
msgctxt ""
"00000005.xhp\n"
"par_id3157840\n"
-"47\n"
"help.text"
msgid "Object Linking and Embedding (OLE) objects can be linked to a target document or may also be embedded. Embedding inserts a copy of the object and details of the source program in the target document. If you want to edit the object, simply activate the source program by double-clicking on the object."
msgstr "དངོས་པོ་འབྲེལ་མཐུད་དང་གནས་འདྲན་བའི་བསྒང་གི་དངོས་པོ་ཚུ་ དམིགས་གཏད་ཡིག་ཆ་ལུ་འབྲེལ་མཐུད་འབད་བཏུབ་ནི་དང་ཡང་ན་ གནས་འདྲན་འབད་འོང་། དམིགས་གཏད་ཡིག་ཆ་ནང་གི་འབྱུང་ཁུངས་ལས་རིམ་གྱི་རྒྱས་བཤད་དང དངོས་པོའི་འདྲ་བཤུས་ཅིག་འབྲེལ་མཐུད་ཀྱིས་བཙུགསཔ་ཨིན། ཁྱོད་ཀྱིས་དངོས་པོ་འདི་ཞུན་དག་འབད་དགོ་པ་ཅིན་ དངོས་པོ་གུ་ཨེབ་རྟ་ཚར་གཉིས་ཨེབ་པའི་གོ་ལས་འབྱུང་ཁུངས་ལས་རིམ་འདི་ཤུགས་ལྡན་བཟོ།"
@@ -2308,7 +2172,6 @@ msgstr "<bookmark_value>ཇི་ཨེལ་ཁ་ཕྱེ་; ངེས་ཚ
msgctxt ""
"00000005.xhp\n"
"hd_id3154507\n"
-"98\n"
"help.text"
msgid "OpenGL"
msgstr "ཇི་ཨེལ་ཁ་ཕྱེ།"
@@ -2317,7 +2180,6 @@ msgstr "ཇི་ཨེལ་ཁ་ཕྱེ།"
msgctxt ""
"00000005.xhp\n"
"par_id3146879\n"
-"99\n"
"help.text"
msgid "OpenGL represents a 3D graphics language, initially developed by SGI (Silicon Graphics Inc). Two dialects of this language are commonly used: Microsoft OpenGL, developed for use under Windows NT, and Cosmo OpenGL made by SGI. The latter represents an independent graphics language for all platforms and all kind of computers, even usable on machines without special 3-D graphics hardware."
msgstr "ཨེསི་ཇི་ཨའི་(Silicon Graphics Inc)གི་འགོ་ཐོག་བསྒང་བཟོ་བཟོ་བའི་ ༣་ཌི་ཚད་རིས་སྐད་ཡིག་ཅིག་ ཇི་ཨེལ་ཁ་ཕྱེ་གིས་ཚབ་འབདཝ་ཨིན། སྐད་ཡིག་དེ་གི་ཁ་སྐད་གཉིས་པོ་འདི་མཐུན་མོང་དུ་ལག་ལེན་འཐབ་ཨིན: ཝུན་ཌཱསི་ཨེན་ཊི་གི་འོག་ལུ་ལག་ལེན་འཐབ་ནི་གི་དོན་ལུ་ མའི་ཀོརོ་སོཕཊི་ཇི་ཨེལ་ཁ་ཕྱེ་ཟེར་མི་དང་ ཨེསི་ཇི་ཨའི་གི་བཟོ་མི་ཀོསི་མོ་ཇི་ཨེལ་ཁ་ཕྱེ་ཟེར་མི་ཚུ་ཨིན། དམིགས་བསལ་གྱི་ ༣ཌི་ ཚད་རིས་སྲ་ཆས་མེད་རུང་གློག་འཕྲུལ་གུ་ལག་ལེན་འཐབ་བཏུབ་པའི་ གློག་རིག་གི་དབྱེ་ཁག་ཆ་མཉམ་དང་མཉེན་རིམ་ཆ་མཉམ་གྱི་དོན་ལུ་ ཤུལ་མམ་གྱིས་རང་དབང་གི་ཚད་རིས་སྐད་ཡིག་ཚུའི་ཚབ་འབདཝ་ཨིན།"
@@ -2326,7 +2188,6 @@ msgstr "ཨེསི་ཇི་ཨའི་(Silicon Graphics Inc)གི་འ
msgctxt ""
"00000005.xhp\n"
"hd_id3155764\n"
-"91\n"
"help.text"
msgid "PNG"
msgstr "པི་ཨེན་ཇི།"
@@ -2335,7 +2196,6 @@ msgstr "པི་ཨེན་ཇི།"
msgctxt ""
"00000005.xhp\n"
"par_id3148993\n"
-"92\n"
"help.text"
msgid "Portable Network Graphics (PNG) is a graphic file format. The files are compressed with a selectable compression factor, and, as opposed to the JPG format, PNG files are always compressed without any information loss."
msgstr ""
@@ -2344,7 +2204,6 @@ msgstr ""
msgctxt ""
"00000005.xhp\n"
"hd_id3083286\n"
-"103\n"
"help.text"
msgid "Primary key"
msgstr "གཞི་རིམ་གྱི་ལྡེ་མིག"
@@ -2353,7 +2212,6 @@ msgstr "གཞི་རིམ་གྱི་ལྡེ་མིག"
msgctxt ""
"00000005.xhp\n"
"par_id3150323\n"
-"104\n"
"help.text"
msgid "A primary key serves as a unique identifier of database fields. The unique identification of database fields is used in <link href=\"text/shared/00/00000005.xhp#relational\">relational databases</link>, to access data in other tables. If reference is made to a primary key from another table, this is termed a foreign key."
msgstr "གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་ཚུ་གི་མཐུན་མོང་མ་ཡིན་པའི་ངོས་འཛིན་པ་སྦེ་གཞི་རིམ་ལྡེ་མིག་སར་བར། ཐིག་ཁྲམ་གཞན་མི་ནང་གནད་སྡུད་འཛུལ་སྤྱོད་འབད་བཅུག་ནི་ལུ་ གནད་སྡུད་གཞི་རྟེན་གྱི་ས་སྒོ་ཚུ་གི་མཐུན་མོང་མ་ཡིན་པའི་ངོས་འཛིན་འདི་<link href=\"text/shared/00/00000005.xhp#relational\">མཐུན་འབྲེལ་གྱི་གནད་སྡུད་གཞི་རྟེན་ཚུ་</link>,ནང་ལག་ལེན་འཐབ་སྟེ་ཡོད། ཐིག་ཁྲམ་གཞན་མི་ཅིག་ལས་ གཞི་བསྟུན་འདི་གཞི་རིམ་ལྡེ་མིག་ལུ་བཟོ་བ་ཅིན་ དེ་ལུ་ཕྱི་རྒྱལ་ལྡེ་མིག་ཟེར་སླབ་ཨིན།"
@@ -2362,7 +2220,6 @@ msgstr "གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་
msgctxt ""
"00000005.xhp\n"
"par_id3148916\n"
-"113\n"
"help.text"
msgid "In $[officename], you define the primary key in the design view of a table, by choosing the relevant command from the context menu of a row header for the selected field."
msgstr "སེལ་འཐུ་འབད་ཡོད་མི་ས་སྒོའི་དོན་ལུ་འགོ་ཡིག་གྲལ་ཐིག་ལས་འབྲེལ་བ་ཡོད་མི་བརྡ་བཀོད་ཅིག་གདམ་ཁ་བརྐྱབ་ $[officename] གི་ནང་ལུ་ཁྱོད་ཀྱིས་ ཐིག་ཁྲམ་གྱི་བཀོད་སྒྲིག་སྟོན་མི་ནང་གི་གཞི་རིམ་ལྡེ་མིག་འདི་ངོས་འཛིན་འབད།"
@@ -2371,7 +2228,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་མི་ས་སྒོ
msgctxt ""
"00000005.xhp\n"
"hd_id3147359\n"
-"100\n"
"help.text"
msgid "Relational Database"
msgstr "མཐུན་འབྲེལ་གྱི་གནད་སྡུད་གཞི་རྟེན།"
@@ -2380,7 +2236,6 @@ msgstr "མཐུན་འབྲེལ་གྱི་གནད་སྡུད་
msgctxt ""
"00000005.xhp\n"
"par_id3147585\n"
-"101\n"
"help.text"
msgid "A relational database is a collection of data items organized as a set of formally described tables from which data can be accessed or reassembled in many different ways without having to reorganize the database tables."
msgstr "མཐུན་འབྲེལ་གྱི་གནད་སྡུད་གཞི་རྟེན་འདི་ གནད་སྡུད་འདི་འཛུལ་སྤྱོད་འབད་ཚུགས་ནི་ཡང་ཅིན་ གནད་སྡུད་གཞི་རྟེན་ཐིག་ཁྲམ་ཚུ་ངོས་འཛིན་འབད་མ་དགོ་པར་ ཐབས་ལམ་སོ་སོ་ལས་ཤ་ཅིག་ནང་སླར་འཛོམས་ཡོད་མི་ལས་ འགྲོ་ལུགས་ལྟར་དུ་འགྲེལ་བཤད་འབད་ཡོད་མི་ཐིག་ཁྲམ་གྱི་གཞི་སྒྲིག་བཟུམ་སྦེ་ འགོ་འདྲེན་འཐབ་མིའི་རྣམ་གྲངས་གནད་སྡུད་གི་བསྡུ་གསོག་ཨིན།"
@@ -2389,7 +2244,6 @@ msgstr "མཐུན་འབྲེལ་གྱི་གནད་སྡུད་
msgctxt ""
"00000005.xhp\n"
"par_id3154255\n"
-"163\n"
"help.text"
msgid "A relational database management system (RDBMS) is a program that lets you create, update, and administer a relational database. An RDBMS takes Structured Query Language (SQL) statements entered by a user or contained in an application program and creates, updates, or provides access to the database."
msgstr "མཐུན་འབྲེལ་གྱི་གནད་སྡུད་གཞི་རྟེན་འཛིན་སྐྱོང་རམ་ལུགས་འདི་(RDBMS) ཁྱོད་ལུ་ མཐུན་འབྲེལ་གནད་སྡུད་གཞི་རྟེན་ཅིག་བདག་སྐྱོང་འཐབ་ནི་དང་དུས་མཐུན་བཟོ་ནི་དེ་ལས་གསར་བསྐྲུན་འབད་བཅུག་མི་འདི་ཨིན། ཨར་ཌི་བི་ཨེམ་ཨེསི་གིས་ འཇུག་སྤྱོད་ལས་རིམ་ནང་གི་ལག་ལེན་པ་གིས་བཙུགས་ཡོད་མི་ བཀོད་སྒྲིག་འདྲི་སྤྱོད་སྐད་ཡིག་(SQL)གསལ་བཤད་འབག་དོ་ཡོདཔ་ཨིནམ་དང་ གསར་བསྐྲུན་དང་ དུས་མཐུན་བཟོ་ནི་ཡང་ཅིན་ གནད་སྡུད་གཞི་རྟེན་ལུ་འཛུལ་སྤྱོད་འབད་ནི་བྱིནམ་ཨིན།"
@@ -2398,7 +2252,6 @@ msgstr "མཐུན་འབྲེལ་གྱི་གནད་སྡུད་
msgctxt ""
"00000005.xhp\n"
"par_id3147535\n"
-"102\n"
"help.text"
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "མཐུན་འབྲེལ་གྱི་གནད་སྡུད་གཞི་རྟེན་གྱི་དཔེ་བཟང་པོ་འདི་ ཚོང་འགྲོན་པ་ ཉོ་ཚོང་དང་ཨིན་བོའིསི་ཐིག་ཁྲམ་ཚུ་ཡོད་མི་གནད་སྡུད་གཞི་རྟེན་ཉོ་ཐོག་ལས་བྱིན་ཚུགས། ཨིན་བོའིསི་ཐིག་ཁྲམ་ནང་ལུ་ཚོང་མགྲོན་པ་ངོ་མ་དང་ཡང་ཅིན་ཉོ་བའི་གནད་སྡུད་མེདཔ་ཨིན་ ཨིན་རུང་ ཐིག་ཁྲམ་དེ་ལུ་ རང་རང་གི་ཚོང་མགྲོན་པ་དང་ ཉོ་ཐོག་ཐིག་ཁྲམ་གྱི་ས་སྒོ་ཚུ་ལུ་ མཐུན་འབྲེལ་གྱི་འབྲེལ་ལམ་ཡང་ན་ མཐུན་འབྲེལ་ཅིག་ལས་བརྒྱུད་དེ་གཞི་བསྟུན་འབདཝ་ཨིན། (དཔེར་ན་ , ཚོང་མགྲོན་པའི་ཐིག་ཁྲམ་ལས་ཚོང་མགྲོན་པའི་ཨའི་ཌི་ས་སྒོ་བཟུམ།)."
@@ -2415,7 +2268,6 @@ msgstr "<bookmark_value>ཐོ་འགོད་-བདེན་པ་; ངེ
msgctxt ""
"00000005.xhp\n"
"hd_id3147315\n"
-"48\n"
"help.text"
msgid "Register-true"
msgstr "ཐོ་བཀོད་བདེན་པ།"
@@ -2424,7 +2276,6 @@ msgstr "ཐོ་བཀོད་བདེན་པ།"
msgctxt ""
"00000005.xhp\n"
"par_id3154223\n"
-"49\n"
"help.text"
msgid "Register-true is a typography term that is used in printing. This term refers to the congruent imprint of the lines within a type area on the front and the back side of book pages, newspaper pages and magazine pages. The register-true feature make these pages easier to read by preventing gray shadows from shining through between the lines of text. The register-true term also refers to lines in adjacent text columns that are of the same height."
msgstr "ཐོ་འགོད་བདེན་པ་ཟེར་མི་འདི་ དཔར་བསྐྲུན་འབད་མི་ནང་ལག་ལེན་འཐབ་པའི་དཔར་བསྐྲུན་རིག་པ་གི་ཐ་སྙད་ཨིན། འ་ནི་ཐ་སྙད་འདི་ ཡིག་གཟུགས་གུ་ཡོད་མི་དབྱེ་བའི་མངའ་ཁོངས་དང་ ཀི་དེབ་ཤོག་ལེབ་ཀྱི་རྒྱབ་ཟུར་དེ་ལས་ གནས་ཚུལ་ཤོ་གུ་གི་ཤོག་ལེབ་དང་ དུས་དེབ་ཤོག་ལེབ་ཚུ་གི་ནང་འཁོད་ཡོད་མི་ གྲལ་ཐིག་ཚུ་གི་བཟོ་རྣམ་འདྲ་བའི་པར་གཞི་ལུ་གཞི་བསྟུན་འབདཝ་ཨིན། ཐོ་འགོད་བདེན་པའི་ཁྱད་རྣམ་གྱིས་ ཚིག་ཡིག་གྲལ་ཐིག་གི་བར་ན་ལས་བརྒྱད་དེ་འོད་འདོན་པ་ལས་འབྱུང་མི་ གྱིབ་མ་སྐྱ་ཐལ་འདི་སྔོན་བཀག་འབད་དེ་ ཤོག་ལེབ་དེ་ཚུ་ལྷག་ནི་ལུ་འཇམ་སམ་བཟོཝ་ཨིན། ཐོ་འགོད་བདེན་པའི་ཐ་སྙད་འདི་གིས་ མཐོ་ཚད་གཅིག་པ་ཚུ་གི་ཉེ་འདབས་ཀྱི་ཚིག་ཡིག་ཀེར་ཐིག་ནང་གི་གྲལ་ཐིག་ཚུ་ལུ་ཡང་གཞི་བསྟུན་འབདཝ་ཨིན།"
@@ -2433,7 +2284,6 @@ msgstr "ཐོ་འགོད་བདེན་པ་ཟེར་མི་འད
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
-"50\n"
"help.text"
msgid "When you define a paragraph, Paragraph Style, or a Page Style as register-true, the base lines of the affected characters are aligned to a vertical page grid, regardless of font size or of the presence of graphics. If you want, you can specify the setting for this grid as a Page Style property."
msgstr "ཁྱོད་ཀྱིས་ དོན་མཚམས་དང་དོན་མཚམས་གྱི་བཟོ་རྣམ་ཡང་ན་ ཤོག་ལེབ་ཀྱི་བཟོ་རྣམ་འདི་ཐོ་འགོད་བདེན་པ་སྦེ་ ངོས་འཛིན་འབད་བའི་བསྒང་ གནོད་སྐྱོན་བྱུང་ཡོད་མི་ཡིག་འབྲུ་ཚུ་གི་གཞི་རྟེན་གྲལ་ཐིག་ཚུ་ ཡིག་གཟུགས་ཀྱི་ཚད་ ཡང་ན་ ཚད་རིས་ཡོད་མི་དང་དབྱེ་བ་མེད་པར་ ཀེར་ཕྲང་ཤོག་ལེབ་ཀྱི་གིརིཌི་ལུ་ཕྲང་ཡོད། ཁྱོད་ལུ་དགོ་པ་ཅིན་ ཁྱོད་ཀྱིས་ གིརིཌི་དེ་ལུ་ཤོག་ལེབ་བཟོ་རྣམ་གྱི་རྒྱུ་དངོས་སྦེ་ གཞི་སྒྲིག་འདི་གསལ་བཀོད་འབད།"
@@ -2442,7 +2292,6 @@ msgstr "ཁྱོད་ཀྱིས་ དོན་མཚམས་དང་ད
msgctxt ""
"00000005.xhp\n"
"hd_id3156710\n"
-"70\n"
"help.text"
msgid "RTF"
msgstr "ཨར་ཊི་ཨེཕ།"
@@ -2451,7 +2300,6 @@ msgstr "ཨར་ཊི་ཨེཕ།"
msgctxt ""
"00000005.xhp\n"
"par_id3151186\n"
-"71\n"
"help.text"
msgid "Rich Text Format (RTF) is a file format developed for the exchange of text files. A special feature is that the formatting is converted into directly readable text information. Unfortunately, in comparison to other file formats, this creates relatively large files."
msgstr "རིཆ་ཊེགསི་རྩ་སྒྲིག་(RTF)ཟེར་མི་འདི་ཚིག་ཡིག་གི་ཡིག་སྣོད་བརྗེ་སོར་གྱི་དོན་ལུ་བཟོ་ཡོད་མི་གི་ཡིག་སྣོད་རྩ་སྒྲིག་འདི་ཨན། དམིགས་བསལ་གྱི་ཁྱད་རྣམ་ཟེར་མི་འདི་ རྩ་སྒྲིག་འབད་མི་འདི་ཐད་ཀར་དུ་ལྷག་བཏུབ་པའི་ཚིག་ཡིག་བརྡ་དོན་ནང་ལུ་གཞི་བསྒྱུར་འབད་མི་འདི་ཨིན། ཁ་རྗེ་མེད་པར་ གཞན་མི་ཡིག་སྣོད་ཀྱི་རྩ་སྒྲིག་དང་ཅིག་ཁར་ག་བསྡུར་རྐྱབས་ད་ དེ་གིས་འབྲེལ་བའི་ཡིག་སྣོད་ཚུ་སྦོམ་གསར་བསྒྲུན་འབདཝ་ཨིན།"
@@ -2460,13 +2308,11 @@ msgstr "རིཆ་ཊེགསི་རྩ་སྒྲིག་(RTF)ཟེར
msgctxt ""
"00000005.xhp\n"
"hd_id3156372\n"
-"117\n"
"help.text"
msgid "Saving Relatively and Absolutely"
msgstr "འབྲེལ་བའི་ཐོག་ལས་དང་ཆ་ཚང་སྲུངས་དོ།"
#: 00000005.xhp
-#, fuzzy
msgctxt ""
"00000005.xhp\n"
"par_id3146919\n"
@@ -2478,7 +2324,6 @@ msgstr "ཌའི་ལོག་སྣ་མང་ནང་ལུ་(དཔེ
msgctxt ""
"00000005.xhp\n"
"par_id3152946\n"
-"68\n"
"help.text"
msgid "If you choose to save relatively, the references to embedded graphics or other objects in your document will be saved relative to the location in the file system. In this case, it does not matter where the referenced directory structure is recorded. The files will be found regardless of location, as long as the reference remains on the same drive or volume. This is important if you want to make the document available to other computers that may have a completely different directory structure, drive or volume names. It is also recommended to save relatively if you want to create a directory structure on an Internet server."
msgstr "འབྲེལ་བ་ཡོད་པའི་སྲུངས་བཞག་ལུ་ཁྱོད་ཀྱིས་གདམ་ཁ་རྐྱབ་པ་ཅིན་ ཁྱོད་ཀྱི་ཡིག་ཆ་ནང་ལུ་ཡོད་མི་ གཞན་མི་དངོས་པོ་ཚུ་ ཡང་ན་ ཚད་རིས་གནས་འདྲེན་ལུ་གཞི་བསྟུན་འབད་ཡོད་མི་འདི་ ཡིག་སྣོད་རིམ་ལུགས་ནང་གི་གནས་ཁོངས་ལུ་འབྲེལ་བའི་ཐོག་ལས་སྲུངས་འོང་། གནད་དོན་དེ་གི་ནང་ལུ་ སྣོད་ཐོ་གཞི་བསྟུན་འདི་ག་སྟེ་ལུ་སྒྲ་བཟུང་འབད་ཡོད་རུང་ཁྱད་མེད། གཞི་བསྟུན་འདི་འདྲན་འཕྲུལ་ཡང་ན་ སྦུང་ཚད་གུ་ལུས་པའི་རིང་ལུ་ ཡིག་སྣོད་ཚུ་ གནས་ཁོངས་ལུ་དབྱེ་བ་མེདཔ་སྦེ་ཐོབ་ཨིན། སྣོད་ཐོ་གཞི་བཀོད་སོ་སོ་དང་འདྲེན་བྱེད་ ཡང་ཅིན་ སྦུང་ཚད་ཀྱི་མིང་ཚུ་ཡོད་མི་གློག་རིག་གཞན་མི་ནང་ ཡིག་ཆ་འཐོབ་ཚུགས་བཟོ་ནི་ཨིན་པ་ཅིན་ དེ་ཚུ་གལ་ཅན་ཨིན། ཨིན་ཊར་ནེཊི་སར་བར་གུ་ ཁྱོད་ཀྱིས་སྣོད་ཐོ་ཅིག་གསར་བསྐྲུན་འབད་ནི་ཨིན་པ་ཅིན་ དེ་ཡང་འབྲེལ་བའི་ཐོག་ལས་སྲུངས་ཟེར་འོས་སྦྱོར་འབད་ཡོད།"
@@ -2487,7 +2332,6 @@ msgstr "འབྲེལ་བ་ཡོད་པའི་སྲུངས་བཞ
msgctxt ""
"00000005.xhp\n"
"par_id3148927\n"
-"69\n"
"help.text"
msgid "If you prefer absolute saving, all references to other files will also be defined as absolute, based on the respective drive, volume or root directory. The advantage is that the document containing the references can be moved to other directories or folders, and the references remain valid."
msgstr "ཁྱོད་ཀྱིས་ སྲུང་བཞག་འདི་ཡང་དག་སྦེ་དགོ་པ་ཅིན་ ཡིག་སྣོད་གཞན་མི་ཚུ་ལུ་ཡོད་པའི་གཞི་རྟེན་ཆ་མཉམ་རང་ རང་རང་གི་འདྲེན་བྱེད་དང་སྦུང་ཚད་ཡང་ཅིན་སྣོད་ཐོ་གི་རྩ་བ་གུ་གཞི་བཞག་སྟེ་ཡང་དག་ཟེར་ངོས་འཛིན་འབད་དེ་ཡོད། དེ་གི་ཁེ་ཕན་འདི་ གཞི་བསྟུན་ཡོད་མི་གི་ཡི་གཆ་འདི་ གཞན་མི་སྣོད་ཐོ་ཚུ་ཡང་ཅིན་སྣོད་འཛིན་ལུ་ སྤོ་བཤུད་འབད་བཏུབ་ནི་དང་གཞི་བསྟུན་འདི་ནུས་ཅན་སྦེ་ལུསཔ་ཨིན།"
@@ -2512,7 +2356,6 @@ msgstr "<bookmark_value>ཨེསི་ཀིའུ་ཨེལ་;ངེས་
msgctxt ""
"00000005.xhp\n"
"hd_id3149922\n"
-"53\n"
"help.text"
msgid "SQL"
msgstr "ཨེསི་ཀིའུ་ཨེལ།"
@@ -2521,7 +2364,6 @@ msgstr "ཨེསི་ཀིའུ་ཨེལ།"
msgctxt ""
"00000005.xhp\n"
"par_id3152863\n"
-"54\n"
"help.text"
msgid "Structured Query Language (SQL) is a language used for database queries. In $[officename] you can formulate queries either in SQL or interactively with the mouse."
msgstr "གཞི་བཀོད་འདྲི་དཔྱད་སྐད་ཡིག་(SQL)ཟེར་མི་འདི་ གནད་སྡུད་གཞི་རྟེན་འདྲི་དཔྱད་འབད་ནིའི་དོན་ལུ་ལག་ལེན་འཐབ་པའི་སྐད་ཡིག་འདི་ཨིན། $[officename] ནང་ལུ་ འདྲན་བྱེད་ཚུ་ ཨེསི་ཀིའུ་ཨེལ་ཡང་ན་ མཱའུསི་དང་ཅིག་ཁར་་ཕན་ཚུན་འབྲེལ་ལྡན་ནང་ལུ་འབད་སྒྲིག་རུང་བཏུབ།"
@@ -2530,7 +2372,6 @@ msgstr "གཞི་བཀོད་འདྲི་དཔྱད་སྐད་ཡ
msgctxt ""
"00000005.xhp\n"
"hd_id3147552\n"
-"120\n"
"help.text"
msgid "SQL Database / SQL Server"
msgstr "ཨེསི་ཀིའུ་ཨེལ་གནད་སྡུད་གཞ་རྟེན་/ཨེསི་ཀིའུ་ཨེལ་སར་བར།"
@@ -2539,7 +2380,6 @@ msgstr "ཨེསི་ཀིའུ་ཨེལ་གནད་སྡུད་ག
msgctxt ""
"00000005.xhp\n"
"par_id3159239\n"
-"121\n"
"help.text"
msgid "An SQL database is a database system which offers an <link href=\"text/shared/00/00000005.xhp#sql\">SQL</link> interface. SQL databases are often used in client/server networks in which different clients access a central server (for example, an SQL server), hence they are also called SQL server databases, or SQL servers for short."
msgstr "ཨེསི་ཀིའུ་ཨེལ་གནད་སྡུད་གཞི་རྟེན་ཟེར་མི་འདི་ <link href=\"text/shared/00/00000005.xhp#sql\">ཨེསི་ཀིའུ་ཨེལ་</link> ངོས་འདྲ་བ་འབྱིན་མི་གནད་སྡུད་གཞི་རྟེན་གྱི་རིམ་ལུགས་ཅིག་ཨིན། ཨེསི་ཀིའུ་ཨེལ་གནད་སྡུད་གཞི་རྟེན་ཚུ་འཕྲལ་འཕྲལ་རང་ དབུས་ཀྱི་སར་བར་ སོ་སོ་ཞབས་རྟོག་སྤྱོད་མི་ནང་གི་ ཞབས་རྟོག་སྤྱོད་མི་ཡོངས་འབྲེལ་ནང་ལག་ལེན་འཐབ་ཨིན་ (དཔེར་ན་, ཨེསི་ཀིའུ་ཨུལ་སར་བར་བཟུམ་) དེ་བཟུམ་སྦེ་ དེ་ཚུ་ལུ་ཨེསི་ཀིའུ་ཨེལ་སར་བར་གནད་སྡུད་ཡང་ཅིན་ ཐུང་ཀུ་གི་དོན་ལུ་ ཨེསི་ཀིའུ་ཨེལ་སར་བར་ཟེར་ཡང་སླབ་ཨིན།"
@@ -2548,7 +2388,6 @@ msgstr "ཨེསི་ཀིའུ་ཨེལ་གནད་སྡུད་ག
msgctxt ""
"00000005.xhp\n"
"par_id3159118\n"
-"122\n"
"help.text"
msgid "In $[officename], you can integrate external SQL databases. These may be located on your local hard disk as well as on the network. Access is achieved through <link href=\"text/shared/00/00000005.xhp#odbc\">ODBC</link>, JDBC, or a native driver integrated into $[officename]."
msgstr "$[officename] ནང་ ཁྱོད་ཀྱིས་ ཕྱིའི་ཨེསི་ཀིའུ་ཨེལ་གནད་སྡུད་གཞི་རྟེན་ཧྲིལ་པོ་བཟོ། དེ་ཡང་ ཁྱོད་རའི་ཉེས་གནས་ཀྱི་ཧརཌི་ཌིཀིསི་ དང་ ཡོངས་འབྲེལ་གུ་གནས་དེ་འོང་། <link href=\"text/shared/00/00000005.xhp#odbc\">ཨོ་ཌི་བི་སི་</link> ལས་བརྒྱུད་དེ་ ཡང་ན་ $[officename] ནང་ལུ་ཡུལ་མི་འདྲེན་བྱེད་ ཧྲིལ་པོ་ལས་བརྒྱུད་དེ་ འཛུལ་སྤྱོད་འདི་གྲུབ་ཡོད།"
@@ -2557,7 +2396,6 @@ msgstr "$[officename] ནང་ ཁྱོད་ཀྱིས་ ཕྱིའི
msgctxt ""
"00000005.xhp\n"
"hd_id3166423\n"
-"51\n"
"help.text"
msgid "Widows and Orphans"
msgstr "ཝི་ཌོསི་དང་ཨོར་ཕེནསི།"
@@ -2566,13 +2404,11 @@ msgstr "ཝི་ཌོསི་དང་ཨོར་ཕེནསི།"
msgctxt ""
"00000005.xhp\n"
"par_id3149448\n"
-"52\n"
"help.text"
msgid "Widows and orphans are historical typography terms, which have been in use for many years. A widow refers to a short line at the end of a paragraph, which when printed, appears alone at the top of the next page. An orphan is, in contrast, the first line of a paragraph printed alone at the bottom of the previous page. In a $[officename] text document you can automatically prevent such occurrences in the desired Paragraph Style. When doing so, you can determine the minimum amount of lines to be kept together on a page."
msgstr "ཝི་ཌོསི་དང་ཨོར་ཕེནསི་ཚུ་ ལོ་མང་རབ་ཅིག་ལག་ལེན་འཐབ་འདི་ཡོད་པའི་སྔོན་རབ་དཔར་བསྐྲུན་རིག་པ་གི་ཐ་སྙད་ཅིག་ཨིན། ཝི་ཌོ་ཟེར་མི་འདི་ དོན་མཚམས་མཇུག་ལུ་ཡོད་མི་གི་གྲལ་ཐིག་ཐུང་ཀུ་འདི་ལུ་སླབ་ཨིན་ དེ་ཡང་ དཔར་བསྐྲུན་འབད་བའི་བསྒང་ ཤུལ་མའི་ཤོག་ལེབ་ཀྱི་མགོ་ལུ་རྐྱངམ་ཅིག་འབྱུངམ་་ཨིན། ཨོར་ཕེན་འདི་ ཁྱད་པར་ནང་འབད་བ་ཅིན་ སྔོན་མའི་ཤོག་ལེབ་ཀྱི་འོག་ལུ་ དཔར་བསྐྲུན་འབད་ཡོད་མི་ དོན་མཚམས་ཀྱི་གྲལ་ཐིག་དང་པ་འདི་ཨིན། $[officename] ཚིག་ཡིག་ཡིག་ཆ་ནང་ རེ་འདུན་དོན་མཚམས་བཟོ་རྣམ་ནང་ནི་བཟུམ་འབྱུང་མི་འདི་ ཁྱོད་ཀྱིས་རང་བཞིན་གྱིས་འབད་སྔོན་བཀག་འབད་བཏུབ། ནི་འབད་བའི་བསྒང་ ཤོག་ལེབ་གུ་ཅིག་ཁར་བཞག་ནིའི་དོན་ལས་ གྲལ་ཐིག་ཚུ་གི་མང་ཉུང་ ཉུང་མཐའ་འདི་ ཁྱོད་ཀྱིས་གཏན་འབེབས་བཟོ་བཏུབ།"
#: 00000007.xhp
-#, fuzzy
msgctxt ""
"00000007.xhp\n"
"tit\n"
@@ -2581,20 +2417,17 @@ msgid "Toolbars"
msgstr "#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# database.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# sdraw.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# scalc.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ་།"
#: 00000007.xhp
-#, fuzzy
msgctxt ""
"00000007.xhp\n"
"hd_id3155620\n"
-"1\n"
"help.text"
msgid "Toolbars"
-msgstr "#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# database.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# sdraw.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# scalc.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ་།"
+msgstr ""
#: 00000007.xhp
msgctxt ""
"00000007.xhp\n"
"par_id3152823\n"
-"4\n"
"help.text"
msgid "<variable id=\"werkzeugleiste\">Icon on the Tools bar: </variable>"
msgstr "<variable id=\"werkzeugleiste\">ལག་ཆས་ཕྲ་རིང་གུ་ངོས་དཔར: </variable>"
@@ -2603,7 +2436,6 @@ msgstr "<variable id=\"werkzeugleiste\">ལག་ཆས་ཕྲ་རིང་
msgctxt ""
"00000007.xhp\n"
"par_id3152352\n"
-"5\n"
"help.text"
msgid "<variable id=\"textobjektleiste\">Icon on the Formatting Bar: </variable>"
msgstr "<variable id=\"textobjektleiste\">རྩ་སྒྲིག་ཕྲ་རིང་གུ་ངོས་དཔར: </variable>"
@@ -2612,7 +2444,6 @@ msgstr "<variable id=\"textobjektleiste\">རྩ་སྒྲིག་ཕྲ་
msgctxt ""
"00000007.xhp\n"
"par_id3151370\n"
-"7\n"
"help.text"
msgid "<variable id=\"objektleiste\">Icon on the Formatting Bar: </variable>"
msgstr "<variable id=\"objektleiste\">རྩ་སྒྲིག་ཕྲ་རིང་འདི་གུ་ངོས་དཔར: </variable>"
@@ -2621,7 +2452,6 @@ msgstr "<variable id=\"objektleiste\">རྩ་སྒྲིག་ཕྲ་རི
msgctxt ""
"00000007.xhp\n"
"par_id3149748\n"
-"9\n"
"help.text"
msgid "<variable id=\"diaobjektleiste\">Icon on the Slide View Bar: </variable>"
msgstr "<variable id=\"diaobjektleiste\">བཤུད་སྟོན་ཕྲ་རིང་གུ་ངོས་དཔར: </variable>"
@@ -2630,7 +2460,6 @@ msgstr "<variable id=\"diaobjektleiste\">བཤུད་སྟོན་ཕྲ་
msgctxt ""
"00000007.xhp\n"
"par_id3156553\n"
-"10\n"
"help.text"
msgid "<variable id=\"symbolleistenneu\">This overview describes the default toolbar configuration for $[officename].</variable>"
msgstr "<variable id=\"symbolleistenneu\"> $[officename] དོན་ལུ་སྔོན་སྒྲིག་ལག་ཆས་ཕྲ་རིང་རིམ་སྒྲིག་འདི་སྤྱི་མཐོང་འགྲེལ་བཤད་འབདཝ་ཨིན།</variable>"
@@ -2639,7 +2468,6 @@ msgstr "<variable id=\"symbolleistenneu\"> $[officename] དོན་ལུ་
msgctxt ""
"00000007.xhp\n"
"par_id3153551\n"
-"11\n"
"help.text"
msgid "Asian Language Support"
msgstr "ཨེ་ཤི་ཡན་སྐད་ཡིག་རྒྱབ་སྐྱོར།"
@@ -2648,7 +2476,6 @@ msgstr "ཨེ་ཤི་ཡན་སྐད་ཡིག་རྒྱབ་སྐ
msgctxt ""
"00000007.xhp\n"
"par_id3156326\n"
-"12\n"
"help.text"
msgid "These commands can only be accessed after you enable support for Asian languages in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>."
msgstr ""
@@ -2665,7 +2492,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་ཚུ།"
msgctxt ""
"00000010.xhp\n"
"hd_id3160447\n"
-"1\n"
"help.text"
msgid "Context Menus"
msgstr "སྐབས་དོན་དཀར་ཆག་ཚུ།"
@@ -2674,7 +2500,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་ཚུ།"
msgctxt ""
"00000010.xhp\n"
"hd_id3148765\n"
-"45\n"
"help.text"
msgid "Cut"
msgstr "བཏོག"
@@ -2683,7 +2508,6 @@ msgstr "བཏོག"
msgctxt ""
"00000010.xhp\n"
"par_id3153383\n"
-"46\n"
"help.text"
msgid "Cuts out the selected object and stores it on the clipboard. The object can be reinserted from the clipboard by using <emph>Paste</emph>."
msgstr "སེལ་འཐུ་འབད་ཡོད་མི་དངོས་པོ་ཚུ་བཏོག་བཞིནམ་ལས་འཛིན་པང་གུ་སོག་འཇོག་འབད་བཞགཔ་ཨིན། <emph>སྦྱར</emph> ལག་ལེན་འཐབ་སྟེ་འཛིན་པང་ལས་ དངོས་པོ་འདི་ལོག་བཙུགས་བཏུབ།"
@@ -2692,7 +2516,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་མི་དངོས་
msgctxt ""
"00000010.xhp\n"
"hd_id3156069\n"
-"68\n"
"help.text"
msgid "Paste"
msgstr "སྦྱར།"
@@ -2701,7 +2524,6 @@ msgstr "སྦྱར།"
msgctxt ""
"00000010.xhp\n"
"par_id3154896\n"
-"69\n"
"help.text"
msgid "<ahelp hid=\"SID_EXPLORERCONTENT_PASTE\" visibility=\"visible\">Inserts the element that you moved to the clipboard into the document.</ahelp> This command can only be called if the contents of the clipboard can be inserted at the current cursor position."
msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_PASTE\" visibility=\"visible\">ཁྱོད་ འཛིན་པང་ལས་ཡིག་ཆ་གི་ནང་ལུ་སྤོ་བཤུད་འབདཝ་ད་ གིས་ཆ་ཤས་བཙུགསཔ་ཨིན། </ahelp> འཛིན་པང་ཚུ་གི་ནང་དོན་ ད་ལྟོའི་འོད་རྟགས་གནས་ས་ལུ་བཙུགས་བཏུབ་པ་ཅིན་རྐྱངམ་ཅིག་བརྡ་བཀོད་ཟེར་སླབ་བཏུབ།"
@@ -2710,7 +2532,6 @@ msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_PASTE\" visibility=\"visible\">ཁྱ
msgctxt ""
"00000010.xhp\n"
"hd_id3149948\n"
-"76\n"
"help.text"
msgid "Insert"
msgstr "བཙུགས།"
@@ -2719,7 +2540,6 @@ msgstr "བཙུགས།"
msgctxt ""
"00000010.xhp\n"
"par_id3147588\n"
-"77\n"
"help.text"
msgid "Opens a submenu in the Gallery where you can choose between <emph>Copy</emph> and <emph>Link</emph>. The selected Gallery object is either copied into the current document or a link is created."
msgstr "<emph>འདྲ་བཤུས་</emph> དང་<emph>འབྲེལ་མཐུད་</emph>ཁྱོད་ཀྱིས་གདམ་ཁ་རྐྱབ་བཏུབ་མི་ལུ་ སྟོན་ཁང་ནང་དཀར་ཆག་འོག་མ་ཅིག་ཁ་ཕྱེཝ་ཨིན། སེལ་འཐུ་འབད་མི་སྟོན་ཁང་གི་དངོས་པོ་འདི་ ད་ལྟོའི་ཡིག་ཆ་ནང་ལུ་འདྲ་བཤུས་བརྐྱབནི་དང་ཡང་ཅིན་ འབྲེལ་མཐུད་འདི་གསར་བསྐྲུན་འབདཝ་ཨིན།"
@@ -2728,7 +2548,6 @@ msgstr "<emph>འདྲ་བཤུས་</emph> དང་<emph>འབྲེལ
msgctxt ""
"00000010.xhp\n"
"par_id3146130\n"
-"78\n"
"help.text"
msgid "If you have selected an object in your document, then a new insertion will replace the selected object."
msgstr "ཁྱོད་རའི་ཡིག་ཆ་ནང་ལུ་ཁྱོད་ཀྱི་དངོས་པོ་སེལ་འཐུ་འབད་ཡོད་པ་ཅིན་ སེལ་འཐུ་འབད་ཡོད་མི་དངོས་པོ་འདི་ གསརཔ་བཙུགས་པ་དེ་གིས་ཚབ་བཙུགསཔ་ཨིན།"
@@ -2737,7 +2556,6 @@ msgstr "ཁྱོད་རའི་ཡིག་ཆ་ནང་ལུ་ཁྱོ
msgctxt ""
"00000010.xhp\n"
"hd_id3145829\n"
-"79\n"
"help.text"
msgid "Background"
msgstr "རྒྱབ་གཞི།"
@@ -2746,7 +2564,6 @@ msgstr "རྒྱབ་གཞི།"
msgctxt ""
"00000010.xhp\n"
"par_id3149180\n"
-"80\n"
"help.text"
msgid "<ahelp hid=\"HID_GALLERY_MN_BACKGROUND\" visibility=\"visible\">Inserts the selected picture as a background graphic.</ahelp> Use the submenu commands <emph>Page</emph> or <emph>Paragraph</emph> to define whether the graphic should cover the entire page or only the current paragraph."
msgstr "<ahelp hid=\"HID_GALLERY_MN_BACKGROUND\" visibility=\"visible\">དེ་གིས་ སེལ་འཐུ་འབད་ཡོད་མི་པར་འདི་ རྒྱབ་གཞིའི་ཚད་རིས་སྦེ་བཙུགསཔ་ཨིན། </ahelp> དཀར་ཆག་འོག་མའི་བརྡ་བཀོད་<emph>Page</emph> or <emph>Paragraph</emph>འདི་ ཚད་རིས་ཀྱིས་ཤོག་ལེབ་འདི་ཆ་མཉམ་དང་ ཡང་ན་ ད་ལྟོ་ཡོད་པའི་དོན་མཚམས་རྐྱངམ་ཅིག་ཁྱབ་ནི་ཨིན་ན་ དེ་ངོས་འཛིན་འབདནིའི་དོན་ལས་ལག་ལེན་འཐབ།"
@@ -2755,7 +2572,6 @@ msgstr "<ahelp hid=\"HID_GALLERY_MN_BACKGROUND\" visibility=\"visible\">དེ
msgctxt ""
"00000010.xhp\n"
"hd_id3153049\n"
-"87\n"
"help.text"
msgid "Copy"
msgstr "འདྲ་བཤུས།"
@@ -2764,7 +2580,6 @@ msgstr "འདྲ་བཤུས།"
msgctxt ""
"00000010.xhp\n"
"par_id3150774\n"
-"88\n"
"help.text"
msgid "<ahelp hid=\"SID_EXPLORERCONTENT_COPY\" visibility=\"visible\">Copies the selected element to the clipboard.</ahelp>"
msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_COPY\" visibility=\"visible\"> གིས་སེལ་འཐུ་འབད་ཡོད་མི་ཆ་ཤས་འདི་</ahelp>ལུ་འདྲ་བཤུས་བརྐྱབ་ཨིན།"
@@ -2773,7 +2588,6 @@ msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_COPY\" visibility=\"visible\"> གི
msgctxt ""
"00000010.xhp\n"
"hd_id3148620\n"
-"91\n"
"help.text"
msgid "Delete"
msgstr "བཏོན་གཏང་།"
@@ -2782,7 +2596,6 @@ msgstr "བཏོན་གཏང་།"
msgctxt ""
"00000010.xhp\n"
"par_id3154317\n"
-"92\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a <link href=\"text/shared/01/03150100.xhp\" name=\"security query\">security query</link> appears before objects are deleted.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">གིས་ ད་ལྟོའི་སེལ་འཐུ་འདི་བཏོན་གཏངམ་ཨིན། དངོས་པོ་ཚུ་སྣ་མང་སེལ་འཐུ་འབད་བ་ཅིན་ ཆ་མཉམ་བཏོན་གཏང་འོང་། གནད་དོན་མང་ཤོས་ཅིག་ནང་ a <link href=\"text/shared/01/03150100.xhp\" name=\"security query\">སྲུང་སྐྱོབ་འདྲི་དཔྱད་</link> ཚུ་དངོས་པོ་བཏོན་མ་གཏང་པའི་ཧེ་མ་ལས་འབཡུངམ་ཨིན།</ahelp>"
@@ -2791,7 +2604,6 @@ msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">གི
msgctxt ""
"00000010.xhp\n"
"par_id3155941\n"
-"190\n"
"help.text"
msgid "The object is either physically deleted from the data carrier or the object display is removed, depending on context."
msgstr "དངོས་པོ་ཚུ་གནད་སྡུད་ལས་ དངོས་ཅན་གྱི་ཐོག་ལས་བཏོན་གཏང་ནི་ཡང་ཅིན་ དངོས་པོ་བཀྲམ་སྟོན་འདི་སྐབས་དོན་གུ་གཞི་བཞག་སྟེ་རྩ་བསྐྲད་གཏངམ་ཨིན།"
@@ -2800,7 +2612,6 @@ msgstr "དངོས་པོ་ཚུ་གནད་སྡུད་ལས་
msgctxt ""
"00000010.xhp\n"
"par_id3150506\n"
-"192\n"
"help.text"
msgid "If you choose <emph>Delete</emph> while in the Gallery, the entry will be deleted from the Gallery, but the file itself will remain untouched."
msgstr "སྟོན་ཁང་གི་སྐབས་ལུ་ཁྱོད་ཀྱིས་ <emph>Delete</emph>གདམ་ཁ་རྐཡབ་པ་ཅིན་ ཐོ་བཀོད་འདི་ སྟོན་ཁང་ལས་བཏོན་གཏང་འོང་ དེ་འབདཝ་ད་ ཡིག་སྣོད་དེ་ཉིད་ མ་དཀྲོགས་པར་ལུསཔ་ཨིན།"
@@ -2809,7 +2620,6 @@ msgstr "སྟོན་ཁང་གི་སྐབས་ལུ་ཁྱོད་
msgctxt ""
"00000010.xhp\n"
"hd_id3150443\n"
-"136\n"
"help.text"
msgid "Open"
msgstr "ཁ་ཕྱེ།"
@@ -2818,7 +2628,6 @@ msgstr "ཁ་ཕྱེ།"
msgctxt ""
"00000010.xhp\n"
"par_id3149149\n"
-"137\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_OPEN_OBJECT\">Use the<emph> Open </emph>command to open the selected object in a new task.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_OPEN_OBJECT\">ལག་ལེན་འཐབ་<emph> ཁ་ཕྱེ་</emph>ལས་ཀ་གསར་པའི་ནང་ དངོས་པོ་སེལ་འཐུ་འདི་ཁ་ཕྱེ་ནི་ལུ་ བརྡ་བཀོད་འདི་ལག་ལེན་འཐབ་</ahelp>"
@@ -2827,7 +2636,6 @@ msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_OPEN_OBJECT\">
msgctxt ""
"00000010.xhp\n"
"hd_id3149732\n"
-"165\n"
"help.text"
msgid "Rename"
msgstr "བསྐྱར་མིང་བཏགས།"
@@ -2836,7 +2644,6 @@ msgstr "བསྐྱར་མིང་བཏགས།"
msgctxt ""
"00000010.xhp\n"
"par_id3149797\n"
-"166\n"
"help.text"
msgid "<ahelp hid=\"SID_EXPLORERCONTENT_RENAME\" visibility=\"visible\">Enables a selected object to be renamed.</ahelp> After selecting <emph>Rename</emph> the name is selected and a new one can be entered directly. Use the arrow keys to set the cursor at the beginning or end of the name to delete or add to part of the name or to reposition the cursor."
msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_RENAME\" visibility=\"visible\"> གིས་ སེལ་འཐུ་འབད་ཡོད་མི་དངོས་པོ་ལུ་བསྐྱར་མིང་བཏགས་འབད་ནི་ལུ་ལྕོགས་ཅན་བཟོཝ་ཨིན་ </ahelp> <emph>བསྐྱར་མིང་བཏགས་</emph>སེལ་འཐུ་འབད་བའི་ཤུལ་ལས་ མིང་འདི་སེལ་འཐུ་འབད་ནི་དང་ གསརཔ་འདི་ཐད་ཀར་དུ་འབད་བཙུགས་བཏུབ། བཏོན་གཏང་ནི་ཡང་ན་ མིང་གི་ཡན་ལག་ཅིག་ལུ་བསྡོམས་ནི་དང་ཡང་ཅིན་ འོད་རྟགས་གཏན་པོར་བཟོ་ནི་གི་དོན་ལུ་ མདའ་རྟགས་ལྡེ་མིག་ཚུ་ མིང་གི་མཇུག་ལུ་ཡང་ན་ འགོ་ལུ་འོད་རྟགས་གཞི་སྒྲིག་འབད་ནིའི་དོན་ལས་ ལག་ལེན་འཐབ།"
@@ -2845,7 +2652,6 @@ msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_RENAME\" visibility=\"visible\"> གི
msgctxt ""
"00000010.xhp\n"
"hd_id3155434\n"
-"317\n"
"help.text"
msgid "Update"
msgstr "དུས་མཐུན་བཟོ།"
@@ -2854,7 +2660,6 @@ msgstr "དུས་མཐུན་བཟོ།"
msgctxt ""
"00000010.xhp\n"
"par_id3154898\n"
-"318\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/galleryupdateprogress/GalleryUpdateProgress\" visibility=\"visible\">Updates the view in the window or in the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/galleryupdateprogress/GalleryUpdateProgress\" visibility=\"visible\"> གིས་སྒོ་སྒྲིག་ནང་གི་མཐོང་སྣང་ཡང་ན་ སེལ་འཐུ་འབད་ཡོད་མི་དངོས་པོ་ </ahelp> དུས་མཐུན་བཟོཝ་ཨིན།"
@@ -2863,7 +2668,6 @@ msgstr "<ahelp hid=\"cui/ui/galleryupdateprogress/GalleryUpdateProgress\" visibi
msgctxt ""
"00000010.xhp\n"
"hd_id3147573\n"
-"172\n"
"help.text"
msgid "Preview"
msgstr "སྔོན་ལྟ།"
@@ -2872,7 +2676,6 @@ msgstr "སྔོན་ལྟ།"
msgctxt ""
"00000010.xhp\n"
"par_id3155583\n"
-"173\n"
"help.text"
msgid "The element selected is displayed in the Gallery at maximum size. Double-click the preview to switch back to the normal Gallery view."
msgstr "སེལ་འཐུ་འབད་ཡོད་མི་ཆ་ཤས་འདི་ ཚད་མང་མཐའི་སྟོན་ཁང་ནང་བཀྲམ་སྟོན་འབདཝ་ཨིན། སྤྱིར་གཏང་སྟོན་ཁང་ལུ་ལོག་སོར་བསྒྱུར་འབད་ནིའི་དོན་ལས་ སྔོན་ལྟ་གུ་ལོག་བལྟབ་ཨེབ་གཏང་།"
@@ -2881,7 +2684,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་མི་ཆ་ཤས་
msgctxt ""
"00000010.xhp\n"
"hd_id3157809\n"
-"319\n"
"help.text"
msgid "Create Link"
msgstr "འབྲེལ་མཐུད་གསར་བསྐྲུན་འབད།"
@@ -2890,7 +2692,6 @@ msgstr "འབྲེལ་མཐུད་གསར་བསྐྲུན་འབ
msgctxt ""
"00000010.xhp\n"
"par_id3153716\n"
-"320\n"
"help.text"
msgid "This command can be activated if an object is selected. A link named \"Link to xxx\" (<emph>xxx</emph> represents the name of the object) will be created directly in the same directory as that of the selected object."
msgstr "དངོས་པོ་འདི་སེལ་འཐུ་འབད་ཡོད་པ་ཅིན་བརྡ་བཀོད་འདི་ཤུགས་ལྡན་བཟོ་བཏུབ། འབྲེལ་འཐུད་ཀྱི་མིང་ \"Link to xxx\" (<emph>xxx</emph> ཟེར་ཡོད་མི་འདི་གིས་དངོས་པོའི་མིང་གི་ཚབ་འབདཝ་ཨིན) སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ་གི་སྣོད་ཐོ་བཟུམ་སྦེ་ ཐད་དཀར་དུ་གསར་བསྐྲུན་འབད་འོང་།"
@@ -2907,7 +2708,6 @@ msgstr "དཀར་ཆག་གི་བརྡ་བཀོད་ཚུ།"
msgctxt ""
"00000011.xhp\n"
"hd_id3156045\n"
-"4\n"
"help.text"
msgid "Menu Commands"
msgstr "དཀར་ཆག་གི་བརྡ་བཀོད་ཚུ།"
@@ -2916,7 +2716,6 @@ msgstr "དཀར་ཆག་གི་བརྡ་བཀོད་ཚུ།"
msgctxt ""
"00000011.xhp\n"
"par_id3150838\n"
-"5\n"
"help.text"
msgid "The window containing the document you want to work on must be selected in order to use the menu commands. Similarly, you must select an object in the document to use the menu commands associated with the object."
msgstr "དཀར་ཆག་གི་བརྡ་བཀོད་ཚུ་ལག་ལེན་འཐབ་ནིའི་དོན་ལུ་ ཁྱོད་ལཱ་འབད་དགོ་པའི་ཡིག་ཆ་སྒོ་སྒྲིག་ཡོད་མི་འདི་ སེལ་འཐུ་འབད་དགོ། དེ་དང་ཆ་འདྲ་བ་འབད་ དངོས་པོ་དང་ཅིག་ཁར་འབྲེལ་བའིདཀར་ཆག་གི་བརྡ་བཀོད་ཚུ་ལག་ལེན་འཐབ་ནི་ལུ་ ཁྱོད་ཀྱིས་ཡིག་ཆ་ནང་ཡོད་མི་གི་དངོས་པོ་འདི་སེལ་འཐུ་འབད་དགོ།"
@@ -2925,7 +2724,6 @@ msgstr "དཀར་ཆག་གི་བརྡ་བཀོད་ཚུ་ལག
msgctxt ""
"00000011.xhp\n"
"par_id3156027\n"
-"3\n"
"help.text"
msgid "The menus are context sensitive. This means that those menu items are available that are relevant to the work currently being carried out. If the cursor is located in a text, then all of those menu items are available that are needed to edit the text. If you have selected graphics in a document, then you will see all of the menu items that can be used to edit graphics."
msgstr "དཀར་ཆག་ཚུ་སྐབས་དོན་ཚོར་ཅན་ཨིན། དེའི་དོན་དག་འདི་ ད་ལྟོ་འབད་བའི་ལཱ་ལུ་འབྲེལ་བ་ཡོད་མིའི་དཀར་ཆག་རྣམ་གྲངས་ཚུ་འཐོབ་ཚུགསཔ་ཡོད་ཟེར་ཨིན། འོད་རྟགས་འདི་ཚིག་ཡིག་ནང་ལུ་གནས་ཡོད་པ་ཅིན་ ཚིག་ཡིག་ཞུན་དག་ལུ་དགོ་པའི་ དཀར་ཆག་རྣམ་གྲངས་ཚུ་འཐོབ་ཚུགས། ཁྱོད་ཀྱིས་ཡིག་ཆ་ནང་ཚད་རིས་ཚུ་སེལ་འཐུ་འབད་ཡོད་པ་ཅིན་ ཚད་རིས་ལག་ལེན་འཐབ་བཏུབ་པའི་དཀར་ཆག་གི་རྣམ་གྲངས་ཚུ་ཆ་མཉམ་མཐོང་ཚུགས།"
@@ -2950,7 +2748,6 @@ msgstr "<bookmark_value>ཚགས་མ་ཚུ་ནང་འདྲེན་
msgctxt ""
"00000020.xhp\n"
"hd_id3152952\n"
-"1\n"
"help.text"
msgid "About Import and Export Filters"
msgstr "ནང་འདྲེན་དག་ཕྱིར་འདྲེན་གྱི་ཚགས་མའི་སྐོར་ལས།"
@@ -2959,7 +2756,6 @@ msgstr "ནང་འདྲེན་དག་ཕྱིར་འདྲེན་ག
msgctxt ""
"00000020.xhp\n"
"par_id3143272\n"
-"2\n"
"help.text"
msgid "In $[officename], apart from its own <link href=\"text/shared/00/00000021.xhp\" name=\"XML formats\">XML formats</link> you can also open and save many foreign XML formats."
msgstr "In $[officename], ངོ་མ་ལས་སོ་སོ་ <link href=\"text/shared/00/00000021.xhp\" name=\"XML formats\">XML formats</link> ཁྱོད་ཀྱིས་ ཕྱི་རྒྱལ་གྱི་ཨེགསི་ཨེམ་ཨེལ་རྩ་སྒྲིག་ཚུ་མང་ཤོས་རང་ ཁ་ཕྱེ་ནི་དང་སྲུང་ཚུགས།"
@@ -2968,7 +2764,6 @@ msgstr "In $[officename], ངོ་མ་ལས་སོ་སོ་ <link href=
msgctxt ""
"00000020.xhp\n"
"par_id3152414\n"
-"3\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">In UNIX, certain file formats cannot be recognized automatically.</caseinline><defaultinline>$[officename] normally recognizes the correct file type automatically on opening a file.</defaultinline></switchinline> There may be cases where you have to select the file type yourself in the <emph>Open</emph> dialog. For example, if you have a database table in text format that you want to open as a database table, you need to specify the file type \"Text CSV\" after selecting the file."
msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">ཡུ་ཨེན་ཨའི་ཨེགསི་ ཡིག་སྣོད་ཀྱི་རྩ་སྒྲིག་ལ་ལོ་ཅིག་ རང་བཞིན་གྱིས་འབད་ངོས་འཛིན་འབད་མི་ཚུགས། </caseinline><defaultinline>$[officename]གིས་སྤྱིར་གཏང་གི་ ཡིག་སྣོད་ཁ་ཕྱེ་མི་གུ་ རང་བཞིན་གྱིས་ཡིག་སྣོད་དབྱེ་བ་བདེན་པ་འདི་ངོས་འཛིན་འབད་ཚུགས། </defaultinline></switchinline>དེ་ལུ་ཡང་ཅིན་ <emph>Open</emph>ཌའི་ལོག་ནང་ ཁྱོད་རང་གིས་ ཡིག་སྣོད་ཀྱི་དབྱེ་བ་སེལ་འཐུ་འབད་དགོཔ་འབྱུང་ནི་གི་གནད་དོན་ཡང་འོང་སྲིད། དཔེར་ན་ ཁྱོད་རང་ གནད་སྡུད་གཞི་རྟེན་ཐིག་ཁྲམ་སྦེ་ཁ་ཕྱེ་དགོ་མི་ལུ་ ཚིག་ཡིག་རྩ་སྒྲིག་ནང་གི་གནད་སྡུད་གཞི་རྟེན་ཡོད་པ་ཅིན་ ཡིག་སྣོད་འདི་སེལ་འཐུ་འབད་ཚར་བཞིནམ་ལས་ ཁྱོད་ཀྱིས་ ཡིག་སྣོད་ཀྱི་དབྱེ་བ་ \"Text CSV\"འདི་ གསལ་བཀོད་འབད།"
@@ -2977,7 +2772,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">ཡུ་ཨེ
msgctxt ""
"00000020.xhp\n"
"hd_id3148668\n"
-"238\n"
"help.text"
msgid "Basic Macros in MS Office Documents"
msgstr "ཨེམ་ཨེསི་ཡིག་ཚང་གི་ཡིག་ཆ་ཚུ་ནང་ གཞི་རྟེན་ མེཀ་ཀོརོསི།"
@@ -2986,7 +2780,6 @@ msgstr "ཨེམ་ཨེསི་ཡིག་ཚང་གི་ཡིག་ཆ
msgctxt ""
"00000020.xhp\n"
"par_id3156211\n"
-"239\n"
"help.text"
msgid "In <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01130100.xhp\" name=\"Load/Save - VBA Properties\">Load/Save - VBA Properties</link> you can specify the settings for the VBA macro codes in MS Office documents. VBA macros are unable to run in $[officename]; they must first be converted and adapted. Often you only want to use $[officename] to change the visible content of a Word, Excel or PowerPoint file and then save the file again in Microsoft Office format without changing the macros they contain. You can set the behavior of $[officename] as desired: Either the VBA macros are saved in commented form as a subroutine of $[officename] and when the document is saved in MS Office format are written back correctly again, or you can select the Microsoft Office macros to be removed when loading. The last option is an effective protection against viruses within the Microsoft Office documents."
msgstr ""
@@ -2995,7 +2788,6 @@ msgstr ""
msgctxt ""
"00000020.xhp\n"
"hd_id3154232\n"
-"5\n"
"help.text"
msgid "Notes regarding external formats and file types"
msgstr "ཕྱིའི་རྩ་སྒྲིག་ཚུ་དང་ཡིག་སྣོད་དབྱེ་བ་ཚུ་གི་དོན་ལུ་དྲན་འཛིན།"
@@ -3004,7 +2796,6 @@ msgstr "ཕྱིའི་རྩ་སྒྲིག་ཚུ་དང་ཡིག
msgctxt ""
"00000020.xhp\n"
"par_id3154230\n"
-"226\n"
"help.text"
msgid "Even if they are not installed, some filters can be selected in the <emph>Open</emph> and <emph>Save</emph> dialogs. If you select such a filter, a message will appear saying that you can still install the filter if you require."
msgstr "དེ་ཚུ་གཞི་བཙུགས་མ་འབད་བར་ཡོད་རུང་ ཚགས་མ་ལ་ལོ་ཅིག་ <emph>ཁ་ཕྱེ་</emph> དང་ <emph>སྲུང་</emph> ཌའི་ལོག་ནང་སེལ་འཐུ་འབད་བཏུབ། ནི་བཟུམ་གྱི་ཚགས་མ་ཁྱོད་ཀྱིས་སེལ་འཐུ་འབད་བ་ཅིན་ ཁྱོད་དགོ་པ་ཅིན་ད་ལྟོ་ཡང་གཞི་བཙུགས་འབད་བཏུབ་ཟེར་བའི་ འཕྲིན་དོན་ཅིག་འབྱུང་འོང་།"
@@ -3013,7 +2804,6 @@ msgstr "དེ་ཚུ་གཞི་བཙུགས་མ་འབད་བར
msgctxt ""
"00000020.xhp\n"
"par_id3149999\n"
-"200\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">If you want to install additional filters or remove individual filters from the installation, close %PRODUCTNAME, start the Setup program and select the <emph>Modify</emph> option. Then you will see a dialog in which you can add or remove individual components of %PRODUCTNAME. Graphic filters can be found in \"Optional Components\".</caseinline></switchinline>"
msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">ཁྱོད་རང་ཚགས་མ་ཚུ་གཞི་འཛུགས་ཁ་སྐོང་འབད་ནི་ཡང་ན་གཞི་འཛུགས་ལས་ཚགས་མ་ཚུ་རེ་རེ་བཏོན་གཏང་ནི་ཨིན་པ་ཅིན་ %PRODUCTNAME འདི་ཁ་བསྡམས་ གཞི་སྒྲིིག་ལས་རིམ་འདི་འགོ་བཙུགས་ནི་དང་ <emph>ལེགས་བཅོས་</emph> གདམ་ཁ་འདི་སེལ་འཐུ་འབད། དེ་ལས་ཁྱོད་ཀྱིས་ %PRODUCTNAME གི་ཆ་ཤས་རེ་རེ་བཏོན་གཏང་ནི་་ཡང་ན་ཁ་སྐོང་འབད་ནི་ནང་ཌའི་ལོག་ཅིག་མཐོང་འོང་། ཚད་རིས་ཚགས་མ་ཚུ་ \"Optional Components\"ནང་འཚོལ་འཐོབ་ཨིན། </caseinline></switchinline>"
@@ -3022,7 +2812,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">ཁྱོད་
msgctxt ""
"00000020.xhp\n"
"hd_id3156027\n"
-"7\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Importing and Exporting Text Documents</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>ཚིག་ཡིག་ཡིག་ཆ་ཚུ་ནང་འདྲེན་དང་ཕྱིར་འདྲེན་འབད་དོ་</defaultinline></switchinline>"
@@ -3031,7 +2820,6 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><
msgctxt ""
"00000020.xhp\n"
"par_id3145669\n"
-"8\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>$[officename] Writer can read various versions of the Microsoft Word text format. You also can save your own texts in Word format. However, not everything available with $[officename] Writer can be transferred to MS Word, and not everything can be imported.</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>$[officename] རྩོམ་འབྲི་པ་གིས་ མའི་ཀོརོ་སོཕཊི་མིང་ཚིག་གི་ཚིག་་ཡིག་རྩ་སྒྲིག་གི་ཐོན་རིམ་སྣ་མང་ལྷག་བཏུབ། ཨིན་རུང་ $[officename]རྩོམ་འབྲི་པ་དང་བཅས་འཐོབ་ཚུགསཡོད་མི་ག་རང་ ཨེམ་ཨེསི་མིང་ཚིག་ལུ་གནས་སོར་འབད་མི་བཏུབ་ དེ་ལས་ག་རང་ནང་འདྲེན་ཡང་འབད་མི་བཏུབ། </defaultinline></switchinline>"
@@ -3040,7 +2828,6 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><
msgctxt ""
"00000020.xhp\n"
"par_id3150144\n"
-"233\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Importing is normally not problematic. Even redlining information and controls are imported (and exported) so that $[officename] recognizes inserted or deleted text in Word documents as well as font attributes that have been modified. Different coloring for each author and the time of such changes is also included. When graphic text boxes and labels are imported from templates, most of the attributes are also imported as direct paragraph and drawing attributes. However, some of the attributes may be lost during the import procedure.</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>ནང་འདྲེན་འབད་ནི་འདི་སྤྱིར་བཏང་དཀའ་ངལ་ཅན་ཅིག་མེན། གྱལ་དམརཔོ་བརྡ་དོན་དང་ཚད་འཛིན་ཚུ་ཡང་ནང་འདྲེན་འབད་ཡོདཔ་ཨིན (དང་ཕྱིར་འདྲེན་འབད་ཡོདཔ) དེ་ལས་ $[officename] གིས་ཚིག་ཡིག་བཙུགས་ཡོད་མི་ཡང་ན་བཏོན་གཏང་ཡོད་མི་མིང་ཚིག་ཡིག་ཆ་ཚུ་ནང་དེ་བཟུམ་སྦེ་ཡིག་གཟུགས་ཁྱད་ཆོས་ལེགས་བཅོས་འབད་ཡོད་མི་ཚུ་ངོ་ཤེསཔ་ཨིན། རྩོམ་པ་པོ་རེ་རེ་དོན་ལུ་་ཚོས་གཞི་བཏང་་ཐངས་སོ་སོ་དང་དུས་ཚོད་བསྒྱུར་བཅོས་ཚུ་ཡང་གྲངས་སུ་བཙུགས་ཡོདཔ་ཨིན། ཚིག་ཡིག་ཚད་རིས་བོགསི་སེ་སྐབས་དང་ཊེམ་པེལེཊི་ཚུ་ལས་ནང་འདྲེན་འབདཝ་ད་ ཁྱད་ཆོས་ཚུ་མང་ཤོས་རང་ཐད་ཀར་མཚམས་དོན་དང་པར་རིས་ཁྱད་ཆོས་ཚུ་སྦེ་ནང་འདྲེན་འབད་ཡོདཔ་ཨིན། ག་དེ་འབད་ཨིན་རུང་ལས་སྦྱོར་ནང་འདྲེན་འབད་བའི་སྐབས་ཁྱད་ཆོས་ཚུ་ལ་ལོ་བརླག་སྟོར་ཞུགས་འོང་།</defaultinline></switchinline>"
@@ -3049,7 +2836,6 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><
msgctxt ""
"00000020.xhp\n"
"par_id3149095\n"
-"10\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>It is also possible to import and export <link href=\"text/shared/00/00000005.xhp#rtf\" name=\"RTF\">RTF</link> files. This file format can be used to exchange formatted texts across various applications and platforms. In this way, many formats read by most programs will be transferred without a problem. The clipboard uses RTF format when you insert part of a spreadsheet from $[officename] Calc through <link href=\"text/shared/00/00000005.xhp\" name=\"DDE\">DDE</link> into $[officename] Writer.</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>ཡིག་སྣོད་ཚུ་ནང་འདྲེན་དངཕྱིར་འདྲེན་འབད་ཚུགས་ <link href=\"text/shared/00/00000005.xhp#rtf\" name=\"RTF\">ཨར་ཊི་ཨེཕ་</link> ཡིག་སྣོད་ཚུ། ཡིག་སྣོད་རྩ་སྒྲིག་འདི་ འཇུག་སྤྱོད་ཚུ་དང་མཉེན་རིམ་སྣ་མང་ཡན་ཆད་ཀྱི་རྩ་སྒྲིག་འབད་ཡོད་པའི་ཚིག་ཡིག་བསྒྱུར་བཅོས་འབདཝ་ད་ལག་ལེན་འཐབ་བཏུབ། ཐབས་ལམ་ནི་གི་ཐོག་ལས་ ལས་རིམ་མང་ཤོས་ཀྱིས་ལྷག་མི་རྩ་སྒྲིག་ཚུ་ དཀའ་ངལ་མེད་པར་གནས་སོར་འབད་ཚུགས། $[officename] སི་ཨེ་ཨེལ་སི་བརྒྱུད་དེ་ <link href=\"text/shared/00/00000005.xhp\" name=\"DDE\">ཌི་ཌི་ཨི་</link> $[officename] བརྩོམ་འབྲི་པའི་ནང་ལུ་.</defaultinline></switchinline> ལས་ཁྱོད་ཀྱིས་ ཤོག་ཁྲམ་ཡན་ལག་ཅིག་བཙུགསཔ་ད་ འཛིན་པང་དེ་གིས་ ཨར་ཊི་ཨེཕ་རྩ་སྒྲིག་ལག་ལེན་འཐབ་ཨིན།"
@@ -3058,7 +2844,6 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><
msgctxt ""
"00000020.xhp\n"
"par_id3151378\n"
-"237\n"
"help.text"
msgid "The filter <emph>Text Encoded</emph> helps you open and save text documents with another encoding font. The filter opens a dialog that enables you to select character set, default fonts, language and paragraph break."
msgstr "<emph>ཚིག་ཡིག་ཨིན་ཀོཌིཊ</emph>ཚགས་མ་དེ་གིས་ ཁྱོད་ལུ་ ཨིན་ཀོ་ཌིང་ཡིག་གཟུགས་གཞན་མི་དང་བཅས་ ཚིག་ཡིག་གི་ཡི་གཆ་སྲུང་ནི་ལུ་སྒྲོག་རམ་འབདཝ་ཨིན། ཡིག་འབྲུའི་གཞི་སྒྲིག་དང་སྔོན་སྒྲིག་ཡི་གགཟུགས་ དེ་ལས་སྐད་ཡིག་དང་དོན་མཚམས་ཀྱི་མཚམས་ཚུ་ ཁྱོད་ཀྱིས་ལྕོགས་ཅན་བཟོ་བཅུག་ནིའི་དོན་ལུ་ ཚགས་མ་གིས་ཌའི་ལོག་ཅིག་ཁ་ཕྱེཝ་ཨིན།"
@@ -3067,7 +2852,6 @@ msgstr "<emph>ཚིག་ཡིག་ཨིན་ཀོཌིཊ</emph>ཚག
msgctxt ""
"00000020.xhp\n"
"hd_id3149763\n"
-"11\n"
"help.text"
msgid "Importing and Exporting in HTML Format"
msgstr "ཨེཆ་ཊི་ཨེམ་ཨེལ་རྩ་སྒྲིག་ནང་གི་ནང་འདྲེན་དང་པྱིར་འདྲེན་འབད་དོ།"
@@ -3076,7 +2860,6 @@ msgstr "ཨེཆ་ཊི་ཨེམ་ཨེལ་རྩ་སྒྲིག་
msgctxt ""
"00000020.xhp\n"
"par_id3150244\n"
-"198\n"
"help.text"
msgid "With $[officename] Writer, you can insert footnotes and endnotes in your HTML document. They are exported as meta tags. The footnote and endnote characters are exported as hyperlinks."
msgstr "$[officename] རྩོམ་འབྲི་པ་དང་བཅས་ ཁྱོད་རའི་ ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་ཆ་ནང་ ཁྱོད་ཀྱིས་ མཇུག་གི་དྲན་ཐོ་དང་མཐའི་དྲན་འཛིན་ བཙུགས་བཏུབ། དེ་ཚུ་མེ་ཊ་ངོ་རྟགས་སྦེ་ཕྱིར་འདྲེན་འབད། མཇུག་གི་དྲན་ཐོ་དང་མཐའི་དྲན་འཛིན་ཡིག་འབྲུ་ཚུ་ ཧའི་པར་ལིངཀིསི་སྦེ་ཕྱིར་འདྲེན་འབད་ཡོད།"
@@ -3085,7 +2868,6 @@ msgstr "$[officename] རྩོམ་འབྲི་པ་དང་བཅས་
msgctxt ""
"00000020.xhp\n"
"par_id3149800\n"
-"199\n"
"help.text"
msgid "Comments are used to include unknown characters in an HTML document. Every note that begins with \"HTML:...\" and ends with \">\" is treated as an HTML code, but is exported without these designations. Several tags around text can be included after \"HTML:...\" Accented characters are converted into the ANSI character set. Comments are created during import (for example, for meta tags that have no room in the file properties or unknown tags)."
msgstr "ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་ཆ་ནང་ མ་ཤེས་པའི་ཡིག་འབྲུ་ཚུ་གྲངས་སུ་བཙུགས་ནི་ལུ་ དྲན་འཛིན་ཚུ་ལག་ལེན་འཐབ་ཨིན། \"HTML:...\" དང་བཅས་མཇུག་བསྡུ་ \">\"དང་བཅས་འགོ་བཙུགས་མི་དྲན་འཛིན་ག་རང་ ཨེཆ་ཊི་ཨེམ་ཨེལ་ཨང་རྟགས་སྦེ་བརྩི་འཇོག་འབདཝ་ཨིན་ དེ་འབདཝ་ད་གནས་རིམ་དེ་ཚུ་མེད་པར་ཕྱིར་འདྲེན་འབད་ཡོད། \"HTML:...\"གི་ཤུལ་ལས་ ཚིག་ཡིག་གི་མཐའ་འཁོར་ ངོ་རྟགས་ལེ་ཤ་ཅིག་གྲངས་སུ་བཙུགས་བཏུབ། སྒྲ་མདངས་ཡིག་འབྲུ་ཚུ་ ཨེ་ཨེན་ཨེསི་ཨའི་ཡིག་འབྲུ་གི་གཞི་སྒྲིག་ནང་ལུ་གཞི་བསྒྱུར་འབད་ཡོད། ནང་འདྲེན་གྱི་སྐབས་ལུ་འདྲེན་འཛིན་ཚུ་གསར་བསྐྲུན་འབདཡོད་ (དཔེར་ན་ མེ་ཊ་ངོ་རྟགས་ཚུ་གི་དོན་ལུ་ ཡིག་སྣོད་ཀྱི་རྒྱུ་དངོས་ཡང་ན་ མ་ཤེས་པའི་ངོ་རྟགས་ནང་ཁང་མིག་མེད།)"
@@ -3094,7 +2876,6 @@ msgstr "ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་ཆ་ནང་
msgctxt ""
"00000020.xhp\n"
"par_id3149734\n"
-"201\n"
"help.text"
msgid "The HTML import of $[officename] Writer is able to read files that have UTF-8 or UCS2 character coding. All characters that are contained in the ANSI character set or in the system's character set can be displayed."
msgstr "$[officename]་རྩོམ་འབྲི་པའི་ཨེཆ་ཊི་ཨེམ་ཨེལ་ནང་འདྲེན་པ་འདི་གིས་ ཡུ་ཏི་ཨེཕ་-༨་ ཡང་ན་ ཡུ་སི་ཨེསི་༢་ཡིག་འབྲུ་ཀོ་ཌིང་ཡོད་མི་ ཡིག་སྣོད་ཚུ་ལྷག་ཚུགས། ཨེ་ཨེན་ཨེསི་ཨའི་ཡིག་འབྲུ་གི་གཞི་སྒྲིག་ཡང་ན་རིམ་ལུགས་ཀྱི་ཡིག་འབྲུ་ནང་ཡོད་མི་ཡིག་འབྲུ་ཆ་མཉམ་རང་བཀྲམ་སྟོན་འབད་བཏུབ།"
@@ -3103,7 +2884,6 @@ msgstr "$[officename]་རྩོམ་འབྲི་པའི་ཨེཆ་
msgctxt ""
"00000020.xhp\n"
"par_id3149578\n"
-"240\n"
"help.text"
msgid "When exporting to HTML, the character set selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML Compatibility</emph> is used. Characters not present there are written in a substitute form, which is displayed correctly in modern web browsers. When exporting such characters, you will receive an appropriate warning."
msgstr ""
@@ -3112,7 +2892,6 @@ msgstr ""
msgctxt ""
"00000020.xhp\n"
"par_id3153146\n"
-"197\n"
"help.text"
msgid "If, in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML Compatibility</emph>, you select Mozilla Firefox, MS Internet Explorer, or $[officename] Writer as the export option, upon export all important font attributes are exported as direct attributes (for example, text color, font size, bold, italic, and so on) in CSS1 styles. (<link href=\"text/shared/00/00000002.xhp\" name=\"CSS\">CSS</link> stands for Cascading Style Sheets.) Importing is also carried out according to this standard."
msgstr ""
@@ -3121,7 +2900,6 @@ msgstr ""
msgctxt ""
"00000020.xhp\n"
"par_id3154143\n"
-"130\n"
"help.text"
msgid "The \"font\" property corresponds to Mozilla Firefox; that is, before the font size you can specify optional values for \"font-style\" (italic, none), \"font-variant\" (normal, small-caps) and \"font-weight\" (normal, bold)."
msgstr ""
@@ -3130,7 +2908,6 @@ msgstr ""
msgctxt ""
"00000020.xhp\n"
"par_id3153760\n"
-"131\n"
"help.text"
msgid "For example, \"Font: bold italic small-caps 12pt/200% Arial, Helvetica\" switches to bold, italic, small caps, double-space with the font family Arial or Helvetica, if Arial doesn't exist."
msgstr "དཔེར་ན་ ཡིག་གཟུགས་རིགས་ཚན་ཨེ་རིཡལ་ཡང་ན་ ཨེ་རིཡལ་གནས་འདི་མེད་པ་ཅིན་ཧེལ་བི་ཊི་ཀ་་དང་བཅས་\"Font: bold italic small-caps 12pt/200% Arial, Helvetica\"གིས་རྒྱགས་པ་ ཨའི་ཊ་ལིཀ་ ཀེཔསི་ཆུང་ཀུ་དང་བར་སྟོང་གཉིས་ལྡན་ལུ་སོར་བསྒྱུར་འབདཝ་ཨིན།"
@@ -3139,7 +2916,6 @@ msgstr "དཔེར་ན་ ཡིག་གཟུགས་རིགས་ཚ
msgctxt ""
"00000020.xhp\n"
"par_id3150129\n"
-"132\n"
"help.text"
msgid "\"Font: 10pt\" switches to a 10pt font, with bold, italic, small caps off."
msgstr "\"Font: 10pt\"གིས་ རྒྱགས་པ་དང་ཨི་ཊ་ལིཀ་དེ་ལས་ཀེཔསི་ཆུང་ཀུ་ཨོཕ་དང་བཅས་ ༡༠ པི་ཊི་ཡིག་གཟུགས་ལུ་སོར་བསྒྱུར་འབདཝ་ཨིན།"
@@ -3148,7 +2924,6 @@ msgstr "\"Font: 10pt\"གིས་ རྒྱགས་པ་དང་ཨི་ཊ
msgctxt ""
"00000020.xhp\n"
"par_id3155135\n"
-"14\n"
"help.text"
msgid "If MS Internet Explorer or $[officename] Writer are set as the export option, the sizes of the control field and their internal margins are exported as styles (print formats). CSS1 size properties are based on \"width\" and \"height\" values. The \"Margin\" property is used to set equal margins on all sides of the page. To allow different margins, the \"Margin-Left\", \"Margin-Right\", \"Margin-Top\" and \"Margin-Bottom\" properties are used."
msgstr "ཨེམ་ཨེསི་ཨིན་ཊར་ནེཊི་དཔྱད་ཞིབ་འབད་མི་ཡང་ན་ $[officename] རྩོམ་འབྲི་པ་ཚུ་ཕྱིར་འདྲེན་གདམ་ཁ་སྦེ་གཞི་སྒྲིག་འབད་ཡོད་པ་ཅིན་ ཚད་འཛིན་ས་སྒོ་གི་ཚད་ཚུ་དང་འདིའི་ནང་འཁོད་ས་སྟོང་ཚུ་བཟོ་རྣམ་སྦེ་ (དཔར་བསྐྲུན་རྩ་སྒྲིག་ཚུ)ཕྱིར་འདྲེན་འབད་ཡོདཔ་ཨིན། སི་ཨེསི་ཨེསི་༡་ ཚད་རྒྱུ་དངོས་ཚུ་ \"width\" དང་ \"height\" གནས་གོང་ཚུ་ལུ་གཞི་བཞགཔ་ཨིན། རྒྱུ་དངོས་འདི་ \"Margin\" ཤོག་ལེབ་ཀྱི་ཟུར་ཆ་མཉམ་གུ་ས་སྟོང་ཚུ་འདྲ་མཉམ་གཞི་སྒྲིག་འབདཝ་ཨིན། ས་སྟོང་སོ་སོ་བཅུག་ནི་ལུ་ \"Margin-Left\", \"Margin-Right\", \"Margin-Top\" དང་ \"Margin-Bottom\" རྒྱུ་དངོས་ཚུ་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན།"
@@ -3157,7 +2932,6 @@ msgstr "ཨེམ་ཨེསི་ཨིན་ཊར་ནེཊི་དཔྱ
msgctxt ""
"00000020.xhp\n"
"par_id3148473\n"
-"15\n"
"help.text"
msgid "The distances of graphics and Plug-Ins to the content can be set individually for export to $[officename] Writer and MS Internet Explorer. If the top/bottom or right/left margin is set differently, the distances are exported in a \"STYLE\" option for the corresponding tag as CSS1 size properties \"Margin-Top\", \"Margin-Bottom\", \"Margin-Left\" and \"Margin-Right\"."
msgstr ""
@@ -3166,7 +2940,6 @@ msgstr ""
msgctxt ""
"00000020.xhp\n"
"par_id3144510\n"
-"16\n"
"help.text"
msgid "Text frames are supported with the use of CSS1 extensions for absolute positioned objects. This applies only to the export options Mozilla Firefox, MS Internet Explorer, and $[officename] Writer. Text frames can be aligned as graphics, <switchinline select=\"sys\"><caseinline select=\"WIN\"> Plug-Ins,</caseinline></switchinline>and Floating Frames, but character-linked frames are not possible."
msgstr ""
@@ -3175,7 +2948,6 @@ msgstr ""
msgctxt ""
"00000020.xhp\n"
"par_id3147530\n"
-"46\n"
"help.text"
msgid "Text frames are exported as \"<SPAN>\" or \"<DIV>\" tags if they do not contain columns. If they do contain columns then they are exported as \"<MULTICOL>\"."
msgstr "དེ་ཚུ་ལུ་ཀེར་ཐིག་མེད་པ་ཅིན་ ཚིག་ཡིག་གཞི་ཁྲམ་ཚུ་ \"<SPAN>\" or \"<DIV>\" ངོ་རྟགས་སྦེ་ཕྱིར་འདྲེན་འབདཝ་ཨིན། དེ་ཚུ་ལུ་ཀེར་ཐིག་མེད་པ་ཅིན་ དེ་ཚུ་ \"<MULTICOL>\"སྦེ་ཕྱིར་འདྲེན་འབདཝ་ཨིན།"
@@ -3184,7 +2956,6 @@ msgstr "དེ་ཚུ་ལུ་ཀེར་ཐིག་མེད་པ་ཅ
msgctxt ""
"00000020.xhp\n"
"par_id3153896\n"
-"202\n"
"help.text"
msgid "The measurement unit set in $[officename] is used for HTML export of CSS1 properties. The unit can be set separately for text and HTML documents under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - General</emph> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web - View</emph>. The number of exported decimal places depends on the unit."
msgstr ""
@@ -3193,7 +2964,6 @@ msgstr ""
msgctxt ""
"00000020.xhp\n"
"par_id3154935\n"
-"203\n"
"help.text"
msgid "Measurement Unit"
msgstr "ཚད་འཇལ་ཆ་ཕྲན།"
@@ -3202,7 +2972,6 @@ msgstr "ཚད་འཇལ་ཆ་ཕྲན།"
msgctxt ""
"00000020.xhp\n"
"par_id3154226\n"
-"204\n"
"help.text"
msgid "Measurement Unit Name in CSS1"
msgstr "སི་ཨེསི་ཨེསི་ཨའི་ ༡ ནང་གི་ ཚད་འཇལ་ཆ་ཕྲན་གྱི་མིང་།"
@@ -3211,7 +2980,6 @@ msgstr "སི་ཨེསི་ཨེསི་ཨའི་ ༡ ནང་གི
msgctxt ""
"00000020.xhp\n"
"par_id3151106\n"
-"205\n"
"help.text"
msgid "Maximum Number of Decimal Places"
msgstr "བཅུ་ཚག་ས་གནས་ཀྱི་ཨང་གྲངས་མང་མཐའ།"
@@ -3220,7 +2988,6 @@ msgstr "བཅུ་ཚག་ས་གནས་ཀྱི་ཨང་གྲངས
msgctxt ""
"00000020.xhp\n"
"par_id3154071\n"
-"206\n"
"help.text"
msgid "Millimeter"
msgstr "མི་ལི་མི་ཊར།"
@@ -3229,7 +2996,6 @@ msgstr "མི་ལི་མི་ཊར།"
msgctxt ""
"00000020.xhp\n"
"par_id3149290\n"
-"207\n"
"help.text"
msgid "mm"
msgstr "ཨེམ་ཨེམ།"
@@ -3238,7 +3004,6 @@ msgstr "ཨེམ་ཨེམ།"
msgctxt ""
"00000020.xhp\n"
"par_id3152920\n"
-"208\n"
"help.text"
msgid "2"
msgstr ""
@@ -3247,7 +3012,6 @@ msgstr ""
msgctxt ""
"00000020.xhp\n"
"par_id3156293\n"
-"209\n"
"help.text"
msgid "Centimeter"
msgstr "སེན་ཊི་མི་ཊར།"
@@ -3256,7 +3020,6 @@ msgstr "སེན་ཊི་མི་ཊར།"
msgctxt ""
"00000020.xhp\n"
"par_id3154819\n"
-"210\n"
"help.text"
msgid "cm"
msgstr "སི་ཨེམ།"
@@ -3265,7 +3028,6 @@ msgstr "སི་ཨེམ།"
msgctxt ""
"00000020.xhp\n"
"par_id3147228\n"
-"211\n"
"help.text"
msgid "2"
msgstr ""
@@ -3274,7 +3036,6 @@ msgstr ""
msgctxt ""
"00000020.xhp\n"
"par_id3154329\n"
-"212\n"
"help.text"
msgid "Inch"
msgstr "ཨིནཅི།"
@@ -3283,7 +3044,6 @@ msgstr "ཨིནཅི།"
msgctxt ""
"00000020.xhp\n"
"par_id3150740\n"
-"213\n"
"help.text"
msgid "in"
msgstr "ནང་ན།"
@@ -3292,7 +3052,6 @@ msgstr "ནང་ན།"
msgctxt ""
"00000020.xhp\n"
"par_id3157320\n"
-"214\n"
"help.text"
msgid "2"
msgstr ""
@@ -3301,7 +3060,6 @@ msgstr ""
msgctxt ""
"00000020.xhp\n"
"par_id3156422\n"
-"215\n"
"help.text"
msgid "Pica"
msgstr "པི་ཀ།"
@@ -3310,7 +3068,6 @@ msgstr "པི་ཀ།"
msgctxt ""
"00000020.xhp\n"
"par_id3144760\n"
-"216\n"
"help.text"
msgid "pc"
msgstr "པི་སི།"
@@ -3319,7 +3076,6 @@ msgstr "པི་སི།"
msgctxt ""
"00000020.xhp\n"
"par_id3145322\n"
-"217\n"
"help.text"
msgid "2"
msgstr ""
@@ -3328,7 +3084,6 @@ msgstr ""
msgctxt ""
"00000020.xhp\n"
"par_id3155131\n"
-"218\n"
"help.text"
msgid "Point"
msgstr "ཡིག་ཚད།"
@@ -3337,7 +3092,6 @@ msgstr "ཡིག་ཚད།"
msgctxt ""
"00000020.xhp\n"
"par_id3147288\n"
-"219\n"
"help.text"
msgid "pt"
msgstr "པི་ཊི།"
@@ -3346,7 +3100,6 @@ msgstr "པི་ཊི།"
msgctxt ""
"00000020.xhp\n"
"par_id3145364\n"
-"220\n"
"help.text"
msgid "1"
msgstr ""
@@ -3355,7 +3108,6 @@ msgstr ""
msgctxt ""
"00000020.xhp\n"
"par_id3149262\n"
-"70\n"
"help.text"
msgid "The $[officename] Web page filter supports certain capabilities of CSS2. However, to use it, print layout export must be activated in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML Compatibility</emph>. Then, in HTML documents, besides the HTML Page Style, you can also use the styles \"First page\", \"Left page\" and \"Right page\". These styles should enable you to set different page sizes and margins for the first page and for right and left pages when printing."
msgstr ""
@@ -3364,7 +3116,6 @@ msgstr ""
msgctxt ""
"00000020.xhp\n"
"hd_id3145750\n"
-"223\n"
"help.text"
msgid "Importing and Exporting Numbering"
msgstr "ཨང་བཏགས་ནི་འདི་ནང་འདྲེན་དང་ཕྱིར་འདྲེན་འབད་དོ།"
@@ -3373,7 +3124,6 @@ msgstr "ཨང་བཏགས་ནི་འདི་ནང་འདྲེན་
msgctxt ""
"00000020.xhp\n"
"par_id3145591\n"
-"224\n"
"help.text"
msgid "If, in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML Compatibility</emph>, the export option \"$[officename] Writer\" or \"Internet Explorer\" is selected, the indents of numberings are exported as \"margin-left\" CSS1 property in the STYLE attribute of the <OL> and <UL> tags. The property indicates the difference relative to the indent of the next higher level."
msgstr ""
@@ -3382,7 +3132,6 @@ msgstr ""
msgctxt ""
"00000020.xhp\n"
"par_id3153573\n"
-"225\n"
"help.text"
msgid "A left paragraph indent in numbering is indicated as \"margin-left\" CSS1 property. First-line indents are ignored in numbering and not exported."
msgstr "ཨང་བཏགས་ནང་གི་འགོ་མཚམས་གཡོན་གྱི་དོན་མཚམས་འདི་ \"margin-left\"སི་ཨེསི་ཨེསི་ ༡ རྒྱུ་དངོས་སྦེ་བརྡ་སྟོན་འབད་ཡོད། ཨང་བཏགས་ནང་གྲལ་ཐིག་ཧེ་མའི་འགོ་མཚམས་ཚུ་སྣང་མེད་འབད་བཞག་ཡོདཔ་དང་ ཕྱིར་འདྲེན་ཡང་མ་འབད།"
@@ -3391,7 +3140,6 @@ msgstr "ཨང་བཏགས་ནང་གི་འགོ་མཚམས་ག
msgctxt ""
"00000020.xhp\n"
"hd_id3148556\n"
-"235\n"
"help.text"
msgid "Importing and Exporting Spreadsheet Files"
msgstr "ཤོག་ཁྲམ་ཡིག་སྣོད་ཚུ་ ནང་འདྲེན་དང་ཕྱིར་འདྲེན་འབད་དོ།"
@@ -3400,7 +3148,6 @@ msgstr "ཤོག་ཁྲམ་ཡིག་སྣོད་ཚུ་ ནང་
msgctxt ""
"00000020.xhp\n"
"par_id3153365\n"
-"236\n"
"help.text"
msgid "$[officename] imports and exports references to deleted sections such as, for example, a referenced column. The whole formula can be viewed during the export process and the deleted reference contains an indication (#REF!) to the reference. A #REF! will be correspondingly created for the reference during the import."
msgstr "$[officename] ནང་འདྲེན་དང་ཕྱིར་འདྲེན་གྱིས་ བཏོན་གཏང་ཡོད་པའི་དབྱེ་ཚན་ དཔེར་ན་ གཞི་བསྟུན་ཀེར་ཐིག་བཟུམ་ལུ་ གཞི་བསྟུན་འབད་ཡོད། མན་ངག་ཆ་མཉམ་འདི་ ཕྱིར་འདྲེན་ལས་སྦྱོར་འབད་བའི་བསྒང་མཐོངམ་ཨིན་ དེ་ལས་ བཏོན་གཏང་ཡོད་པའི་གཞི་བསྟུན་གྱིས་ གཞི་བསྟུན་ལུ་ (#REF!) བརྡ་སྟོན་ཅིག་ཡོདཔ་ཨིན། #REF!འདི་ ནང་འདྲེན་འབད་བའི་སྐབས་སུ་ གཞི་བསྟུན་གྱི་དོན་ལུ་མཉམ་པའི་ཐོག་ལས་གསར་བསྐྲུན་འབད་འོང།"
@@ -3409,7 +3156,6 @@ msgstr "$[officename] ནང་འདྲེན་དང་ཕྱིར་འད
msgctxt ""
"00000020.xhp\n"
"hd_id3150228\n"
-"103\n"
"help.text"
msgid "Importing and Exporting Graphics Files"
msgstr "ཚད་རིས་ཡིག་སྣོད་ཚུ་ནང་འདྲེན་དང་ཕྱིར་འདྲེན་འབད་དོ།"
@@ -3418,7 +3164,6 @@ msgstr "ཚད་རིས་ཡིག་སྣོད་ཚུ་ནང་འད
msgctxt ""
"00000020.xhp\n"
"par_id3152578\n"
-"104\n"
"help.text"
msgid "As with HTML documents, you can choose to use a filter with or without the element ($[officename] Impress) in the name to open a $[officename] graphics file. If without, the file will be opened as a $[officename] Draw document. Otherwise, the file saved by an old program version is now opened in $[officename] Impress."
msgstr "ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་ཆ་ཚུ་གི་ཐོག་ལས་ $[officename] ཚད་རིས་ཡིག་སྣོད་ཅིག་ཁ་ཕྱེ་ནི་ལུ་ མིང་ནང་གི་ ཆ་ཤས་ ($[officename] Impress) ཡོད་རུང་མེད་རུང་ ཁྱོད་ཀྱིས་ཚགས་མ་ལག་ལེན་འཐབ་ནི་འདི་གདམ་ཁ་བརྐྱབ་བཏུབ། མེདཔ་སྦེ་ཨིན་པ་ཅིན་ ཡིག་སྣོད་འདི་ $[officename] འབྲི་བའི་ཡིག་ཆ་སྦེ་ཁ་ཕྱེ་བཏུབ། དེ་སྦེ་མེན་པ་ཅིན་ ལས་རིམ་གྱི་ཐོན་རིམ་རྙིངམ་གྱིས་སྲུང་བཞག་ཡོད་མི་ཡིག་སྣོད་འདི་ ད་ལྟོ་ $[officename]ཨིམ་པེརེསི་ནང་ཁ་ཕྱེ་ཡི།"
@@ -3427,7 +3172,6 @@ msgstr "ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་ཆ་ཚུ་
msgctxt ""
"00000020.xhp\n"
"par_id3144441\n"
-"106\n"
"help.text"
msgid "When you import an EPS file, a preview of the graphic is displayed in the document. If a preview is not available, a placeholder corresponding to the size of the graphic is displayed in the document. Under Unix and Microsoft Windows you can print the imported file by using a PostScript printer. <switchinline select=\"sys\"><caseinline select=\"UNIX\"></caseinline><defaultinline>If a different printer is used the preview will be printed.</defaultinline></switchinline> When exporting EPS graphics, a preview is created and has the TIFF or EPSI format. If an EPS graphic together with other graphics is exported in the EPS format then this file will be embedded unchanged in the new file."
msgstr "ཁྱོད་ཀྱིས་ ཨི་པི་ཨེསི་ཡིག་སྣོད་ནང་འདྲེན་འབདཝ་ད ཚད་རིས་ཀྱི་སྔོན་ལྟ་འདི་ ཡིག་ཆ་ནང་ལུ་བཀྲམ་སྟོན་འབདཝ་ཨིན། སྔོན་ལྟ་འདི་འཐོབ་ཚུགསཔ་མེད་པ་ཅིན་ ཚད་རིས་ཀྱི་ཚད་ལུ་མཉམ་པའི་ས་གནས་འཆང་མི་འདི་ ཡིག་ཆ་ནང་ལུ་བཀྲམ་སྟོན་འབདཝ་ཨིན། ཡུ་ནིགསི་དང་མའི་ཀོརོ་སོཕཊི་ཝིན་ཌཱསི་གི་འོག་ལུ་ པོསིཊི་སིཀིརིཔཊི་དཔར་བསྐྲུན་པ་ཅིག་ལག་ལེན་འཐབ་ཐོག་ལས་ ནང་འདྲེན་འབད་ཡོདའི་ཡིག་སྣོད་འདི་ཁྱོད་ཀྱིས་དཔར་བསྐྲུན་འབད། <switchinline select=\"sys\"><caseinline select=\"UNIX\"></caseinline><defaultinline> དཔར་བསྐྲུན་སོ་སོ་ལག་ལེན་འཐབ་པ་ཅིན་ སྔོན་ལྟ་འདི་དཔར་བསྐྲུན་འབད་འོང་། </defaultinline></switchinline> ཨི་པི་ཨེསི་ཚད་རིས་ཚུ་ཕྱིར་འདྲེན་འབདཝ་ད་ སྔོན་ལྟ་འདི་གསར་བསྐྲུན་འབད་ཡོདཔ་དང་ ཊི་ཨའི་ཨེཕ་ཨེཕ་ཡང་ན་ ཨི་པི་ཨེསི་ཨའི་རྩ་སྒྲིག་ཡང་ཡོད། ཨི་པི་ཨེསི་ཚད་རིས་འདི་ ཚད་རིས་གཞན་མི་དང་བཅས་ ཨི་པི་ཨེསི་རྩ་སྒྲིག་ནང་ཕྱིར་འདྲེན་འབད་བ་ཅིན་ ཡིག་སྣོད་གསརཔ་གི་ནང་ འ་ནི་ཡིག་སྣོད་འདི་ བསྒྱུར་བཅོས་མེད་པར་གནས་འདྲེན་འབད་འོང་།"
@@ -3436,7 +3180,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཨི་པི་ཨེསི་ཡི
msgctxt ""
"00000020.xhp\n"
"par_id3146120\n"
-"222\n"
"help.text"
msgid "Multipage-TIFFs are allowed when graphics are imported or exported in TIFF format. The graphics are retrieved as a set of individual pictures in a single file, for example, the individual pages of a fax."
msgstr "ཊི་ཨའི་ཨེཕ་ཨེཕ་རྩ་སྒྲིག་ནང་ཚད་རིས་ཚུ་ནང་འདྲེན་དང་ཕྱིར་འདྲེན་འབདཝ་ད་ ཤོག་ལེབ་སྣ་མང་ ཊི་ཨའི་ཨེཕ་ཨེཕ་ཚུ་ངོས་ལེན་འབདཝ་ཨིན། ཚད་རིས་ཚུ་ཡིག་སྣོད་རྐྱང་པའི་ནང་གི་ ངོ་རྐྱང་པར་གྱི་གཞི་སྒྲིག་སྦེ་སླར་འདྲེན་འབདཝ་ཨིན་ དཔེར་ན་ དཔར་འཕྲིན་གྱི་ཤོག་ལེབ་ངོ་རྐྱང་བཟུམ།"
@@ -3445,7 +3188,6 @@ msgstr "ཊི་ཨའི་ཨེཕ་ཨེཕ་རྩ་སྒྲིག་
msgctxt ""
"00000020.xhp\n"
"par_id3159153\n"
-"109\n"
"help.text"
msgid "Some $[officename] Draw and $[officename] Impress options can be accessed through <emph>File - Export</emph>. See <link href=\"text/shared/00/00000200.xhp\" name=\"Graphics Export Options\">Graphics Export Options</link> for more information."
msgstr "ལ་ལོ་ཅིག་ $[officename] འབྲི་ན་དང་ $[officename] ཨིམ་པེརེསི་གདམ་ཁ་འདི་<emph>ཡིག་སྣོད་ - ཕྱིར་འདྲེན་</emph>ཐོག་ལས་འཛུལ་སྤྱོད་འབད་བཏུབ།"
@@ -3454,7 +3196,6 @@ msgstr "ལ་ལོ་ཅིག་ $[officename] འབྲི་ན་དང་
msgctxt ""
"00000020.xhp\n"
"hd_id3153213\n"
-"228\n"
"help.text"
msgid "PostScript"
msgstr "པོསིཊི་སིཀིརིཔཊི།"
@@ -3463,7 +3204,6 @@ msgstr "པོསིཊི་སིཀིརིཔཊི།"
msgctxt ""
"00000020.xhp\n"
"par_id3156444\n"
-"229\n"
"help.text"
msgid "To export a document or graphic in PostScript format:"
msgstr "པོསིཊི་སིཀིརིཔཊི་རྩ་སྒྲིག་ནང་ཚད་རིས་ཡང་ན་ཡིག་ཆ་ཅིག་ཕྱིར་འདྲེན་འབད་ནི་ལུ:"
@@ -3472,7 +3212,6 @@ msgstr "པོསིཊི་སིཀིརིཔཊི་རྩ་སྒྲི
msgctxt ""
"00000020.xhp\n"
"par_id3163714\n"
-"230\n"
"help.text"
msgid "If you have not yet done so, install a PostScript printer driver, such as the Apple LaserWriter driver."
msgstr "ཁྱོད་ཀྱིས་ད་ལྟོ་ཡང་མ་འབད་བར་ཡོད་པ་ཅིན་ ཨེ་པཱལ་ལེ་སར་རའི་ཊར་བཟུམ་སྦེ་ པོསིཊི་སིཀིརིཔཊི་དཔར་བསྐྲུན་པའི་འདྲེན་བྱེད་ཅིག་གཞི་བཙུགས་འབད།"
@@ -3481,7 +3220,6 @@ msgstr "ཁྱོད་ཀྱིས་ད་ལྟོ་ཡང་མ་འབད
msgctxt ""
"00000020.xhp\n"
"par_id3153142\n"
-"231\n"
"help.text"
msgid "Print the document with the <emph>File - Print</emph> menu command."
msgstr "<emph>ཡིག་སྣོད་ - དཔར་བསྐྲུན་འབད</emph>དཀར་ཆག་གི་བརྡ་བཀོད་གི་ཐོག་ལས་ ཡིག་ཆ་འདི་དཔར་བསྐྲུན་འབད།"
@@ -3490,7 +3228,6 @@ msgstr "<emph>ཡིག་སྣོད་ - དཔར་བསྐྲུན་འ
msgctxt ""
"00000020.xhp\n"
"par_id3154149\n"
-"242\n"
"help.text"
msgid "Select the PostScript printer in the dialog and mark the <emph>Print to file</emph> check box. A PostScript file will be created."
msgstr "ཌའི་ལོག་ནང་པོསིཊི་སིཀིརིཔཊི་དཔར་བསྐྲུན་པ་སེལ་འཐུ་འབད་ནི་དང་ <emph>ཡིག་སྣོད་ལུ་དཔར་བསྐྲུན་འབད་</emph>ཞིབ་དཔྱད་ཀྱི་སྒྲོམ་འདི་རྟགས་བཀལ། པོསིཊི་སིཀིརིཔཊི་ཡིག་སྣོད་ཅིག་གསར་བསྐྲུན་འབད་འོང་།"
@@ -3515,7 +3252,6 @@ msgstr "<bookmark_value>ཕྱིར་འདྲེན་འབད་དོ་;
msgctxt ""
"00000021.xhp\n"
"hd_id3154408\n"
-"2\n"
"help.text"
msgid "<variable id=\"xmlformat\"><link href=\"text/shared/00/00000021.xhp\" name=\"XML File Formats\">XML File Formats</link></variable>"
msgstr "<variable id=\"xmlformat\"><link href=\"text/shared/00/00000021.xhp\" name=\"XML File Formats\">ཨེགསི་ཨེམ་ཨེལ་ཡིག་སྣོད་རྩ་སྒྲིག་ཚུ་</link></variable>"
@@ -3524,7 +3260,6 @@ msgstr "<variable id=\"xmlformat\"><link href=\"text/shared/00/00000021.xhp\" na
msgctxt ""
"00000021.xhp\n"
"par_id3148919\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_DID_SAVE_PACKED_XML\">By default, $[officename] loads and saves files in the OpenDocument file format.</ahelp>"
msgstr "<ahelp hid=\"HID_DID_SAVE_PACKED_XML\">སྔོན་སྒྲིག་གིས་, $[officename] མངོན་གསལའབད་ནི་དང་ ཡིག་སྣོད་ཚུ་ གཞན་གྱིས་སྤྱོད་ཚུགས་པའི་ཡིག་སྣོད་རྩ་སྒྲིག་ནང་ སྲུང་བཞག་འབདཝ་ཨིན།</ahelp>"
@@ -3541,7 +3276,6 @@ msgstr ""
msgctxt ""
"00000021.xhp\n"
"hd_id3156324\n"
-"4\n"
"help.text"
msgid "OpenDocument file format names"
msgstr "གཞན་གྱིས་སྤྱོད་ཚུགས་པའི་ཡིག་སྣོད་རྩ་སྒྲིག་གི་མིང་ཚུ།"
@@ -3550,7 +3284,6 @@ msgstr "གཞན་གྱིས་སྤྱོད་ཚུགས་པའི་
msgctxt ""
"00000021.xhp\n"
"par_id3154926\n"
-"5\n"
"help.text"
msgid "%PRODUCTNAME uses the following file formats:"
msgstr ""
@@ -3559,7 +3292,6 @@ msgstr ""
msgctxt ""
"00000021.xhp\n"
"par_id3157898\n"
-"6\n"
"help.text"
msgid "Document format"
msgstr "ཡིག་ཆའི་རྩ་སྒྲིག"
@@ -3568,7 +3300,6 @@ msgstr "ཡིག་ཆའི་རྩ་སྒྲིག"
msgctxt ""
"00000021.xhp\n"
"par_id3149549\n"
-"7\n"
"help.text"
msgid "File extension"
msgstr "ཡིག་སྣོད་རྒྱ་བསྐྱེད།"
@@ -3969,7 +3700,6 @@ msgstr ""
msgctxt ""
"00000021.xhp\n"
"par_id3146907\n"
-"1\n"
"help.text"
msgid "If you want to define another file format as the default, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010200.xhp\" name=\"Load/Save - General\"><emph>Load/Save - General</emph></link> to find alternative file formats for each $[officename] document type."
msgstr ""
@@ -3978,7 +3708,6 @@ msgstr ""
msgctxt ""
"00000021.xhp\n"
"hd_id3150398\n"
-"28\n"
"help.text"
msgid "XML file structure"
msgstr "ཨེགསི་ཨེམ་ཨེལ་ཡིག་སྣོད་གཞི་བཀོད།"
@@ -3987,7 +3716,6 @@ msgstr "ཨེགསི་ཨེམ་ཨེལ་ཡིག་སྣོད་ག
msgctxt ""
"00000021.xhp\n"
"par_id3149649\n"
-"29\n"
"help.text"
msgid "Documents in OpenDocument file format are stored as compressed zip archives that contain XML files. To view these XML files, you can open the OpenDocument file with an unzip program. The following files and directories are contained within the OpenDocument files:"
msgstr "གཞན་གྱིས་སྤྱོད་ཚུགས་པའི་ཡིག་སྣོད་རྩ་སྒྲིག་ནང་གི་ཡིག་ཆ་ཚུ་ ཨེགསི་ཨེམ་ཨེལ་ཡིག་སྣོད་ཚུ་ཡོད་མི་ ཨེབ་བཙུགས་འབད་ཡོད་པའི་གནས་ཡུལ་ ཡིག་མཛོད་སྦེ་གསོག་འཇོག་འབད་ཡོད། ཨེགསི་ཨེམ་ཨེལ་ཡིག་སྣོད་ཚུ་སྟོན་ནིའི་དོན་ལུ་ གནས་ཡུལ་མེད་མི་ལས་རིམ་དང་བཅས་ ཁྱོད་ཀྱིས་གཞན་གྱིས་སྤྱོད་ཚུགས་པའི་ཡིག་སྣོད་ཁ་ཕྱེ། འོག་གི་ཡིག་སྣོད་ཚུ་དང་སྣོད་ཐོ་ཚུ་གཞན་གྱིས་སྤྱོད་ཚུགས་པའི་ཡིག་སྣོད་ནང་འཁོད་ཡོད།"
@@ -3996,7 +3724,6 @@ msgstr "གཞན་གྱིས་སྤྱོད་ཚུགས་པའི་
msgctxt ""
"00000021.xhp\n"
"par_id3153178\n"
-"30\n"
"help.text"
msgid "The text content of the document is located in <emph>content.xml</emph>."
msgstr "ཡིག་ཆ་གི་ཚིག་ཡིག་ནང་དོན་འདི་ <emph>content.xml</emph>ནང་གནས་ཏེ་ཡོད།"
@@ -4013,7 +3740,6 @@ msgstr ""
msgctxt ""
"00000021.xhp\n"
"par_id3145152\n"
-"32\n"
"help.text"
msgid "The file <emph>meta.xml</emph> contains the meta information of the document, which you can enter under <emph>File - Properties</emph>."
msgstr "<emph>ཡིག་སྣོད་ - རྒྱུ་དངོས་</emph>འོག་ལུ་ཁྱོད་ཀྱིས་བཙུགས་བཏུབ་པའི་ཡིག་ཆ་གི་མེ་ཊ་བརྡ་དོན་འདི་ <emph>meta.xml</emph>ཡིག་སྣོད་ནང་ཡོད།"
@@ -4022,7 +3748,6 @@ msgstr "<emph>ཡིག་སྣོད་ - རྒྱུ་དངོས་</emph
msgctxt ""
"00000021.xhp\n"
"par_id3150740\n"
-"33\n"
"help.text"
msgid "If you save a document with a password, <emph>meta.xml</emph> will not be encrypted."
msgstr "ཁྱོད་ཀྱིས་ ཡིག་ཆ་འདི་ཆོག་ཡིག་དང་བཅས་སྲུང་པ་ཅིན་ <emph>meta.xml</emph>འདི་གསང་བཟོས་མ་འབད་འོང་།"
@@ -4031,7 +3756,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཡིག་ཆ་འདི་ཆོག
msgctxt ""
"00000021.xhp\n"
"par_id3150391\n"
-"34\n"
"help.text"
msgid "The file <emph>settings.xml</emph> contains further information about the settings for this document."
msgstr "<emph>settings.xml</emph>ཡིག་སྣོད་དེ་གིས་ ཡིག་ཆ་དེ་གི་དོན་ལུ་གཞི་སྒྲིག་ཚུ་གི་བརྡ་དོན་སྐོར་ལས་ཡོདཔ་ཨིན།"
@@ -4040,7 +3764,6 @@ msgstr "<emph>settings.xml</emph>ཡིག་སྣོད་དེ་གིས
msgctxt ""
"00000021.xhp\n"
"par_id3150447\n"
-"35\n"
"help.text"
msgid "In <emph>styles.xml,</emph> you find the styles applied to the document that can be seen in the Styles and Formatting window."
msgstr "<emph>styles.xml,</emph>ནང་ལུ་ བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་བའི་སྒོ་སྒྲིག་ནང་ ཡིག་ཆ་ལུ་འཇུག་སྤྱོད་འབད་ཡོད་པའི་བཟོ་རྣམ་ཚུ་ཁྱོད་ཀྱིས་མཐོངམ་ཨིན།"
@@ -4049,7 +3772,6 @@ msgstr "<emph>styles.xml,</emph>ནང་ལུ་ བཟོ་རྣམ་ད
msgctxt ""
"00000021.xhp\n"
"par_id3153353\n"
-"36\n"
"help.text"
msgid "The <emph>meta-inf/manifest.xml</emph> file describes the structure of the XML file."
msgstr "<emph>meta-inf/manifest.xml</emph>གིས་ ཨེགསི་ཨེམ་ཨེལ་ཡིག་སྣོད་གཞི་བཀོད་ཀྱི་ཡིག་སྣོད་འགྲེལ་བཤད་འབདཝ་ཨིན།"
@@ -4058,7 +3780,6 @@ msgstr "<emph>meta-inf/manifest.xml</emph>གིས་ ཨེགསི་ཨེ
msgctxt ""
"00000021.xhp\n"
"par_id3153368\n"
-"37\n"
"help.text"
msgid "Additional files and folders can be contained in the packed file format."
msgstr "ཡིག་སྣོད་ཚུ་དང་ཡིག་འཛིན་ཚུའི་ཁ་སྐོང་འདི་ སྦུང་ཚན་ཡིག་སྣོད་རྩ་སྒྲིག་ནང་ན་འོང་།"
@@ -4067,7 +3788,6 @@ msgstr "ཡིག་སྣོད་ཚུ་དང་ཡིག་འཛིན་
msgctxt ""
"00000021.xhp\n"
"hd_id3154299\n"
-"38\n"
"help.text"
msgid "Definition of the XML formats"
msgstr "ཨེགསི་ཨེམ་ཨེལ་རྩ་སྒྲིག་ཚུ་གི་ངེས་ཚིག"
@@ -4100,7 +3820,6 @@ msgstr "ཡང་བལྟ..."
msgctxt ""
"00000099.xhp\n"
"hd_id3147527\n"
-"1\n"
"help.text"
msgid "<variable id=\"siehe\">See also... </variable>"
msgstr "<variable id=\"siehe\">ཡང་བལྟ... </variable>"
@@ -4109,7 +3828,6 @@ msgstr "<variable id=\"siehe\">ཡང་བལྟ... </variable>"
msgctxt ""
"00000099.xhp\n"
"par_id3143206\n"
-"71\n"
"help.text"
msgid "<variable id=\"userszenarien\"><link href=\"text/scalc/01/06050000.xhp\" name=\"Tools Menu - Scenarios\">Tools Menu - Scenarios</link></variable>"
msgstr "<variable id=\"userszenarien\"><link href=\"text/scalc/01/06050000.xhp\" name=\"Tools Menu - Scenarios\">ལག་ཆས་ཀྱི་དཀར་ཆག་འཆར་བཤད། - Scenarios</link></variable>"
@@ -4118,7 +3836,6 @@ msgstr "<variable id=\"userszenarien\"><link href=\"text/scalc/01/06050000.xhp\"
msgctxt ""
"00000099.xhp\n"
"par_id3156069\n"
-"83\n"
"help.text"
msgid "On the help page for <link href=\"text/shared/guide/main.xhp\" name=\"$[officename] general\">$[officename] general</link> you can find instructions that are applicable to all modules, such as working with windows and menus, customizing $[officename], data sources, Gallery, and drag and drop."
msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"$[officename] general\">$[officename] སྤྱིར་གཏང་</link>དོན་ལུ་སྒྲོག་རམ་ཤོག་ལེབ་གུ་ ཝིན་ཌཱསི་དང་ཅིག་ཁར་ལཱ་འབད་མི་དང་ དཀར་ཆག་ $[officename] སྲོལ་སྒྲིག་ གནད་སྡུད་བྱུང་ཁུངས་ སྟོན་ཁང་དང་འདྲུད་ནི་དང་བཞག་ནི་བཟུམ་གྱི་ཚད་གཞི་ལུ་ ཁྱོད་ཀྱིས་འཇུག་སྤྱོད་འབད་བཏུབ་པའི་བརྡ་དོན་འཐོབ་ཚུགས།"
@@ -4127,7 +3844,6 @@ msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"$[officename] general\"
msgctxt ""
"00000099.xhp\n"
"par_id3149662\n"
-"84\n"
"help.text"
msgid "If you want help with another module, switch to the help for that module with the combo box in the navigation area."
msgstr "ཁྱོད་རང་ ཚད་གཞི་གཞན་མི་དང་ཅིག་ཁར་སྒྲོག་རམ་དགོ་པ་ཅིན་ འགྲུལ་བསྐྱོད་མངའ་ཁོངས་ནང་ཡོད་མི་ཀོམ་བོ་སྒྲོམ་དང་བཅས་ ཚད་གཞི་དེ་གི་དོན་ལུ་སྒྲོག་རམ་ལུ་སོར་བསྒྱུར་འབད།"
@@ -4136,7 +3852,6 @@ msgstr "ཁྱོད་རང་ ཚད་གཞི་གཞན་མི་ད
msgctxt ""
"00000099.xhp\n"
"par_id3154408\n"
-"85\n"
"help.text"
msgid "<variable id=\"winmanager\">The availability of this function depends on your X Window Manager. </variable>"
msgstr "<variable id=\"winmanager\">ལས་འགན་འདི་འཐོབ་ཚུགས་ཀྱི་དོན་ལུ་ ཁྱོད་རའི་ཨེགསི་སྒོ་སྒྲིག་འཛིན་སྐྱོང་པ་ལུ་རག་ལས་ </variable>"
@@ -4417,7 +4132,6 @@ msgstr "<ahelp hid=\"GOODIES:CHECKBOX:DLG_EXPORT_EPS:CB_PREVIEW_TIFF\"> པོ
msgctxt ""
"00000200.xhp\n"
"par_id993144740\n"
-"30\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">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.</ahelp>"
msgstr "<ahelp hid=\"GOODIES:CHECKBOX:DLG_EXPORT_EPS:CB_PREVIEW_EPSI\"> ཨི་པི་ཨེསི་ཨའི་རྩ་སྒྲིག་ནང་གི་མོ་ནོ་ཀོརོམ་སྔོད་ལྟ་ཚད་རིས་འདི་ པོསིཊི་སིཀིརིཔཊི་ཡིག་སྣོད་དང་བཅས་ཕྱིར་འདྲེན་འབད་ཡོད་མེད་གསལ་བཀོད་འབདཝ་ཨིན། </ahelp>འ་ནི་རྩ་སྒྲིག་གིས་ བིཊི་ ༧ ཨེ་ཨེསི་སི་ཨའི་ཨའི་ཨང་རྟགས་ལས་ དཔར་བསྐྲུན་འབད་བཏུབ་པའི་ཡིག་འབྲུ་རྐྱངམ་ཅིག་ཡོདཔ་ཨིན།"
@@ -4426,7 +4140,6 @@ msgstr "<ahelp hid=\"GOODIES:CHECKBOX:DLG_EXPORT_EPS:CB_PREVIEW_EPSI\"> ཨི
msgctxt ""
"00000200.xhp\n"
"par_id993150935\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2.</ahelp>"
msgstr "<ahelp hid=\"GOODIES:RADIOBUTTON:DLG_EXPORT_EPS:RB_LEVEL1\"> འ་ནི་གནས་རིམ་ལུ་ཨེབ་བཙུགས་འདི་ཐོབ་ཚུགས་མིན་འདུག་ ཁྱོད་ཀྱི་པོསིཊི་སིཀིརིཔཊི་དཔར་བསྐྲུན་པ་གིས་ གནས་རིམ་ ༢ པའི་ལྕོགས་གྲུབ་འདི་མ་བྱིན་པ་ཅིན་ <emph> Level 1 </emph>འདི་སེལ་འཐུ་འབད། </ahelp>"
@@ -4435,7 +4148,6 @@ msgstr "<ahelp hid=\"GOODIES:RADIOBUTTON:DLG_EXPORT_EPS:RB_LEVEL1\"> འ་ན
msgctxt ""
"00000200.xhp\n"
"par_id993159201\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics.</ahelp>"
msgstr "<ahelp hid=\"GOODIES:RADIOBUTTON:DLG_EXPORT_EPS:RB_LEVEL2\"> ཁྱོད་ཀྱི་ ཨའུཊི་པུཊི་ཐབས་འཕྲུལ་དེ་གིས་ ཚོས་གཞི་ཡོད་པའི་བིཊི་མེཔསི་པེ་ལེཊི་ཚད་རིས་དང་ཨེབ་བཙུགས་ཀྱི་ཚད་རིས་ལུ་ རྒྱབ་སྐྱོར་འབད་བ་ཅིན་<emph> Level 2 </emph>གདམ་ཁ་འདི་སེལ་འཐུ་འབད། </ahelp>"
@@ -4444,7 +4156,6 @@ msgstr "<ahelp hid=\"GOODIES:RADIOBUTTON:DLG_EXPORT_EPS:RB_LEVEL2\"> ཁྱོ
msgctxt ""
"00000200.xhp\n"
"par_id319947250\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in color.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">ཐིག་ཁྲམ་ནང་ལུ་གྲལ་ཐིག་ཅིག་བཙུགསཔ་ཨིན།</ahelp>"
@@ -4453,7 +4164,6 @@ msgstr "<ahelp hid=\".\" visibility=\"hidden\">ཐིག་ཁྲམ་ནང་
msgctxt ""
"00000200.xhp\n"
"par_id993147088\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in grayscale tones.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">ཐིག་ཁྲམ་ནང་ལུ་གྲལ་ཐིག་ཅིག་བཙུགསཔ་ཨིན།</ahelp>"
@@ -4462,7 +4172,6 @@ msgstr "<ahelp hid=\".\" visibility=\"hidden\">ཐིག་ཁྲམ་ནང་
msgctxt ""
"00000200.xhp\n"
"par_id399153683\n"
-"24\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">ཤོག་ལེབ་ཨམ་ཚུ་གི་སྔོན་ལྟ་འདི་ཚདབཟོཝ་ཨིན།</ahelp>"
@@ -4471,7 +4180,6 @@ msgstr "<ahelp hid=\".\" visibility=\"hidden\">ཤོག་ལེབ་ཨམ་
msgctxt ""
"00000200.xhp\n"
"par_id319952780\n"
-"26\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that you do not wish to use compression.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">དྲན་ཐོ་ཚུ་བརྒྱུད་དེ་བརྡ་འཚོལ་ནིའི་དོན་ལུ་ ངོས་དཔར་འདི་སེལ་འཐུ་འབད།</ahelp>"
@@ -4496,7 +4204,6 @@ msgstr "ཌི་ཨའི་ཨེཕ་ནང་འདྲེན/ཕྱིར
msgctxt ""
"00000206.xhp\n"
"hd_id3155354\n"
-"1\n"
"help.text"
msgid "Dif Import/Export/ Lotus import/ dBASE import"
msgstr "ཌི་ཨའི་ཨེཕ་ནང་འདྲེན/ཕྱིར་འདྲེན་/ ལོ་ཊོསི་ནང་འདྲེན་/ ཌི་གཞི་རྟེན་ནང་འདྲེན།"
@@ -4505,7 +4212,6 @@ msgstr "ཌི་ཨའི་ཨེཕ་ནང་འདྲེན/ཕྱིར
msgctxt ""
"00000206.xhp\n"
"par_id3150620\n"
-"4\n"
"help.text"
msgid "Defines the options for import/export. These dialogs will be automatically shown if the corresponding file type is selected."
msgstr "ནང་འདྲེན་དང་ཕྱིར་འདྲེན་གྱི་དོན་ལུ་གདམ་ཁ་འདི་ངེས་འཛིན་འབདཝ་ཨིན། ཆ་མཉམ་འབད་བའི་ཡིག་སྣོད་འདི་སེལ་འཐུ་འབད་ཡོད་པ་ཅིན་ འ་ནི་ཌའི་ལོག་འདི་ རང་བཞིན་གྱིས་སབེ་སྟོན་འོང་།"
@@ -4514,7 +4220,6 @@ msgstr "ནང་འདྲེན་དང་ཕྱིར་འདྲེན་ག
msgctxt ""
"00000206.xhp\n"
"hd_id3149000\n"
-"2\n"
"help.text"
msgid "Character set"
msgstr "ཡིག་འབྲུ་གཞི་སྒྲིག"
@@ -4523,7 +4228,6 @@ msgstr "ཡིག་འབྲུ་གཞི་སྒྲིག"
msgctxt ""
"00000206.xhp\n"
"par_id3152790\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/imoptdialog/charsetlist\">Select the character set from the options used for import/export.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/imoptdialog/charsetlist\" visibility=\"visible\">ནང་འདྲེན་དང་ཕྱིར་འདྲེན་གྱི་དོན་ལུ་ གདམ་ཁ་ལག་ལེན་འཐབ་པའི་ཡིག་འབྲུ་གཞི་སྒྲིག་འདི་སེལ་འཐུ་འབད།</ahelp>"
@@ -4532,7 +4236,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/imoptdialog/charsetlist\" visibility=\"vis
msgctxt ""
"00000206.xhp\n"
"par_id3152942\n"
-"3\n"
"help.text"
msgid "For further information regarding filters, refer to the topic: <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">Information about Import and Export Filters</link>."
msgstr "ཚགས་མ་གི་དོན་ལས་བརྡ་དོན་ཧེང་བཀལ་དགོ་པ་ཅིན་ <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">ནང་འདྲེན་དང་ཕྱིར་འདྲེན་ཚགས་མ་གི་བརྡ་དོན་</link>ལུ་གཞ་བསྟུན་འབད་གནང་།"
@@ -4549,7 +4252,6 @@ msgstr "ཚིག་ཡིག་ཡིག་སྣོད་ཚུ་གི་ཕ
msgctxt ""
"00000207.xhp\n"
"hd_id3153116\n"
-"1\n"
"help.text"
msgid "Export text files"
msgstr "ཚིག་ཡིག་ཡིག་སྣོད་ཚུ་གི་ཕྱིར་འདྲེན།"
@@ -4558,7 +4260,6 @@ msgstr "ཚིག་ཡིག་ཡིག་སྣོད་ཚུ་གི་ཕ
msgctxt ""
"00000207.xhp\n"
"par_id3150379\n"
-"7\n"
"help.text"
msgid "The <emph>Export text files</emph> dialog allows you to define the export options for text files. The dialog will be displayed if you save spreadsheet data as file type \"Text CSV\", and if the <emph>Edit filter settings</emph> check box is marked in the <emph>Save As</emph> dialog."
msgstr "<emph>Export of text files</emph> ཌའི་ལོག་གིས་ ཚིག་ཡིག་གི་དོན་ལས་ ཁྱོད་ལུ་ ཕྱིར་འདྲེན་གདམ་ཁ་ངེས་འཛིན་འབད་བཅུགཔ་ཨིན། ཁྱོད་ཀཡིས་ཤོག་ཁྲམ་གནད་སྡུད་འདི་ ཡིག་སྣོད་ཀྱི་དབྱེ་བ་\"Text CSV\", and if the <emph>Edit filter settings</emph> ཞིབ་དཔྱད་ཀྱི་སྒྲོམ་འདི་ <emph>དེ་སྦེ་སྲུང་ནང་ཡོད།</emph> ཌའི་ལོག་སྦེ་སྲུང་པ་ཅིན་ ཌའི་ལོག་འདི་བཀྲམ་སྟོན་འབད་འོང་།"
@@ -4567,7 +4268,6 @@ msgstr "<emph>Export of text files</emph> ཌའི་ལོག་གིས་
msgctxt ""
"00000207.xhp\n"
"hd_id3155577\n"
-"2\n"
"help.text"
msgid "Field options"
msgstr "ས་སྒོ་གི་གདམ་ཁ་ཚུ།"
@@ -4576,7 +4276,6 @@ msgstr "ས་སྒོ་གི་གདམ་ཁ་ཚུ།"
msgctxt ""
"00000207.xhp\n"
"par_id3152427\n"
-"8\n"
"help.text"
msgid "Defines the field separator, text separator and character set that is used for the text export."
msgstr "ཚིག་ཡིག་ཕྱིར་འདྲེན་གྱི་དོན་ལུ་ལག་ལེན་འཐབ་མི་ ས་སྒོ་དབྱེ་བྱེད་ དང་ ཚིག་ཡིག་དབྱེ་བྱེད་ དེ་ལས་ ཡིག་འབྲུ་གཞི་སྒྲིག་ཚུ་ངེས་འཛིན་འབདཝ་ཨིན།"
@@ -4585,7 +4284,6 @@ msgstr "ཚིག་ཡིག་ཕྱིར་འདྲེན་གྱི་ད
msgctxt ""
"00000207.xhp\n"
"hd_id3152876\n"
-"5\n"
"help.text"
msgid "Character set"
msgstr "ཡིག་འབྲུ་གཞི་སྒྲིག"
@@ -4594,7 +4292,6 @@ msgstr "ཡིག་འབྲུ་གཞི་སྒྲིག"
msgctxt ""
"00000207.xhp\n"
"par_id3154689\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/imoptdialog/charsetdropdown\">Specifies the character set for text export.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/imoptdialog/charsetdropdown\">ཚིག་ཡིག་ཕྱིར་འདྲེན་གྱི་དོན་ལུ་ ཡིག་འབྲུ་གཞི་སྒྲིག་འདི་གསལ་བཀོད་འབདཝ་ཨངན།</ahelp>"
@@ -4603,7 +4300,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/imoptdialog/charsetdropdown\">ཚིག་
msgctxt ""
"00000207.xhp\n"
"hd_id3145138\n"
-"3\n"
"help.text"
msgid "Field delimiter"
msgstr "ས་སྒོ་དབྱེ་རྟགས།"
@@ -4612,7 +4308,6 @@ msgstr "ས་སྒོ་དབྱེ་རྟགས།"
msgctxt ""
"00000207.xhp\n"
"par_id3150838\n"
-"9\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/imoptdialog/field\">Choose or enter the field delimiter, which separates data fields.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/imoptdialog/field\">གནད་སྡུད་ས་སྒོ་ཁ་འཕྱལ་མི་གི་ས་སྒོའི་དབྱེ་རྟགས་འདི་གདམ་ཁ་རྐྱབ་ནི་ཡང་ཅིན་བཙུགས།</ahelp>"
@@ -4621,7 +4316,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/imoptdialog/field\">གནད་སྡུ
msgctxt ""
"00000207.xhp\n"
"hd_id3154682\n"
-"4\n"
"help.text"
msgid "Text delimiter"
msgstr "ཚིག་ཡིག་གི་དབྱེ་རྟགས།"
@@ -4630,7 +4324,6 @@ msgstr "ཚིག་ཡིག་གི་དབྱེ་རྟགས།"
msgctxt ""
"00000207.xhp\n"
"par_id3154863\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/imoptdialog/text\">Choose or enter the text delimiter, which encloses every data field.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/imoptdialog/text\">གནད་སྡུད་ག་རང་ནང་ན་ཚུད་པ་འབད་མི་ ཚིག་ཡིག་དབྱེ་རྟགས་འདི་ གདམ་ཁ་རྐྱབ་ནི་ཡང་ན་ བཙུགས།</ahelp>"
@@ -4679,7 +4372,6 @@ msgstr ""
msgctxt ""
"00000207.xhp\n"
"hd_id3149793\n"
-"12\n"
"help.text"
msgid "Fixed column width"
msgstr "ཀེར་ཐིག་གཏན་བཟོས་ཀྱི་རྒྱ་ཚད།"
@@ -4688,7 +4380,6 @@ msgstr "ཀེར་ཐིག་གཏན་བཟོས་ཀྱི་རྒྱ
msgctxt ""
"00000207.xhp\n"
"par_id3152363\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/imoptdialog/fixedwidth\">Exports all data fields with a fixed width.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/imoptdialog/fixedwidth\">གཏན་བཟོས་དང་བཅས་གནད་སྡུད་ས་སྒོ་ཚུ་ཕྱིར་འདྲེན་འབདཝ་ཨིན།</ahelp>"
@@ -4697,7 +4388,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/imoptdialog/fixedwidth\">གཏན་བ
msgctxt ""
"00000207.xhp\n"
"par_id3149283\n"
-"14\n"
"help.text"
msgid "The width of a data field in the exported text file is set to the current width of the corresponding column."
msgstr "ཕྱིར་འདྲེན་འབད་ཡོད་མི་ཚིག་ཡིག་ནང་གི་གནད་སྡུད་ས་སྒོ་གི་རྒྱ་ཚད་ འདི་ ཀེར་ཐིག་ཆ་མཉམ་པ་འབད་མི་ད་ལྟོའི་རྒྱ་ཚད་ལུ་གཞི་སྒྲིག་འབད་ཡོད།"
@@ -4706,7 +4396,6 @@ msgstr "ཕྱིར་འདྲེན་འབད་ཡོད་མི་ཚི
msgctxt ""
"00000207.xhp\n"
"par_id3154116\n"
-"15\n"
"help.text"
msgid "Values are exported in the format as currently seen in the cell."
msgstr "ད་ལྟོ་ནང་ཐིག་ནང་མཐོང་མི་བཟུམ་སྦེ་ གནས་གོང་ཚུ་རྩ་སྒྲིག་ནང་ཕྱིར་འདྲེན་འབད་ཡོད།"
@@ -4715,7 +4404,6 @@ msgstr "ད་ལྟོ་ནང་ཐིག་ནང་མཐོང་མི་
msgctxt ""
"00000207.xhp\n"
"par_id3156414\n"
-"16\n"
"help.text"
msgid "If a value is longer than the fixed column width, it will be exported as a ### string."
msgstr "གནས་གོང་འདི་གཏན་བཟོས་ཀེར་ཐིག་གི་རྒྱ་ཚད་ལས་རིངམ་ཡོད་པ་ཅིན་ ###ཡིག་རྒྱུན་སྦེ་ཕྱིར་འདྲེན་འབད་འོང་།"
@@ -4724,7 +4412,6 @@ msgstr "གནས་གོང་འདི་གཏན་བཟོས་ཀེར
msgctxt ""
"00000207.xhp\n"
"par_id3150178\n"
-"17\n"
"help.text"
msgid "If a text string is longer than the fixed column width, it will be truncated at the end."
msgstr "ཚིག་ཡིག་གི་ཡིག་རྒྱུན་འདི་ གཏན་བཟོས་ཀེར་ཐིག་རྒྱ་ཚད་ལས་རིངམ་ཡོད་པ་ཅིན་ མཇུག་ལུ་ཆུང་ཀུ་བཟོ་འོང་།"
@@ -4733,7 +4420,6 @@ msgstr "ཚིག་ཡིག་གི་ཡིག་རྒྱུན་འདི
msgctxt ""
"00000207.xhp\n"
"par_id3148548\n"
-"18\n"
"help.text"
msgid "The alignment Left, Centered, and Right will be simulated by inserted blanks."
msgstr "གཡོན་ དང་ དབུས་ དེ་ལས་ གཡས་ཀྱི་ཕྲང་སྒྲིག་འདི་ བཙུགས་ཡོད་པའི་སྟོངམ་ཚུ་གིས་མཚུངས་བཟོ་འོང་།"
@@ -4750,7 +4436,6 @@ msgstr "ཚིག་ཡིག་གི་ནང་འདྲེན།"
msgctxt ""
"00000208.xhp\n"
"hd_id3150960\n"
-"1\n"
"help.text"
msgid "Text Import"
msgstr "ཚིག་ཡིག་གི་ནང་འདྲེན།"
@@ -4759,7 +4444,6 @@ msgstr "ཚིག་ཡིག་གི་ནང་འདྲེན།"
msgctxt ""
"00000208.xhp\n"
"par_id3149987\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/TextImportCsvDialog\">Sets the import options for delimited data.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/TextImportCsvDialog\">དབྱེ་རྟགས་གནད་སྡུད་ཀྱི་དོན་ལས་ ནང་འདྲེན་གྱི་གདམ་ཁ་འདི་གཞི་སྒྲིག་འབདཝ་ཨིན།</ahelp>"
@@ -4768,7 +4452,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/TextImportCsvDialog\">དབ
msgctxt ""
"00000208.xhp\n"
"hd_id3147588\n"
-"45\n"
"help.text"
msgid "Import"
msgstr "ནང་འདྲེན།"
@@ -4777,7 +4460,6 @@ msgstr "ནང་འདྲེན།"
msgctxt ""
"00000208.xhp\n"
"hd_id3154788\n"
-"9\n"
"help.text"
msgid "Character Set"
msgstr "ཡིག་འབྲུའི་གཞི་སྒྲིག"
@@ -4786,7 +4468,6 @@ msgstr "ཡིག་འབྲུའི་གཞི་སྒྲིག"
msgctxt ""
"00000208.xhp\n"
"par_id3149495\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/charset\">Specifies the character set to be used in the imported file.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/charset\">ནང་འདྲེན་འབད་ཡོད་པའི་ཡིག་སྣོད་ནང་ ལག་ལེན་འཐབ་ནི་ཨིན་པའི་ཡིག་འབྲུའི་གཞི་སྒྲིག་ འདི་གསལ་བཀོད་འབདཝ་ཨིན།</ahelp>"
@@ -4827,7 +4508,6 @@ msgstr ""
msgctxt ""
"00000208.xhp\n"
"hd_id3154894\n"
-"47\n"
"help.text"
msgid "From Row"
msgstr "གྲལ་ཐིག་ལས།"
@@ -4836,7 +4516,6 @@ msgstr "གྲལ་ཐིག་ལས།"
msgctxt ""
"00000208.xhp\n"
"par_id3150247\n"
-"48\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/fromrow\">Specifies the row where you want to start the import.</ahelp> The rows are visible in the preview window at the bottom of the dialog."
msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/fromrow\">གིས་ ཁྱོད་ཀྱིས་ནང་འདྲེན་འབད་ནི་ཨིན་པའི་གྲལ་ཐིག་འདི་གསལ་བཀོད་འབདཝ་ཨིན། </ahelp> ཌའི་ལོག་གི་གཤམ་ལུ་ཡོད་མི་སྔོན་ལྟའི་སྒོ་སྒྲིག་ནང་ གརལ་ཐིག་ཚུ་མཐོངམ་ཨིན།"
@@ -4845,7 +4524,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/fromrow\">གིས་ ཁ
msgctxt ""
"00000208.xhp\n"
"hd_id3149999\n"
-"3\n"
"help.text"
msgid "Separator Options"
msgstr "དབྱེ་བྱེད་ཀྱི་གདམ་ཁ་ཚུ།"
@@ -4854,7 +4532,6 @@ msgstr "དབྱེ་བྱེད་ཀྱི་གདམ་ཁ་ཚུ།"
msgctxt ""
"00000208.xhp\n"
"par_id3149640\n"
-"4\n"
"help.text"
msgid "Specifies whether your data uses separators or fixed widths as delimiters."
msgstr "ཁྱོད་ཀྱི་གནད་སྡུད་དེ་གིས་དབྱེ་བྱེད་ལག་ལེན་འཐབ་ཨིན་ན་ཡང་ན་ དབྱེ་རྟགས་སྦེ་གཏན་བཟོས་རྒྱ་ཚད་ཨིན་ན་གི་གསལ་བཀོད་འབདཝ་ཨིན།"
@@ -4863,7 +4540,6 @@ msgstr "ཁྱོད་ཀྱི་གནད་སྡུད་དེ་གིས
msgctxt ""
"00000208.xhp\n"
"hd_id3156553\n"
-"7\n"
"help.text"
msgid "Fixed width"
msgstr "རྒྱ་ཚད་གཏན་བཟོས།"
@@ -4872,7 +4548,6 @@ msgstr "རྒྱ་ཚད་གཏན་བཟོས།"
msgctxt ""
"00000208.xhp\n"
"par_id3150710\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/tofixedwidth\">Separates fixed-width data (equal number of characters) into columns.</ahelp> Click on the ruler in the preview window to set the width."
msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/tofixedwidth\">གིས་ གཏན་བཟོས་རྒྱ་ཚད་གནད་སྡུད་(ཡིག་འབྲུ་ཚུ་གི་ཨང་གྲངས་ཆ་སྙོམ་)འདི་ ཀེར་ཐིག་ནང་ལུ་འཕྱལཝ་ཨིན། </ahelp> རྒྱ་ཚད་གཞི་སྒྲིག་འབད་ནི་ལུ་ སྔོན་ལྟའི་སྒོ་སྒྲིག་ནང་གི་ཐིག་ཤིང་གུ་ཨེབ་གཏང་།"
@@ -4881,7 +4556,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/tofixedwidth\">གིས་
msgctxt ""
"00000208.xhp\n"
"hd_id3156560\n"
-"5\n"
"help.text"
msgid "Separated by"
msgstr "གིས་འཕྱལ་འཕྱལཝ་ཨིན།"
@@ -4890,7 +4564,6 @@ msgstr "གིས་འཕྱལ་འཕྱལཝ་ཨིན།"
msgctxt ""
"00000208.xhp\n"
"par_id3145136\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/toseparatedby\">Select the separator used in your data.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/toseparatedby\"> ཁྱོད་རའི་གནད་སྡུད་ནང་ལག་ལེན་འཐབ་མི་དབྱེ་བྱེད་འདི་སེལ་འཐུ་འབད།</ahelp>"
@@ -4899,7 +4572,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/toseparatedby\"> ཁྱོ
msgctxt ""
"00000208.xhp\n"
"hd_id3147250\n"
-"49\n"
"help.text"
msgid "Tab"
msgstr "ཨེབ་ལྡེ།"
@@ -4908,7 +4580,6 @@ msgstr "ཨེབ་ལྡེ།"
msgctxt ""
"00000208.xhp\n"
"par_id3147576\n"
-"50\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/tab\">Separates data delimited by tabs into columns.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/tab\">ཨེབ་ལྡེ་ཚུ་གིས་གནད་སྡུད་དབྱེ་རྟགས་ཅན་འདི་ཀེར་ཐིག་ནང་ལུ་འཕྱལཝ་ཨིན།</ahelp>"
@@ -4917,7 +4588,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/tab\">ཨེབ་ལྡེ
msgctxt ""
"00000208.xhp\n"
"hd_id3154317\n"
-"51\n"
"help.text"
msgid "Semicolon"
msgstr "སེ་མི་ཀོ་ལཱོན་ (;)"
@@ -4926,7 +4596,6 @@ msgstr "སེ་མི་ཀོ་ལཱོན་ (;)"
msgctxt ""
"00000208.xhp\n"
"par_id3157863\n"
-"52\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/semicolon\">Separates data delimited by semicolons into columns.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/semicolon\"> སེ་མི་ཀོ་ལཱོན་གིས་ གནད་སྡུད་དབྱེ་རྟགས་ཅན་འདི་ཀེར་ཐིག་ནངལུ་འཕྱལཝ་ཨིན།</ahelp>"
@@ -4935,7 +4604,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/semicolon\"> སེ་མི
msgctxt ""
"00000208.xhp\n"
"hd_id3145313\n"
-"53\n"
"help.text"
msgid "Comma"
msgstr "ལྷོད་རྟགས།"
@@ -4944,7 +4612,6 @@ msgstr "ལྷོད་རྟགས།"
msgctxt ""
"00000208.xhp\n"
"par_id3150693\n"
-"54\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/comma\">Separates data delimited by commas into columns.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/comma\">ལྷོད་རྟགས་ཀྱིས་ གནད་སྡུད་དབྱེ་རྟགས་ཅན་འདི་ཀེར་ཐིག་ནང་ལུ་འཕྱལཝ་ཨིན།</ahelp>"
@@ -4953,7 +4620,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/comma\">ལྷོད་ར
msgctxt ""
"00000208.xhp\n"
"hd_id3163802\n"
-"55\n"
"help.text"
msgid "Space"
msgstr "བར་སྟོང་།"
@@ -4962,7 +4628,6 @@ msgstr "བར་སྟོང་།"
msgctxt ""
"00000208.xhp\n"
"par_id3153663\n"
-"56\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/space\">Separates data delimited by spaces into columns.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/space\">བར་སྟོང་གིས་གནད་སྡུད་དབྱེ་རྟགས་ཅན་འདི་ཀེར་ཐིག་ནང་ལུ་འཕྱལཝ་ཨིན། </ahelp>"
@@ -4971,7 +4636,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/space\">བར་སྟོ
msgctxt ""
"00000208.xhp\n"
"hd_id3147335\n"
-"57\n"
"help.text"
msgid "Other"
msgstr "གཞན།"
@@ -4980,7 +4644,6 @@ msgstr "གཞན།"
msgctxt ""
"00000208.xhp\n"
"par_id3156329\n"
-"58\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/inputother\">Separates data into columns using the custom separator that you specify. Note: The custom separator must also be contained in your data.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/inputother\">གིས་ ཁྱོད་ཀྱིས་གསལ་བཀོད་འབད་མི་སྲོལ་སྒྲིག་འདི་ལག་ལེན་འཐམ་བཞིནམ་ལས་ གནད་སྡུད་འདི་ཀེར་ཐིག་ནང་ལུ་འཕྱལཝ་ཨིན། དྲན་འཛིན : སྲོལ་སྒྲིག་དབྱེ་བྱེད་འདི་ ཁྱོད་རའི་གནད་སྡུད་ནང་འོང་དགོ། </ahelp>"
@@ -4989,7 +4652,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/inputother\">གིས་
msgctxt ""
"00000208.xhp\n"
"hd_id3150978\n"
-"59\n"
"help.text"
msgid "Merge delimiters"
msgstr "དབྱེ་རྟགས་ཚུ་མཉམ་བསྡོམས་འབད་ནི།"
@@ -4998,7 +4660,6 @@ msgstr "དབྱེ་རྟགས་ཚུ་མཉམ་བསྡོམས་
msgctxt ""
"00000208.xhp\n"
"par_id3153827\n"
-"60\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/mergedelimiters\">Combines consecutive delimiters and removes blank data fields.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/mergedelimiters\"> རིམ་མཐུད་དབྱེ་རྟགས་མཉམ་མཐུད་འབད་ནི་དང་ གནད་སྡུད་སྟོངམ་གྱི་ས་སྒོ་ཚུ་རྩ་བཀྲད་གཏངམ་ཨིན།</ahelp>"
@@ -5007,7 +4668,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/mergedelimiters\"> རིམ
msgctxt ""
"00000208.xhp\n"
"hd_id3155341\n"
-"15\n"
"help.text"
msgid "Text delimiter"
msgstr "ཚིག་ཡིག་གི་དབྱེ་རྟགས།"
@@ -5016,7 +4676,6 @@ msgstr "ཚིག་ཡིག་གི་དབྱེ་རྟགས།"
msgctxt ""
"00000208.xhp\n"
"par_id3156326\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/textdelimiter\">Select a character to delimit text data. You can can also enter a character in the text box.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/textdelimiter\">ཚིག་ཡིག་གནད་སྡུད་དབྱེ་རྟགས་བཀལ་ནི་ལུ་ ཡིག་འབྲུ་ཅིག་སེལ་འཐུ་འབད། </ahelp>ཚིག་ཡིག་གི་སྒྲོམ་ནང་ལུ་ཡང་ ཁྱོད་ཀྱིས་ཡིག་འབྲུ་ཅིག་བཙུགས་བཏུབ།"
@@ -5089,7 +4748,6 @@ msgstr ""
msgctxt ""
"00000208.xhp\n"
"hd_id3155388\n"
-"61\n"
"help.text"
msgid "Fields"
msgstr "ས་སྒོ།"
@@ -5098,7 +4756,6 @@ msgstr "ས་སྒོ།"
msgctxt ""
"00000208.xhp\n"
"par_id3153665\n"
-"62\n"
"help.text"
msgid "Shows how your data will look when it is separated into columns."
msgstr "ཀེར་ཐིག་ནང་ལུ་འཕྱལཝ་ད་ ཁྱོད་ཀྱི་གནད་སྡུད་ཁ་བཟུམ་མཐོངམ་ཨིན་ན་སྟོནམ་ཨིན།"
@@ -5107,7 +4764,6 @@ msgstr "ཀེར་ཐིག་ནང་ལུ་འཕྱལཝ་ད་ ཁ
msgctxt ""
"00000208.xhp\n"
"hd_id3148474\n"
-"63\n"
"help.text"
msgid "Column type"
msgstr "ཀེར་ཐིག་གི་དབྱེ་བ།"
@@ -5116,7 +4772,6 @@ msgstr "ཀེར་ཐིག་གི་དབྱེ་བ།"
msgctxt ""
"00000208.xhp\n"
"par_id314995725\n"
-"24\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/columntype\">Choose a column in the preview window and select the data type to be applied the imported data.</ahelp> You can select one of the following options:"
msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/columntype\">སྔོན་ལྟ་གི་སྒོ་སྒྲིག་ནང་ཀེར་ཐིག་ཅིག་སེལ་འཐུ་འབད་ནི་དང་ ནང་འདྲེན་འབད་ཡོད་པའི་གནད་སྡུད་ལུ་འཇུག་སྤྱོད་འབད་ནི་ལུ་ གནད་སྡུད་སེལ་འཐུ་འབད། </ahelp>ཁྱོད་ཀྱིས་འོག་གི་གདམ་ཁ་ཚུ་ལས་གཅིག་སེལ་འཐུ་འབད:"
@@ -5125,7 +4780,6 @@ msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/columntype\">སྔོན་
msgctxt ""
"00000208.xhp\n"
"par_id3152945\n"
-"25\n"
"help.text"
msgid "Type"
msgstr "དབྱེ་བ།"
@@ -5134,7 +4788,6 @@ msgstr "དབྱེ་བ།"
msgctxt ""
"00000208.xhp\n"
"par_id3145121\n"
-"26\n"
"help.text"
msgid "Function"
msgstr "ལས་འགན།"
@@ -5143,7 +4796,6 @@ msgstr "ལས་འགན།"
msgctxt ""
"00000208.xhp\n"
"par_id3149763\n"
-"27\n"
"help.text"
msgid "Standard"
msgstr "ཚད་ལྡན།"
@@ -5152,26 +4804,22 @@ msgstr "ཚད་ལྡན།"
msgctxt ""
"00000208.xhp\n"
"par_id3155923\n"
-"28\n"
"help.text"
msgid "$[officename] determines the type."
msgstr "$[officename] གིས་དབྱེ་བ་གཏན་འབེབས་བཟོཝ་ཨིན།"
#: 00000208.xhp
-#, fuzzy
msgctxt ""
"00000208.xhp\n"
"par_id3152472\n"
-"29\n"
"help.text"
msgid "Text"
-msgstr "#-#-#-#-# autopi.po (PACKAGE VERSION) #-#-#-#-#\\nཚིག་ཡིག\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nཤུལ་མམ།"
+msgstr ""
#: 00000208.xhp
msgctxt ""
"00000208.xhp\n"
"par_id3148946\n"
-"30\n"
"help.text"
msgid "Imported data are treated as text."
msgstr "ནང་འདྲེན་འབད་ཡོད་པའི་གནད་སྡུད་ཚུ་ཚིག་ཡིག་སྦེ་བརྩི་འཇོག་འབདཝ་ཨིན།"
@@ -5180,7 +4828,6 @@ msgstr "ནང་འདྲེན་འབད་ཡོད་པའི་གནད
msgctxt ""
"00000208.xhp\n"
"par_id3147265\n"
-"31\n"
"help.text"
msgid "Date (DMY)"
msgstr "ཚེས་གྲངས།(DMY)"
@@ -5189,7 +4836,6 @@ msgstr "ཚེས་གྲངས།(DMY)"
msgctxt ""
"00000208.xhp\n"
"par_id3156434\n"
-"32\n"
"help.text"
msgid "Applies a date format (Day, Month, Year) to the imported data in a column."
msgstr "ཀེར་ཐིག་ནང་གི་ནང་འདྲེན་འབད་ཡོད་མི་ལུ་ཚེས་གྲངས་རྩ་སྒྲིག་ཅིག་(གཟའ་, ཟླ་, ལོ་)འཇུག་སྤྱོད་འབདཝ་ཨིན།"
@@ -5198,7 +4844,6 @@ msgstr "ཀེར་ཐིག་ནང་གི་ནང་འདྲེན་འ
msgctxt ""
"00000208.xhp\n"
"par_id3148740\n"
-"33\n"
"help.text"
msgid "Date (MDY)"
msgstr "ཚེས་གྲངས་(MDY)"
@@ -5207,7 +4852,6 @@ msgstr "ཚེས་གྲངས་(MDY)"
msgctxt ""
"00000208.xhp\n"
"par_id3149688\n"
-"34\n"
"help.text"
msgid "Applies a date format (Month, Day, Year) to the imported data in a column."
msgstr "ཀེར་ཐིག་ནང་གི་ནང་འདྲེན་འབད་ཡོད་མི་ལུ་ཚེས་གྲངས་རྩ་སྒྲིག་ཅིག་(ཟླ་,གཟའ་,ལོ་)འཇུག་སྤྱོད་འབདཝ་ཨིན།"
@@ -5216,7 +4860,6 @@ msgstr "ཀེར་ཐིག་ནང་གི་ནང་འདྲེན་འ
msgctxt ""
"00000208.xhp\n"
"par_id3150230\n"
-"35\n"
"help.text"
msgid "Date (YMD)"
msgstr "ཚེས་གྲངས་(YMD)"
@@ -5225,7 +4868,6 @@ msgstr "ཚེས་གྲངས་(YMD)"
msgctxt ""
"00000208.xhp\n"
"par_id3153207\n"
-"36\n"
"help.text"
msgid "Applies a date format (Year, Month, Day) to the imported data in a column."
msgstr "ཀེར་ཐིག་ནང་གི་ནང་འདྲེན་འབད་ཡོད་མི་ལུ་ཚེས་གྲངས་རྩ་སྒྲིག་ཅིག་(ལོ་,ཟླ་,གཟའ་)འཇུག་སྤྱོད་འབདཝ་ཨིན།"
@@ -5234,7 +4876,6 @@ msgstr "ཀེར་ཐིག་ནང་གི་ནང་འདྲེན་འ
msgctxt ""
"00000208.xhp\n"
"par_id3148981\n"
-"65\n"
"help.text"
msgid "US English"
msgstr "ཡུ་ཨེསི་ཨིང་ལིཤ།"
@@ -5243,7 +4884,6 @@ msgstr "ཡུ་ཨེསི་ཨིང་ལིཤ།"
msgctxt ""
"00000208.xhp\n"
"par_id3153178\n"
-"66\n"
"help.text"
msgid "Numbers formatted in US English are searched for and included regardless of the system language. A number format is not applied. If there are no US English entries, the <emph>Standard</emph> format is applied."
msgstr "ཡུ་ཨེསི་ཨིང་ལིཤ་ནང་རྩ་སྒྲིག་འབད་ཡོད་པའི་ཨང་གྲངས་ཚུ་ འཚོལ་ཞིབ་འབད་ནི་དང་ སྐད་ཡིག་གི་རིམ་ལུགས་ལུ་དབྱེ་བ་མེད་པར་ གྲངས་ཚུ་བཙུགས་ཡོད། རྩ་སྒྲིག་གི་ཨང་གྲངས་འདི་ འཇུག་སྤྱོད་མ་འབད་བས། ཡུ་ཨེསི་ཨིང་ལིཤ་ཐོ་བཀོད་འབད་མེད་པ་ཅིན་ <emph>Standard</emph>རྩ་སྒྲིག་འདི་འཇུག་སྤྱོད་འབདཝ་ཨིན།"
@@ -5252,7 +4892,6 @@ msgstr "ཡུ་ཨེསི་ཨིང་ལིཤ་ནང་རྩ་སྒ
msgctxt ""
"00000208.xhp\n"
"par_id3154329\n"
-"37\n"
"help.text"
msgid "Hide"
msgstr "སྦ།"
@@ -5261,7 +4900,6 @@ msgstr "སྦ།"
msgctxt ""
"00000208.xhp\n"
"par_id3154946\n"
-"38\n"
"help.text"
msgid "The data in the column are not imported."
msgstr "ཀེར་ཐིག་ནང་ཡོད་མི་གནད་སྡུད་འདི་ ནང་འདྲེན་མ་འབད་བས།"
@@ -5270,7 +4908,6 @@ msgstr "ཀེར་ཐིག་ནང་ཡོད་མི་གནད་སྡ
msgctxt ""
"00000208.xhp\n"
"par_id3149767\n"
-"75\n"
"help.text"
msgid "If you selected one of the date formats (DMY), (MDY), or (YMD) and you enter numbers without date delimiters, the numbers are interpreted as follows:"
msgstr "ཁྱོད་ཀྱིས་ ཚེས་གྲངས་རྩ་སྒྲིག་ཚུ་(DMY),(MDY),ཡང་ན་ (YMD) སེལ་འཐུ་འབད་བའི་ཤུལ་ལས་ ཁྱོད་ཀྱིས་ཚེས་གྲངས་དབྱེ་རྟགས་ཚུ་མེད་པའི་ཨང་གྲངས་ཚུ་བཙུགས་པ་ཅིན་ ཨང་གྲངས་ཚུ་འོག་གི་ཁ་བསྒྱུར་འབད:"
@@ -5279,7 +4916,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཚེས་གྲངས་རྩ་ས
msgctxt ""
"00000208.xhp\n"
"par_id3150650\n"
-"76\n"
"help.text"
msgid "Number of characters"
msgstr "ཡིག་འབྲུ་ཚུ་གི་ཨང་གྲངས།"
@@ -5288,7 +4924,6 @@ msgstr "ཡིག་འབྲུ་ཚུ་གི་ཨང་གྲངས།"
msgctxt ""
"00000208.xhp\n"
"par_id3150495\n"
-"77\n"
"help.text"
msgid "Date format"
msgstr "ཚེས་གྲངས་ཀྱི་རྩ་སྒྲིག"
@@ -5297,7 +4932,6 @@ msgstr "ཚེས་གྲངས་ཀྱི་རྩ་སྒྲིག"
msgctxt ""
"00000208.xhp\n"
"par_id3156212\n"
-"78\n"
"help.text"
msgid "6"
msgstr ""
@@ -5306,7 +4940,6 @@ msgstr ""
msgctxt ""
"00000208.xhp\n"
"par_id3153056\n"
-"79\n"
"help.text"
msgid "Two characters each are taken for day, month, and year in the selected order."
msgstr "སེལ་འཐུའི་གོ་རིམ་ནང་ ཉིནམ་ཅིག་ཟླ་བ་དང་ལོ་གི་དོན་ལས་ ཡི་གའབྲུ་གཉིས་འབག་པ་ཨིན།"
@@ -5315,7 +4948,6 @@ msgstr "སེལ་འཐུའི་གོ་རིམ་ནང་ ཉིན
msgctxt ""
"00000208.xhp\n"
"par_id3147352\n"
-"80\n"
"help.text"
msgid "8"
msgstr ""
@@ -5324,7 +4956,6 @@ msgstr ""
msgctxt ""
"00000208.xhp\n"
"par_id3153768\n"
-"81\n"
"help.text"
msgid "Four characters are taken for the year, two each for month and day, in the selected order."
msgstr "སེལ་འཐུ་འབད་བའི་རིམ་པ་ནང་ ལོ་གི་དོན་ལས་ཡིག་འབྲུ་བཞི་དང་ གཟའ་དང་ཟླ་བའི་དོན་ལས་གཉིས།"
@@ -5333,7 +4964,6 @@ msgstr "སེལ་འཐུ་འབད་བའི་རིམ་པ་ནང
msgctxt ""
"00000208.xhp\n"
"par_id3147295\n"
-"82\n"
"help.text"
msgid "5 or 7"
msgstr "༥ ཡང་ན་ ༧།"
@@ -5342,7 +4972,6 @@ msgstr "༥ ཡང་ན་ ༧།"
msgctxt ""
"00000208.xhp\n"
"par_id3151168\n"
-"83\n"
"help.text"
msgid "As with 6 or 8 characters, but the first part of the sequence has one character less. This will suppress a leading zero for month and day."
msgstr "ཡིག་འབྲུ་ ༦ དང་ ༨ གི་ཐོག་ལས་ དེ་འབདཝ་ད་ འབྱུང་རིམ་གྱི་ ཡན་ལག་དང་པ་ལུ་ཡིག་འབྲུ་གཅིག་གི་ཉུང་ཀུ་ཡོད། དེ་གིས་ ཟླཝ་དང་གཟའ་གི་དོན་ལས་ སྔོན་བསྐྱོད་ཀླད་ཀོར་མར་མནོན་འབད་འོང་།"
@@ -5351,7 +4980,6 @@ msgstr "ཡིག་འབྲུ་ ༦ དང་ ༨ གི་ཐོག་ལ
msgctxt ""
"00000208.xhp\n"
"par_id3153143\n"
-"44\n"
"help.text"
msgid "If you want to include the leading zero in the data you import, in telephone numbers for example, apply the \"Text\" format to the column."
msgstr "ཁྱོད་ཀྱིས་ གནད་སྡུད་ནང་ལུ་སྔོན་བསྐྱོད་ཀླད་ཀོར་འདི་ གྲངས་སུ་བཙུགས་དགོ་པ་ཅིན་ ཁྱོད་ཀྱིས་རྒྱུད་འཕྲིན་གྱི་ཨང་གྲངས་ཚུ་ནང་ནང་འདྲེན་འབད་ དཔེར་ན་ ཀེར་ཐིག་ལུ་ \"Text\"རྩ་སྒྲིག་འཇུག་སྤྱོད་འབད།"
@@ -5360,7 +4988,6 @@ msgstr "ཁྱོད་ཀྱིས་ གནད་སྡུད་ནང་ལ
msgctxt ""
"00000208.xhp\n"
"hd_id3149287\n"
-"39\n"
"help.text"
msgid "Preview"
msgstr "སྔོན་ལྟ།"
@@ -5369,7 +4996,6 @@ msgstr "སྔོན་ལྟ།"
msgctxt ""
"00000208.xhp\n"
"par_id3147377\n"
-"40\n"
"help.text"
msgid "Shows how the imported text will look after it is separated into columns. To apply a format to a column when it is imported, click a column and select a <emph>Column type</emph>. When you select a <emph>Column type</emph>, the column heading displays the applied format."
msgstr "ཀེར་ཐིག་ནང་ལུ་འཕྱལ་ཚར་བཞིནམ་ལས་ ནང་འདྲེན་འབད་ཡོད་མི་ཚིག་ཡིག་འདི་ག་དེ་སྦེ་མཐོངམ་ཨིན་ན་སྟོནམ་ཨིན། ནང་འདྲེན་འབད་བཞིནམ་ལས་ ཀེར་ཐིག་ལུ་རྩ་སྒྲིག་འཇུག་སྤྱོད་འབད་ནིའི་དོན་ལས་ ཀེར་ཐིག་ལུ་ཨེབ་གཏང་ནི་དང་ <emph>ཀེར་ཐིག་གི་དབྱེ་བ་</emph>སེལ་འཐུ་འབད། ཁྱོད་ཀྱིས་<emph>ཀེར་ཐིག་གི་དབྱེ་བ</emph>སེལ་འཐུ་འབད་བའི་བསྒང་ ཀེར་ཐིག་མགུ་རྒྱུན་གྱིས་ འཇུག་སྤྱོད་འབད་ཡོད་པའི་རྩ་སྒྲིག་འདི་བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -5378,7 +5004,6 @@ msgstr "ཀེར་ཐིག་ནང་ལུ་འཕྱལ་ཚར་བཞ
msgctxt ""
"00000208.xhp\n"
"par_id3150105\n"
-"64\n"
"help.text"
msgid "If you want to use a fixed width to separate the imported data into columns, click in the ruler to set the width boundaries."
msgstr "ནང་འདྲེན་འབད་ཡོད་མི་གནད་སྡུད་འདི་ཀེར་ཐིག་ནང་ལུ་འཕྱལ་ནིའི་དོན་ལས་ ཁྱོད་ཀྱིས་ གཏན་བཟོས་རྒྱ་ཚད་ལག་ལེན་འཐབ་པ་ཅིན་ རྒྱ་ཚད་ཀྱི་མཐའ་མཚམས་གཞི་སྒྲིག་འབད་ནི་ལུ་ ཐིག་ཤིང་ལུ་ཨེབ་གཏང་།"
@@ -5387,7 +5012,6 @@ msgstr "ནང་འདྲེན་འབད་ཡོད་མི་གནད་
msgctxt ""
"00000208.xhp\n"
"par_id3155746\n"
-"74\n"
"help.text"
msgid "<link href=\"text/shared/guide/keyboard.xhp\" name=\"Navigating Without the Mouse\">Navigating Without the Mouse</link>"
msgstr "<link href=\"text/shared/guide/keyboard.xhp\" name=\"Navigating Without the Mouse\">མཱའུསི་མེད་པའི་ཐོག་ལས་འགྲུལ་བསྐྱོད་འབད་དོ།</link>"
@@ -5396,100 +5020,10 @@ msgstr "<link href=\"text/shared/guide/keyboard.xhp\" name=\"Navigating Without
msgctxt ""
"00000208.xhp\n"
"par_id3146120\n"
-"43\n"
"help.text"
msgid "For more information, see <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">Information about Import and Export Filters</link>."
msgstr "བརྡ་དོན་མངམ་གྱི་དོན་ལས་ <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">ནང་འདྲེན་དང་ཕྱིར་འདྲེན་གྱི་སྐོར་ལས་བརྡ་དོན།</link>བལྟ་ད།"
-#: 00000210.xhp
-msgctxt ""
-"00000210.xhp\n"
-"tit\n"
-"help.text"
-msgid "Warning Print Options"
-msgstr "ཉེན་བརྡ་དཔར་བསྐྲུན་གྱི་གདམ་ཁ་ཚུ།"
-
-#: 00000210.xhp
-msgctxt ""
-"00000210.xhp\n"
-"hd_id3145759\n"
-"1\n"
-"help.text"
-msgid "Warning Print Options"
-msgstr "ཉེན་བརྡ་དཔར་བསྐྲུན་གྱི་གདམ་ཁ་ཚུ།"
-
-#: 00000210.xhp
-msgctxt ""
-"00000210.xhp\n"
-"par_id3152352\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"SD:MODALDIALOG:DLG_PRINT_WARNINGS\">The<emph> Warning Print Options </emph>dialog appears when the page setup does not match the defined print range.</ahelp> This is the case, for example, if you draw a rectangle that is larger than the current page format."
-msgstr "<ahelp visibility=\"visible\" hid=\"SD:MODALDIALOG:DLG_PRINT_WARNINGS\"><emph>ཉེན་བརྡ་དཔར་བསྐྲུན་གྱི་གདམ་ཁ་འདི་ </emph> ཤོག་ལེབ་གཞི་སྒྲིག་གིས་ ངེས་འཛིན་འབད་ཡོད་པའི་དཔར་བསྐྲུན་ཁྱབ་ཚད་དང་མཐུན་མིན་འབདཝ་ད་ ཌའི་ལོག་འདི་འབྱུངམ་ཨིན། </ahelp> འ་ནི་འདི་གནད་དོན་ཨིན་ དཔེར་ན་ ཁྱོད་ཀྱིས་ ད་ལྟོ་ཡོད་མི་ཤོག་ལེབ་ཀྱི་རྩ་སྒྲིག་ལས་སྦོམ་མི་ གྲུ་བཞི་ནར་མོ་ ཅིག་འབྲི་དོ་བཟུམ་ཨིན།"
-
-#: 00000210.xhp
-msgctxt ""
-"00000210.xhp\n"
-"hd_id3150620\n"
-"3\n"
-"help.text"
-msgid "Print options"
-msgstr "དཔར་བསྐྲུན་གྱི་གདམ་ཁ་ཚུ།"
-
-#: 00000210.xhp
-msgctxt ""
-"00000210.xhp\n"
-"hd_id3156324\n"
-"5\n"
-"help.text"
-msgid "Fit page to print range"
-msgstr "དཔར་བསྐྲུན་ཁྱབ་ཚད་ལུ་ཚུད་སྒྲིག་གི་ཤོག་ལེབ།"
-
-#: 00000210.xhp
-msgctxt ""
-"00000210.xhp\n"
-"par_id3158405\n"
-"7\n"
-"help.text"
-msgid "If you select the <emph>Fit page to print range </emph>option, the <emph>Warning Print Options</emph> dialog will not appear in subsequent print runs of this document."
-msgstr "ཁྱོད་ཀྱིས་ <emph>དཔར་བསྐྲུན་ཁྱབ་ཚད་ལུ་ཤོག་ལེབ་ཚད་སྒྲིག་འབད་བ་ཅིན་ </emph>གདམ་ཁ་འདི་ <emph>ཉེན་བརྡའི་དཔར་བསྐྲུན་གྱི་གདམ་ཁ་</emph>སེལ་འཐུ་འབད་བ་ཅིན་ ཡིག་ཆ་དེ་གི་ དཔར་བསྐྲུན་ཕྲོ་མཐུད་གཡོག་བཀལ་མི་ནང་ ཌའི་ལོག་འདི་མི་འབྱུང་།"
-
-#: 00000210.xhp
-msgctxt ""
-"00000210.xhp\n"
-"hd_id3156553\n"
-"8\n"
-"help.text"
-msgid "Print on multiple pages"
-msgstr ""
-
-#: 00000210.xhp
-msgctxt ""
-"00000210.xhp\n"
-"par_id3154823\n"
-"9\n"
-"help.text"
-msgid "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_POSTER\">Specifies whether to distribute the printout on multiple pages.</ahelp> The print range will be printed on multiple pages."
-msgstr "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_POSTER\" visibility=\"visible\"> འདི་སྣ་མང་ཤོག་ལྡན་གུ་ དཔར་བསྐྲུན་འབད་ཡོད་མི་ བགོ་བཀྲམ་འབད་ནི་ཨིན་མེན་གསལ་བཀོད་འབད། </ahelp> དཔར་བསྐྲུན་གྱི་ཁྱབ་ཚད་འདི་ཤོག་ལེབ་སྣ་མང་གུ་དཔར་སྐྲུན་འབད་འོང་།"
-
-#: 00000210.xhp
-msgctxt ""
-"00000210.xhp\n"
-"hd_id3147010\n"
-"10\n"
-"help.text"
-msgid "Trim"
-msgstr "རྩེ་སྙོམ་ནི།"
-
-#: 00000210.xhp
-msgctxt ""
-"00000210.xhp\n"
-"par_id3151111\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_CUT\">Specifies that anything extending beyond the maximum print range will be cut off and not included in the printing.</ahelp>"
-msgstr "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_CUT\" visibility=\"visible\">གིས་ དཔར་བསྐྲུན་མང་མཐའི་ཁྱབ་ཚད་ལས་བརྒལ་ཏེ་ ཡོད་པ་ཅིན་ བཏོག་གཏང་ནི་དང་དཔར་བསྐྲུན་གྱི་གྲངས་སུ་མི་བཙུགས་ནི་ཨིན་ཟེར་གསལ་བཀོད་འབདཝ་ཨིན། </ahelp>"
-
#: 00000215.xhp
msgctxt ""
"00000215.xhp\n"
@@ -5502,7 +5036,6 @@ msgstr "ཨེ་ཨེསི་སི་ཨའི་ཨའི་ཚགས་མ
msgctxt ""
"00000215.xhp\n"
"hd_id3146856\n"
-"1\n"
"help.text"
msgid "ASCII Filter Options"
msgstr "ཨེ་ཨེསི་སི་ཨའི་ཨའི་ཚགས་མའི་གདམ་ཁ་ཚུ།"
@@ -5511,7 +5044,6 @@ msgstr "ཨེ་ཨེསི་སི་ཨའི་ཨའི་ཚགས་མ
msgctxt ""
"00000215.xhp\n"
"par_id3153070\n"
-"2\n"
"help.text"
msgid "You can specify which options, such as basic font, language, character set, or break, are imported or exported with a text document. The dialog appears when you load an ASCII file with the filter \"Text Encoded\" or when you save the document the first time, or when you \"save as\" with another name."
msgstr "ཚིག་ཡིག་གི་ཡིག་ཆ་གི་ཐོག་ལས་ གཞི་རིམ་ཡིག་གཟུགས་ སྐད་ཡིག་ ཡིག་འབྲུ་གཞི་སྒྲིག་ ཡང་ན་ མཚམས་ཚུ་གདམ་ཁ་ག་འདི་ ནང་འདྲེན་དང་ཕྱིར་འདྲེན་འབད་ཡོད་ག་ཁྱོད་ཀྱིས་གསལ་བཀོད་འབད་བཏུབ། ཁྱོད་ཀྱིས་ ཚགས་མ་དང་བཅས་ཨེ་ཨེསི་སི་ཨའི་ཨའི་ཡིག་སྣོད་མངོན་གསལ་འབདཝ་ད་\"Text Encoded\"ཡང་ན་ ཁྱོད་ཀྱིསཡིག་ཆ་འདི་གོ་དང་པ་སྲུང་པའི་བསྒང་དང་ ཡང་ན་ ཁྱོད་ཀྱིས་ མིང་གཞན་མི་དང་བཅས་ \"save as\" འབད་བའི་བསྒང་ཌའི་ལོག་འདི་འབྱུངམ་ཨིན།"
@@ -5520,7 +5052,6 @@ msgstr "ཚིག་ཡིག་གི་ཡིག་ཆ་གི་ཐོག་
msgctxt ""
"00000215.xhp\n"
"hd_id3159217\n"
-"3\n"
"help.text"
msgid "Properties"
msgstr "རྒྱུ་དངོས།"
@@ -5529,7 +5060,6 @@ msgstr "རྒྱུ་དངོས།"
msgctxt ""
"00000215.xhp\n"
"par_id3155577\n"
-"4\n"
"help.text"
msgid "Defines the settings for importing or exporting your file. When exporting, only the character set and paragraph break can be defined."
msgstr "ཁྱོད་རའི་ཡིག་སྣོད་འདི་འདྲེན་དང་ཕྱིར་འདྲེན་གྱི་དོན་ལས་གཞི་སྒྲིག་འདི་ངེས་འཛིན་འབདཝ་ཨིན། ཕྱིར་འདྲེན་འབད་བའི་བསྒང་ཡིག་འབྲུའི་གཞི་སྒྲིག་དང་དོན་མཚམས་རྒྱུན་ཆད་ འདི་ངེས་འཛིན་འབད་བཏུབ།"
@@ -5538,7 +5068,6 @@ msgstr "ཁྱོད་རའི་ཡིག་སྣོད་འདི་འད
msgctxt ""
"00000215.xhp\n"
"hd_id3146959\n"
-"5\n"
"help.text"
msgid "Character set"
msgstr "ཡིག་འབྲུ་གཞི་སྒྲིག"
@@ -5547,7 +5076,6 @@ msgstr "ཡིག་འབྲུ་གཞི་སྒྲིག"
msgctxt ""
"00000215.xhp\n"
"par_id3143206\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/charset\">Specifies the character set of the file for export or import.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/charset\">ཕྱིར་འདྲེན་དང་ནང་འདྲེན་གྱི་དོན་ལས་ཡིག་སྣོད་ཀྱི་ཡིག་འབྲུའི་གཞི་སྒྲིག་འདི་གསལ་བཀོད་འབདཝ་ཨིན།</ahelp>"
@@ -5556,7 +5084,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/charset\">ཕྱིར
msgctxt ""
"00000215.xhp\n"
"hd_id3154926\n"
-"7\n"
"help.text"
msgid "Default fonts"
msgstr "སྔོན་སྒྲིག་ཡིག་གཟུགས་ཚུ།"
@@ -5565,7 +5092,6 @@ msgstr "སྔོན་སྒྲིག་ཡིག་གཟུགས་ཚུ།
msgctxt ""
"00000215.xhp\n"
"par_id3151262\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/font\">By setting a default font, you specify that the text should be displayed in a specific font. The default fonts can only be selected when importing.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/font\"> སྔོན་སྒྲིག་ཡིག་གཟུགས་འདི་གཞི་སྒྲིག་འབད་བཞིནམ་ལས་ ཚིག་ཡིག་འདི་དམིགས་བསལ་གྱི་ཡིག་གཟུགས་ནང་བཀྲམ་སྟོན་འབད་དགོ་ཟེར་ ཁྱོད་ཀྱིས་གསལ་བཀོད་འབད། </ahelp> ཐོབ་ཚིགས་པའི་ཡིག་གཟུགས་ཚུ་ ཁྱོད་རའི་གློག་རིག་གུ་བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -5574,7 +5100,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/font\"> སྔོན
msgctxt ""
"00000215.xhp\n"
"hd_id3154894\n"
-"9\n"
"help.text"
msgid "Language"
msgstr "སྐད་ཡིག"
@@ -5583,7 +5108,6 @@ msgstr "སྐད་ཡིག"
msgctxt ""
"00000215.xhp\n"
"par_id3153323\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/language\">Specifies the language of the text, if this has not already been defined. This setting is only available when importing.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/language\"> འ་ནི་འདི་ཧེ་མ་ལས་ངེས་འཛིན་མ་འབད་བར་ཡོད་པ་ཅིན་ ཚིག་ཡིག་གི་སྐད་ཡིག་འདི་གསལ་བཀོད་འབདཝ་ཨིན། འ་ནི་གཞི་སྒྲིག་འདི་ ནང་འདྲེན་འབད་བའི་བསྒང་རྐྱངམ་ཅིག་ཐོབ་ཚུགས།</ahelp>"
@@ -5592,7 +5116,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/language\"> འ་ན
msgctxt ""
"00000215.xhp\n"
"hd_id3147143\n"
-"11\n"
"help.text"
msgid "Paragraph break"
msgstr "དོན་མཚམས་ཀྱི་རྒྱུན་ཆད།"
@@ -5601,7 +5124,6 @@ msgstr "དོན་མཚམས་ཀྱི་རྒྱུན་ཆད།"
msgctxt ""
"00000215.xhp\n"
"par_id3143281\n"
-"12\n"
"help.text"
msgid "Defines the type of paragraph break for a text line."
msgstr "ཚིག་ཡིག་གྲལ་ཐིག་གི་དོན་ལུ་དོན་མཚམས་རྒྱུན་ཆད་ཀྱི་དབྱེ་བ་འདི་ངེས་འཛིན་འབདཝ་ཨིན།"
@@ -5610,7 +5132,6 @@ msgstr "ཚིག་ཡིག་གྲལ་ཐིག་གི་དོན་ལ
msgctxt ""
"00000215.xhp\n"
"hd_id3150935\n"
-"13\n"
"help.text"
msgid "CR & LF"
msgstr "སི་ཨར་དང་ཨེལ་ཨེཕ།"
@@ -5619,7 +5140,6 @@ msgstr "སི་ཨར་དང་ཨེལ་ཨེཕ།"
msgctxt ""
"00000215.xhp\n"
"par_id3145829\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/crlf\">Produces a \"Carriage Return\" and a \"Linefeed\". This option is the default.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/crlf\">བཟོ་སྟོན་ \"Carriage Return\" and a \"Linefeed\"འ་ནི་གདམ་ཁ་འདི་སྔོན་སྒྲིག་ཨིན།</ahelp>"
@@ -5628,7 +5148,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/crlf\">བཟོ་ས
msgctxt ""
"00000215.xhp\n"
"hd_id3153551\n"
-"15\n"
"help.text"
msgid "CR"
msgstr "སི་ཨར།"
@@ -5637,7 +5156,6 @@ msgstr "སི་ཨར།"
msgctxt ""
"00000215.xhp\n"
"par_id3156042\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/cr\">Produces a \"Carriage Return\" as the paragraph break.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/cr\">བཟོ་སྟོན་ \"Carriage Return\" དོན་མཚམས་རྒྱུན་ཆད་བཟུམ་སྦེ།</ahelp>"
@@ -5646,7 +5164,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/cr\">བཟོ་ས
msgctxt ""
"00000215.xhp\n"
"hd_id3150713\n"
-"17\n"
"help.text"
msgid "LF"
msgstr "ཨེལ་ཨེཕ།"
@@ -5655,7 +5172,6 @@ msgstr "ཨེལ་ཨེཕ།"
msgctxt ""
"00000215.xhp\n"
"par_id3145090\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/lf\">Produces a \"Linefeed\" as the paragraph break.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/lf\">བཟོ་སྟོན་\"Linefeed\" as the དོན་མཚམས་རྒྱུན་ཆད།</ahelp>"
@@ -5672,7 +5188,6 @@ msgstr "ཡིག་སྣོད་ཀྱི་དཀར་ཆག"
msgctxt ""
"00000401.xhp\n"
"hd_id3149976\n"
-"1\n"
"help.text"
msgid "File Menu"
msgstr "ཡིག་སྣོད་ཀྱི་དཀར་ཆག"
@@ -5689,7 +5204,6 @@ msgstr ""
msgctxt ""
"00000401.xhp\n"
"par_id3154812\n"
-"50\n"
"help.text"
msgid "Choose <emph>File - New</emph>"
msgstr "གདམ་ཁ་རྐྱབས <emph>ཡིག་སྣོ-གསརཔ།</emph>"
@@ -5698,7 +5212,6 @@ msgstr "གདམ་ཁ་རྐྱབས <emph>ཡིག་སྣོ-གསར
msgctxt ""
"00000401.xhp\n"
"par_id3153070\n"
-"186\n"
"help.text"
msgid "<emph>New</emph> icon on the <emph>Standard</emph> Bar (the icon shows the type of the new document)"
msgstr "<emph>New</emph> ངོས་དཔར་ <emph>ཚད་ལྡན་གུ་</emph> ཕྲ་རིང་ (ངོས་དཔར་དེ་གིས་ཡིག་ཆ་གསརཔ་གི་དབྱེ་བ་སྟོནམ་ཨིན།)"
@@ -5715,7 +5228,6 @@ msgstr "<image id=\"img_id3150656\" src=\"res/sc06301.png\" width=\"0.222inch\"
msgctxt ""
"00000401.xhp\n"
"par_id3154232\n"
-"199\n"
"help.text"
msgid "New"
msgstr "གསརཔ།"
@@ -5724,7 +5236,6 @@ msgstr "གསརཔ།"
msgctxt ""
"00000401.xhp\n"
"par_id3154894\n"
-"179\n"
"help.text"
msgid "Key <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
msgstr "ལྡེ་མིག་ <switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+N"
@@ -5733,7 +5244,6 @@ msgstr "ལྡེ་མིག་ <switchinline select=\"sys\"><caseinline select
msgctxt ""
"00000401.xhp\n"
"par_id3157898\n"
-"82\n"
"help.text"
msgid "Menu <emph>File - New</emph><emph>- Templates</emph>."
msgstr ""
@@ -5742,7 +5252,6 @@ msgstr ""
msgctxt ""
"00000401.xhp\n"
"par_id3149140\n"
-"187\n"
"help.text"
msgid "Key Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
msgstr "ལྡེ་མིག་སོར་ལྡེ་+<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཨེན།"
@@ -5751,7 +5260,6 @@ msgstr "ལྡེ་མིག་སོར་ལྡེ་+<switchinline select=\"
msgctxt ""
"00000401.xhp\n"
"par_id3149798\n"
-"160\n"
"help.text"
msgid "<variable id=\"etiketten\">Choose <emph>File - New - Labels</emph></variable>"
msgstr "<variable id=\"etiketten\">གདམ་ཁ་རྐྱབས་ <emph>ཡིག་སྣོད་-གསརཔ-གི་ཁ་ཡིག་</emph></variable>"
@@ -5760,7 +5268,6 @@ msgstr "<variable id=\"etiketten\">གདམ་ཁ་རྐྱབས་ <emph>
msgctxt ""
"00000401.xhp\n"
"par_id3147226\n"
-"161\n"
"help.text"
msgid "<variable id=\"etikettenein\">Choose <emph>File - New - Labels - Labels</emph> tab</variable>"
msgstr "<variable id=\"etikettenein\">གདམ་ཁ་རྐྱབས་ <emph>ཡིག་སྣོད་ - གསརཔ་གི་ - ཁ་ཡིག་ཚུ་-ཁ་ཡིག་ཚུ། </emph> ཨེབ་ལྡེ་ </variable>"
@@ -5769,7 +5276,6 @@ msgstr "<variable id=\"etikettenein\">གདམ་ཁ་རྐྱབས་ <emph
msgctxt ""
"00000401.xhp\n"
"par_id3154522\n"
-"162\n"
"help.text"
msgid "Choose <emph>File - New - Labels - Format</emph> tab"
msgstr "གདམ་ཁ་རྐཡབས་ <emph>ཡིག་སྣོད་ - གསརཔ་གི་ - ཁ་ཡིག་ - རྩ་སྒྲིག་ཚུ།</emph> ཨེབ་ལྡེ།"
@@ -5778,7 +5284,6 @@ msgstr "གདམ་ཁ་རྐཡབས་ <emph>ཡིག་སྣོད་ -
msgctxt ""
"00000401.xhp\n"
"par_id3154983\n"
-"163\n"
"help.text"
msgid "Choose <emph>File - New - Business Cards - Format</emph> tab"
msgstr "གདམ་ཁ་རྐྱབས་ <emph>ཡིག་སྣོད་- གསརཔ་གི་ - ཚོང་འབྲེལ་ཏ་སེ་ - རྩ་སྒྲིག་ཚུ།</emph> ཨེབ་ལྡེ།"
@@ -5787,7 +5292,6 @@ msgstr "གདམ་ཁ་རྐྱབས་ <emph>ཡིག་སྣོད་-
msgctxt ""
"00000401.xhp\n"
"par_id3157958\n"
-"164\n"
"help.text"
msgid "Choose <emph>File - New - Labels - Options</emph> tab"
msgstr "གདམ་ཁ་རྐྱབས་ <emph>ཡིག་སྣོད་ - གསརཔ་གི་ - ཁ་ཡིག་ཚུ་ - གདམ་ཁ་ཚུ།</emph> ཨེབ་ལྡེ།"
@@ -5796,7 +5300,6 @@ msgstr "གདམ་ཁ་རྐྱབས་ <emph>ཡིག་སྣོད་ -
msgctxt ""
"00000401.xhp\n"
"par_id3153311\n"
-"165\n"
"help.text"
msgid "Choose <emph>File - New - Business Cards - Options</emph> tab"
msgstr "གདམ་ཁ་རྐྱབས་ <emph>ཡིག་སྣོད་ - གསརཔ་གི་ - ཚོང་འབྲེལ་ཏེ་སའི་ -གདམ་ཁ་ཚུ།</emph> ཨེབ་ལྡེ།"
@@ -5805,7 +5308,6 @@ msgstr "གདམ་ཁ་རྐྱབས་ <emph>ཡིག་སྣོད་ -
msgctxt ""
"00000401.xhp\n"
"par_id3152780\n"
-"166\n"
"help.text"
msgid "<variable id=\"visikart\">Choose <emph>File - New - Business Cards</emph></variable>"
msgstr "<variable id=\"visikart\"><emph>ཡིག་སྣོད་ - གསརཔ་གི་ - ཚོང་འབྲེལ་ཏེ་ས།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -5814,7 +5316,6 @@ msgstr "<variable id=\"visikart\"><emph>ཡིག་སྣོད་ - གསར
msgctxt ""
"00000401.xhp\n"
"par_id3156346\n"
-"167\n"
"help.text"
msgid "<variable id=\"visikartform\">Choose <emph>File - New - Business Cards - Medium</emph> tab</variable>"
msgstr "<variable id=\"visikartform\"> <emph>ཡིག་སྣོད་ - གསརཔ་གི་ -ཚོང་འབྲེལ་ཏེ་ས་ - འབྲིང་མ</emph> ཨེབ་ལྡེ། </variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -5823,7 +5324,6 @@ msgstr "<variable id=\"visikartform\"> <emph>ཡིག་སྣོད་ - ག
msgctxt ""
"00000401.xhp\n"
"par_id3152824\n"
-"168\n"
"help.text"
msgid "<variable id=\"viskartinhalt\">Choose <emph>File - New - Business Cards - Business cards</emph> tab</variable>"
msgstr "<variable id=\"viskartinhalt\"><emph>ཡིག་སྣོད་ - གསརཔ་གི་ - ཚོང་འབྲེལ་ཏེ་ས་ - ཚོང་འབྲེལ་ཏེ་ས</emph> ཨེབ་ལྡེ། </variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -5832,7 +5332,6 @@ msgstr "<variable id=\"viskartinhalt\"><emph>ཡིག་སྣོད་ - ག
msgctxt ""
"00000401.xhp\n"
"par_id3149819\n"
-"169\n"
"help.text"
msgid "<variable id=\"viskartpriv\">Choose <emph>File - New - Business Cards - Private</emph> tab</variable>"
msgstr "<variable id=\"viskartpriv\"><emph>ཡིག་སྣོད་ - གསརཔ་གི་ -ཚོང་འབྲེལ་ཏེ་ས་ -སྒེར་དོན་</emph> ཨེབ་ལྡེ། </variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -5841,7 +5340,6 @@ msgstr "<variable id=\"viskartpriv\"><emph>ཡིག་སྣོད་ - གས
msgctxt ""
"00000401.xhp\n"
"par_id3154897\n"
-"170\n"
"help.text"
msgid "<variable id=\"viskartgesch\">Choose <emph>File - New - Business Cards - Business</emph> tab</variable>"
msgstr "<variable id=\"viskartgesch\"> <emph>ཡིག་སྣོད་ - གསརཔ་ - ཚོང་འབྲེལ་ཏེ་ས་ - ཚོང་འབྲེལ་</emph> ཨེབ་ལྡེ། </variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -5850,7 +5348,6 @@ msgstr "<variable id=\"viskartgesch\"> <emph>ཡིག་སྣོད་ - ག
msgctxt ""
"00000401.xhp\n"
"par_id3146137\n"
-"7\n"
"help.text"
msgid "Choose <emph>File - Open</emph>"
msgstr "<emph>ཡིག་སྣོད་ - ཁ་ཕྱེ།</emph>གདམ་ཁ་རྐྱབས།"
@@ -5859,7 +5356,6 @@ msgstr "<emph>ཡིག་སྣོད་ - ཁ་ཕྱེ།</emph>གདམ
msgctxt ""
"00000401.xhp\n"
"par_id3152944\n"
-"83\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་</caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཨོ།"
@@ -5868,7 +5364,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"00000401.xhp\n"
"par_id3155341\n"
-"8\n"
"help.text"
msgid "On the <emph>Standard</emph> Bar, click"
msgstr "<emph>ཚད་ལྡན་</emph> ཕྲ་རིང་གུ་ཨེབ་གཏང་།"
@@ -5885,7 +5380,6 @@ msgstr "<image id=\"img_id3149716\" src=\"cmd/sc_color.png\" width=\"0.222inch\"
msgctxt ""
"00000401.xhp\n"
"par_id3156003\n"
-"9\n"
"help.text"
msgid "Open File"
msgstr "ཡིག་སྣོད་ཁ་ཕྱེ།"
@@ -5894,7 +5388,6 @@ msgstr "ཡིག་སྣོད་ཁ་ཕྱེ།"
msgctxt ""
"00000401.xhp\n"
"par_id3155388\n"
-"174\n"
"help.text"
msgid "Menu <emph>File - Open</emph>, File type <emph>Text Encoded</emph> selected"
msgstr "དཀར་ཆག་ <emph>ཡིག་སྣོད་ - ཁ་ཕྱེ་</emph>,ཡིག་སྣོད་ཀྱི་དབྱེ་བ་ <emph>ཚིག་ཡིག་ཨིན་ཀོ་ཌེཌི་</emph> སེལ་འཐུ་འབད་ཡོད།"
@@ -5903,7 +5396,6 @@ msgstr "དཀར་ཆག་ <emph>ཡིག་སྣོད་ - ཁ་ཕྱ
msgctxt ""
"00000401.xhp\n"
"par_id3154174\n"
-"175\n"
"help.text"
msgid "Menu <emph>File - Save As</emph>, File type <emph>Text Encoded</emph> selected"
msgstr "དཀར་ཆག་ <emph>ཡིག་སྣོད་ - དེ་སྦེ་སྲུང་</emph>, ཡིག་སྣོད་ཀྱི་དབྱེ་བ་ <emph>ཚིག་ཡིག་ཨིན་ཀོ་ཌེཌི་</emph>སེལ་འཐུ་འབད་ཡོད།"
@@ -5912,7 +5404,6 @@ msgstr "དཀར་ཆག་ <emph>ཡིག་སྣོད་ - དེ་ས
msgctxt ""
"00000401.xhp\n"
"par_id3145609\n"
-"109\n"
"help.text"
msgid "<variable id=\"autobrief\">Choose <emph>File - Wizards</emph></variable>"
msgstr "<variable id=\"autobrief\"> <emph>ཡིག་སྣོད་ - ཝི་ཛརཌི།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -5921,7 +5412,6 @@ msgstr "<variable id=\"autobrief\"> <emph>ཡིག་སྣོད་ - ཝི
msgctxt ""
"00000401.xhp\n"
"par_id3149245\n"
-"110\n"
"help.text"
msgid "<variable id=\"autopilotbrief\">Choose <emph>File - Wizards - Letter</emph></variable>"
msgstr "<variable id=\"autopilotbrief\"> <emph>ཡིག་སྣོད་ - ཝི་ཛརཌི་ - ཡིག་གུ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -5930,7 +5420,6 @@ msgstr "<variable id=\"autopilotbrief\"> <emph>ཡིག་སྣོད་ - ཝ
msgctxt ""
"00000401.xhp\n"
"par_id3154758\n"
-"111\n"
"help.text"
msgid "<variable id=\"autopilotbrief1\">Choose <emph>File - Wizards - Letter - Page design</emph></variable>"
msgstr "<variable id=\"autopilotbrief1\"> <emph>ཡིག་སྣོད་ - ཝི་ཛརཌི་ - ཡིག་གུ་ -ཤོག་ལེབ་ ༡་པ །</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -5939,7 +5428,6 @@ msgstr "<variable id=\"autopilotbrief1\"> <emph>ཡིག་སྣོད་ -
msgctxt ""
"00000401.xhp\n"
"par_id3152360\n"
-"112\n"
"help.text"
msgid "<variable id=\"autopilotbrief2\">Choose <emph>File - Wizards - Letter - Letterhead layout</emph></variable>"
msgstr "<variable id=\"autopilotbrief2\">་<emph>ཡིག་སྣོད་ - ཝི་ཛརཌི་ - ཡིག་གུ་ - ཤོག་ལེབ་ ༢་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས་"
@@ -5948,7 +5436,6 @@ msgstr "<variable id=\"autopilotbrief2\">་<emph>ཡིག་སྣོད་ -
msgctxt ""
"00000401.xhp\n"
"par_id3159413\n"
-"113\n"
"help.text"
msgid "<variable id=\"autopilotbrief3\">Choose <emph>File - Wizards - Letter - Printed items</emph></variable>"
msgstr "<variable id=\"autopilotbrief3\"><emph>ཡིག་སྣོད་ - ཝི་ཛརཌི་ - ཡིག་གུ་ - ཤོག་ལེབ་ ༣་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -5957,7 +5444,6 @@ msgstr "<variable id=\"autopilotbrief3\"><emph>ཡིག་སྣོད་ - ཝ
msgctxt ""
"00000401.xhp\n"
"par_id3152771\n"
-"114\n"
"help.text"
msgid "<variable id=\"autopilotbrief4\">Choose <emph>File - Wizards - Letter - Recipient and sender</emph></variable>"
msgstr "<variable id=\"autopilotbrief4\"><emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་ -ཡིག་གུ་ - ཤོག་ལེབ་ ༤་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -5966,7 +5452,6 @@ msgstr "<variable id=\"autopilotbrief4\"><emph>ཡིག་སྣོད་ - ཝ
msgctxt ""
"00000401.xhp\n"
"par_id3153524\n"
-"115\n"
"help.text"
msgid "<variable id=\"autopilotbrief5\">Choose <emph>File - Wizards - Letter - Footer</emph></variable>"
msgstr "<variable id=\"autopilotbrief5\"> <emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་ - ཡིག་གུ་ - ཤོག་ལེབ་ ༥་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -5975,7 +5460,6 @@ msgstr "<variable id=\"autopilotbrief5\"> <emph>ཡིག་སྣོད་ -
msgctxt ""
"00000401.xhp\n"
"par_id3154224\n"
-"116\n"
"help.text"
msgid "<variable id=\"autopilotbrief6\">Choose <emph>File - Wizards - Letter - </emph><emph>Name and Location</emph></variable>"
msgstr "<variable id=\"autopilotbrief6\"><emph>ཡིག་སྣོད་ -ཝི་ཛརཌིསི་ - ཡིག་གུ་- ཤོག་ལེབ་ ༦་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -5984,7 +5468,6 @@ msgstr "<variable id=\"autopilotbrief6\"><emph>ཡིག་སྣོད་ -ཝ
msgctxt ""
"00000401.xhp\n"
"par_id3144760\n"
-"120\n"
"help.text"
msgid "<variable id=\"autopilotfax\">Choose <emph>File - Wizards - Fax</emph></variable>"
msgstr "<variable id=\"autopilotfax\"><emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་ - དཔར་འཕྲིན།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -5993,7 +5476,6 @@ msgstr "<variable id=\"autopilotfax\"><emph>ཡིག་སྣོད་ - ཝི
msgctxt ""
"00000401.xhp\n"
"par_id3147085\n"
-"121\n"
"help.text"
msgid "<variable id=\"autopilotfax1\">Choose <emph>File - Wizards - Fax - Page Design</emph></variable>"
msgstr "<variable id=\"autopilotfax1\"><emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་ - དཔར་འཕྲིན་ - ཤོག་ལེབ་ ༡་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6002,7 +5484,6 @@ msgstr "<variable id=\"autopilotfax1\"><emph>ཡིག་སྣོད་ - ཝ
msgctxt ""
"00000401.xhp\n"
"par_id3151042\n"
-"209\n"
"help.text"
msgid "<variable id=\"autopilotfax2\">Choose <emph>File - Wizards - Fax - Items to include</emph></variable>"
msgstr "<variable id=\"autopilotfax2\"><emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་ - དཔར་འཕྲིན་ - ཤོག་ལེབ་ ༢་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6011,7 +5492,6 @@ msgstr "<variable id=\"autopilotfax2\"><emph>ཡིག་སྣོད་ - ཝ
msgctxt ""
"00000401.xhp\n"
"par_id3154330\n"
-"122\n"
"help.text"
msgid "<variable id=\"autopilotfax3\">Choose <emph>File - Wizards - Fax - Sender and Recipient</emph></variable>"
msgstr "<variable id=\"autopilotfax3\"> <emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་ - དཔར་འཕྲུལ་ - ཤོག་ལེབ་ ༣་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6020,7 +5500,6 @@ msgstr "<variable id=\"autopilotfax3\"> <emph>ཡིག་སྣོད་ - ཝ
msgctxt ""
"00000401.xhp\n"
"par_id3150651\n"
-"123\n"
"help.text"
msgid "<variable id=\"autopilotfax4\">Choose <emph>File - Wizards - Fax - Footer</emph></variable>"
msgstr "<variable id=\"autopilotfax4\"> <emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་ - དཔར་འཕྲུལ་ - ཤོག་ལེབ་ ༤་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6029,7 +5508,6 @@ msgstr "<variable id=\"autopilotfax4\"> <emph>ཡིག་སྣོད་ - ཝ
msgctxt ""
"00000401.xhp\n"
"par_id3154685\n"
-"124\n"
"help.text"
msgid "<variable id=\"autopilotfax5\">Choose <emph>File - Wizards - Fax - Name and location</emph></variable>"
msgstr "<variable id=\"autopilotfax5\"> <emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་ - དཔར་འཕྲུལ་ - ཤོག་ལེབ་ ༥་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6038,7 +5516,6 @@ msgstr "<variable id=\"autopilotfax5\"> <emph>ཡིག་སྣོད་ - ཝ
msgctxt ""
"00000401.xhp\n"
"par_id3153190\n"
-"131\n"
"help.text"
msgid "<variable id=\"autopilotagenda\">Choose <emph>File - Wizards - Agenda</emph></variable>"
msgstr "<variable id=\"autopilotagenda\"> <emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་ - གྲོས་གཞི།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6047,7 +5524,6 @@ msgstr "<variable id=\"autopilotagenda\"> <emph>ཡིག་སྣོད་ -
msgctxt ""
"00000401.xhp\n"
"par_id3155860\n"
-"132\n"
"help.text"
msgid "<variable id=\"autopilotagenda1\">Choose <emph>File - Wizards - Agenda - Page Design</emph></variable>"
msgstr "<variable id=\"autopilotagenda1\"> <emph>ཡིག་སྣོད་ -ཝི་ཛརཌིསི་ - གྲོས་གཞི་ - ཤོག་ལེབ་ ༡་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6056,7 +5532,6 @@ msgstr "<variable id=\"autopilotagenda1\"> <emph>ཡིག་སྣོད་ -
msgctxt ""
"00000401.xhp\n"
"par_id3146906\n"
-"133\n"
"help.text"
msgid "<variable id=\"autopilotagenda2\">Choose <emph>File - Wizards - Agenda - General Attributes</emph></variable>"
msgstr "<variable id=\"autopilotagenda2\"><emph>ཡིག་སྣོད་ -ཝི་ཛརཌིསི་ - གྲོས་གཞི་ - ཤོག་ལེབ་ ༢་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6065,7 +5540,6 @@ msgstr "<variable id=\"autopilotagenda2\"><emph>ཡིག་སྣོད་ -ཝ
msgctxt ""
"00000401.xhp\n"
"par_id3152578\n"
-"134\n"
"help.text"
msgid "<variable id=\"autopilotagenda3\">Choose <emph>File - Wizards - Agenda - Headings</emph></variable>"
msgstr "<variable id=\"autopilotagenda3\"> <emph>ཡིག་སྣོད་ -ཝི་ཛརཌིསི་ - གྲོས་གཞི་ - ཤོག་ལེབ་ ༣་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6074,7 +5548,6 @@ msgstr "<variable id=\"autopilotagenda3\"> <emph>ཡིག་སྣོད་ -
msgctxt ""
"00000401.xhp\n"
"par_id3155368\n"
-"135\n"
"help.text"
msgid "<variable id=\"autopilotagenda4\">Choose <emph>File - Wizards - Agenda - Names</emph></variable>"
msgstr "<variable id=\"autopilotagenda4\"> <emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་ - གྲོས་གཞི་ - ཤོག་ལེབ་ ༤་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6083,7 +5556,6 @@ msgstr "<variable id=\"autopilotagenda4\"> <emph>ཡིག་སྣོད་ -
msgctxt ""
"00000401.xhp\n"
"par_id3146923\n"
-"205\n"
"help.text"
msgid "<variable id=\"autopilotagenda5\">Choose <emph>File - Wizards - Agenda - Topics</emph></variable>"
msgstr "<variable id=\"autopilotagenda5\"> <emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་ - གྲོས་གཞི་ - ཤོག་ལེབ་ ༤་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6092,7 +5564,6 @@ msgstr "<variable id=\"autopilotagenda5\"> <emph>ཡིག་སྣོད་ -
msgctxt ""
"00000401.xhp\n"
"par_id3149066\n"
-"136\n"
"help.text"
msgid "<variable id=\"autopilotagenda6\">Choose <emph>File - Wizards - Agenda - Title and Location</emph></variable>"
msgstr "<variable id=\"autopilotagenda6\"> <emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་ - གྲོས་གཞི་ - ཤོག་ལེབ་ ༦་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6101,7 +5572,6 @@ msgstr "<variable id=\"autopilotagenda6\"> <emph>ཡིག་སྣོད་ -
msgctxt ""
"00000401.xhp\n"
"par_id3149288\n"
-"102\n"
"help.text"
msgid "<variable id=\"dtapt\">Choose <emph>File - Wizards - Presentation</emph></variable>"
msgstr "<variable id=\"dtapt\"> <emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་ - གསལ་སྟོན།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6110,7 +5580,6 @@ msgstr "<variable id=\"dtapt\"> <emph>ཡིག་སྣོད་ - ཝི་ཛ
msgctxt ""
"00000401.xhp\n"
"par_id3146986\n"
-"103\n"
"help.text"
msgid "<variable id=\"dtapse\">Choose <emph>File - Wizards - Presentation - Page 1</emph></variable>"
msgstr "<variable id=\"dtapse\"> <emph>Fileཡིག་སྣོད་ - ཝི་ཛརཌིསི་ - གསལ་སྟོན་ - ཤོག་ལེབ་ ༡་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6119,7 +5588,6 @@ msgstr "<variable id=\"dtapse\"> <emph>Fileཡིག་སྣོད་ - ཝི
msgctxt ""
"00000401.xhp\n"
"par_id3154919\n"
-"104\n"
"help.text"
msgid "<variable id=\"dtapsz\">Choose <emph>File - Wizards - Presentation - Page 2</emph></variable>"
msgstr "<variable id=\"dtapsz\"> <emph>ཡིག་སྣོད་ -ཝི་ཛརཌིསི་ - གསལ་སྟོན་ - ཤོག་ལེབ་ ༢་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6128,7 +5596,6 @@ msgstr "<variable id=\"dtapsz\"> <emph>ཡིག་སྣོད་ -ཝི་ཛ
msgctxt ""
"00000401.xhp\n"
"par_id3151351\n"
-"105\n"
"help.text"
msgid "<variable id=\"dtapsd\">Choose <emph>File - Wizards - Presentation - Page 3</emph></variable>"
msgstr "<variable id=\"dtapsd\"> <emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་- གསལ་སྟོན་ - ཤོག་ལེབ་ ༣་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས་།"
@@ -6137,7 +5604,6 @@ msgstr "<variable id=\"dtapsd\"> <emph>ཡིག་སྣོད་ - ཝི་
msgctxt ""
"00000401.xhp\n"
"par_id3147317\n"
-"106\n"
"help.text"
msgid "<variable id=\"dtapsv\">Choose <emph>File - Wizards - Presentation - Page 4</emph></variable>"
msgstr "<variable id=\"dtapsv\"> <emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་ - གསལ་སྟོན་ - ཤོག་ལེབ་ ༤་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6146,7 +5612,6 @@ msgstr "<variable id=\"dtapsv\"> <emph>ཡིག་སྣོད་ - ཝི་
msgctxt ""
"00000401.xhp\n"
"par_id3145592\n"
-"107\n"
"help.text"
msgid "<variable id=\"dtapsf\">Choose <emph>File - Wizards - Presentation - Page 5</emph></variable>"
msgstr "<variable id=\"dtapsf\"> <emph>ཡིག་སྣོད་ -ཝི་ཛརཌིསི་ - གསལ་སྟོན་ - ཤོག་ལེབ་ ༥་པ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6170,16 +5635,7 @@ msgstr "<variable id=\"autopilotreport\">Click <emph>ཝི་ཛརཌི་འ
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
-"par_idN10C24\n"
-"help.text"
-msgid "<variable id=\"webwizard\">Choose <emph>File - Wizards - Web Page</emph></variable>"
-msgstr "<variable id=\"webwizard\"> <emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་ - ཝེབ་ཀྱི་ཤོག་ལེབ།</emph></variable>གདམ་ཁ་རྐྱབས།"
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
"par_id3154064\n"
-"143\n"
"help.text"
msgid "<variable id=\"gruppen\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame.</variable>"
msgstr "<variable id=\"gruppen\">རྣམ་པའི་བཀོད་བསྒྲིག་ནང་ལུ་ <emph>སྡེ་ཚན་གྱི་སྒྲོམ་</emph>ལག་ཆས་ཕྲ་རིང་གུ་ཡོད་པའི་ངོས་དཔར་འདི་ཨེབ་གཏང་ནི་དང་ གཞི་ཁྲམ་ཅིག་གསར་བསྐྲུན་འབད་ནི་ལུ་ མཱའུསི་ལག་ལེན་འཐབ།</variable>"
@@ -6188,7 +5644,6 @@ msgstr "<variable id=\"gruppen\">རྣམ་པའི་བཀོད་བས
msgctxt ""
"00000401.xhp\n"
"par_id3152807\n"
-"144\n"
"help.text"
msgid "<variable id=\"gruppen1\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 1</variable>"
msgstr "<variable id=\"gruppen1\">རྣམ་པའི་བཀོད་སྒྲིག་ནང་ལུ་ <emph>སྡེ་ཚན་གྱི་སྒྲོམ་</emph>ལག་ཆས་ཕྲ་རིང་གུ་ཡོད་པའི་ངོས་དཔར་ཨེབ་གཏང་ནི་དང་ གཞི་ཁྲམ་ཝི་ཛརཌིསི་ཤོག་ལེབ་ ༡་པ་ ཅིག་གསར་བསྐྲུན་འབད་ནི་ལུ་ མཱའུསི་ལག་ལེན་འཐབ། </variable>"
@@ -6197,7 +5652,6 @@ msgstr "<variable id=\"gruppen1\">རྣམ་པའི་བཀོད་སྒ
msgctxt ""
"00000401.xhp\n"
"par_id3150571\n"
-"148\n"
"help.text"
msgid "<variable id=\"gruppen2\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 2</variable>"
msgstr "<variable id=\"gruppen2\">རྣམ་པའི་བཀོད་སྒྲིག་ནང་ <emph>སྡེ་ཚན་གྱི་སྒྲོམ་</emph>ལག་ཆས་ཕྲ་རིང་གུ་ངོས་པར་གུ་ཨེབ་གཏང་ནི་དང་ གཞི་ཁྲམ་ ཝི་ཛརཌི་ཤོག་ལེབ་ ༢་པ་གསར་བསྐྲུན་འབད་ནིའི་དོན་ལས་ མཱའུསི་ལག་ལེན་འཐབ།</variable>"
@@ -6206,7 +5660,6 @@ msgstr "<variable id=\"gruppen2\">རྣམ་པའི་བཀོད་སྒ
msgctxt ""
"00000401.xhp\n"
"par_id3145251\n"
-"145\n"
"help.text"
msgid "<variable id=\"gruppen3\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 3</variable>"
msgstr "<variable id=\"gruppen3\">རྣམ་པའི་བཀོད་སྒྲིག་ནང་ <emph>སྡེ་ཚན་གྱི་སྒྲོམ་</emph>ལག་ཆས་ཕྲ་རིང་གུ་ངོས་དཔར་ཨེབ་གཏང་ནི་དང་ གཞི་ཁྲམ་ ཝི་ཛརཌིསི་ཤོག་ལེབ་ ༣་པ་གསར་བསྐྲུན་འབད་ནི་ལུ་ མཱའུསི་ལག་ལེན་འཐབ།</variable>"
@@ -6215,7 +5668,6 @@ msgstr "<variable id=\"gruppen3\">རྣམ་པའི་བཀོད་སྒ
msgctxt ""
"00000401.xhp\n"
"par_id3156109\n"
-"146\n"
"help.text"
msgid "<variable id=\"gruppen4\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 4, there must be a database connection.</variable>"
msgstr "<variable id=\"gruppen4\">རྣམ་པའི་བཀོད་སྒྲིག་ནང་ <emph>སྡེ་ཚན་གྱི་སྒྲོམ་</emph>ལག་ཆས་ཕྲ་རིང་གུ་ཡོད་པའི་ངོས་དཔར་ལུ་ཨེབ་གཏང་ནི་དང་ གཞི་ཁྲམ་ཝི་ཛརཌིསི་ཤོག་ལེབ་ ༤་པ་ ཅིག་གསར་བསྐྲུན་འབད་ནི་ལུ་ མཱའུསི་ལག་ལེན་འཐབ་ནི་དང་ དེ་ནང་ གནད་སྡུད་གཞི་རྟེན་མཐུད་ལམ་འོང་དགོ། </variable>"
@@ -6224,7 +5676,6 @@ msgstr "<variable id=\"gruppen4\">རྣམ་པའི་བཀོད་སྒ
msgctxt ""
"00000401.xhp\n"
"par_id3159347\n"
-"147\n"
"help.text"
msgid "<variable id=\"gruppen5\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - last page of Wizards</variable>"
msgstr "<variable id=\"gruppen5\">རྣམ་པའི་བཀོད་སྒྲིག་ནང་<emph>སྡེ་ཚན་གྱི་སྒྲོམ་</emph>ལག་ཆས་ཕྲ་རིང་གུ་ཡོད་མི་ངོས་དཔར་ལུ་ཨེབ་གཏང་ནི་དང་ གཞི་ཁྲམ་ ཝི་ཛརཌིསི་གི་ཤོག་ལེབ་མཇུག་འདི་ གསར་བསྐྲུན་འབད་ནིའི་དོན་ལས་ མཱའུསི་ལག་ལེན་འཐབ།</variable>"
@@ -6233,7 +5684,6 @@ msgstr "<variable id=\"gruppen5\">རྣམ་པའི་བཀོད་སྒ
msgctxt ""
"00000401.xhp\n"
"par_id3153417\n"
-"150\n"
"help.text"
msgid "<variable id=\"autopilotmsimport\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
msgstr "<variable id=\"autopilotmsimport\"> <emph>ཡིག་སྣོད་-ཝི་ཛརཌིསི་ - ཡིག་ཆ་གཞི་བསྒྱུར་འབད་མི། </emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6242,7 +5692,6 @@ msgstr "<variable id=\"autopilotmsimport\"> <emph>ཡིག་སྣོད་-
msgctxt ""
"00000401.xhp\n"
"par_id3150715\n"
-"151\n"
"help.text"
msgid "<variable id=\"autopilotmsimport1\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
msgstr "<variable id=\"autopilotmsimport1\"> <emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་ - ཡིག་ཆ་གཞི་་བསྒྱུར་འབད་མི་</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6251,7 +5700,6 @@ msgstr "<variable id=\"autopilotmsimport1\"> <emph>ཡིག་སྣོད་ -
msgctxt ""
"00000401.xhp\n"
"par_id3154274\n"
-"149\n"
"help.text"
msgid "<variable id=\"autopilotmsimport2\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
msgstr "<variable id=\"autopilotmsimport2\"> <emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་-ཡིག་ཆ་གཞི་བསྒྱུར་འབད་མི།</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -6260,7 +5708,6 @@ msgstr "<variable id=\"autopilotmsimport2\"> <emph>ཡིག་སྣོད་ -
msgctxt ""
"00000401.xhp\n"
"par_id3146912\n"
-"171\n"
"help.text"
msgid "<variable id=\"euro\">Choose <emph>File - Wizards - Euro Converter</emph></variable>"
msgstr "<variable id=\"euro\"><emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་ - ཡུ་རོ་གཞི་བསྒྱུར་པ།</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -6269,7 +5716,6 @@ msgstr "<variable id=\"euro\"><emph>ཡིག་སྣོད་ - ཝི་ཛ
msgctxt ""
"00000401.xhp\n"
"par_id3152962\n"
-"198\n"
"help.text"
msgid "Menu <emph>File - Wizards - Address Data Source</emph>"
msgstr "དཀར་ཆག་ <emph>ཡིག་སྣོད་ - ཝི་ཛརཌིསི་ - གནད་སྡུད་འབྱུང་ཁུངས་ཀྱི་ཁ་བྱང་།</emph>"
@@ -6278,7 +5724,6 @@ msgstr "དཀར་ཆག་ <emph>ཡིག་སྣོད་ - ཝི་ཛ
msgctxt ""
"00000401.xhp\n"
"par_id3145206\n"
-"191\n"
"help.text"
msgid "<variable id=\"addressimport2\"><emph>Address Data Source Wizards</emph> - <emph>Additional settings</emph></variable>"
msgstr "<variable id=\"addressimport2\"><emph>གནད་སྡུད་འབྱུང་ཁུངས་ཝི་ཛརཌིསི་གི་ཁ་བྱང་།</emph> - <emph>གཞི་སྒྲིག་གི་ཁ་སྐོང་ཚུ།</emph></variable>"
@@ -6287,7 +5732,6 @@ msgstr "<variable id=\"addressimport2\"><emph>གནད་སྡུད་འབ
msgctxt ""
"00000401.xhp\n"
"par_id3154756\n"
-"192\n"
"help.text"
msgid "<variable id=\"addressimport3\"><emph>Address Data Source Wizards</emph> - <emph>Select table</emph></variable>"
msgstr "<variable id=\"addressimport3\"><emph>གནད་སྡུད་འབྱུང་ཁུངས་ཝི་ཛརཌིསི་ཁ་བྱང་།</emph> - <emph>ཐིག་ཁྲམ་སེལ་འཐུ་འབད།</emph></variable>"
@@ -6296,7 +5740,6 @@ msgstr "<variable id=\"addressimport3\"><emph>གནད་སྡུད་འབ
msgctxt ""
"00000401.xhp\n"
"par_id3153924\n"
-"193\n"
"help.text"
msgid "<variable id=\"addressimport4\"><emph>Address Data Source Wizards</emph><emph>- Data source title</emph></variable>"
msgstr "<variable id=\"addressimport4\"><emph>གནད་སྡུད་འབྱུང་ཁུངས་ཝི་ཛརཌིསི་གི་ཁ་བྱང་།</emph><emph>- གནད་སྡུད་འབྱུང་ཁུངས་ཀྱི་མགོ་མིང་།</emph></variable>"
@@ -6305,7 +5748,6 @@ msgstr "<variable id=\"addressimport4\"><emph>གནད་སྡུད་འབ
msgctxt ""
"00000401.xhp\n"
"par_id3148995\n"
-"194\n"
"help.text"
msgid "<variable id=\"addressimport5\"><emph>Address Data Source Wizards</emph> - <emph>Field assignment</emph></variable>"
msgstr "<variable id=\"addressimport5\"><emph>གནད་སྡུད་འབྱུང་ཁུངས་ཝི་ཛརཌིསི་གི་ཁ་བྱང་།་</emph> - <emph>ས་སྒོའི་འགན་ལས།</emph></variable>"
@@ -6314,7 +5756,6 @@ msgstr "<variable id=\"addressimport5\"><emph>གནད་སྡུད་འབ
msgctxt ""
"00000401.xhp\n"
"par_id3147338\n"
-"57\n"
"help.text"
msgid "<variable id=\"schliessen\">Choose <emph>File - Close</emph></variable>"
msgstr "<variable id=\"schliessen\"> <emph>ཡིག་སྣོད་ - ཁ་བསྡམས་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -6323,7 +5764,6 @@ msgstr "<variable id=\"schliessen\"> <emph>ཡིག་སྣོད་ - ཁ་
msgctxt ""
"00000401.xhp\n"
"par_id3156717\n"
-"10\n"
"help.text"
msgid "Choose <emph>File - Save</emph>"
msgstr "<emph>ཡིག་སྣོད་ - སྲུང་།</emph>གདམ་ཁ་རྐྱབས།"
@@ -6332,7 +5772,6 @@ msgstr "<emph>ཡིག་སྣོད་ - སྲུང་།</emph>གདམ
msgctxt ""
"00000401.xhp\n"
"par_id3147533\n"
-"84\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཨེསི།"
@@ -6341,7 +5780,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"00000401.xhp\n"
"par_id3148930\n"
-"11\n"
"help.text"
msgid "On Standard or Table Data Bar, click"
msgstr "ཚད་ལྡན་ཡང་ན་ ཐིག་ཁྲམ་གནད་སྡུད་ཕྲ་རིང་གུ་ཨེབ་གཏང་།"
@@ -6358,7 +5796,6 @@ msgstr "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"
msgctxt ""
"00000401.xhp\n"
"par_id3149109\n"
-"12\n"
"help.text"
msgid "Save"
msgstr "སྲུངས་བཞག"
@@ -6383,7 +5820,6 @@ msgstr "དེ་སྦེ་སྲུངས།"
msgctxt ""
"00000401.xhp\n"
"par_id3150300\n"
-"99\n"
"help.text"
msgid "<variable id=\"htmlspeichern\">$[officename] Draw or $[officename] Impress menu <emph>File - Export</emph>, select \"HTML Document\" file type, this dialog opens automatically</variable>"
msgstr "<variable id=\"htmlspeichern\">$[officename] འབྲི་ནི་ཡང་ན་ $[officename] དཀར་ཆག་ཨིམ་པེརེསི་འབད་ <emph>ཡིག་སྣོད་- ཕྱིར་འདྲེན་</emph>, སེལ་འཐུ་འབད་ \"HTML Document\" ཡིག་སྣོད་ཀྱི་དབྱེ་བ་, འ་ནི་ཌའི་ལོག་འདི་རང་བཞིན་གྱིས་ཁ་ཕྱེཝ་ཨིན།</variable>"
@@ -6392,7 +5828,6 @@ msgstr "<variable id=\"htmlspeichern\">$[officename] འབྲི་ནི་ཡ
msgctxt ""
"00000401.xhp\n"
"par_id3153387\n"
-"137\n"
"help.text"
msgid "<variable id=\"htmlspeichern1\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 1 of the wizard</variable>"
msgstr "<variable id=\"htmlspeichern1\">$[officename] Draw/$[officename] དཀར་ཆག་ཨིམ་པེརེསི་<emph> ཡིག་སྣོད་ - ཕྱིར་འདྲེན་</emph>, ཝི་ཛརཌི་ཤོག་ལེབ་ ༡པ་ གི་ ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་སྣོད་དབྱེ་བ་སེལ་འཐུ་འབད། </variable>"
@@ -6401,7 +5836,6 @@ msgstr "<variable id=\"htmlspeichern1\">$[officename] Draw/$[officename] དཀ
msgctxt ""
"00000401.xhp\n"
"par_id3154021\n"
-"138\n"
"help.text"
msgid "<variable id=\"htmlspeichern2\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 2 of the wizard</variable>"
msgstr "<variable id=\"htmlspeichern2\">$[officename] Draw/$[officename] དཀར་ཆག་ཨིམ་པེརེསི་<emph> ཡིག་སྣོད་ - ཕྱིར་འདྲེན་འབད་</emph>, ཝི་ཛརཌི་ཤོག་ལེབ་ ༢་པ་གི་ ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་སྣོད་དབྱེ་བ་སེལ་འཐུ་འབད། </variable>"
@@ -6410,7 +5844,6 @@ msgstr "<variable id=\"htmlspeichern2\">$[officename] Draw/$[officename] དཀ
msgctxt ""
"00000401.xhp\n"
"par_id3147246\n"
-"159\n"
"help.text"
msgid "<variable id=\"htmlspeichern3\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 3 of the wizard</variable>"
msgstr "<variable id=\"htmlspeichern3\">$[officename] Draw/$[officename] དཀར་ཆག་ཨིམ་པེརེསི་<emph> ཡིག་སྣོད་ - ཕྱིར་འདྲེན་</emph>, ཝི་ཛརཌི་་ཤོག་ལེབ་ ༣་པ གི་ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་སྣོད་དབྱེ་བ་འདི་ སེལ་འཐུ་འབད། </variable>"
@@ -6419,7 +5852,6 @@ msgstr "<variable id=\"htmlspeichern3\">$[officename] Draw/$[officename] དཀ
msgctxt ""
"00000401.xhp\n"
"par_id3145131\n"
-"140\n"
"help.text"
msgid "<variable id=\"htmlspeichern4\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 4 of the wizard</variable>"
msgstr "<variable id=\"htmlspeichern4\">$[officename] Draw/$[officename] Iདཀར་ཆག་ཨིམ་པེརེསི་<emph> ཡིག་སྣོད་ - ཕྱིར་འདྲེན་འབད་</emph>, ཝི་ཛརཌི་ཤོག་ལེབ་ ༤་པ་གི་ ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་སྣོད་དབྱེ་བ་འདི་ སེལ་འཐུ་འབད། </variable>"
@@ -6428,7 +5860,6 @@ msgstr "<variable id=\"htmlspeichern4\">$[officename] Draw/$[officename] Iདཀ
msgctxt ""
"00000401.xhp\n"
"par_id3150235\n"
-"141\n"
"help.text"
msgid "<variable id=\"htmlspeichern5\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 5 of the wizard</variable>"
msgstr "<variable id=\"htmlspeichern5\">$[officename] Draw/$[officename] དཀར་ཆག་ཨིམ་པེརེསི་<emph> ཡིག་སྣོད་ - ཕྱིར་འདྲེན་འབད་</emph>, ཝི་ཛརཌི་ཤོག་ལེབ་ ༥་པགི་ ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་སྣོད་དབྱེ་བ་འདི་ སེལ་འཐུ་འབད། </variable>"
@@ -6437,7 +5868,6 @@ msgstr "<variable id=\"htmlspeichern5\">$[officename] Draw/$[officename] དཀ
msgctxt ""
"00000401.xhp\n"
"par_id3145762\n"
-"142\n"
"help.text"
msgid "<variable id=\"htmlspeichern6\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 6 of the wizard</variable>"
msgstr "<variable id=\"htmlspeichern6\">$[officename] Draw/$[officename] དཀར་ཆག་ཨིམ་པེརེསི་<emph> ཡིག་སྣོད་ - ཕཡིར་འདྲེན་</emph>, ཝི་ཛརཌི་ཤོག་ལེབ་ ༦ པ་ གི་ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་སྣོད་དབྱེ་བ་འདི་ སེལ་འཐུ་འབད། </variable>"
@@ -6454,7 +5884,6 @@ msgstr "<variable id=\"bmpexport\"> <emph>ཡིག་སྣོད་ - ཕྱ
msgctxt ""
"00000401.xhp\n"
"par_id3154901\n"
-"58\n"
"help.text"
msgid "<variable id=\"saveall\">Choose <emph>File - Save All</emph></variable>"
msgstr "<variable id=\"saveall\"> <emph>ཡིག་སྣོད་ - ཆ་མཉམ་སྲུང་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -6463,7 +5892,6 @@ msgstr "<variable id=\"saveall\"> <emph>ཡིག་སྣོད་ - ཆ་མ
msgctxt ""
"00000401.xhp\n"
"par_id3152479\n"
-"59\n"
"help.text"
msgid "<variable id=\"saveas\">Choose <emph>File - Save As</emph></variable>"
msgstr "<variable id=\"saveas\"> <emph>ཡིག་སྣོད་ - དེ་སྦེ་སྲུངས་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -6472,7 +5900,6 @@ msgstr "<variable id=\"saveas\"> <emph>ཡིག་སྣོད་ - དེ་
msgctxt ""
"00000401.xhp\n"
"par_id3148392\n"
-"60\n"
"help.text"
msgid "Choose <emph>File - Reload</emph>"
msgstr "<emph>ཡིག་སྣོད་ - ཡང་བསྐྱར་མངོན་གསལ་འབད།</emph>གདམ་ཁ་རྐྱབས།"
@@ -6481,7 +5908,6 @@ msgstr "<emph>ཡིག་སྣོད་ - ཡང་བསྐྱར་མངོ
msgctxt ""
"00000401.xhp\n"
"par_id3166425\n"
-"61\n"
"help.text"
msgid "<variable id=\"info1\">Choose <emph>File - Properties</emph></variable>"
msgstr "<variable id=\"info1\"> <emph>ཡིག་སྣོད་ - རྒྱུ་དངོས་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -6490,7 +5916,6 @@ msgstr "<variable id=\"info1\"> <emph>ཡིག་སྣོད་ - རྒྱུ
msgctxt ""
"00000401.xhp\n"
"par_id3150381\n"
-"62\n"
"help.text"
msgid "<variable id=\"info2\">Choose <emph>File - Properties - General</emph> tab</variable>"
msgstr "<variable id=\"info2\"> <emph>ཡིག་སྣོད་ - རྒྱུ་དངོས་ - སྤྱར་གཏང་</emph> ཨེབ་ལྡེ། </variable>གདམ་ཁ་རྐྱབས།"
@@ -6500,8 +5925,8 @@ msgctxt ""
"00000401.xhp\n"
"par_idN11163\n"
"help.text"
-msgid "Choose <emph>File - Digital Signatures</emph>"
-msgstr "<emph>ཡིག་སྣོད་ - ཌི་ཇི་ཊཱལ་མིང་རྟགས་ </emph>གདམ་ཁ་རྐྱབས།"
+msgid "Choose <emph>File - Digital Signatures - Digital Signatures</emph>"
+msgstr ""
#: 00000401.xhp
msgctxt ""
@@ -6539,7 +5964,6 @@ msgstr "<variable id=\"digitalsigsel\"> <emph>ཡིག་སྣོད་ - ར
msgctxt ""
"00000401.xhp\n"
"par_id3150662\n"
-"63\n"
"help.text"
msgid "<variable id=\"info3\">Choose <emph>File - Properties - Description</emph> tab</variable>"
msgstr "<variable id=\"info3\"> <emph>ཡིག་སྣོད་ - རྒྱུ་དངོས་ -འགྲེལ་བཤད་ཚུ་</emph> ཨེབ་ལྡེ་ </variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6548,7 +5972,6 @@ msgstr "<variable id=\"info3\"> <emph>ཡིག་སྣོད་ - རྒྱུ
msgctxt ""
"00000401.xhp\n"
"par_id3153792\n"
-"64\n"
"help.text"
msgid "<variable id=\"info4\">Choose <emph>File - Properties - Custom Properties</emph> tab</variable>"
msgstr "<variable id=\"info3\"> <emph>ཡིག་སྣོད་ - རྒྱུ་དངོས་ -འགྲེལ་བཤད་ཚུ་</emph> ཨེབ་ལྡེ་ </variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6557,7 +5980,6 @@ msgstr "<variable id=\"info3\"> <emph>ཡིག་སྣོད་ - རྒྱུ
msgctxt ""
"00000401.xhp\n"
"par_id3153701\n"
-"65\n"
"help.text"
msgid "<variable id=\"info5\">Choose <emph>File - Properties - Statistics</emph> tab</variable>"
msgstr "<variable id=\"info5\"> <emph>ཡིག་སྣོད་ - རྒྱུ་དངོས་ - ཚད་རྩིས་</emph> ཨེབ་ལྡེ། </variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6574,30 +5996,25 @@ msgstr "<variable id=\"info2\"> <emph>ཡིག་སྣོད་ - རྒྱུ
msgctxt ""
"00000401.xhp\n"
"par_id3149570\n"
-"66\n"
"help.text"
msgid "<variable id=\"info6\">Choose <emph>File - Properties - Internet</emph> tab</variable>"
msgstr "<variable id=\"info6\"> <emph>ཡིག་སྣོད་ -རྒྱུ་དངོས་ - ཨིན་ཊར་ནེཊི་</emph> ཨེབ་ལྡེ། </variable>ཚུ་གདམ་ཁ་རྐྱབས།"
#: 00000401.xhp
-#, fuzzy
msgctxt ""
"00000401.xhp\n"
"par_id3150382\n"
-"62\n"
"help.text"
msgid "<variable id=\"info7\">Choose <emph>File - Properties - Font</emph> tab</variable>"
-msgstr "<variable id=\"info6\"> <emph>ཡིག་སྣོད་ -རྒྱུ་དངོས་ - ཨིན་ཊར་ནེཊི་</emph> ཨེབ་ལྡེ། </variable>ཚུ་གདམ་ཁ་རྐྱབས།"
+msgstr ""
#: 00000401.xhp
-#, fuzzy
msgctxt ""
"00000401.xhp\n"
"par_id3154930\n"
-"69\n"
"help.text"
msgid "Menu<emph> File - Print Preview</emph>"
-msgstr "དཀར་ཆག་<emph> ཡིག་སྣོད་ -ཤོག་ལེབ་སྔོན་ལྟ།</emph>"
+msgstr ""
#: 00000401.xhp
msgctxt ""
@@ -6619,7 +6036,6 @@ msgstr ""
msgctxt ""
"00000401.xhp\n"
"par_id3163722\n"
-"70\n"
"help.text"
msgid "Choose <emph>File - Printer Settings</emph>"
msgstr "<emph>ཡིག་སྣོད་ - དཔར་འཕྲུལ་སྒྲིག་སྟངས་ཚུ་</emph>གདམ་ཁ་རྐྱབས།"
@@ -6628,20 +6044,17 @@ msgstr "<emph>ཡིག་སྣོད་ - དཔར་འཕྲུལ་སྒ
msgctxt ""
"00000401.xhp\n"
"par_id3155529\n"
-"17\n"
"help.text"
msgid "<variable id=\"senden\">Menu<emph> File - Send</emph></variable>"
msgstr "<variable id=\"senden\">དཀར་ཆག་<emph> ཡིག་སྣོད་ - གཏང་</emph></variable>"
#: 00000401.xhp
-#, fuzzy
msgctxt ""
"00000401.xhp\n"
"par_id3145386\n"
-"18\n"
"help.text"
msgid "Choose <emph>File - Send - E-mail Document</emph>"
-msgstr "ཡིག་སྣོད་གཏང་་གློག་འཕྲིན་པི་ཌི་ཨེཕ་སྦེ <emph>གདམ།</emph>"
+msgstr ""
#: 00000401.xhp
msgctxt ""
@@ -6663,7 +6076,6 @@ msgstr ""
msgctxt ""
"00000401.xhp\n"
"par_id3145269\n"
-"222\n"
"help.text"
msgid "<variable id=\"export\">Choose <emph>File - Export</emph></variable>"
msgstr "<variable id=\"export\"> <emph>ཡིག་སྣོད་ - ཕྱིར་འདྲེན་འབད།</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -6672,7 +6084,6 @@ msgstr "<variable id=\"export\"> <emph>ཡིག་སྣོད་ - ཕྱི
msgctxt ""
"00000401.xhp\n"
"par_id3166421\n"
-"219\n"
"help.text"
msgid "Choose <emph>File - Export as PDF</emph>"
msgstr "<emph>ཡིག་སྣོད་འདི་ པི་ཌི་ཨེཕ་སྦེ་ཕྱིར་འདྲེན་འབད།</emph>གདམ་ཁ་རྐྱབས།"
@@ -6689,7 +6100,6 @@ msgstr "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\
msgctxt ""
"00000401.xhp\n"
"par_id3155763\n"
-"220\n"
"help.text"
msgid "Export Directly as PDF"
msgstr "ཐད་ཀར་དུ་པི་ཌི་ཨེཕ་སྦེ་ཕྱིར་འདྲེན་འབད།"
@@ -6698,7 +6108,6 @@ msgstr "ཐད་ཀར་དུ་པི་ཌི་ཨེཕ་སྦེ་ཕ
msgctxt ""
"00000401.xhp\n"
"par_id3145410\n"
-"210\n"
"help.text"
msgid "Choose <emph>File - Send - E-mail as PDF</emph>"
msgstr "ཡིག་སྣོད་གཏང་་གློག་འཕྲིན་པི་ཌི་ཨེཕ་སྦེ <emph>གདམ།</emph>"
@@ -6707,7 +6116,6 @@ msgstr "ཡིག་སྣོད་གཏང་་གློག་འཕྲིན
msgctxt ""
"00000401.xhp\n"
"par_id3159160\n"
-"74\n"
"help.text"
msgid "<variable id=\"glo\">Choose <emph>File - Send - Create Master Document</emph></variable>"
msgstr "<variable id=\"glo\"> <emph>ཡིག་སྣོད་ - གཏང་ - ཡིག་ཆའི་ཨམ་འདི་གསར་བསྐྲུན་འབད།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6716,7 +6124,6 @@ msgstr "<variable id=\"glo\"> <emph>ཡིག་སྣོད་ - གཏང་ -
msgctxt ""
"00000401.xhp\n"
"par_id3149951\n"
-"13\n"
"help.text"
msgid "Choose <emph>File - Print</emph>"
msgstr "<emph>ཡིག་སྣོད་ - དཔར་བསྐྲུན་འབད།</emph>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6725,7 +6132,6 @@ msgstr "<emph>ཡིག་སྣོད་ - དཔར་བསྐྲུན་འ
msgctxt ""
"00000401.xhp\n"
"par_id3155259\n"
-"85\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+པི།"
@@ -6734,7 +6140,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"00000401.xhp\n"
"par_id3153830\n"
-"3\n"
"help.text"
msgid "On Standard Bar, click"
msgstr "ཚད་ལྡན་ཕྲ་རིང་གུ་ཨེབ་གཏང་།"
@@ -6751,20 +6156,17 @@ msgstr "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"
msgctxt ""
"00000401.xhp\n"
"par_id3151268\n"
-"4\n"
"help.text"
msgid "Print File Directly"
msgstr "ཡིག་སྣོད་འདི་ཐད་ཀར་དུ་དཔར་བསྐྲུན་འབད།"
#: 00000401.xhp
-#, fuzzy
msgctxt ""
"00000401.xhp\n"
"par_id3153581\n"
-"5\n"
"help.text"
msgid "On the <emph>Print Preview</emph><emph>Bar</emph> of a text document, click"
-msgstr "ཚིག་ཡིག་ཡིག་ཆ་ ་<emph>Page View</emph><emph>Bar</emph>གུ་ཨེབ་གཏང་།"
+msgstr ""
#: 00000401.xhp
msgctxt ""
@@ -6778,7 +6180,6 @@ msgstr "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"
msgctxt ""
"00000401.xhp\n"
"par_id3151239\n"
-"6\n"
"help.text"
msgid "Print Page Preview"
msgstr "དཔར་བསྐྲུན་ཤོག་ལེབ་སྔོན་ལྟ།"
@@ -6787,7 +6188,6 @@ msgstr "དཔར་བསྐྲུན་ཤོག་ལེབ་སྔོན་
msgctxt ""
"00000401.xhp\n"
"par_id3155869\n"
-"72\n"
"help.text"
msgid "Choose <emph>File - Exit</emph>"
msgstr "གདམ་ཁ་རྐྱབས་ <emph>ཡིག་སྣོད་ - ཕཡིར་ཐོན།</emph>"
@@ -6796,7 +6196,6 @@ msgstr "གདམ་ཁ་རྐྱབས་ <emph>ཡིག་སྣོད་ -
msgctxt ""
"00000401.xhp\n"
"par_id3152382\n"
-"86\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>ཀིའུ།"
@@ -6805,7 +6204,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"00000401.xhp\n"
"par_id3149328\n"
-"75\n"
"help.text"
msgid "<variable id=\"neuglobal\">Choose <emph>File - New - Master Document</emph></variable>"
msgstr "<variable id=\"neuglobal\"> <emph>ཡིག་སྣོད་ - གསརཔ་ - ཡིག་ཆའི་ཨམ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -6814,7 +6212,6 @@ msgstr "<variable id=\"neuglobal\"> <emph>ཡིག་སྣོད་ - གས
msgctxt ""
"00000401.xhp\n"
"par_id3145827\n"
-"76\n"
"help.text"
msgid "Choose <emph>File - Open</emph> - select under \"File type\": \"Text CSV\""
msgstr ""
@@ -6831,7 +6228,6 @@ msgstr ""
msgctxt ""
"00000401.xhp\n"
"par_id3148608\n"
-"81\n"
"help.text"
msgid "<variable id=\"epsexport\">Choose <emph>File - Export</emph>, if EPS is selected as file type, this dialog opens automatically</variable>"
msgstr "<variable id=\"epsexport\"><emph>ཡིག་སྣོད་ - ཕྱིར་འདྲེན་</emph>གདམ་ཁ་རྐྱབས། ཨི་པི་ཨེསི་འདི་ཡིག་སྣོད་ཀྱི་དབྱེ་བ་སྦེ་སེལ་འཐུ་འབད་བ་ཅིན་ འ་ནི་ཌའི་ལོག་འདི་རང་བཞིན་གྱིས་ཁ་ཕྱེཝ་ཨིན།</variable>"
@@ -6840,7 +6236,6 @@ msgstr "<variable id=\"epsexport\"><emph>ཡིག་སྣོད་ - ཕྱི
msgctxt ""
"00000401.xhp\n"
"par_id3150107\n"
-"87\n"
"help.text"
msgid "<variable id=\"pbmppmpgm\">Choose <emph>File - Export</emph>, if PBM, PPM or PGM is selected as file type, the dialog opens automatically</variable>"
msgstr "<variable id=\"pbmppmpgm\"> <emph>ཡིག་སྣོད་ - ཕྱིར་འདྲེན་</emph>གདམ་ཁ་རྐྱབས། པི་བི་ཨེམ་ པི་པི་ཨེམ་ཡང་ན་ པི་ཇི་ཨེམ་ འདི་ཡིག་སྣོད་ཀྱི་དབྱེ་བ་སྦེ་སེལ་འཐུ་འབད་ཡོད་པ་ཅིན་ ཌའི་ལོག་འདི་རང་བཞིན་གྱིས་ཁ་ཕྱེཝ་ཨིན།</variable>"
@@ -6849,7 +6244,6 @@ msgstr "<variable id=\"pbmppmpgm\"> <emph>ཡིག་སྣོད་ - ཕྱ
msgctxt ""
"00000401.xhp\n"
"par_id3145305\n"
-"96\n"
"help.text"
msgid "<variable id=\"versionen\"><variable id=\"autopilotberichtfeldauswahl\">Choose <emph>File - Versions</emph></variable></variable>"
msgstr "<variable id=\"versionen\"><variable id=\"autopilotberichtfeldauswahl\"> <emph>ཡིག་སྣོད་ - ཐོན་རིམ་ཚུ།</emph></variable></variable>གདམ་ཁ་རྐྱབས།"
@@ -6866,7 +6260,6 @@ msgstr "དཀར་ཆག་འདི་ཞུན་དག་འབད།"
msgctxt ""
"00000402.xhp\n"
"hd_id3147273\n"
-"1\n"
"help.text"
msgid "Edit Menu"
msgstr "དཀར་ཆག་འདི་ཞུན་དག་འབད།"
@@ -6875,7 +6268,6 @@ msgstr "དཀར་ཆག་འདི་ཞུན་དག་འབད།"
msgctxt ""
"00000402.xhp\n"
"par_id3085157\n"
-"2\n"
"help.text"
msgid "Choose <emph>Edit - Undo</emph>"
msgstr "<emph>ཞིན་དག་འབད་ - འབད་བཤོལ།</emph>གདམ་ཁ་རྐྱབས།"
@@ -6884,7 +6276,6 @@ msgstr "<emph>ཞིན་དག་འབད་ - འབད་བཤོལ།</e
msgctxt ""
"00000402.xhp\n"
"par_id3145160\n"
-"564\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརད་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཛེཌ།"
@@ -6893,7 +6284,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརད་བ
msgctxt ""
"00000402.xhp\n"
"par_id3154094\n"
-"3\n"
"help.text"
msgid "On the <emph>Standard</emph> Bar or Table Data bar, click"
msgstr "<emph>Standard</emph>ཕར་རིང་ཡང་ན་ ཐིག་ཁྲམ་གནད་སྡུད་ཕྲ་རིང་གུ་ཨེབ་གཏང་།"
@@ -6910,7 +6300,6 @@ msgstr "<image id=\"img_id3155542\" src=\"cmd/sc_alignup.png\" width=\"0.222inch
msgctxt ""
"00000402.xhp\n"
"par_id3148563\n"
-"4\n"
"help.text"
msgid "Undo"
msgstr "འབད་བཤོལ།"
@@ -6919,7 +6308,6 @@ msgstr "འབད་བཤོལ།"
msgctxt ""
"00000402.xhp\n"
"par_id3145068\n"
-"5\n"
"help.text"
msgid "Choose <emph>Edit - Redo</emph>"
msgstr "<emph>ཞུན་དག་འབད་ - ལོག་འབད།</emph>གདམ་ཁ་རྐྱབས།"
@@ -6928,7 +6316,6 @@ msgstr "<emph>ཞུན་དག་འབད་ - ལོག་འབད།</emph
msgctxt ""
"00000402.xhp\n"
"par_id3153897\n"
-"6\n"
"help.text"
msgid "On the <emph>Standard</emph> Bar, click"
msgstr "<emph>ཚད་ལྡན་</emph> ཕྲ་རིང་གུ་ཨེབ་གཏང་།"
@@ -6945,7 +6332,6 @@ msgstr "<image id=\"img_id3156318\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\
msgctxt ""
"00000402.xhp\n"
"par_id3151211\n"
-"7\n"
"help.text"
msgid "Redo"
msgstr "ལོག་འབད།"
@@ -6954,7 +6340,6 @@ msgstr "ལོག་འབད།"
msgctxt ""
"00000402.xhp\n"
"par_id3154365\n"
-"8\n"
"help.text"
msgid "<variable id=\"letzter\">Choose <emph>Edit - Repeat</emph></variable>"
msgstr "<variable id=\"letzter\"> <emph>ཞུན་དག་འབད་ - ཡང་བསྐྱར་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -6963,7 +6348,6 @@ msgstr "<variable id=\"letzter\"> <emph>ཞུན་དག་འབད་ - ཡ
msgctxt ""
"00000402.xhp\n"
"par_id3149765\n"
-"9\n"
"help.text"
msgid "Choose <emph>Edit - Cut</emph>"
msgstr "<emph>ཞུན་དག་འབད་ - བཏོག་</emph>གདམ་ཁ་རྐྱབས།"
@@ -6972,7 +6356,6 @@ msgstr "<emph>ཞུན་དག་འབད་ - བཏོག་</emph>གད
msgctxt ""
"00000402.xhp\n"
"par_id3144762\n"
-"565\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཨེགསི།"
@@ -6981,13 +6364,11 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"00000402.xhp\n"
"par_id3148744\n"
-"10\n"
"help.text"
msgid "On the <emph>Standard</emph> Bar, click"
msgstr "<emph>ཚད་ལྡན་</emph> ཕྲ་རིང་གུ་ཨེབ་གཏང་།"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3145173\n"
@@ -6999,7 +6380,6 @@ msgstr "<image id=\"img_id3152427\" src=\"cmd/sc_color.png\" width=\"0.222inch\"
msgctxt ""
"00000402.xhp\n"
"par_id3154153\n"
-"11\n"
"help.text"
msgid "Cut"
msgstr "བཏོག"
@@ -7008,7 +6388,6 @@ msgstr "བཏོག"
msgctxt ""
"00000402.xhp\n"
"par_id3150742\n"
-"12\n"
"help.text"
msgid "Choose <emph>Edit - Copy</emph>"
msgstr "<emph>ཞུན་དག་འབད་ - འདྲ་བཤུས།</emph>གདམ་ཁ་རྐྱབས།"
@@ -7017,7 +6396,6 @@ msgstr "<emph>ཞུན་དག་འབད་ - འདྲ་བཤུས།</e
msgctxt ""
"00000402.xhp\n"
"par_id3148923\n"
-"566\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+སི།"
@@ -7026,7 +6404,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"00000402.xhp\n"
"par_id3159254\n"
-"13\n"
"help.text"
msgid "On the <emph>Standard</emph> Bar, click"
msgstr "<emph>ཚད་ལྡན་</emph> ཕྲ་རིང་གུ་ཨེབ་གཏང་།"
@@ -7043,7 +6420,6 @@ msgstr "<image id=\"img_id3152427\" src=\"cmd/sc_color.png\" width=\"0.222inch\"
msgctxt ""
"00000402.xhp\n"
"par_id3150685\n"
-"14\n"
"help.text"
msgid "Copy"
msgstr "འདྲ་བཤུས།"
@@ -7052,7 +6428,6 @@ msgstr "འདྲ་བཤུས།"
msgctxt ""
"00000402.xhp\n"
"par_id3159153\n"
-"15\n"
"help.text"
msgid "Choose <emph>Edit - Paste</emph>"
msgstr "<emph>ཞུན་དག་འབད་ - སྦྱར།</emph>གདམ་ཁ་རྐྱབས།"
@@ -7061,7 +6436,6 @@ msgstr "<emph>ཞུན་དག་འབད་ - སྦྱར།</emph>གད
msgctxt ""
"00000402.xhp\n"
"par_id3155860\n"
-"567\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཝི།"
@@ -7070,7 +6444,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"00000402.xhp\n"
"par_id3159083\n"
-"16\n"
"help.text"
msgid "On the <emph>Standard</emph> Bar, click"
msgstr "<emph>ཚད་ལྡན་</emph> ཕྲ་རིང་གུ་ཨེབ་གཏང་།"
@@ -7087,7 +6460,6 @@ msgstr "<image id=\"img_id3149716\" src=\"cmd/sc_color.png\" width=\"0.222inch\"
msgctxt ""
"00000402.xhp\n"
"par_id3154471\n"
-"17\n"
"help.text"
msgid "Paste"
msgstr "སྦྱར།"
@@ -7096,7 +6468,6 @@ msgstr "སྦྱར།"
msgctxt ""
"00000402.xhp\n"
"par_id3152791\n"
-"532\n"
"help.text"
msgid "<variable id=\"inhalte\">Choose <emph>Edit - Paste Special</emph></variable>"
msgstr "<variable id=\"inhalte\"> <emph>ཞུན་དག་འབད་ - དམིགས་བསལ་གྱིས་སྦྱར།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -7105,7 +6476,6 @@ msgstr "<variable id=\"inhalte\"> <emph>ཞུན་དག་འབད་ - ད
msgctxt ""
"00000402.xhp\n"
"par_id3148555\n"
-"533\n"
"help.text"
msgid "Choose <emph>Edit - Select All</emph>"
msgstr "<emph>ཞུན་དག་འབད་ - ཆ་མཉམ་སེལ་འཐུ་འབད།</emph>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -7114,7 +6484,6 @@ msgstr "<emph>ཞུན་དག་འབད་ - ཆ་མཉམ་སེལ་
msgctxt ""
"00000402.xhp\n"
"par_id3152417\n"
-"568\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཨེ།"
@@ -7131,56 +6500,46 @@ msgstr "<image id=\"img_id3156305\" src=\"cmd/sc_insobjctrl.png\" width=\"0.222i
msgctxt ""
"00000402.xhp\n"
"par_id3153139\n"
-"575\n"
"help.text"
msgid "Select All"
msgstr "ཆ་མཉམ་སེལ་འཐུ་འབད།"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3145251\n"
-"555\n"
"help.text"
msgid "<variable id=\"aenderungen\">Choose <emph>Edit - Track Changes</emph></variable>"
-msgstr "<variable id=\"aenderungen\"> <emph>ཞུན་དག་འབད་ - བསྒྱུར་བཅས་ཚུ།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
+msgstr ""
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3153336\n"
-"556\n"
"help.text"
msgid "<variable id=\"aufzeichnen\">Choose <emph>Edit - Track Changes - Record Changes</emph></variable>"
-msgstr "<variable id=\"aufzeichnen\"> <emph>ཞུན་དག་འབད་ - བསྒྱུར་བཅས་ཚུ་ -ཐོ་བཀོད་།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
+msgstr ""
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3150594\n"
-"557\n"
"help.text"
msgid "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Edit - Track Changes - Show Changes</emph></caseinline><caseinline select=\"CALC\">Choose <emph>Edit - Track Changes - Show Changes</emph></caseinline></switchinline></variable>"
-msgstr "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">གདམ་ཁ་རྐྱབས་ <emph>ཞུན་དག་འབད་ - བསྒྱུར་བཅས་ཚུ་ - སྟོན་</emph></caseinline><caseinline select=\"CALC\">དགམ་ཁ་རྐྱབས་ <emph>ཞུན་དག་འབད་ - བསྒྱུར་བཅས་ཚུ་ - སྟོན་</emph></caseinline></switchinline></variable>"
+msgstr ""
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3153845\n"
-"558\n"
"help.text"
msgid "<variable id=\"rotlinie\">Choose <emph>Edit - Track Changes - Manage Changes</emph></variable>"
-msgstr "<variable id=\"rotlinie\"> <emph>ཞུན་དག་འབད་ - བསྒྱུར་བཅས་ཚུ་ - དང་ལེན་འབད་ནི་དང་དང་ལེན་སྤང་།</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
+msgstr ""
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
"par_id3148587\n"
-"559\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Manage Changes - List</emph> tab"
msgstr ""
@@ -7189,61 +6548,51 @@ msgstr ""
msgctxt ""
"00000402.xhp\n"
"par_id3150396\n"
-"574\n"
"help.text"
msgid "Choose <emph>Format - AutoCorrect - Apply and Edit Changes.</emph> AutoCorrect dialog appears, click <emph>Edit Changes</emph> button, see <emph>List</emph> tab page"
msgstr "<emph>རྩ་སྒྲིག་-རང་བཞིན་གྱི་རྩ་སྒྲིག་ - འཇུག་སྤྱོད་འབད་ནི་དང་བསྒྱུར་བཅས་ཚུ་ཞུན་དག་ཚུ་གདམ་ཁ་རྐྱབས། </emph> རང་བཞིན་རྩ་སྒྲིག་ཌའི་ལོག་འབྱུངམ་ཨིན་ ཨེབ་གཏང་ <emph>བསྒྱུར་བཅས་ཞུན་དག་</emph> ཨེབ་རྟ་, ལྟ་ <emph>ཐོ་བཀོད་</emph> ཨེབ་ལྡེ་གི་ཤོག་ལེབ་གུ་ཨེབ་གཏང་།"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3153878\n"
-"560\n"
"help.text"
msgid "<variable id=\"rotliniefilter\">Choose <emph>Edit - Track Changes - Manage Changes - Filter</emph> tab </variable>"
-msgstr "<variable id=\"rotliniefilter\"> <emph>ཞུན་དག་འབད་ - བསྒྱུར་བཅས་ཚུ་ - དང་ལེན་འབད་ནི་དང་དང་ལེན་སྤང་ནི་ - ཚགས་མ་</emph> ཨེབ་ལྡེ་ </variable>གདམ་ཁ་རྐྱབས།"
+msgstr ""
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3151281\n"
-"561\n"
"help.text"
msgid "<variable id=\"einfuegen\">Choose <emph>Edit - Track Changes - Merge Document</emph></variable>"
-msgstr "<variable id=\"einfuegen\"> <emph>ཞུན་དག་འབད་ - བསྒྱུར་བཅས་ཚུ་ - མཉམ་བསྡོམས་འབད་བའི་ཡིག་ཆ།</emph></variable>གདམ་ཁ་རྐྱབས།"
+msgstr ""
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
"par_id3153224\n"
-"562\n"
"help.text"
-msgid "<variable id=\"dvergl\">Choose <emph>Edit - Compare Document</emph></variable>"
-msgstr "<variable id=\"dvergl\"> <emph>ཞུན་དག་འབད་ - ཡིག་ཆ་འདི་ག་བསྡུར་རྐྱབས།</emph></variable>གདམ་ཁ་རྐྱབས།"
+msgid "<variable id=\"dvergl\">Choose <emph>Edit - Track Changes - Compare Document</emph></variable>"
+msgstr ""
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
"par_id3148773\n"
-"563\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Comment on Change</emph>"
msgstr ""
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3149488\n"
-"571\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Manage Changes - List</emph> tab. Click an entry in the list and open the context menu. Choose <emph>Edit Comment</emph>"
-msgstr "<emph>ཞུན་དག་འབད་ - བསྒྱུར་བཅས་ཚུ་ - དང་ལེན་འབད་ནི་དང་དང་ལེན་སྤང་ནི་ - ཐོ་བཀོད་</emph> ཨེབ་ལྡེ་ཚུ་གདམ་ཁ་རྐྱབས། ཐོ་ཡིག་ནང་ཡོད་མི་ ཐོ་བཀོད་འདི་ཨེབ་གཏང་བཞིནམ་ལས་ སྐབས་དོན་གྱི་དཀར་ཆག་འདི་ཁ་ཕྱེ། <emph>བསམ་བཀོད་འདི་ཞུན་དག་འབད།</emph>གདམ་ཁ་རྐྱབས།"
+msgstr ""
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id31562971\n"
@@ -7252,7 +6601,6 @@ msgid "Choose <emph>Edit - Find</emph>"
msgstr "<emph>ཞིན་དག་འབད་ - འབད་བཤོལ།</emph>གདམ་ཁ་རྐྱབས།"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id31545031\n"
@@ -7264,7 +6612,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"00000402.xhp\n"
"par_id3156297\n"
-"49\n"
"help.text"
msgid "Choose <emph>Edit - Find & Replace</emph>"
msgstr "་ <emph>ཞུན་དག་འབད་ - འཚོལ་བཞིནམ་ལས་ཚབ་བཙུགས།</emph>གདམ་ཁ་རྐྱབས།"
@@ -7273,7 +6620,6 @@ msgstr "་ <emph>ཞུན་དག་འབད་ - འཚོལ་བཞི
msgctxt ""
"00000402.xhp\n"
"par_id3154503\n"
-"569\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+H"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརད་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཛེཌ།"
@@ -7282,7 +6628,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརད་བ
msgctxt ""
"00000402.xhp\n"
"par_id3155083\n"
-"456\n"
"help.text"
msgid "On Standard bar, click"
msgstr "ཚད་ལྡན་གྱི་ཕྲ་རིང་གུ་ཨེབ་གཏང་།"
@@ -7299,7 +6644,6 @@ msgstr "<image id=\"img_id3145419\" src=\"cmd/sc_recsearch.png\" width=\"0.222in
msgctxt ""
"00000402.xhp\n"
"par_id3144748\n"
-"50\n"
"help.text"
msgid "Find & Replace"
msgstr "འཚོལ་བཞིནམ་ལས་ཚབ་བཙུགས།"
@@ -7308,7 +6652,6 @@ msgstr "འཚོལ་བཞིནམ་ལས་ཚབ་བཙུགས།"
msgctxt ""
"00000402.xhp\n"
"par_id3156357\n"
-"552\n"
"help.text"
msgid "<variable id=\"suchenattribute\">Choose <emph>Edit - Find & Replace - Attributes</emph></variable>"
msgstr "<variable id=\"suchenattribute\"> <emph>ཞུན་དག་འབད་ - འཚོལ་ཞིནམ་ལས་ཞུན་དག་འབད།- ཁྱད་ཆོས།</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -7317,13 +6660,11 @@ msgstr "<variable id=\"suchenattribute\"> <emph>ཞུན་དག་འབད
msgctxt ""
"00000402.xhp\n"
"par_id3153840\n"
-"553\n"
"help.text"
msgid "<variable id=\"suchenformat\">Choose <emph>Edit - Find & Replace - Format</emph> button </variable>"
msgstr "<variable id=\"suchenformat\"> <emph>ཞུན་དག་འབད་ - འཚོལ་བཞིནམ་ལས་ཚབ་བཙུགས་ - རྩ་སྒྲིག་འབད་</emph> ཨེབ་རྟ། </variable>ཚུ་གདམ་ཁ་རྐྱབས།"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3146971\n"
@@ -7332,7 +6673,6 @@ msgid "Choose <emph>Edit - Find & Replace - Similarity search</emph> check box a
msgstr "<emph>ཞུན་དག་འབད་ - འཚོལ་བཞིནམ་ལས་ཞུན་དག་འབད་ - ཆ་འདྲ་བའི་འཚོས་ཞིབ།</emph> སྒྲོམ་ཞིབ་དཔྱད་འབད་ནི་དང་ <emph>...</emph> ཨེབ་རྟ་ཚུ་གདམ་ཁ་རྐྱབས།"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3153709\n"
@@ -7341,7 +6681,6 @@ msgid "On the <emph>Table Data</emph> Bar, click <emph>Find</emph> icon - <emph>
msgstr "<emph>ཐིག་ཁྲམ་གྱི་གནད་སྡུད་གུ་</emph> ཕྲ་རིང་, ཨེབ་གཏང་ <emph>འཚོལ་</emph> ངོས་དཔར་ - <emph>ཆ་འདྲ་བའི་འཚོལ་ཞིབ་་</emph> སྒྲོམ་ཞིབ་དཔྱད་འབད་ - <emph>...</emph> ཨེབ་ལྡེ། (གནད་སྡུད་གཞི་རྟེན་སྟོན།)"
#: 00000402.xhp
-#, fuzzy
msgctxt ""
"00000402.xhp\n"
"par_id3150749\n"
@@ -7353,7 +6692,6 @@ msgstr "<emph>རྣམ་པའི་བཀོད་སྒྲིག་</emph>
msgctxt ""
"00000402.xhp\n"
"par_id3152960\n"
-"534\n"
"help.text"
msgid "Choose <emph>View - Navigator</emph>"
msgstr "<emph>ཞུན་དག་འབད་ - འགྲུལ་བསྐྱོདཔ།</emph>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -7362,7 +6700,6 @@ msgstr "<emph>ཞུན་དག་འབད་ - འགྲུལ་བསྐྱ
msgctxt ""
"00000402.xhp\n"
"par_id3163824\n"
-"535\n"
"help.text"
msgid "On <emph>Standard</emph> Bar, click"
msgstr "<emph>ཚད་ལྡན་</emph>ཕྲ་རིང་གུ་ཨེབ་གཏང་།"
@@ -7379,7 +6716,6 @@ msgstr "<image id=\"img_id3154508\" src=\"cmd/sc_testmode.png\" width=\"0.222inc
msgctxt ""
"00000402.xhp\n"
"par_id3147359\n"
-"536\n"
"help.text"
msgid "Navigator On/Off"
msgstr "འགྲུལ་བསྐྱོདཔ་ཨོན་/ཨོཕ།"
@@ -7388,7 +6724,6 @@ msgstr "འགྲུལ་བསྐྱོདཔ་ཨོན་/ཨོཕ།"
msgctxt ""
"00000402.xhp\n"
"par_id3147338\n"
-"576\n"
"help.text"
msgid "<variable id=\"litdat\">Choose <emph>Tools - Bibliography Database</emph></variable>"
msgstr "<variable id=\"litdat\"> <emph>ལག་ཆས་ཚུ་ - དེབ་ཐོའི་གནད་སྡུད་གཞི་རྟེན་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -7397,7 +6732,6 @@ msgstr "<variable id=\"litdat\"> <emph>ལག་ཆས་ཚུ་ - དེབ
msgctxt ""
"00000402.xhp\n"
"par_id3149281\n"
-"538\n"
"help.text"
msgid "<variable id=\"link\">Choose <emph>Edit - Links</emph></variable>"
msgstr "<variable id=\"link\"><emph>ཞུན་དག་འབད་ - འབྲེལ་ལམ་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -7406,7 +6740,6 @@ msgstr "<variable id=\"link\"><emph>ཞུན་དག་འབད་ - འབ
msgctxt ""
"00000402.xhp\n"
"par_id3159339\n"
-"551\n"
"help.text"
msgid "<variable id=\"linkae\">Choose <emph>Edit - Links - Modify Link</emph> (DDE links only) </variable>"
msgstr "<variable id=\"linkae\"> <emph>ཞུན་དག་འབད་ - འབྲེལ་ལམ་ཚུ་ - འབྲེལ་ལམ་འདི་ལེགས་བཅོས་འབད།</emph> (ཌི་ཌི་ཨིའི་འབྲེལ་ལམ་རྐྱངམ་ཅིག་) </variable>གདམ་ཁ་རྐྱབས།"
@@ -7415,7 +6748,6 @@ msgstr "<variable id=\"linkae\"> <emph>ཞུན་དག་འབད་ - འ
msgctxt ""
"00000402.xhp\n"
"par_id3148927\n"
-"543\n"
"help.text"
msgid "Select a frame, then choose <emph>Edit - Object - Properties</emph>"
msgstr "གཞི་ཁྲམ་འདི་སེལ་འཐུ་འབད་བཞིནམ་ལས་ <emph>ཞུན་དག་འབད་ - དངོས་པོ་ - རྒྱུ་དངོས་</emph>གདམ་ཁ་རྐྱབས།"
@@ -7424,7 +6756,6 @@ msgstr "གཞི་ཁྲམ་འདི་སེལ་འཐུ་འབད་
msgctxt ""
"00000402.xhp\n"
"par_id3156315\n"
-"577\n"
"help.text"
msgid "Open context menu of selected frame - choose <emph>Properties</emph>"
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ གཞི་ཁྲམ་གྱི་སྐབས་དོན་དཀར་ཆག་འདི་ ཁ་ཕྱེ་བཞིནམ་ལས་ <emph>རྒྱུ་དངོས་</emph>གདམ་ཁ་རྐྱབས།"
@@ -7433,7 +6764,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ གཞི
msgctxt ""
"00000402.xhp\n"
"par_id3156091\n"
-"546\n"
"help.text"
msgid "<variable id=\"imagemap\">Choose <emph>Edit - ImageMap</emph> (also in context menu of selected object) </variable>"
msgstr "<variable id=\"imagemap\"> <emph>ཞུན་དག་འབད་ - ཟུགས་བརྙན་ས་ཁྲ།</emph> (གཞན་ཡང་སེལ་འཐུ་འབད་ཡོད་པའི་སྐབས་དོན་དཀར་ཆག་) </variable>གདམ་ཁ་རྐྱབས།"
@@ -7442,7 +6772,6 @@ msgstr "<variable id=\"imagemap\"> <emph>ཞུན་དག་འབད་ - ཟ
msgctxt ""
"00000402.xhp\n"
"par_id3155936\n"
-"550\n"
"help.text"
msgid "<variable id=\"imapeigbea\">Choose <emph>Edit - ImageMap</emph>, then select a section of the ImageMap and click <emph>Properties - Description</emph></variable>"
msgstr "<variable id=\"imapeigbea\"><emph>ཞུན་དག་འབད་ - གཟུགས་བརྙན་ས་ཁྲ་</emph>གདམ་ཁ་རྐྱབས། དེ་ལས་གཟུགས་བརྙན་ས་ཁྲ་གི་དབྱེ་ཚན་འདི་ སེལ་འཐུ་འབད། <emph>རྒྱུ་དངོས་ - འགྲེལ་བཤད་</emph></variable>"
@@ -7451,7 +6780,6 @@ msgstr "<variable id=\"imapeigbea\"><emph>ཞུན་དག་འབད་ -
msgctxt ""
"00000402.xhp\n"
"par_id3149259\n"
-"547\n"
"help.text"
msgid "<variable id=\"edit1\">Choose <emph>Edit - Object</emph></variable>"
msgstr "<variable id=\"edit1\"> <emph>ཞུན་དག་འབད་ - དངོས་པོ་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -7460,7 +6788,6 @@ msgstr "<variable id=\"edit1\"> <emph>ཞུན་དག་འབད་ - དང
msgctxt ""
"00000402.xhp\n"
"par_id3154966\n"
-"548\n"
"help.text"
msgid "<variable id=\"edit2\">Choose <emph>Edit - Object - Edit</emph>, also in the context menu of selected object </variable>"
msgstr "<variable id=\"edit2\"> <emph>ཞུན་དག་འབད་ - དངོས་པོ་ - ཞུན་དག་འབད་</emph>གདམ་ཁ་རྐྱབས་ནི་དང་ གཞན་ཡང་ དངོས་པོ་སེལ་འཐུ་འབད་ཡོད་མི་གི་སྐབས་དོན་དཀར་ཆག</variable>"
@@ -7469,7 +6796,6 @@ msgstr "<variable id=\"edit2\"> <emph>ཞུན་དག་འབད་ - དང
msgctxt ""
"00000402.xhp\n"
"par_id3149565\n"
-"549\n"
"help.text"
msgid "<variable id=\"edit3\">Choose <emph>Edit - Object - Open</emph></variable>"
msgstr "<variable id=\"edit3\"> <emph>ཞུན་དག་འབད་ - དངོས་པོ་ - ཁ་ཕྱེ་</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -7486,7 +6812,6 @@ msgstr "དཀར་ཆག་སྟོན།"
msgctxt ""
"00000403.xhp\n"
"hd_id3156304\n"
-"1\n"
"help.text"
msgid "View Menu"
msgstr "དཀར་ཆག་སྟོན།"
@@ -7495,7 +6820,6 @@ msgstr "དཀར་ཆག་སྟོན།"
msgctxt ""
"00000403.xhp\n"
"par_id3146936\n"
-"12\n"
"help.text"
msgid "Choose <emph>View - Zoom</emph>"
msgstr "<emph>སྟོན་ - རྒྱས་ཟུམ་</emph>གདམ་ཁ་རྐྱབས།"
@@ -7504,7 +6828,6 @@ msgstr "<emph>སྟོན་ - རྒྱས་ཟུམ་</emph>གདམ་
msgctxt ""
"00000403.xhp\n"
"par_id3149962\n"
-"24\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Zoom also with (+) (-) (×) and (÷) on the number keypad </caseinline><caseinline select=\"IMPRESS\">Zoom also with (+) (-) (×) and (÷) on the number keypad </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">ཨང་གྲངས་ལྡེ་གདན་དང་བཅས་འབད་ (+) (-) (×) and (÷) གུ་རྒྱས་ཟུམ་འབད། </caseinline><caseinline select=\"IMPRESS\">ཨང་གྲངས་ལྡེ་གདན་དང་བཅས་གུ་(+) (-) (×) and (÷) གུ་ཡང་ རྒྱས་ཟུམ་འབད། </caseinline></switchinline>"
@@ -7513,7 +6836,6 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">ཨང་ག
msgctxt ""
"00000403.xhp\n"
"par_id3152895\n"
-"13\n"
"help.text"
msgid "Double-click or right-click the field on the <emph>Status</emph> Bar"
msgstr "<emph>གནས་ཚད།</emph>ཕྲ་རིང་གུ་ཡོད་པའི་ ཨེབ་གཏང་ཐེངས་གཉིས་ ཡང་ན་གཡས་གུ་ཨེབ་གཏང་།"
@@ -7522,7 +6844,6 @@ msgstr "<emph>གནས་ཚད།</emph>ཕྲ་རིང་གུ་ཡོ
msgctxt ""
"00000403.xhp\n"
"par_id3156183\n"
-"36\n"
"help.text"
msgid "Choose <emph>View - Toolbars</emph>"
msgstr "<emph>སྟོན་ - ལག་ཆས་ཕྲ་རིང་</emph>གདམ་ཁ་རྐྱབས།"
@@ -7531,7 +6852,6 @@ msgstr "<emph>སྟོན་ - ལག་ཆས་ཕྲ་རིང་</emph>
msgctxt ""
"00000403.xhp\n"
"par_id3166445\n"
-"15\n"
"help.text"
msgid "<variable id=\"funktion\">Choose <emph>View - Toolbars - Standard</emph></variable>"
msgstr "<variable id=\"funktion\"> <emph>སྟོན་ - ལག་ཆས་ཕྲ་རིང་ - ཚད་ལྡན་</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -7540,7 +6860,6 @@ msgstr "<variable id=\"funktion\"> <emph>སྟོན་ - ལག་ཆས་ཕ
msgctxt ""
"00000403.xhp\n"
"par_id3153748\n"
-"17\n"
"help.text"
msgid "<variable id=\"werkzeug\">Choose <emph>View - Toolbars - Tools</emph></variable>"
msgstr "<variable id=\"werkzeug\"> <emph>སྟོན་ - ལག་ཆས་ཕྲ་རིང་ - ལག་ཆས་ཚུ་</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -7549,7 +6868,6 @@ msgstr "<variable id=\"werkzeug\"> <emph>སྟོན་ - ལག་ཆས་ཕ
msgctxt ""
"00000403.xhp\n"
"par_id3154317\n"
-"18\n"
"help.text"
msgid "<variable id=\"task\">Choose <emph>View - Status Bar</emph></variable>"
msgstr "<variable id=\"task\"> <emph>སྟོན་ - གནས་ཚད་ཕྲ་རིང་</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -7558,7 +6876,6 @@ msgstr "<variable id=\"task\"> <emph>སྟོན་ - གནས་ཚད་ཕ
msgctxt ""
"00000403.xhp\n"
"par_id3152780\n"
-"19\n"
"help.text"
msgid "<variable id=\"farbleiste\">Choose <emph>View - Toolbars - Color Bar</emph></variable>"
msgstr "<variable id=\"farbleiste\"> <emph>སྟོན་ - ལག་ཆས་ཕྲ་རིང་ - ཚོས་གཞི་ཕར་རིང་</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -7567,7 +6884,6 @@ msgstr "<variable id=\"farbleiste\"> <emph>སྟོན་ - ལག་ཆས་
msgctxt ""
"00000403.xhp\n"
"par_id3156113\n"
-"43\n"
"help.text"
msgid "<variable id=\"ime\">Choose <emph>View - Input Method Status</emph></variable>"
msgstr "<variable id=\"ime\"> <emph>སྟོན་ - ཨིན་པུཊི་ཐབས་ལམ་གནས་ཚད</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -7576,7 +6892,6 @@ msgstr "<variable id=\"ime\"> <emph>སྟོན་ - ཨིན་པུཊི
msgctxt ""
"00000403.xhp\n"
"par_id3157909\n"
-"32\n"
"help.text"
msgid "Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Internet</emph>"
msgstr "ཚད་ལྡན་ཕྲ་རིང་ <emph>གུ་</emph> ངོས་དཔར་ <emph>ཚད་བརྒལ་འབྲལ་ལམ་</emph> ཨེབ་གཏང་འབད། ཨིན་ཊར་ནེཊི་ <emph>ཨེབ་གཏང་འབད།</emph>"
@@ -7585,13 +6900,11 @@ msgstr "ཚད་ལྡན་ཕྲ་རིང་ <emph>གུ་</emph> ངོ
msgctxt ""
"00000403.xhp\n"
"par_id3146806\n"
-"42\n"
"help.text"
msgid "Choose <emph>Insert - Hyperlink</emph>"
msgstr "<emph>བཙུགས་ -ཧའི་པར་ལིངཀི་</emph>གདམ་ཁ་རྐྱབས།"
#: 00000403.xhp
-#, fuzzy
msgctxt ""
"00000403.xhp\n"
"par_id3153717\n"
@@ -7603,7 +6916,6 @@ msgstr "<variable id=\"hypdiamailnews\">ཚད་ལྡན་ཕྲ་རིང
msgctxt ""
"00000403.xhp\n"
"par_id3149415\n"
-"34\n"
"help.text"
msgid "<variable id=\"hypdiadok\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Document</emph></variable>"
msgstr "<variable id=\"hypdiadok\">ཡིག་ཆ་ <emph>ཨེབ་གཏང་ཕྲ་རིང་</emph> ཚད་ལྡན་ཕྲ་རིང་<emph>ངོས་དཔར་གུ་</emph> ཚད་བརྒལ་འབྲེལ་ལམ་ <emph>ཨེབ་གཏང་འབད།</emph></variable>"
@@ -7612,7 +6924,6 @@ msgstr "<variable id=\"hypdiadok\">ཡིག་ཆ་ <emph>ཨེབ་གཏ
msgctxt ""
"00000403.xhp\n"
"par_id3150129\n"
-"35\n"
"help.text"
msgid "<variable id=\"hypdianeudok\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>New Document</emph></variable>"
msgstr "<variable id=\"hypdianeudok\">ཡིག་ཆ་གསརཔ་ <emph>ཨེབ་གཏང་་ཚད་ལྡན་ཕྲ་རིང་</emph> ངོས་དཔར་གུ་ <emph>ཚད་བརྒལ་འབྲལ་ལམ་</emph> ཨེབ་གཏང་ <emph>འབད།</emph></variable>"
@@ -7621,7 +6932,6 @@ msgstr "<variable id=\"hypdianeudok\">ཡིག་ཆ་གསརཔ་ <emph>
msgctxt ""
"00000403.xhp\n"
"par_id3159269\n"
-"20\n"
"help.text"
msgid "Choose <emph>View - Full Screen</emph>"
msgstr "<emph>སྟོན་ - གསལ་གཞི་ཆ་ཚང་</emph>གདམ་ཁ་རྐྱབས།"
@@ -7630,7 +6940,6 @@ msgstr "<emph>སྟོན་ - གསལ་གཞི་ཆ་ཚང་</emph>
msgctxt ""
"00000403.xhp\n"
"par_id3149578\n"
-"25\n"
"help.text"
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+J"
msgstr "སོར་ལྡེ་+<switchinline select=\"sys\"><caseinline select=\"MAC\">བརད་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཇེ།"
@@ -7644,7 +6953,6 @@ msgid "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"0.222in
msgstr "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148473\">ངོས་དཔར།</alt></image>"
#: 00000403.xhp
-#, fuzzy
msgctxt ""
"00000403.xhp\n"
"par_id3153627\n"
@@ -7656,7 +6964,6 @@ msgstr "གསལ་གཞི་ཆ་ཚང་ཨོན་/ཨོཕ།(ཤོ
msgctxt ""
"00000403.xhp\n"
"par_id3147559\n"
-"8\n"
"help.text"
msgid "If a text document or spreadsheet is open:"
msgstr "ཚིག་ཡིག་གི་ཡིག་ཆ་ཡང་ན་ཤོག་ཁྲམ་འདི་ཁ་ཕྱེ་དེ་ཡོད་པ་ཅིན:"
@@ -7665,7 +6972,6 @@ msgstr "ཚིག་ཡིག་གི་ཡིག་ཆ་ཡང་ན་ཤོ
msgctxt ""
"00000403.xhp\n"
"par_id3145069\n"
-"31\n"
"help.text"
msgid "Menu <emph>View - Data Sources</emph>"
msgstr "དཀར་ཆག་ <emph>སྟོན་ - གནད་སྡུད་འབྱུང་ཁུངས།</emph>"
@@ -7674,7 +6980,6 @@ msgstr "དཀར་ཆག་ <emph>སྟོན་ - གནད་སྡུད
msgctxt ""
"00000403.xhp\n"
"par_id3149046\n"
-"28\n"
"help.text"
msgid "F4 key"
msgstr "ཨེཕ་ ༤ གི་ལྡེ་མིག"
@@ -7691,7 +6996,6 @@ msgstr "<image id=\"img_id3153524\" src=\"cmd/sc_viewdatasourcebrowser.png\" wid
msgctxt ""
"00000403.xhp\n"
"par_id3146908\n"
-"39\n"
"help.text"
msgid "Data Sources"
msgstr "གནད་སྡུད་འབྱུང་ཁུངས།"
@@ -7700,7 +7004,6 @@ msgstr "གནད་སྡུད་འབྱུང་ཁུངས།"
msgctxt ""
"00000403.xhp\n"
"par_id3154140\n"
-"9\n"
"help.text"
msgid "Choose <emph>View - HTML Source</emph>"
msgstr "<emph>སྟོན་ - ཨེཆ་ཊི་ཨེམ་ཨེལ་འབྱུང་ཁུངས་</emph>གདམ་ཁ་རྐྱབས།"
@@ -7709,7 +7012,6 @@ msgstr "<emph>སྟོན་ - ཨེཆ་ཊི་ཨེམ་ཨེལ་འ
msgctxt ""
"00000403.xhp\n"
"par_id3154947\n"
-"23\n"
"help.text"
msgid "Open context menu in an HTML document"
msgstr "ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་ཆ་ནང་ཁ་ཕྱེ་བའི་སྐབས་དོན་དཀར་ཆག"
@@ -7726,7 +7028,6 @@ msgstr "<image id=\"img_id3156422\" src=\"cmd/sc_sourceview.png\" width=\"0.222i
msgctxt ""
"00000403.xhp\n"
"par_id3144448\n"
-"11\n"
"help.text"
msgid "HTML Source"
msgstr "ཨེཆ་ཊི་ཨེམ་ཨེལ་འབྱུང་ཁུངས།"
@@ -7759,7 +7060,6 @@ msgstr "དཀར་ཆག་བཙུགས།"
msgctxt ""
"00000404.xhp\n"
"hd_id3156324\n"
-"1\n"
"help.text"
msgid "Insert Menu"
msgstr "དཀར་ཆག་བཙུགས།"
@@ -7768,46 +7068,38 @@ msgstr "དཀར་ཆག་བཙུགས།"
msgctxt ""
"00000404.xhp\n"
"par_id3153808\n"
-"28\n"
"help.text"
msgid "<variable id=\"notiz\">Choose <emph>Insert - Comment</emph></variable>"
msgstr "<variable id=\"eispa\">གདམ་ <emph>བཙུགས་ - ཀེར་ཐིག་ཚུ་ </emph></variable>"
#: 00000404.xhp
-#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3155619\n"
-"71\n"
"help.text"
msgid "Choose <emph>Insert - Media - Scan</emph>"
-msgstr "<emph>བཙུགས་ - པར་ - ཞིབ་ལྟ་འབད།</emph>གདམ་ཁ་རྐྱབས།"
+msgstr ""
#: 00000404.xhp
-#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3150502\n"
-"30\n"
"help.text"
msgid "Choose <emph>Insert - Media - Scan - Select Source</emph>"
-msgstr "<emph>བཙུགས་ - པར་ - ཞིབ་ལྟ་འབད་ -འབྱུང་ཁུངས་སེལ་འཐུ་འབད།</emph>གདམ་ཁ་རྐྱབས།"
+msgstr ""
#: 00000404.xhp
-#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3155934\n"
-"32\n"
"help.text"
msgid "Choose <emph>Insert - Media - Scan - Request</emph>"
-msgstr "<emph>བཙུགས་ - པར་ - ཞིབ་ལྟ་འབད་ - ཞུ་བ།</emph>གདམ་ཁ་རྐྱབས།"
+msgstr ""
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3143281\n"
-"34\n"
"help.text"
msgid "Choose <emph>Insert - Special Character</emph>"
msgstr "<emph>བཙུགས་ - དམིགས་བསལ་གྱི་ཡིག་འབྲུ།</emph>གདམ་ཁ་རྐྱབས།"
@@ -7816,7 +7108,6 @@ msgstr "<emph>བཙུགས་ - དམིགས་བསལ་གྱི་ཡ
msgctxt ""
"00000404.xhp\n"
"par_id3149525\n"
-"35\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">གདམ་ཁ་རྐྱབས་ <emph>རྩ་སྒྲིག་ -འགོ་ཚག་དང་ཨང་བཏགས་ནི་ - སྲོལ་སྒྲིག་འབད་ - ཡིག་འབྲུ་</emph>ཨེབ་རྟ། </caseinline></switchinline>"
@@ -7825,7 +7116,6 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">གདམ་
msgctxt ""
"00000404.xhp\n"
"par_id3152372\n"
-"55\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">གདམ་ཁ་རྐྱབས་<emph>རྩ་སྒྲིག་ - འགོ་ཚག་དང་ཨང་བཏགས་ནི་ -སྲོལ་སྒྲིག་ - ཡིག་འབྲུ་</emph> ཨེབ་བཏགས་ </caseinline></switchinline>"
@@ -7834,7 +7124,6 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">གདམ
msgctxt ""
"00000404.xhp\n"
"par_id3156560\n"
-"36\n"
"help.text"
msgid "On the <emph>Standard</emph> or the <emph>Insert</emph> toolbar, click"
msgstr ""
@@ -7851,13 +7140,11 @@ msgstr "<image id=\"img_id3153748\" src=\"cmd/sc_bullet.png\" width=\"0.222inch\
msgctxt ""
"00000404.xhp\n"
"par_id3149751\n"
-"37\n"
"help.text"
msgid "Special Character"
msgstr "དམིགས་བསལ་གྱི་ཡིག་འབྲུ།"
#: 00000404.xhp
-#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_idN107CD\n"
@@ -7877,7 +7164,6 @@ msgstr ""
msgctxt ""
"00000404.xhp\n"
"par_id3147242\n"
-"5\n"
"help.text"
msgid "<variable id=\"objekteinf\">Choose <emph>Insert - Object</emph></variable>"
msgstr "<variable id=\"objekteinf\"> <emph>བཙུགས་ - དངོས་པོ་</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -7886,7 +7172,6 @@ msgstr "<variable id=\"objekteinf\"> <emph>བཙུགས་ - དངོས་
msgctxt ""
"00000404.xhp\n"
"par_id3152996\n"
-"6\n"
"help.text"
msgid "Choose <emph>Insert - Object - OLE Object</emph>"
msgstr "<emph>བཙུགས་ - དངོས་པོ་ - ཨོ་ཨེལ་ཨི་དངོས་པོ།</emph>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -7895,7 +7180,6 @@ msgstr "<emph>བཙུགས་ - དངོས་པོ་ - ཨོ་ཨེལ
msgctxt ""
"00000404.xhp\n"
"par_id3146806\n"
-"7\n"
"help.text"
msgid "Open the <emph>Insert</emph> toolbar, click"
msgstr "<emph>བཙུགས་</emph> ལག་ཆས་ཕྲ་རིང་ཨེབ་གཏང་འདི་ཁ་ཕྱེ།"
@@ -7912,7 +7196,6 @@ msgstr "<image id=\"img_id3156305\" src=\"cmd/sc_insobjctrl.png\" width=\"0.222i
msgctxt ""
"00000404.xhp\n"
"par_id3145417\n"
-"8\n"
"help.text"
msgid "OLE Object"
msgstr "ཨོ་ཨེལ་ཨི་དངོས་པོ།"
@@ -7921,7 +7204,6 @@ msgstr "ཨོ་ཨེལ་ཨི་དངོས་པོ།"
msgctxt ""
"00000404.xhp\n"
"par_id3150393\n"
-"15\n"
"help.text"
msgid "Choose <emph>Insert - Object - Formula</emph>"
msgstr "<emph>བཙུགས་ - དངོས་པོ་ - མན་ངག</emph>གདམ་ཁ་རྐྱབས།"
@@ -7930,7 +7212,6 @@ msgstr "<emph>བཙུགས་ - དངོས་པོ་ - མན་ངག</e
msgctxt ""
"00000404.xhp\n"
"par_id3153056\n"
-"16\n"
"help.text"
msgid "Open the <emph>Insert </emph>toolbar, click"
msgstr "<emph>བཙུགས་</emph> ལག་ཆས་ཕྲ་རིང་ཨེབ་གཏང་འདི་ཁ་ཕྱེ།"
@@ -7947,7 +7228,6 @@ msgstr "<image id=\"img_id3149933\" src=\"cmd/sc_insertobjectstarmath.png\" widt
msgctxt ""
"00000404.xhp\n"
"par_id3155858\n"
-"17\n"
"help.text"
msgid "Formula"
msgstr "མན་ངག"
@@ -7956,7 +7236,6 @@ msgstr "མན་ངག"
msgctxt ""
"00000404.xhp\n"
"par_id3153144\n"
-"38\n"
"help.text"
msgid "Choose <emph>Format - Chart Type</emph>"
msgstr "<emph>རྩ་སྒྲིག་ - གནད་དོན་བསྒྱུརར་བཅོས་</emph>གདམ་ཁ་རྐྱབས།"
@@ -7965,7 +7244,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - གནད་དོན་བསྒྱ
msgctxt ""
"00000404.xhp\n"
"par_id3147578\n"
-"39\n"
"help.text"
msgid "Choose <emph>Insert - Object - Chart </emph>"
msgstr "<emph>བཙུགས་ - དངོས་པོ་ - དཔེ་རིས་</emph>གདམ་ཁ་རྐྱབས།"
@@ -7974,7 +7252,6 @@ msgstr "<emph>བཙུགས་ - དངོས་པོ་ - དཔེ་རི
msgctxt ""
"00000404.xhp\n"
"par_id3154011\n"
-"40\n"
"help.text"
msgid "Choose <emph>Format - Chart Type</emph>"
msgstr "<emph>རྩ་སྒྲིག་ - གནད་དོན་བསྒྱུརར་བཅོས་</emph>གདམ་ཁ་རྐྱབས།"
@@ -7983,7 +7260,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - གནད་དོན་བསྒྱ
msgctxt ""
"00000404.xhp\n"
"par_id3153573\n"
-"41\n"
"help.text"
msgid "Choose <emph>Insert - Object - Chart</emph>"
msgstr "<emph>བཙུགས་ - དངོས་པོ་ - དཔེ་རིས་</emph>གདམ་ཁ་རྐྱབས།"
@@ -7992,7 +7268,6 @@ msgstr "<emph>བཙུགས་ - དངོས་པོ་ - དཔེ་རི
msgctxt ""
"00000404.xhp\n"
"par_id3159179\n"
-"42\n"
"help.text"
msgid "Choose <emph>Format - Chart Type</emph>"
msgstr "<emph>རྩ་སྒྲིག་ - གནད་དོན་བསྒྱུརར་བཅོས་</emph>གདམ་ཁ་རྐྱབས།"
@@ -8001,7 +7276,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - གནད་དོན་བསྒྱ
msgctxt ""
"00000404.xhp\n"
"par_id3159196\n"
-"43\n"
"help.text"
msgid "Choose <emph>Insert - Object - Chart</emph>"
msgstr "<emph>བཙུགས་ - དངོས་པོ་ - དཔེ་རིས་</emph>གདམ་ཁ་རྐྱབས།"
@@ -8010,7 +7284,6 @@ msgstr "<emph>བཙུགས་ - དངོས་པོ་ - དཔེ་རི
msgctxt ""
"00000404.xhp\n"
"par_id3149664\n"
-"18\n"
"help.text"
msgid "Choose <emph>Insert - Object - Chart</emph>"
msgstr "<emph>བཙུགས་ - དངོས་པོ་ - དཔེ་རིས་</emph>གདམ་ཁ་རྐྱབས།"
@@ -8019,7 +7292,6 @@ msgstr "<emph>བཙུགས་ - དངོས་པོ་ - དཔེ་རི
msgctxt ""
"00000404.xhp\n"
"par_id3154921\n"
-"19\n"
"help.text"
msgid "Open the <emph>Insert </emph>toolbar, click"
msgstr "<emph>བཙུགས་</emph> ལག་ཆས་ཕྲ་རིང་ཨེབ་གཏང་འདི་ཁ་ཕྱེ།"
@@ -8036,33 +7308,27 @@ msgstr "<image id=\"img_id3153739\" src=\"cmd/sc_drawchart.png\" width=\"0.222in
msgctxt ""
"00000404.xhp\n"
"par_id3145749\n"
-"20\n"
"help.text"
msgid "Chart"
msgstr "དཔེ་རིས།"
#: 00000404.xhp
-#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3155513\n"
-"44\n"
"help.text"
msgid "Choose <emph>Insert - Image</emph>"
-msgstr "<emph>ཡིག་སྣོད་ - སྲུང་།</emph>གདམ་ཁ་རྐྱབས།"
+msgstr ""
#: 00000404.xhp
-#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3155308\n"
-"45\n"
"help.text"
msgid "On the <emph>Standard</emph> toolbar, click"
-msgstr "<emph>ཚད་ལྡན་</emph> ཕྲ་རིང་གུ་ཨེབ་གཏང་།"
+msgstr ""
#: 00000404.xhp
-#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3145594\n"
@@ -8074,7 +7340,6 @@ msgstr "<image id=\"img_id3144764\" src=\"cmd/sc_objectcatalog.png\" width=\"0.2
msgctxt ""
"00000404.xhp\n"
"par_id3149960\n"
-"46\n"
"help.text"
msgid "Image"
msgstr ""
@@ -8083,7 +7348,6 @@ msgstr ""
msgctxt ""
"00000404.xhp\n"
"par_id3150037\n"
-"25\n"
"help.text"
msgid "Choose <emph>Insert - Floating Frame</emph>"
msgstr "<emph>བཙུགས་ - འཕུར་ལྡིང་གཞི་ཁྲམ་</emph>གདམ་ཁ་རྐྱབས།"
@@ -8092,7 +7356,6 @@ msgstr "<emph>བཙུགས་ - འཕུར་ལྡིང་གཞི་ཁ
msgctxt ""
"00000404.xhp\n"
"par_id3083281\n"
-"26\n"
"help.text"
msgid "Open the <emph>Insert </emph>toolbar, click"
msgstr "<emph>བཙུགས་</emph> ལག་ཆས་ཕྲ་རིང་ཨེབ་གཏང་འདི་ཁ་ཕྱེ།"
@@ -8109,7 +7372,6 @@ msgstr "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\"
msgctxt ""
"00000404.xhp\n"
"par_id3148588\n"
-"27\n"
"help.text"
msgid "Floating Frame"
msgstr "འཕུར་ལྡིང་གཞི་ཁྲམ།"
@@ -8118,7 +7380,6 @@ msgstr "འཕུར་ལྡིང་གཞི་ཁྲམ།"
msgctxt ""
"00000404.xhp\n"
"par_id3150396\n"
-"47\n"
"help.text"
msgid "<variable id=\"filterauswahl\">Open a file of a type that is unknown to %PRODUCTNAME and that is no text file</variable>"
msgstr "<variable id=\"filterauswahl\">དབྱེ་བ་ཅིག་གི་ཡིག་སྣོད་ཅིག་ %PRODUCTNAMEལུ་མ་ཤེསཔ་དང་ཚིག་ཡིག་ཡིག་སྣོད་མེད་མི་ཅིག་ཁ་ཕྱེ། </variable>"
@@ -8247,7 +7508,6 @@ msgstr "ལག་ཆས་ཚུ་གི་དཀར་ཆག"
msgctxt ""
"00000406.xhp\n"
"hd_id3160447\n"
-"1\n"
"help.text"
msgid "Tools Menu"
msgstr "ལག་ཆས་ཚུ་གི་དཀར་ཆག"
@@ -8256,7 +7516,6 @@ msgstr "ལག་ཆས་ཚུ་གི་དཀར་ཆག"
msgctxt ""
"00000406.xhp\n"
"par_id3146765\n"
-"123\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert - Media - Clip Art Gallery</item> or on <emph>Standard</emph> Bar, click"
msgstr ""
@@ -8273,7 +7532,6 @@ msgstr "<image id=\"img_id3157869\" src=\"cmd/sc_showfmexplorer.png\" width=\"0.
msgctxt ""
"00000406.xhp\n"
"par_id3153551\n"
-"127\n"
"help.text"
msgid "Gallery"
msgstr "སྟོན་ཁང་།"
@@ -8282,7 +7540,6 @@ msgstr "སྟོན་ཁང་།"
msgctxt ""
"00000406.xhp\n"
"par_id3146957\n"
-"130\n"
"help.text"
msgid "<variable id=\"galleryregisterdateien\">Choose <emph>Tools - Gallery</emph> or click the <emph>Gallery </emph>icon on the <emph>Standard</emph> Bar - <emph>New Theme</emph> button - <emph>Files</emph> tab</variable>"
msgstr "<variable id=\"galleryregisterdateien\"> <emph>ལག་ཆས་ཚུ་ - སྟོན་ཁང་</emph>གདམ་ཁ་རྐྱབས་ ཡང་ན་ <emph>Gallery </emph>ངོས་དཔར་ <emph>ཚད་ལྡན་</emph>ཕྲ་རིང་ - <emph>བརྗོད་དོན་གསརཔ་</emph>ཨེབ་རྟ་ - <emph>ཡིག་སྣོད་ཚུ་</emph> ཨེབ་ལྡེ་ </variable>ཨེབ་གཏང་།"
@@ -8291,7 +7548,6 @@ msgstr "<variable id=\"galleryregisterdateien\"> <emph>ལག་ཆས་ཚུ
msgctxt ""
"00000406.xhp\n"
"par_id3166411\n"
-"2\n"
"help.text"
msgid "Choose <emph>Tools - Spelling and Grammar</emph>"
msgstr ""
@@ -8300,7 +7556,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3148538\n"
-"69\n"
"help.text"
msgid "F7 key"
msgstr "ལྡེ་མིག་ ཨེཕ་ ༧།"
@@ -8309,7 +7564,6 @@ msgstr "ལྡེ་མིག་ ཨེཕ་ ༧།"
msgctxt ""
"00000406.xhp\n"
"par_id3155628\n"
-"3\n"
"help.text"
msgid "On <emph>Standard</emph> bar, click"
msgstr "<emph>ཚད་ལྡན་</emph> གུ་ཨེབ་གཏང་།"
@@ -8326,7 +7580,6 @@ msgstr "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inc
msgctxt ""
"00000406.xhp\n"
"par_id3157809\n"
-"4\n"
"help.text"
msgid "Spelling and Grammar"
msgstr "ཡིག་སྡེབ་དང་བརྡ་ཡིག"
@@ -8335,7 +7588,6 @@ msgstr "ཡིག་སྡེབ་དང་བརྡ་ཡིག"
msgctxt ""
"00000406.xhp\n"
"par_id3156326\n"
-"164\n"
"help.text"
msgid "<variable id=\"hangul\">Choose <emph>Tools - Language - Hangul/Hanja Conversion</emph> (Asian language support must be enabled)</variable>"
msgstr "<variable id=\"hangul\"><emph>ལག་ཆས་ཚུ་ - སྐད་ཡིག་ - ཧེན་གུལ་/ཧན་ཇ་ གཞི་བསྒྱུར་</emph> (ཨེ་ཤི་ཡན་སྐད་ཡིག་རྒྱབ་སྐྱོར་འདི་ལྕོགས་ཅན་བཟོ་དགོ།) </variable>གདམ་ཁ་རྐྱབས།"
@@ -8360,7 +7612,6 @@ msgstr "<variable id=\"chineseedit\"><emph>ལག་ཆས་ཚུ་ - སྐ
msgctxt ""
"00000406.xhp\n"
"par_id3155419\n"
-"5\n"
"help.text"
msgid "<variable id=\"rechtschreibungmenue\">Choose <emph>Tools - Spelling and Grammar</emph></variable>"
msgstr "<variable id=\"rechtschreibungmenue\"><emph>ལག་ཆས་ཚུ་ - སྡེབ་དཔྱོད་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -8369,7 +7620,6 @@ msgstr "<variable id=\"rechtschreibungmenue\"><emph>ལག་ཆས་ཚུ་
msgctxt ""
"00000406.xhp\n"
"par_id3150771\n"
-"7\n"
"help.text"
msgid "<variable id=\"zoptionen\">Choose <emph>Tools - Spelling and Grammar</emph>, then click <emph>Options</emph></variable>"
msgstr "<variable id=\"zoptionen\">ལག་ཆས་ཚུ་ སྡེབ་དཔྱད་ <emph>གདམ་</emph>དེ་ལས་གདམ་ཁ་ཚུ་ <emph>ཨེབ་གཏང་འབད།</emph></variable>"
@@ -8378,7 +7628,6 @@ msgstr "<variable id=\"zoptionen\">ལག་ཆས་ཚུ་ སྡེབ་
msgctxt ""
"00000406.xhp\n"
"par_id3151338\n"
-"8\n"
"help.text"
msgid "Choose <emph>Tools - Language - Thesaurus</emph>"
msgstr "<emph>ལག་ཆས་ཚུ་ - སྐད་ཡིག་ - མངོན་བརྗོད་</emph>གདམ་ཁ་རྐྱབས།"
@@ -8387,7 +7636,6 @@ msgstr "<emph>ལག་ཆས་ཚུ་ - སྐད་ཡིག་ - མངོ
msgctxt ""
"00000406.xhp\n"
"par_id3149884\n"
-"70\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཨེཕ་ ༧།"
@@ -8396,7 +7644,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"00000406.xhp\n"
"par_id3153320\n"
-"10\n"
"help.text"
msgid "Choose <emph>Tools - Color Replacer</emph> ($[officename] Draw and $[officename] Impress)"
msgstr "<emph>ལག་ཆས་ཚུ་ - ཚོས་གཞི་འདེམས་བྱེད་</emph> ($[officename] འབྲི་ནི་དང་ $[officename] Impress)གདམ་ཁ་རྐྱབས།"
@@ -8413,7 +7660,6 @@ msgstr "<variable id=\"mediaplayer\"><emph>ལག་ཆས་ཚུ་ - བར
msgctxt ""
"00000406.xhp\n"
"par_id3151385\n"
-"13\n"
"help.text"
msgid "<variable id=\"makro\">Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+F11 (if not assigned by your system)</variable>"
msgstr ""
@@ -8422,7 +7668,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3149456\n"
-"155\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Record Macro</emph>"
msgstr "<emph>ལག་ཆས་ཚུ་ - མེཀ་ཀོརོསི་ - མེཀ་ཀོརོསིཐོ་བཀོད་</emph>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -8431,7 +7676,6 @@ msgstr "<emph>ལག་ཆས་ཚུ་ - མེཀ་ཀོརོསི་ -
msgctxt ""
"00000406.xhp\n"
"par_id3150398\n"
-"14\n"
"help.text"
msgid "<variable id=\"passwort\">Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>, click the <emph>Organizer</emph> button, click the <emph>Libraries</emph> tab, and then click the <emph>Password</emph> button</variable>"
msgstr "<variable id=\"passwort\"> <emph>ལག་ཆས་ཚུ་ - མེཀ་ཀོརོསི་ - མེཀ་ཀོརོསི་འགོ་འདྲེན་འཐབ - %PRODUCTNAME གཞི་རིམ་</emph>གདམ་ཁ་རྐྱབས་, <emph>འགོ་འདྲེན་པ་</emph> ཨེབ་རྟ་, <emph>Libraries</emph>ཨེབ་ལྡེ་ཨེབ་གཏང་ནི་, དང་ དེ་ལས་ <emph>ཆོག་ཡིག་</emph> ཨང་རྟ་ </variable>ཨེབ་གཏང་།"
@@ -8456,7 +7700,6 @@ msgstr "<variable id=\"packagemanager_eu\">གདམ་ཁ་བརྐྱབ་
msgctxt ""
"00000406.xhp\n"
"par_id3151106\n"
-"161\n"
"help.text"
msgid "<variable id=\"xmlfilter\">Choose <emph>Tools - XML Filter Settings</emph></variable>"
msgstr "<variable id=\"xmlfilter\"> <emph>ལག་ཆས་ཚུ་ - ཨེགསི་ཨེམ་ཨེལ་ཚགས་མའི་གཞི་སྒྲིག་ཚུ་</emph></variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -8465,7 +7708,6 @@ msgstr "<variable id=\"xmlfilter\"> <emph>ལག་ཆས་ཚུ་ - ཨེ
msgctxt ""
"00000406.xhp\n"
"par_id3153778\n"
-"162\n"
"help.text"
msgid "<variable id=\"xmlfilteredit\">Choose <emph>Tools - XML Filter Settings</emph>, then click <emph>New</emph> or <emph>Edit</emph></variable>"
msgstr "<variable id=\"xmlfilteredit\"> <emph>ལག་ཆས་ཚུ་ - ཨེགསི་ཨེམ་ཨེལ་ཚགས་མ་གཞི་སྒྲིག་ཚུ་</emph>གདམ་ཁ་རྐྱབས་, དེ་ལས་ <emph>གསརཔ་</emph> ཡང་ན་ <emph>ཞུན་དག་འབད</emph>. </variable>དེ་གུ་ཨེབ་གཏང་།"
@@ -8474,7 +7716,6 @@ msgstr "<variable id=\"xmlfilteredit\"> <emph>ལག་ཆས་ཚུ་ - ཨ
msgctxt ""
"00000406.xhp\n"
"par_id3148979\n"
-"163\n"
"help.text"
msgid "<variable id=\"xmlfiltertest\">Choose <emph>Tools - XML Filter Settings</emph>, then click <emph>Test XSLTs</emph></variable>"
msgstr "<variable id=\"xmlfiltertest\"> <emph>ལག་ཆས་ཚུ་ - ཨེགསི་ཨེམ་ཨེལ་གཞི་སྒྲིག་ཚུ་</emph>གདམ་ཁ་རྐྱབས་, དེ་ལས་ <emph>ཨེགསི་ཨེསི་ཊི་ཨེསི་བརྟག་ཞིབ་</emph>. </variable>ཨེབ་གཏང་།"
@@ -8483,7 +7724,6 @@ msgstr "<variable id=\"xmlfiltertest\"> <emph>ལག་ཆས་ཚུ་ - ཨ
msgctxt ""
"00000406.xhp\n"
"par_id3148672\n"
-"15\n"
"help.text"
msgid "<variable id=\"anpassen\">Choose <emph>Tools - Customize</emph></variable>"
msgstr "<variable id=\"anpassen\"><emph>ལག་ཆས་ཚུ་ - སྲོལ་སྒྲིག་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -8492,32 +7732,30 @@ msgstr "<variable id=\"anpassen\"><emph>ལག་ཆས་ཚུ་ - སྲོ
msgctxt ""
"00000406.xhp\n"
"par_id3147230\n"
-"16\n"
"help.text"
-msgid "<variable id=\"menue\">Choose <emph>Tools - Customize - Menu</emph> tab</variable>"
-msgstr "<variable id=\"menue\"> <emph>ལག་ཆས་ཚུ་ - སྲོལ་སྒྲིག་ - དཀར་ཆག་</emph>ཨེབ་ལྡེ་ </variable>ཚུ་གདམ་ཁ་རྐྱབས།"
+msgid "<variable id=\"menue\">Choose <emph>Tools - Customize - Menus</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_idN108E9\n"
"help.text"
-msgid "<variable id=\"menuenew\">Choose <emph>Tools - Customize - Menu</emph> tab, click <emph>New</emph></variable>"
-msgstr "<variable id=\"menuenew\"> <emph>ལག་ཆས་ཚུ་ - སྲོལ་སྒྲིག་འབད་ - དཀར་ཆག་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས་ <emph>གསརཔ་</emph></variable>ཨེབ་གཏང་།"
+msgid "<variable id=\"menuenew\">Choose <emph>Tools - Customize - Menus</emph> tab, click <emph>New</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_idN10919\n"
"help.text"
-msgid "<variable id=\"menuemove\">Choose <emph>Tools - Customize - Menu</emph> tab, click <emph>Menu - Move</emph></variable>"
-msgstr "<variable id=\"menuemove\"> <emph>ལག་ཆས་ - སྲོལ་སྒྲིག་འབད་ - དཀར་ཆག་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས་ <emph>དཀར་ཆག་ - སྤོ་བཤུད་</emph></variable>ཨེབ་གཏང་།"
+msgid "<variable id=\"menuemove\">Choose <emph>Tools - Customize - Menus</emph> tab, click <emph>Menu - Move</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3145171\n"
-"129\n"
"help.text"
msgid "<variable id=\"tastatur\">Choose <emph>Tools - Customize - Keyboard</emph> tab (a document must be opened)</variable>"
msgstr "<variable id=\"tastatur\"> <emph>ལག་ཆས་ - སྲོལ་སྒྲིག་འབད་ - ལྡེ་སྒྲོམ་</emph> ཨེབ་ལྡེ་ </variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -8526,7 +7764,6 @@ msgstr "<variable id=\"tastatur\"> <emph>ལག་ཆས་ - སྲོལ་ས
msgctxt ""
"00000406.xhp\n"
"par_id3153968\n"
-"19\n"
"help.text"
msgid "<variable id=\"symbole\">Choose <emph>Tools - Customize - Toolbars</emph> tab</variable>"
msgstr "<variable id=\"symbole\"> <emph>ལག་ཆས་ཚུ་- སྲོལ་སྒྲིག་འབད་ - ལག་ཆས་ཕྲ་རིང་ཚུ་</emph> ཨེབ་ལྡེ་ </variable>ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -8535,13 +7772,11 @@ msgstr "<variable id=\"symbole\"> <emph>ལག་ཆས་ཚུ་- སྲོ
msgctxt ""
"00000406.xhp\n"
"par_id3144432\n"
-"22\n"
"help.text"
msgid "<variable id=\"events\">Choose <emph>Tools - Customize - Events</emph> tab</variable>"
msgstr "<variable id=\"events\"> <emph>ལག་ཆས་ཚུ་ - སྲོལ་སྒྲིག་འབད་ - བྱུང་ལས་</emph> ཨེབ་ལྡེ་ </variable>གདམ་ཁ་རྐྱབས།"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3157895\n"
@@ -8550,7 +7785,6 @@ msgid "<variable id=\"autokorr\">Choose <emph>Tools - AutoCorrect - AutoCorrect
msgstr "<variable id=\"autokooptionen\"> <emph>ལག་ཆས་ཚུ་ - རང་བཞིན་ངེས་བདེན་</emph><emph>- གདམ་ཁ་ཚུ་</emph> ཨེབ་ལྡེ་ </variable>གདམ་ཁ་རྐྱབས།"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3153768\n"
@@ -8559,7 +7793,6 @@ msgid "<variable id=\"autokooptionen\">Choose <emph>Tools - AutoCorrect - AutoCo
msgstr "<variable id=\"autokoworterg\"> <emph>ལག་ཆས་ཚུ་ - རང་བཞིན་ངེས་བདེན་ - མིང་ཚིག་ཡོངས་སྒྲུབ་</emph> ཨེབ་ལྡེ་ </variable>གདམ་ཁ་རྐྱབས།"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id1978514\n"
@@ -8568,7 +7801,6 @@ msgid "<variable id=\"autokosmarttags\">Choose <emph>Tools - AutoCorrect - AutoC
msgstr "<variable id=\"autokoworterg\"> <emph>ལག་ཆས་ཚུ་ - རང་བཞིན་ངེས་བདེན་ - མིང་ཚིག་ཡོངས་སྒྲུབ་</emph> ཨེབ་ལྡེ་ </variable>གདམ་ཁ་རྐྱབས།"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3155368\n"
@@ -8577,7 +7809,6 @@ msgid "<variable id=\"autokoersetzung\">Choose <emph>Tools - AutoCorrect - AutoC
msgstr "<variable id=\"autokooptionen\"> <emph>ལག་ཆས་ཚུ་ - རང་བཞིན་ངེས་བདེན་</emph><emph>- གདམ་ཁ་ཚུ་</emph> ཨེབ་ལྡེ་ </variable>གདམ་ཁ་རྐྱབས།"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3155860\n"
@@ -8586,7 +7817,6 @@ msgid "<variable id=\"autokoausnahmen\">Choose <emph>Tools - AutoCorrect - AutoC
msgstr "<variable id=\"autokoworterg\"> <emph>ལག་ཆས་ཚུ་ - རང་བཞིན་ངེས་བདེན་ - མིང་ཚིག་ཡོངས་སྒྲུབ་</emph> ཨེབ་ལྡེ་ </variable>གདམ་ཁ་རྐྱབས།"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3153094\n"
@@ -8595,7 +7825,6 @@ msgid "<variable id=\"autokotyafz\">Choose <emph>Tools - AutoCorrect - AutoCorre
msgstr "<variable id=\"autokoworterg\"> <emph>ལག་ཆས་ཚུ་ - རང་བཞིན་ངེས་བདེན་ - མིང་ཚིག་ཡོངས་སྒྲུབ་</emph> ཨེབ་ལྡེ་ </variable>གདམ་ཁ་རྐྱབས།"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3153945\n"
@@ -8607,7 +7836,6 @@ msgstr "<variable id=\"autokoworterg\"> <emph>ལག་ཆས་ཚུ་ - ར
msgctxt ""
"00000406.xhp\n"
"par_id3151352\n"
-"80\n"
"help.text"
msgid "<variable id=\"exopas\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - View</emph></variable>"
msgstr ""
@@ -8616,7 +7844,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3154127\n"
-"88\n"
"help.text"
msgid "<variable id=\"etoplayout\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View</emph></variable>"
msgstr ""
@@ -8625,7 +7852,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3149664\n"
-"93\n"
"help.text"
msgid "<variable id=\"etotm\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Draw - General</emph></variable>"
msgstr ""
@@ -8634,7 +7860,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3145112\n"
-"125\n"
"help.text"
msgid "Path selection button in various wizards"
msgstr "ཝི་ཛརཌིསི་འདྲ་མིན་སྣ་ཚོགས་ནང་ལུ་འབྲུལ་ལམ་ཨེབ་རྟ་སེལ་འཐུ་འབད།"
@@ -8643,7 +7868,6 @@ msgstr "ཝི་ཛརཌིསི་འདྲ་མིན་སྣ་ཚོག
msgctxt ""
"00000406.xhp\n"
"par_id3153953\n"
-"126\n"
"help.text"
msgid "Click <emph>Edit</emph> button for a few entries under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Paths</emph>"
msgstr ""
@@ -8652,7 +7876,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3147295\n"
-"23\n"
"help.text"
msgid "<variable id=\"optionen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline></variable>"
msgstr ""
@@ -8661,7 +7884,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3156006\n"
-"24\n"
"help.text"
msgid "<variable id=\"optionenallgemein\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename]</emph></variable>"
msgstr ""
@@ -8670,7 +7892,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3155308\n"
-"25\n"
"help.text"
msgid "<variable id=\"benutzerdaten\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - User Data</emph></variable>"
msgstr ""
@@ -8679,7 +7900,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3155312\n"
-"136\n"
"help.text"
msgid "<variable id=\"allg\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - General</emph></variable>"
msgstr ""
@@ -8688,7 +7908,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3150032\n"
-"147\n"
"help.text"
msgid "<variable id=\"arbeit\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Memory</emph></variable>"
msgstr ""
@@ -8697,7 +7916,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3159153\n"
-"61\n"
"help.text"
msgid "<variable id=\"ansicht\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - View</emph></variable>"
msgstr ""
@@ -8706,7 +7924,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3166413\n"
-"137\n"
"help.text"
msgid "<variable id=\"drucken\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Print</emph></variable>"
msgstr ""
@@ -8715,13 +7932,11 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3147330\n"
-"26\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Paths</emph>"
msgstr ""
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3150036\n"
@@ -8733,7 +7948,6 @@ msgstr "<emph>ཞུན་དག་འབད་ - རང་བཞིན་ཚི
msgctxt ""
"00000406.xhp\n"
"par_id3149581\n"
-"31\n"
"help.text"
msgid "Choose <emph>Format - Area - Colors</emph> tab"
msgstr "རྩ་སྒྲིག་མངའ་ཁོངས་ཚོས་གཞི་ཚུ་ <emph>གདམ།</emph> tab"
@@ -8742,7 +7956,6 @@ msgstr "རྩ་སྒྲིག་མངའ་ཁོངས་ཚོས་གཞ
msgctxt ""
"00000406.xhp\n"
"par_id3145729\n"
-"66\n"
"help.text"
msgid "Choose <emph>Format - Area - Colors</emph> tab<emph> - Edit</emph> button"
msgstr "<emph>རྩ་སྒྲིག་ - མངའ་ཁོངས་ - ཚོས་གཞི་ཚུ་</emph> ཨེབ་ལྡེ་<emph> - ཞུན་དག་</emph>ཨེབ་རྟ་ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -8751,7 +7964,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - མངའ་ཁོངས་ - ཚོ
msgctxt ""
"00000406.xhp\n"
"par_id3149488\n"
-"67\n"
"help.text"
msgid "Choose <emph>Format - 3D Effects</emph> icon on the <emph>Illumination</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་འབད་ - ༣ ཌི་ ནུས་པ་ཚུ་</emph><emph>Illumination</emph>ཨེབ་ལྡེ་གུ་ ངོས་དཔར་ཚུ་གདམ་ཁ་རྐྱབས།"
@@ -8768,7 +7980,6 @@ msgstr "<image id=\"img_id3145364\" src=\"svx/res/nu02.png\" width=\"0.222inch\"
msgctxt ""
"00000406.xhp\n"
"par_id3151037\n"
-"68\n"
"help.text"
msgid "Select color on the <emph>Color</emph> tab page"
msgstr "<emph>ཚོས་གཞི་</emph>ཨེབ་ལྡེ་ཤོག་ལེབ་གུ་ ཚོས་གཞི་སེལ་འཐུ་འབད།"
@@ -8777,7 +7988,6 @@ msgstr "<emph>ཚོས་གཞི་</emph>ཨེབ་ལྡེ་ཤོག
msgctxt ""
"00000406.xhp\n"
"par_id3149403\n"
-"72\n"
"help.text"
msgid "<variable id=\"schriers\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Fonts</emph></variable>"
msgstr ""
@@ -8786,7 +7996,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3150717\n"
-"43\n"
"help.text"
msgid "<variable id=\"scripting\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Security</emph></variable>"
msgstr ""
@@ -8835,7 +8044,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3146989\n"
-"152\n"
"help.text"
msgid "<variable id=\"accessibility\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Accessibility</emph></variable>"
msgstr ""
@@ -8844,7 +8052,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3144746\n"
-"153\n"
"help.text"
msgid "<variable id=\"appearance\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Application Colors</emph></variable>"
msgstr ""
@@ -8853,7 +8060,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3156355\n"
-"32\n"
"help.text"
msgid "<variable id=\"landen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph></variable>"
msgstr ""
@@ -8862,7 +8068,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3147223\n"
-"27\n"
"help.text"
msgid "<variable id=\"rsave\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - General</emph></variable>"
msgstr ""
@@ -8871,7 +8076,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3153958\n"
-"119\n"
"help.text"
msgid "<variable id=\"etsofi\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph> - <emph>VBA Properties</emph></variable>"
msgstr ""
@@ -8880,7 +8084,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3153707\n"
-"122\n"
"help.text"
msgid "<variable id=\"etsofi2\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph> - <emph>Microsoft Office</emph></variable>"
msgstr ""
@@ -8889,7 +8092,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3145667\n"
-"49\n"
"help.text"
msgid "<variable id=\"html\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph> - <emph>HTML Compatibility</emph></variable>"
msgstr ""
@@ -8898,7 +8100,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3146792\n"
-"132\n"
"help.text"
msgid "<variable id=\"asiatypo\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings</emph></variable>"
msgstr ""
@@ -8907,7 +8108,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3157965\n"
-"131\n"
"help.text"
msgid "<variable id=\"sprachen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph></variable>"
msgstr ""
@@ -8916,7 +8116,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3155446\n"
-"160\n"
"help.text"
msgid "<variable id=\"sprachenctl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages - Complex Text Layout</emph></variable>"
msgstr ""
@@ -8925,7 +8124,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3150745\n"
-"45\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>"
msgstr ""
@@ -8934,7 +8132,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3148407\n"
-"134\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Writing Aids</emph>, in the <emph>Available language modules </emph>list, select one of the language modules and then click <emph>Edit</emph>."
msgstr ""
@@ -8943,7 +8140,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3150324\n"
-"157\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Writing Aids</emph>"
msgstr ""
@@ -8952,7 +8148,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3145620\n"
-"135\n"
"help.text"
msgid "<variable id=\"suchja\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Searching in Japanese</emph></variable>"
msgstr ""
@@ -8961,7 +8156,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3147341\n"
-"133\n"
"help.text"
msgid "<variable id=\"asialayout\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Asian Layout</emph></variable>"
msgstr ""
@@ -8970,7 +8164,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3147359\n"
-"138\n"
"help.text"
msgid "<variable id=\"internet\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Internet</emph></variable>"
msgstr ""
@@ -8979,7 +8172,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3156374\n"
-"33\n"
"help.text"
msgid "<variable id=\"internet1\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Internet - Proxy</emph></variable>"
msgstr ""
@@ -8988,7 +8180,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3149280\n"
-"94\n"
"help.text"
msgid "<variable id=\"optionentextdokument\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer</emph></variable>"
msgstr ""
@@ -9005,7 +8196,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3148929\n"
-"105\n"
"help.text"
msgid "<variable id=\"laden\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - General</emph></variable>"
msgstr ""
@@ -9022,7 +8212,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3149825\n"
-"144\n"
"help.text"
msgid "<variable id=\"einfuegenbeschriftung\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - AutoCaption</emph></variable>"
msgstr ""
@@ -9031,7 +8220,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3155333\n"
-"96\n"
"help.text"
msgid "<variable id=\"layout\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web </emph>- <emph>View</emph></variable>"
msgstr ""
@@ -9040,7 +8228,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3146316\n"
-"100\n"
"help.text"
msgid "<variable id=\"registerschattencursor\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web</emph> - <emph>Formatting Aids</emph></variable>"
msgstr ""
@@ -9049,7 +8236,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3153534\n"
-"47\n"
"help.text"
msgid "<variable id=\"raster\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Calc/%PRODUCTNAME Writer/Web - Grid</emph></variable>"
msgstr ""
@@ -9058,7 +8244,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3155961\n"
-"97\n"
"help.text"
msgid "Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Basic Fonts (Western)</emph>"
msgstr ""
@@ -9067,7 +8252,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3159313\n"
-"151\n"
"help.text"
msgid "Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Basic Fonts (Asian)</emph> (only available if Asian language support is enabled)"
msgstr ""
@@ -9076,7 +8260,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3155607\n"
-"98\n"
"help.text"
msgid "<variable id=\"drucken1\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/ %PRODUCTNAME Writer/Web </emph>- <emph>Print</emph></variable>"
msgstr ""
@@ -9093,7 +8276,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3145769\n"
-"99\n"
"help.text"
msgid "<variable id=\"registertabelle\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Table</emph></variable>"
msgstr ""
@@ -9102,7 +8284,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3147005\n"
-"101\n"
"help.text"
msgid "<variable id=\"registeraenderungen\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Changes</emph></variable>"
msgstr ""
@@ -9111,7 +8292,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3159333\n"
-"48\n"
"help.text"
msgid "<variable id=\"webbrowser1\">Open an HTML document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web</emph></variable>"
msgstr ""
@@ -9120,7 +8300,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3149448\n"
-"139\n"
"help.text"
msgid "<variable id=\"hinter\">Open an HTML document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web - Background</emph></variable>"
msgstr ""
@@ -9129,7 +8308,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3149336\n"
-"78\n"
"help.text"
msgid "<variable id=\"tabellendokument\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc</emph></variable>"
msgstr ""
@@ -9138,7 +8316,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3152966\n"
-"81\n"
"help.text"
msgid "<variable id=\"tabelleeingabe\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - General</emph></variable>"
msgstr ""
@@ -9147,7 +8324,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3149814\n"
-"79\n"
"help.text"
msgid "<variable id=\"tabelleinhalte\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - View</emph></variable>"
msgstr ""
@@ -9156,7 +8332,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3154656\n"
-"84\n"
"help.text"
msgid "<variable id=\"exopbe\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Calculate</emph></variable>"
msgstr ""
@@ -9165,7 +8340,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3154657\n"
-"84\n"
"help.text"
msgid "<variable id=\"exopco\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Compatibility</emph></variable>"
msgstr ""
@@ -9174,7 +8348,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3152494\n"
-"82\n"
"help.text"
msgid "<variable id=\"exopso\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Sort Lists</emph></variable>"
msgstr ""
@@ -9183,7 +8356,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3152495\n"
-"82\n"
"help.text"
msgid "<variable id=\"exopfo\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Formula</emph></variable>"
msgstr ""
@@ -9192,7 +8364,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3152496\n"
-"82\n"
"help.text"
msgid "<variable id=\"exopde\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Defaults</emph></variable>"
msgstr ""
@@ -9201,7 +8372,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3149527\n"
-"83\n"
"help.text"
msgid "<variable id=\"listekopieren\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Sort Lists - Copy</emph> button</variable>"
msgstr ""
@@ -9210,7 +8380,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3154903\n"
-"85\n"
"help.text"
msgid "<variable id=\"exopaen\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Changes</emph></variable>"
msgstr ""
@@ -9219,7 +8388,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3152582\n"
-"140\n"
"help.text"
msgid "<variable id=\"etotall\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress</emph></variable>"
msgstr ""
@@ -9228,7 +8396,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3148418\n"
-"91\n"
"help.text"
msgid "<variable id=\"etopsonstiges\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - General</emph></variable>"
msgstr ""
@@ -9237,7 +8404,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3150380\n"
-"87\n"
"help.text"
msgid "<variable id=\"etopas\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View</emph></variable>"
msgstr ""
@@ -9246,7 +8412,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3166423\n"
-"89\n"
"help.text"
msgid "<variable id=\"etopfe\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Grid</emph></variable>"
msgstr ""
@@ -9255,7 +8420,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3148873\n"
-"90\n"
"help.text"
msgid "<variable id=\"etopdk\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Print</emph></variable>"
msgstr ""
@@ -9264,7 +8428,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3145220\n"
-"92\n"
"help.text"
msgid "<variable id=\"etotallz\">Open a drawing document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Draw</emph></variable>"
msgstr ""
@@ -9273,7 +8436,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3149573\n"
-"77\n"
"help.text"
msgid "<variable id=\"etsodr\">Open a Math document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Math</emph></variable>"
msgstr ""
@@ -9282,7 +8444,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3145613\n"
-"112\n"
"help.text"
msgid "<variable id=\"formeinst\">Open a Math document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Math - Settings</emph></variable>"
msgstr ""
@@ -9291,7 +8452,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3155137\n"
-"111\n"
"help.text"
msgid "<variable id=\"diagrfarbe\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Charts</emph></variable>"
msgstr ""
@@ -9300,7 +8460,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3149211\n"
-"113\n"
"help.text"
msgid "<variable id=\"diagrgfarbe\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Charts - Default Colors</emph></variable>"
msgstr ""
@@ -9309,7 +8468,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3150862\n"
-"141\n"
"help.text"
msgid "<variable id=\"datenqu\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base</emph></variable>"
msgstr ""
@@ -9318,7 +8476,6 @@ msgstr ""
msgctxt ""
"00000406.xhp\n"
"par_id3147368\n"
-"142\n"
"help.text"
msgid "<variable id=\"verbindungen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - Connections</emph></variable>"
msgstr ""
@@ -9343,7 +8500,6 @@ msgstr "སྒོ་སྒྲིག་དཀར་ཆག"
msgctxt ""
"00000407.xhp\n"
"hd_id3154349\n"
-"1\n"
"help.text"
msgid "Window Menu"
msgstr "སྒོ་སྒྲིག་དཀར་ཆག"
@@ -9352,7 +8508,6 @@ msgstr "སྒོ་སྒྲིག་དཀར་ཆག"
msgctxt ""
"00000407.xhp\n"
"par_id3083278\n"
-"6\n"
"help.text"
msgid "<variable id=\"window\">Choose <emph>Window - New Window</emph></variable>"
msgstr "<variable id=\"window\"> <emph>སྒོ་སྒྲིག་ - སྒོ་སྒྲིག་གསརཔ་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -9361,7 +8516,6 @@ msgstr "<variable id=\"window\"> <emph>སྒོ་སྒྲིག་ - སྒ
msgctxt ""
"00000407.xhp\n"
"par_id3154545\n"
-"13\n"
"help.text"
msgid "<variable id=\"liste\">Choose <emph>Window</emph> - List of open documents</variable>"
msgstr "<variable id=\"liste\"> <emph>སྒོ་སྒྲིག་</emph> - གཞན་གྱིས་སྤྱོད་ཚུགས་པ་ཚུ་གི་ཐོ་བཀོད་</variable>གདམ་ཁ་རྐྱབས།"
@@ -9378,26 +8532,22 @@ msgstr "དཀར་ཆག་སྒྲོག་རམ།"
msgctxt ""
"00000408.xhp\n"
"hd_id3154689\n"
-"1\n"
"help.text"
msgid "Help Menu"
msgstr "དཀར་ཆག་སྒྲོག་རམ།"
#: 00000408.xhp
-#, fuzzy
msgctxt ""
"00000408.xhp\n"
"par_id3150960\n"
-"2\n"
"help.text"
msgid "<variable id=\"content\">Choose <emph>Help - %PRODUCTNAME Help</emph></variable>"
-msgstr "<variable id=\"content\"> <emph>སྒྲོག་རམ་ - ནང་དོན་</emph></variable>གདམ་ཁ་རྐྱབས།"
+msgstr ""
#: 00000408.xhp
msgctxt ""
"00000408.xhp\n"
"par_id3147240\n"
-"14\n"
"help.text"
msgid "<variable id=\"infoanwendung\">Choose <emph>Help - About </emph><emph>%PRODUCTNAME</emph></variable>"
msgstr "<variable id=\"infoanwendung\"> <emph>སྒྲོག་རམ་ - སྐོར་ལས་ <item type=\"productname\">%PRODUCTNAME</item></emph> </variable>གདམ་ཁ་རྐྱབས།"
@@ -9406,7 +8556,6 @@ msgstr "<variable id=\"infoanwendung\"> <emph>སྒྲོག་རམ་ - ས
msgctxt ""
"00000408.xhp\n"
"par_id3151387\n"
-"15\n"
"help.text"
msgid "Automatically after <item type=\"productname\">%PRODUCTNAME</item> is first started."
msgstr "<item type=\"productname\">%PRODUCTNAME</item>འདི་རང་བཞིན་གྱིས་འགོ་བཙུགས་ཚར་བའི་ཤུལ་ལས།"
@@ -9415,13 +8564,11 @@ msgstr "<item type=\"productname\">%PRODUCTNAME</item>འདི་རང་བ
msgctxt ""
"00000408.xhp\n"
"par_id3153808\n"
-"16\n"
"help.text"
msgid "Choose <emph>Help - Registration</emph> (this is a direct link to an external website)"
msgstr ""
#: 00000409.xhp
-#, fuzzy
msgctxt ""
"00000409.xhp\n"
"tit\n"
@@ -9430,20 +8577,17 @@ msgid "Toolbars"
msgstr "#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# database.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# sdraw.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# scalc.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ་།"
#: 00000409.xhp
-#, fuzzy
msgctxt ""
"00000409.xhp\n"
"hd_id3149517\n"
-"1\n"
"help.text"
msgid "Toolbars"
-msgstr "#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# database.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# sdraw.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# scalc.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ།\\n#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\\nལག་ཆས་ཕྲ་རིང་ཚུ་།"
+msgstr ""
#: 00000409.xhp
msgctxt ""
"00000409.xhp\n"
"par_id3156053\n"
-"2\n"
"help.text"
msgid "Choose <emph>Data - Filter - Standard Filter</emph>"
msgstr "<emph>གནད་སྡུད་ - ཚགས་མ་ - ཚད་ལྡན་ཚགས་མ་</emph>གདམ་ཁ་རྐྱབས།"
@@ -9452,7 +8596,6 @@ msgstr "<emph>གནད་སྡུད་ - ཚགས་མ་ - ཚད་ལྡ
msgctxt ""
"00000409.xhp\n"
"par_id3154350\n"
-"3\n"
"help.text"
msgid "Database table view: <emph>Standard Filter</emph> icon in the <emph>Database</emph> Toolbar"
msgstr "གནད་སྡུད་གཞི་རྟེན་ཐིག་ཁྲམ་སྟོན : <emph>ཚད་ལྡན་ཚགས་མ་</emph> <emph>Database</emph> ལག་ཆས་ཕྲ་རིང་ནང་གི་ངོས་དཔར།"
@@ -9461,7 +8604,6 @@ msgstr "གནད་སྡུད་གཞི་རྟེན་ཐིག་ཁྲ
msgctxt ""
"00000409.xhp\n"
"par_id3154183\n"
-"4\n"
"help.text"
msgid "Form view: <emph>Standard Filter</emph> icon in the <emph>Form</emph> Bar"
msgstr "རྣམ་པའི་མཐོང་སྣང་ལས་: <emph>ཚད་ལྡན་ཚགས་མ་</emph> <emph>རྣམ་པ་</emph> པྲ་རིང་ནང་གི་ངོས་དཔར།"
@@ -9478,7 +8620,6 @@ msgstr "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3147588\"><alt id=\"al
msgctxt ""
"00000409.xhp\n"
"par_id3148731\n"
-"5\n"
"help.text"
msgid "Standard Filter"
msgstr "ཚད་ལྡན་ཚགས་མ།"
@@ -9495,7 +8636,6 @@ msgstr "གནད་སྡུད་གཞི་རྟེན།"
msgctxt ""
"00000450.xhp\n"
"hd_id3154689\n"
-"1\n"
"help.text"
msgid "Database"
msgstr "གནད་སྡུད་གཞི་རྟེན།"
@@ -9504,7 +8644,6 @@ msgstr "གནད་སྡུད་གཞི་རྟེན།"
msgctxt ""
"00000450.xhp\n"
"par_id3152876\n"
-"7\n"
"help.text"
msgid "<variable id=\"DBTab\">In a database file window, choose <emph>Tools - Table Filter</emph></variable>"
msgstr "<variable id=\"DBTab\">གནད་སྡུད་གཞི་རྟེན་ཡིག་སྣོད་སྒོ་སྒྲིག་ནང་ <emph>ལག་ཆས་ཚུ་ - ཐིག་ཁྲམ་ཚགས་མ་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -9513,7 +8652,6 @@ msgstr "<variable id=\"DBTab\">གནད་སྡུད་གཞི་རྟེ
msgctxt ""
"00000450.xhp\n"
"par_id3153244\n"
-"57\n"
"help.text"
msgid "<variable id=\"DBAbfragen\"><emph>View - Database Objects - Queries</emph></variable>"
msgstr "<variable id=\"DBAbfragen\"><emph>སྟོན་ - གནད་སྡུད་གཞི་རྟེན་གྱི་དངོས་པོ་ཚུ་ - འདྲི་དཔྱད་ཚུ་</emph></variable>"
@@ -9522,7 +8660,6 @@ msgstr "<variable id=\"DBAbfragen\"><emph>སྟོན་ - གནད་སྡ
msgctxt ""
"00000450.xhp\n"
"par_id3147294\n"
-"4\n"
"help.text"
msgid "<variable id=\"Typ\">In a database file window, choose <emph>Edit - Database - Properties - Advanced Settings</emph> tab</variable>"
msgstr "<variable id=\"Typ\">གནས་སྡུད་གཞི་རིམ་ཡིག་སྣོད་ཝིནཌོ་ཅིག་ནང་ <emph>ཞུན་དག་ - གནས་སྡུད་གཞི་རིམ - རྒྱུ་དངོས་ཚུ - ཡར་བསྐྱོད་འབད་ནི་སྒྲིག་སྟངས་ཚུ་</emph> མཆོང་ལྡེ་གདམ། </variable>"
@@ -9531,7 +8668,6 @@ msgstr "<variable id=\"Typ\">གནས་སྡུད་གཞི་རིམ་
msgctxt ""
"00000450.xhp\n"
"par_id3159411\n"
-"5\n"
"help.text"
msgid "<variable id=\"Datenquelle\">In a database file window of type ODBC or Address book, choose Edit - Database - Connection Type</variable>"
msgstr "<variable id=\"Datenquelle\">ཨོ་ཌི་བི་སི་དབྱེ་བ་གི་གནས་སྡུད་ཡིག་སྣོད་ཝིནཌོ་ཅིག་ཡང་ན་ཁ་བྱང་དེབ་ནང་ ཞུན་དག་ - གནས་སྡུད་གཞི་རིམ - མཐུད་ལམ་དབྱེ་བ་གདམ། </variable>"
@@ -9540,7 +8676,6 @@ msgstr "<variable id=\"Datenquelle\">ཨོ་ཌི་བི་སི་དབ
msgctxt ""
"00000450.xhp\n"
"par_id3149119\n"
-"6\n"
"help.text"
msgid "<variable id=\"Verzeichnis\">Path selection button in various Wizards / <emph>Edit</emph> Buttons for some entries in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Paths</emph></variable>"
msgstr ""
@@ -9549,7 +8684,6 @@ msgstr ""
msgctxt ""
"00000450.xhp\n"
"par_id3154497\n"
-"8\n"
"help.text"
msgid "<variable id=\"ODBC\">In a database file window of type ODBC, choose Edit - Database - Connection Type</variable>"
msgstr "<variable id=\"ODBC\">ཨོ་ཌི་བི་སི་དབྱེ་བ་གི་གནས་སྡུད་ཡིག་སྣོད་ཝིནཌོ་ཅིག་ནང་ ཞུན་དག་ - གནས་སྡུད་གཞི་རིམ་ - མཐུད་ལམ་དབྱེ་བ་གདམ། </variable>"
@@ -9558,7 +8692,6 @@ msgstr "<variable id=\"ODBC\">ཨོ་ཌི་བི་སི་དབྱེ
msgctxt ""
"00000450.xhp\n"
"par_id3149355\n"
-"61\n"
"help.text"
msgid "<variable id=\"ldap\">In a database file window of type Address book - LDAP, choose Edit - Database - Properties</variable>"
msgstr "<variable id=\"ldap\"> ཁ་བྱང་ཀི་དེབ་དབྱེ་བ་- ཨེལ་ཌི་ཨེ་པི་གི་གནད་སྡུད་གཞི་རྟེན་ཡིག་སྣོད་ནང་ ཞུན་དག་འབད་ - གནད་སྡུད་གཞི་རྟེན་ - རྒྱུ་དངོས་ </variable>གདམ་ཁ་རྐྱབས།"
@@ -9567,7 +8700,6 @@ msgstr "<variable id=\"ldap\"> ཁ་བྱང་ཀི་དེབ་དབྱ
msgctxt ""
"00000450.xhp\n"
"par_id3157896\n"
-"9\n"
"help.text"
msgid "<variable id=\"JDBC\">In a database file window of type JDBC, choose <emph>Edit - Database - Properties</emph></variable>"
msgstr "<variable id=\"JDBC\">ཇེ་ཌི་བི་སི་དབྱེ་བ་གི་གནས་སྡུད་ཡིག་སྣོད་ཝིནཌོ་ཅིག་ནང་ <emph>ཞུན་དག་ - གནས་སྡུད་གཞི་རིམ་ - རྒྱུ་དངོས་ཚུ་གདམ།</emph></variable>"
@@ -9576,7 +8708,6 @@ msgstr "<variable id=\"JDBC\">ཇེ་ཌི་བི་སི་དབྱེ
msgctxt ""
"00000450.xhp\n"
"par_id3148548\n"
-"81\n"
"help.text"
msgid "<variable id=\"mysql\">In a database file window of type MySQL, choose <emph>Edit - Database - Properties</emph></variable>"
msgstr "<variable id=\"mysql\">མའི་ཨེསི་ཀིའུ་ཨེལ་དབྱེ་བ་གི་གནས་སྡུད་གཞི་རིམ་ཡིག་སྣོད་ཝིནཌོ་ཅིག་ནང་ <emph>ཞུན་དག་- གནས་སྡུད་གཞི་རིམ་ - རྒྱུ་དངོས་ཚུ་གདམ།</emph></variable>"
@@ -9585,7 +8716,6 @@ msgstr "<variable id=\"mysql\">མའི་ཨེསི་ཀིའུ་ཨེ
msgctxt ""
"00000450.xhp\n"
"par_id3149346\n"
-"10\n"
"help.text"
msgid "<variable id=\"dBase\">In a database file window of type dBASE, choose <emph>Edit - Database - Properties</emph></variable>"
msgstr "<variable id=\"dBase\">ཌི་གཞི་རིམ་དབྱེ་བ་གི་གནས་སྡུད་གཞི་རིམ་ཡིག་སྣོད་ཝིནཌོ་ཅིག་ནང་<emph>ཞུན་་དག་ - གནས་སྡུད་གཞི་རིམ་ - རྒྱུ་དངོས་ཚུ་གདམ།</emph></variable>"
@@ -9594,7 +8724,6 @@ msgstr "<variable id=\"dBase\">ཌི་གཞི་རིམ་དབྱེ་
msgctxt ""
"00000450.xhp\n"
"par_id3147043\n"
-"11\n"
"help.text"
msgid "<variable id=\"dBasein\">In a database file window of type dBASE, choose <emph>Edit - Database - Properties</emph>, click <emph>Indexes</emph></variable>"
msgstr "<variable id=\"dBasein\">ཌི་གཞི་རིམ་དབྱེ་བ་གི་གནས་སྡུད་གཞི་རིམ་ཡིག་སྣོད་ཝིནཌོ་ཅིག་ནང་ <emph>ཞུན་དག་ - གནས་སྡུད་གཞི་རིམ་ - རྒྱུ་དངོས་ཚུ་</emph>ཟུར་ཐོ་ <emph>ཨེབ་གཏང་ཚུ་གདམ།</emph></variable>"
@@ -9603,7 +8732,6 @@ msgstr "<variable id=\"dBasein\">ཌི་གཞི་རིམ་དབྱེ
msgctxt ""
"00000450.xhp\n"
"par_id3154317\n"
-"12\n"
"help.text"
msgid "<variable id=\"Text\">In a database file window of type Text, choose <emph>Edit - Database - Properties</emph></variable>"
msgstr "<variable id=\"Text\">ཚིག་ཡིག་དབྱེ་བ་གི་གནས་སྡུད་གཞི་རིམ་ཡིག་སྣོད་ཝིནཌོ་ཅིག་ནང་ <emph>ཞུན་དག་- གནས་སྡུད་གཞི་རིམ་ - རྒྱུ་དངོས་ཚུ་གདམ།</emph></variable>"
@@ -9612,7 +8740,6 @@ msgstr "<variable id=\"Text\">ཚིག་ཡིག་དབྱེ་བ་ག
msgctxt ""
"00000450.xhp\n"
"par_id3150774\n"
-"20\n"
"help.text"
msgid "<variable id=\"ADO\">In a database file window of type MS ADO, choose <emph>Edit - Database - Properties</emph></variable>"
msgstr "<variable id=\"ADO\">ཨེམ་ཨེསི་ཨེ་ཌི་ཨོ་དབྱེ་བ་གི་གནས་སྡུད་གཞི་རིམ་ཡིག་སྣོད་ཝིནཌོ་ཅིག་ནང་ <emph>ཞུན་དག - གནས་སྡུད་གཞི་རིམ་ - རྒྱུ་དངོས་ཚུ་གདམ།</emph></variable>"
@@ -9621,7 +8748,6 @@ msgstr "<variable id=\"ADO\">ཨེམ་ཨེསི་ཨེ་ཌི་ཨོ
msgctxt ""
"00000450.xhp\n"
"par_id3151110\n"
-"21\n"
"help.text"
msgid "<variable id=\"SQLStatement\">In a database file window, choose <emph>Tools - SQL</emph></variable>"
msgstr "<variable id=\"SQLStatement\">གནས་སྡུད་ཡིག་སྣོད་ཝིནཌོ་ཅིག་ནང་ <emph>ལག་ཆས་ཚུ - ཨེསི་ཀིའུ་ཨེལ་གདམ།</emph></variable>"
@@ -9630,7 +8756,6 @@ msgstr "<variable id=\"SQLStatement\">གནས་སྡུད་ཡིག་ས
msgctxt ""
"00000450.xhp\n"
"par_id3147209\n"
-"22\n"
"help.text"
msgid "<variable id=\"Abfragen\">In a database file window, click the <emph>Queries</emph> icon</variable>"
msgstr "<variable id=\"Abfragen\">གནས་སྡུད་གཞི་རིམ་ཡིག་སྣོད་ཝིནཌོ་ཅིག་ནང་ <emph>དྲི་བ་ཚུ་ཨེབ་གཏང་འབད།</emph> icon </variable>"
@@ -9639,7 +8764,6 @@ msgstr "<variable id=\"Abfragen\">གནས་སྡུད་གཞི་རི
msgctxt ""
"00000450.xhp\n"
"par_id3153880\n"
-"62\n"
"help.text"
msgid "<variable id=\"Tabellen\">In a database file window, click the <emph>Tables</emph> icon</variable>"
msgstr "<variable id=\"Tabellen\">གནས་སྡུད་གཞི་རིམ་ཡིག་སྣོད་ཝིནཌོ་ཅིག་ནང་ <emph>ཐིག་ཁྲམ་</emph> ངོས་དཔར་འདི་ཨེབ་གཏང་འབད། </variable>"
@@ -9648,7 +8772,6 @@ msgstr "<variable id=\"Tabellen\">གནས་སྡུད་གཞི་རི
msgctxt ""
"00000450.xhp\n"
"par_id3153760\n"
-"64\n"
"help.text"
msgid "<variable id=\"tabellenentwurf\">In a database file window, click the Tables icon. Choose Insert -<emph> Table Design</emph> or <emph>Edit - Edit</emph></variable>"
msgstr "<variable id=\"tabellenentwurf\">གནད་སྡུད་གཞི་རྟེན་ཡིག་སྣོད་སྒོ་སྒྲིག་ནང་ ཐིག་ཁྲམ་ངོས་དཔར་འདི་ཨེབ་གཏང་། བཙུགས་ -<emph> ཐིག་ཁྲམ་བཀོད་བསྒྲིག་</emph> ཡང་ན་ <emph>ཞུན་དག་འབད་ - ཞུན་དག་འབད་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -9657,7 +8780,6 @@ msgstr "<variable id=\"tabellenentwurf\">གནད་སྡུད་གཞི་
msgctxt ""
"00000450.xhp\n"
"par_id3156329\n"
-"65\n"
"help.text"
msgid "<variable id=\"indexentwurf\">In a database file window, click the Tables icon. Choose <emph>Insert - Table Design</emph> or <emph>Edit - Edit</emph></variable>"
msgstr "<variable id=\"indexentwurf\">གནས་སྡུད་གཞི་རིམ་ཡིག་སྣོད་ཝིནཌོ་ཅིག་ནང་ཐིག་ཁྲམ་ངོས་དཔར་འདི་ཨེབ་གཏང་འབད། <emph>བཙུགས་ - ཐིག་ཁྲམ་བཀོད་སྒྲིག་</emph> ཡང་ན་ <emph>ཞུན་དག་ - ཞུན་དག་གདམ།</emph></variable>"
@@ -9666,7 +8788,6 @@ msgstr "<variable id=\"indexentwurf\">གནས་སྡུད་གཞི་ར
msgctxt ""
"00000450.xhp\n"
"par_id3154047\n"
-"23\n"
"help.text"
msgid "<variable id=\"AbfrageNeu\">In a database file window, choose <emph>Insert - Query (Design view)</emph></variable>"
msgstr "<variable id=\"AbfrageNeu\">གནད་སྡུད་གཞི་རྟེན་ཡིག་སྣོད་སྒོ་སྒྲིག་ནང་ <emph>བཙུགས་ -འདྲི་དཔྱད་ (བཀོད་བསྒྲིག་སྟོན་)</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -9675,7 +8796,6 @@ msgstr "<variable id=\"AbfrageNeu\">གནད་སྡུད་གཞི་ར
msgctxt ""
"00000450.xhp\n"
"par_id3149579\n"
-"24\n"
"help.text"
msgid "<variable id=\"entwab\">In a database file window, click the <emph>Queries</emph> icon, then choose <emph>Edit - Edit</emph></variable>"
msgstr "<variable id=\"entwab\">གནས་སྡུད་གཞི་རིམ་ཡིག་སྣོད་ཝིནཌོ་ཅིག་ནང་<emph>དྲི་བ་</emph> ངོས་དཔར་འདི་གདམ་ དེ་ལས་ <emph>ཞིན་དག་ - ཞུན་དག་གདམ།</emph></variable>"
@@ -9684,7 +8804,6 @@ msgstr "<variable id=\"entwab\">གནས་སྡུད་གཞི་རིམ
msgctxt ""
"00000450.xhp\n"
"par_id3149902\n"
-"25\n"
"help.text"
msgid "<variable id=\"FehlendesElement\">In a database file window, click the <emph>Queries</emph> icon, then choose <emph>Edit - Edit</emph>. When referenced fields no longer exist, you see this dialog</variable>"
msgstr "<variable id=\"FehlendesElement\">གནས་སྡུད་གཞི་རིམ་ཡིག་སྣོད་ཝིནཌོ་ཅིག་ནང་ <emph>ངོས་དཔར་ </emph> དྲི་བ་ཚུ་ཨེབ་གཏང་འབད་དེ་ལས་<emph>ཞུན་དག་ - ཞུན་དག་གདམ།</emph> གཞི་བསྟུན་འབད་ཡོད་མི་ས་སྒོ་ཚུ་མེད་པའི་སྐབས་ཁྱོད་ཀྱི་ཌའི་ལོག་འདི་མཐོང་འོང་། </variable>"
@@ -9693,7 +8812,6 @@ msgstr "<variable id=\"FehlendesElement\">གནས་སྡུད་གཞི
msgctxt ""
"00000450.xhp\n"
"par_id3159166\n"
-"26\n"
"help.text"
msgid "<variable id=\"Joins\">Open query design and choose <emph>Insert - New Relation</emph>, or double-click on a connection line between two tables.</variable>"
msgstr "<variable id=\"Joins\">འདྲི་དཔྱད་བཀོད་བསྒྲིག་ཁ་ཕྱེ་བཞིནམ་ལས་ <emph>བཙུགས་ - མཐུན་འབྲེལ་གསརཔ</emph>གདམ་ཁ་རྐྱབས་ནི་དང་ ཡང་ན་ ཐིག་ཁྲམ་གཉིས་ཀྱི་བར་ན་ཡོད་པའི་ གྲལ་ཐིག་མཐུད་ལམ་གུ་ ཨེབ་གཏང་ཐེང་གཉིས་</variable>"
@@ -9710,7 +8828,6 @@ msgstr "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inc
msgctxt ""
"00000450.xhp\n"
"par_id3153896\n"
-"41\n"
"help.text"
msgid "Insert Tables"
msgstr "ཐིག་ཁྲམ་ཚུ་བཙུགས།"
@@ -9727,7 +8844,6 @@ msgstr "<image id=\"img_id3147282\" src=\"cmd/sc_dbaddrelation.png\" width=\"0.2
msgctxt ""
"00000450.xhp\n"
"par_id3159085\n"
-"43\n"
"help.text"
msgid "New Relation"
msgstr "མཐུན་འབྲེལ་གསརཔ།"
@@ -9736,7 +8852,6 @@ msgstr "མཐུན་འབྲེལ་གསརཔ།"
msgctxt ""
"00000450.xhp\n"
"par_id3150414\n"
-"47\n"
"help.text"
msgid "<emph>Find Record</emph> icon on the Table Data bar and Form Design bar"
msgstr "ཐིག་ཁྲམ་གནད་སྡུད་ཕྲ་རིང་དང་ རྣམ་པ་བཀོད་བསྒྲིག་ཕྲ་རིང་གུ་<emph>དྲན་ཐོ་འཚོལ་</emph>ངོས་དཔར།"
@@ -9753,7 +8868,6 @@ msgstr "<image id=\"img_id3145419\" src=\"cmd/sc_recsearch.png\" width=\"0.222in
msgctxt ""
"00000450.xhp\n"
"par_id3157322\n"
-"48\n"
"help.text"
msgid "Find Record"
msgstr "དྲན་ཐོ་འཚོལ།"
@@ -9762,7 +8876,6 @@ msgstr "དྲན་ཐོ་འཚོལ།"
msgctxt ""
"00000450.xhp\n"
"par_id3150870\n"
-"49\n"
"help.text"
msgid "<emph>Sort Order</emph> icon on the Table Data bar and Form Design bar"
msgstr "ཐིག་ཁྲམ་གནད་སྡུད་ཕྲ་རིང་དང་ རྣམ་པ་བཀོད་བསྒྲིག་ཕྲ་རིང་གུ་ <emph>དབྱེ་སེལ་གོ་རིམ་</emph>ངོས་དཔར།"
@@ -9779,7 +8892,6 @@ msgstr "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inc
msgctxt ""
"00000450.xhp\n"
"par_id3145745\n"
-"50\n"
"help.text"
msgid "Sort Order"
msgstr "དབྱེ་སེལ་གོ་རིམ།"
@@ -9788,7 +8900,6 @@ msgstr "དབྱེ་སེལ་གོ་རིམ།"
msgctxt ""
"00000450.xhp\n"
"par_id3145171\n"
-"55\n"
"help.text"
msgid "<variable id=\"allgemein\">In a database file window, choose <emph>Edit - Database - Properties</emph></variable>"
msgstr "<variable id=\"allgemein\">གནས་སྡུད་གཞི་རིམ་ཡིག་སྣོད་ཝིནཌོ་ཅིག་ནང་ <emph>ཞུན་དག - གནས་སྡུད་གཞི་རིམ་ -རྒྱུ་དངོས་ཚུ་གདམ།</emph></variable>"
@@ -9797,7 +8908,6 @@ msgstr "<variable id=\"allgemein\">གནས་སྡུད་གཞི་རི
msgctxt ""
"00000450.xhp\n"
"par_id3159252\n"
-"63\n"
"help.text"
msgid "<variable id=\"tabellecopy\">Drag and drop a table or a query into the table part of another database file window</variable>"
msgstr "<variable id=\"tabellecopy\">འདྲུད་དང་ཐིག་ཁྲམ་ཅིག་བཀོག་བཞག་ཡང་ནགཞན་གནས་སྡུད་གཞི་རིམ་ཡིག་སྣོད་ཝིནཌོ་གི་ཐིག་ཁྲམ་ཡན་ལག་འདི་ནང་དྲི་བ་ཅིག </variable>"
@@ -9806,7 +8916,6 @@ msgstr "<variable id=\"tabellecopy\">འདྲུད་དང་ཐིག་ཁ
msgctxt ""
"00000450.xhp\n"
"par_id3148560\n"
-"66\n"
"help.text"
msgid "<variable id=\"formularneu\">In a database file window, choose<emph> Insert - Form</emph></variable>"
msgstr "<variable id=\"formularneu\">གནད་སྡུད་གཞི་རྟེན་ཡིག་སྣོད་སྒོ་སྒྲིག་ནང་ <emph> བཙུགས་ - རྣམ་པ་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -9815,7 +8924,6 @@ msgstr "<variable id=\"formularneu\">གནད་སྡུད་གཞི་ར
msgctxt ""
"00000450.xhp\n"
"par_id3155430\n"
-"67\n"
"help.text"
msgid "<variable id=\"benutzereinstellungen\">In a database file window, choose <emph>Edit - Database - Properties</emph></variable>"
msgstr "<variable id=\"benutzereinstellungen\">གནས་སྡུད་གཞི་རིམ་ཡིག་སྣོད་ཝིནཌོ་ཅིག་ནང་ <emph>ཞུན་དག་ - གནས་སྡུད་གཞི་རིམ་ - རྒྱུ་དངོས་ཚུ་གདམ།</emph></variable>"
@@ -9824,7 +8932,6 @@ msgstr "<variable id=\"benutzereinstellungen\">གནས་སྡུད་གཞ
msgctxt ""
"00000450.xhp\n"
"par_id3147441\n"
-"69\n"
"help.text"
msgid "<variable id=\"relationen\">In a database file window, choose <emph>Tools - Relationships</emph></variable>"
msgstr "<variable id=\"relationen\">གནས་སྡུད་གཞི་རིམ་ཡིག་སྣོད་ཝིནཌོ་ཅིག་ནང་ <emph>ལག་ཆས་ཚུ་ -མཐུན་འབྲེལ་ཚུ་གདམ། </emph></variable>"
@@ -9838,7 +8945,6 @@ msgid "Format Menu"
msgstr "རྩ་སྒྲིག་གི་དཀར་ཆག"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"hd_id3150347\n"
@@ -9847,7 +8953,6 @@ msgid "Format Menu"
msgstr "རྩ་སྒྲིག་གི་དཀར་ཆག"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3145356\n"
@@ -9856,7 +8961,6 @@ msgid "<variable id=\"standard\">Choose <emph>Format - Clear Direct Formatting</
msgstr "<variable id=\"standard\"> <emph>རྩ་སྒྲིག་ - སྔོན་སྒྲིག་རྩ་སྒྲིག་འབད་དོ་</emph></variable>གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3153244\n"
@@ -9865,7 +8969,6 @@ msgid "Choose <emph>Format - Character</emph>"
msgstr "<emph>རྩ་སྒྲིག་ - ཡིག་འབྲུ་</emph>གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3152352\n"
@@ -9882,7 +8985,6 @@ msgid "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.png\"><alt id=\"al
msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3149999\n"
@@ -9891,7 +8993,6 @@ msgid "Character"
msgstr "ཡིག་འབྲུ།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3153935\n"
@@ -9900,7 +9001,6 @@ msgid "Choose <emph>Format - Character - Font</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ - ཡིག་འབྲུ་ - ཡིག་གཟུགས་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3157958\n"
@@ -9909,7 +9009,6 @@ msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of a
msgstr "<emph>རྩ་སྒྲིག་- བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་དོ་</emph> - འཛུལ་ཞུགས་ཀྱི་ ནང་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་བཞིནམ་ལས་ <emph>ལེགས་བཅོས་འབད་/གསརཔ་ - ཡིག་གཟུགས་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3155338\n"
@@ -9918,7 +9017,6 @@ msgid "Open context menu of a row header in a database table - choose <emph>Tabl
msgstr "གནད་སྡུད་གཞི་རྟེན་ཐག་ཁྲམ་ནང་ གྲལ་ཐིག་མགོ་ཡིག་གི་ནང་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>ཐིག་ཁྲམ་རྩ་སྒྲིག་ - ཡིག་གཟུགས་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3150355\n"
@@ -9927,7 +9025,6 @@ msgid "Choose <emph>Format - Title - Character</emph> tab (Chart documents)"
msgstr "<emph>རྩ་སྒྲིག་ - མགོ་མིང་ - ཡིག་འབྲུ་</emph>ཨེབ་ལྡེ་ (དཔེ་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3149812\n"
@@ -9936,7 +9033,6 @@ msgid "Choose <emph>Format - Legend - Character</emph> tab (Chart documents)"
msgstr "<emph>རཙ་སྒྲིག་ - གཏམ་རྒྱུད་ -ཡིག་འབྲུ་</emph> ཨེབ་ལྡེ་ (དཔེ་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3153717\n"
@@ -9945,7 +9041,6 @@ msgid "Choose <emph>Format - Axis - Character</emph> tab (Chart documents)"
msgstr "<emph>རྩ་སྒྲིག་ - ཚད་ཐིག་ - ཡིག་འབྲུ་</emph> ཨེབ་ལྡེ་ (དཔེ་རས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3154749\n"
@@ -9954,7 +9049,6 @@ msgid "Choose <emph>Format - Cell - Font</emph> tab (spreadsheets)"
msgstr "<emph>རྩ་སྒྲིག་- ནང་ཐིག་- ཡིག་གཟུགས་</emph> ཨེབ་ལྡེ་ (ཤོག་ཁྲམ་ཚུ་)གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3156306\n"
@@ -9963,7 +9057,6 @@ msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> butto
msgstr "དཀར་ཆག་ <emph>རྩ་སྒྲིག་- ཤོག་ལེབ་ - མགོ་ཡིག་/མཇུག་ཡིག་</emph> - <emph>ཞུན་དག་</emph>ཨེབ་ལྡེ་ (ཤོག་ཁྲམ་ཚུ་)"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3155829\n"
@@ -9972,7 +9065,6 @@ msgid "Choose <emph>Format - Character - Font Effects</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ - ཡིག་འབྲུ་ - ཡིག་གཟུགས་ཀྱི་ནུས་པ་ཚུ་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3149819\n"
@@ -9981,7 +9073,6 @@ msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of a
msgstr "<emph>རྩ་སྒྲིག་ - བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་དོ་</emph> གདམ་ཁ་རྐྱབས་- འཛུལ་ཞུགས་ཀྱི་ནང་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ནི་དང་ <emph>ལེགས་བཅོས་/གསརཔ་ - ཡིག་གཟུགས་ཀྱི་ནུས་པ་ཚུ་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3159176\n"
@@ -9990,7 +9081,6 @@ msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> butto
msgstr "དཀར་ཆག་ <emph>རྩ་སྒྲིག་- ཤོག་ལེབ་ - མགོ་ཡིག་/མཇུག་ཡིག་</emph> - <emph>ཞུན་དག་</emph>ཨེབ་ལྡེ་ (ཤོག་ཁྲམ་ཚུ་)"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3153541\n"
@@ -9999,7 +9089,6 @@ msgid "Choose <emph>Format - Character - Position</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ -ཡིག་འབྲུ་ -གནས་ས་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3159256\n"
@@ -10008,7 +9097,6 @@ msgid "Choose <emph>View - Styles and Formatting - </emph>open context menu of a
msgstr "<emph>རྩ་སྒྲིག་ - བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་དོ་ - </emph>གདམ་ཁ་རྐྱབས་ འཛུལ་ཞུགས་ཀྱི་ནང་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ནི་དང་ <emph>Modify/New - Alignment</emph> tabཨེབ་གཏང་།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3151385\n"
@@ -10017,7 +9105,6 @@ msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> butto
msgstr "དཀར་ཆག་ <emph>རྩ་སྒྲིག་- ཤོག་ལེབ་ - མགོ་ཡིག་/མཇུག་ཡིག་</emph> - <emph>ཞུན་དག་</emph>ཨེབ་ལྡེ་ (ཤོག་ཁྲམ་ཚུ་)"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3148550\n"
@@ -10026,7 +9113,6 @@ msgid "Choose <emph>Format - Character - Asian Layout</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ - ཡིག་འབྲུ་ - ཨེ་ཤི་ཡཱན་སྒྲིག་བཀོད་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3152811\n"
@@ -10035,7 +9121,6 @@ msgid "Choose <emph>View - Styles and Formatting - </emph>open context menu of a
msgstr "<emph>རྩ་སྒྲིག་ -བཟོ་རྣམ་དང་རྩ་སྒྲག་འབད་དོ་ - </emph>གདམ་ཁ་རྐྱབས་ འཛུལ་ཞུགས་ཀྱི་ནང་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ནི་དང་ <emph>ལེགས་བཅོས་/གསརཔ་ - ཨེ་ཤི་ཡཱན་སྒྲིག་བཀོད་</emph> ཨེབ་ལྡེ་ཨེབ་གཏང་།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3153524\n"
@@ -10044,16 +9129,14 @@ msgid "Choose <emph>Format - Paragraph - Asian Typography</emph> tab (not in HTM
msgstr "<emph>རྩ་སྒྲིག་ - དོན་མཚམས་ - ཨེ་ཤི་ཡཱན་དཔར་བསྐྲུན་རིག་པ་ </emph> ཨེབ་ལྡེ་ (ཨེཆ་ཊི་ཨེམ་ཨེལ་ནང་མེད་མི་)གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3154366\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cell - Asian Typography</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"> <emph>རྩ་སྒྲིག་ - ནང་ཐིག་ - ཨེ་ཤི་ཡཱན་དཔར་བསྐྲུན་རིག་པ་</emph> ཨེབ་ལྡེ་ </caseinline></switchinline>གདམ་ཁ་རྐྱབས།"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cell - Asian Typography</emph> tab</caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3148742\n"
@@ -10062,7 +9145,6 @@ msgid "Choose <emph>View - Styles and Formatting - </emph>open context menu of a
msgstr "<emph>རྩ་སྒྲིག་ - བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་དོ་ - </emph>གདམ་ཁ་རྐྱབས་ འཛུལ་ཞུགས་ཀྱི་ནང་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ནི་དང་ <emph>ལེགས་བཅོས་/གསརཔ་ - ཨེ་ཤི་ཡཱན་དཔར་བསྐྲུན་རིག་པ་</emph> ཨེབ་ལྡེ་ཨེབ་གཏང་།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3148922\n"
@@ -10071,7 +9153,6 @@ msgid "Choose <emph>Format - Character - Hyperlink</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ -ཡིག་འབྲུ་ - ཧའི་པར་ལིངཀི་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3149169\n"
@@ -10080,7 +9161,6 @@ msgid "Choose <emph>Format - Paragraph</emph>"
msgstr "<emph>རྩ་སྒྲིག་-དོན་མཚམས་</emph>གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3151381\n"
@@ -10097,7 +9177,6 @@ msgid "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.png\"><alt id=\"
msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3147299\n"
@@ -10106,7 +9185,6 @@ msgid "Paragraph"
msgstr "དོན་མཚམས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3147289\n"
@@ -10115,7 +9193,6 @@ msgid "Choose <emph>Format - Paragraph - Alignment</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ - དོན་མཚམས་ - ཕྲང་སྒྲིག་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3147352\n"
@@ -10124,7 +9201,6 @@ msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of a
msgstr "<emph>རྩ་སྒྲིག་ - བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་དོ་</emph>གདམ་ཁ་རྐྱབས་ འཛུལ་ཞུགས་ཀྱི་ནང་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ནི་དང་ <emph>ལེགས་བཅོས་/གསརཔ་ - ཕྲང་སྒྲིག་</emph> ཨེབ་ལྡེ་ གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3154640\n"
@@ -10133,7 +9209,6 @@ msgid "Choose <emph>Format - Paragraph - Indents & Spacing</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ - དོན་མཚམས་ - འགོ་མཚམས་དང་བར་སྟོང་བཞག་ཐང་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3152463\n"
@@ -10142,7 +9217,6 @@ msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of a
msgstr "<emph>རྩ་སྒྲིག་ - བཟོ་རནམ་དང་བར་སྟོང་བཞག་ཐང་</emph>གདམ་ཁ་རྐྱབས་ འཛུལ་ཞུགས་ཀྱི་ནང་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ནི་དང་ <emph>ལེགས་བཅོས་/གསརཔ་ - འགོ་མཚམས་དང་བར་སྟོང་བཏག་ཐང་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3154319\n"
@@ -10151,7 +9225,6 @@ msgid "Choose <emph>Format - Paragraph - Tabs</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ - དོན་མཚམས་ - ཨེབ་ལྡེ་ཚུ་</emph>ཨེབ་ལྡེ་མ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3154833\n"
@@ -10160,7 +9233,6 @@ msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of a
msgstr "<emph>རྩ་སྒྲིག་ -བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་དོ་</emph>གདམ་ཁ་རྐྱབས་ - འཛུལ་ཞུགས་ཀྱི་ནང་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ནི་དང་ <emph>ལེགས་བཅོས་/གསརཔ་ - ལེགས་བཅོས་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3159155\n"
@@ -10177,7 +9249,6 @@ msgid "(all options only in Writer or Calc)"
msgstr "(རྩོམ་འབྲི་པ་ཡང་ན་སི་ཨེ་ཨེལ་སི་ནང་ལུ་རྐྱངམ་ཅིག་གདམ་ཁ་ཚུ་ཆ་མཉམ།)"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3156105\n"
@@ -10186,13 +9257,12 @@ msgid "Choose <emph>Format - Paragraph - Borders</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་- དོན་མཚམས་ - མཐའ་མཚམས་ཚུ་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3154149\n"
"help.text"
-msgid "Choose <emph>Format - Image - Borders</emph> tab"
-msgstr "<emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་ - མཐའ་མཚམས་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
+msgid "Choose <emph>Format - Image - Properties - Borders</emph> tab"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -10203,7 +9273,6 @@ msgid "Choose <emph>Format - Frame and Object - Properties - Borders</emph> tab"
msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3150048\n"
@@ -10212,7 +9281,6 @@ msgid "Choose <emph>Format - Page - Borders</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་ - མཐའ་མཚམས་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3151148\n"
@@ -10221,7 +9289,6 @@ msgid "Choose <emph>Format - Character - Borders</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ - ཡིག་འབྲུ་ - ཡིག་གཟུགས་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3149911\n"
@@ -10230,7 +9297,6 @@ msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of a
msgstr "<emph>རྩ་སྒྲིག་ - བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་དོ་</emph>གདམ་ཁ་རྐྱབས་ - འཛུལ་ཞུགས་ཀྱི་ནང་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ནི་དང་ <emph>ལེགས་བཅོས་/གསརཔ་ - མཐའ་མཚམས་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3150094\n"
@@ -10239,7 +9305,6 @@ msgid "Choose <emph>Format - Page - Header - More</emph> button"
msgstr "<emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་ - མགོ་ཡིག་ - མངམ་</emph> ཨེབ་རྟ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3154501\n"
@@ -10248,34 +9313,30 @@ msgid "Choose <emph>Format - Page - Footer - More</emph> button"
msgstr "<emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་ - མཇུག་ཡིག་ - མངམ་</emph> ཨེབ་རྟ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3148455\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Borders</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">གདམ་ཁ་རྐྱབས་<emph>རཙ་སྒྲིག་- ནང་ཐིག་ - མཐའ་མཚམས་</emph> ཨེབ་ལྡེ་ </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Borders</emph> tab</caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3155915\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Paragraph</emph> - <emph>Border</emph> tab -<emph> Spacing to contents</emph> </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">དཀར་ཆག་<emph>རྩ་སྒྲིག་ - དོན་མཚམས་</emph> - <emph>མཐའ་མཚམས་</emph> ཨེབ་ལྡེ་ -<emph> ནང་དོན་ལུ་བར་སྟོང་བཞག་ཐངས་</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Paragraph</emph> - <emph>Border</emph> tab -<emph> Spacing to contents</emph></caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3159130\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menu<emph> Format - Page - Border - Spacing to contents</emph> </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">དཀར་ཆག་<emph> རྩ་སྒྲིག་ - ཤོག་ལེབ་ - མཐའ་མཚམས་ - ནང་དོན་ལུ་བར་སྟོང་བཞག་ཐངས་</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menu<emph> Format - Page - Border - Spacing to contents</emph></caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3155853\n"
@@ -10284,7 +9345,6 @@ msgid "Choose <emph>Format - Paragraph - Background</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ - དོན་མཚམས་ - རྒྱབ་གཞི་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3147330\n"
@@ -10293,7 +9353,6 @@ msgid "Choose <emph>Format - Character - Background</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ - ཡིག་འབྲུ་ - རྒྱབ་གཞི་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3149486\n"
@@ -10310,7 +9369,6 @@ msgid "Choose <emph>Format - Frame and Object - Properties - Area</emph> tab"
msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3151321\n"
@@ -10319,7 +9377,6 @@ msgid "Choose <emph>Format - Page - Background</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་ - རྒྱབ་གཞི་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3154510\n"
@@ -10328,7 +9385,6 @@ msgid "Choose <emph>Format - Page - Header - More</emph> button"
msgstr "<emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་ - མགོ་ཡིག་ - མངམ་</emph> ཨེབ་རྟ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3159110\n"
@@ -10337,7 +9393,6 @@ msgid "Choose <emph>Format - Page - Footer - More</emph> button"
msgstr "<emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་ - མཇུག་ཡིག་ - མངམ་</emph> ཨེབ་རྟ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3153532\n"
@@ -10346,7 +9401,6 @@ msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of a
msgstr "<emph>རྩ་སྒྲིག་ - བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་དོ་</emph>གདམ་ཁ་རྐྱབས་ འཛུལ་ཞུགས་ཀྱི་ནང་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ནི་དང་ <emph>ལེགས་བཅོས་/གསརཔ་ - རྒྱབ་གཞི་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3144747\n"
@@ -10355,16 +9409,14 @@ msgid "Choose <emph>Insert/Edit - Section - Background</emph> tab"
msgstr "<emph>བཙུགས་/ཞུན་དག་འབད་ - སྡེ་ཚན་ -རྒྱབ་གཞི་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3146900\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">གདམ་ཁ་རྐྱབས་ <emph>རྩ་སྒྲིག་ - ནང་ཐིག་ - རྒྱབ་གཞི་</emph> ཨེབ་ལྡེ་ </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab</caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
@@ -10373,7 +9425,6 @@ msgid "Choose <emph>Format - Page - Organizer</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་ - འགོ་འདྲེན་པ་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
@@ -10382,7 +9433,6 @@ msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of a
msgstr "<emph>རྩ་སྒྲིག་ -བཟོ་རྣམ་དང་རྩ་སྒྲཔིག་འབད་དོ་</emph>གདམ་ཁ་རྐྱབས་ འཛུལ་ཞུགས་ཀྱི་ནང་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ནི་དང་ <emph>ལེགས་བཅོས་/གསརཔ་ - འགོ་འདྲེན་པ་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3153357\n"
@@ -10391,7 +9441,6 @@ msgid "Choose <emph>Format - Page - Page</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ -ཤོག་ལེབ་ - ཤོག་ལེབ་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3154362\n"
@@ -10400,7 +9449,6 @@ msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of a
msgstr "<emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་ - ཤོག་ལེབ་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས་ འཛུལ་ཞུགས་ཀྱི་ནང་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ནི་དང་ <emph>ལེགས་བཅོས་/གསརཔ་ - ཤོག་ལེབ་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3155515\n"
@@ -10409,7 +9457,6 @@ msgid "Choose <emph>Format - Page - Header</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་ -འགོ་ཡིག་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3148405\n"
@@ -10418,7 +9465,6 @@ msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of a
msgstr "<emph>རྩ་སྒྲིག་ - བཟོ་རྣམ་དང་རྨ་སྒྲིག་འབད་དོ་</emph>གདམ་ཁ་རྐྱབས་ འཛུལ་ཞུགས་ཀྱི་ནང་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ནི་དང་ <emph>ལེགས་བཅོས་/གསརཔ་ - འགོ་ཡིག་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3145618\n"
@@ -10427,7 +9473,6 @@ msgid "Choose <emph>Format - Page - Footer</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ -ཤོག་ལེབ་-མཇུག་ཡིག་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3155175\n"
@@ -10436,7 +9481,6 @@ msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of a
msgstr "<emph>རྩ་སྒྲིག་ - བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་དོ་</emph>གདམ་ཁ་རྐྱབས་ - འཛུལ་ཞུགས་ཀྱི་ནང་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ནི་དང་ <emph>ལེགས་བཅོས་/གསརཔ་ -འགོ་ཡིག་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3147404\n"
@@ -10445,7 +9489,6 @@ msgid "Choose <emph>View - Styles and Formatting</emph>"
msgstr "<emph>རྩ་སྒྲིག་- བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་དོ་</emph>གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3166447\n"
@@ -10454,7 +9497,6 @@ msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</casein
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་</caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཨོ།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3147321\n"
@@ -10471,7 +9513,6 @@ msgid "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.png\"><alt id=\"a
msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3153534\n"
@@ -10480,13 +9521,12 @@ msgid "Styles and Formatting"
msgstr "བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་དོ།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3159313\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"> </caseinline><caseinline select=\"CALC\"> </caseinline><caseinline select=\"WRITER\"> </caseinline><caseinline select=\"MATH\"> </caseinline><defaultinline>On the <emph>Drawing</emph> bar, click</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>གུ་ <emph>པར་རིས་</emph> ཕྲ་རིང་, ཨེབ་གཏང་</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>On the <emph>Drawing</emph> bar, click</defaultinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -10497,7 +9537,6 @@ msgid "<image id=\"img_id3159236\" src=\"cmd/sc_window3d.png\"><alt id=\"alt_id3
msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3152498\n"
@@ -10546,7 +9585,6 @@ msgid "<variable id=\"3dmaterial\">Open the context menu of the 3D object, choos
msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3145220\n"
@@ -10555,7 +9593,6 @@ msgid "Choose <emph>Format - Bullets and Numbering </emph>"
msgstr "<emph>རྩ་སྒྲིག་ -འགོ་ཚག་དང་ཨང་བཏགས་ནི་ </emph>གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3148771\n"
@@ -10572,7 +9609,6 @@ msgid "<image id=\"img_id3149964\" src=\"cmd/sc_defaultbullet.png\"><alt id=\"al
msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3157970\n"
@@ -10581,7 +9617,6 @@ msgid "Bullets On/Off"
msgstr "འགོ་ཚག་ཨོན་/ཨོཕ།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3149735\n"
@@ -10590,16 +9625,14 @@ msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Options</e
msgstr "<emph>རྩ་སྒྲིག་ - འགོ་ཚག་དང་ཨང་བཏགས་ནི་</emph>གདམཁ་རྐྱབས། <emph>གདམ་ཁ་ཚུ་</emph> ཨེབ་ལྡེ་ཤོག་ལེབ་ཁ་ཕྱེ།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3150785\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph> </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> <emph>བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་དོ་</emph> - གསལ་སྟོན་གྱི་བཟོ་རྣམ་ - མཐའ་ཐིག་བཟོ་རྣམ་གྱི་སྐབས་དོན་དཀར་ཆག་ ཁ་ཕྱེ་ - <emph>གསརཔ་/ལེགས་བཅོས་</emph></caseinline></switchinline>གདམ་ཁ་རྐྱབས།"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3148420\n"
@@ -10608,7 +9641,6 @@ msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>St
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"> <emph>བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་དོ་</emph> - བཟོ་རྣམ་ཨང་བཏགས་ནི་ - འཛུལ་ཞུགས་ཀྱི་སྐབས་དོན་དཀར་ཆག་ ཁ་ཕྱེ་ - <emph>གསརཔ་/ལེགས་བཅོས་</emph></caseinline></switchinline>གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3148888\n"
@@ -10617,16 +9649,14 @@ msgid "Choose <emph>Format - Bullets and Numbering - Bullets</emph> tab"
msgstr "<emph>རྩ སྒྲིག་-འགོ་ཚག་དང་ཨང་བཏགས་ནི་ - འགོ་ཚག་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3149917\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open Styles and Formatting - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph> </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་དོ་ - གསལ་སྟོན་བཟོ་རནམ་ - མཐའ་ཐིག་བཟོ་རྣམ་གྱི་སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ - <emph>གསརཔ་/ལེགས་བཅོས་</emph></caseinline></switchinline>གདམ་ཁ་རྐྱབས།"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open Styles and Formatting - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3154930\n"
@@ -10635,7 +9665,6 @@ msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open Styles a
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་དོ་ - ཨང་བཏགས་བཟོ་རྣམ་ཚུ་ - འཛུལ་ཞུགས་ཀྱི་སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>གསརཔ་/ལེགས་བཅོས་</emph></caseinline></switchinline>གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3150862\n"
@@ -10644,16 +9673,14 @@ msgid "Choose <emph>Format - Bullets and Numbering - Numbering</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ - འགོ་ཚག་དང་ཨང་བཏགས་ནི་ - ཨང་བཏགས་ནི་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3155378\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph> </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> <emph>བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་དོ་</emph> - གསལ་སྟོན་གྱི་བཟོ་རྣམ་ - མཐའ་ཐིག་བཟོ་རྣམ་གྱི་སྐབས་དོན་དཀར་ཆག་ ཁ་ཕྱེ་ - <emph>གསརཔ་/ལེགས་བཅོས་</emph></caseinline></switchinline>གདམ་ཁ་རྐྱབས།"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3156011\n"
@@ -10670,7 +9697,6 @@ msgid "<variable id=\"graphics\">Choose <emph>Format - Bullets and Numbering - I
msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3155848\n"
@@ -10679,7 +9705,6 @@ msgid "Choose <emph>Format - Bullets and Numbering - Outline</emph> tab"
msgstr "<emph>རྩ་སྒྲིག་ - འགོ་ཚག་དང་ཨང་བཏགས་ནི་ -མཐའ་ཐིག་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3148733\n"
@@ -10688,7 +9713,6 @@ msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>St
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"> <emph>བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་དོ་</emph> - བཟོ་རྣམ་ཨང་བཏགས་ནི་ - འཛུལ་ཞུགས་ཀྱི་སྐབས་དོན་དཀར་ཆག་ ཁ་ཕྱེ་ - <emph>གསརཔ་/ལེགས་བཅོས་</emph></caseinline></switchinline>གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3156658\n"
@@ -10697,16 +9721,14 @@ msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Position</
msgstr "<emph>རྩ་སྒྲིག་ -འགོ་ཚག་དང་ཨང་བཏགས་ནི་</emph>གདམ་ཁ་རྐྱབས། <emph>གནས་ས་</emph> ཨེབ་ལྡེ་ཤོག་ལེབ་ཁ་ཕྱེ།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"> <emph>ལག་ཆས་ཚུ་ -མཐའ་ཐིག་ཨང་བཏགས་ནི་ -གནས་ས་</emph> ཨེབ་ལྡེ་ </caseinline></switchinline>གདམ་ཁ་རྐྱབས།"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3153812\n"
@@ -10715,22 +9737,20 @@ msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>St
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"> <emph>བཟོ་རྣམ་དང་རྩ་སྒྲིག་འབད་དོ་- ཨང་བཏགས་ནི་དང་བཟོ་རྣམ་</emph> - འཛུལ་ཞུགས་ཀྱི་སྐབས་དོན་དཀར་ཆག་འདི་ ཁ་ཕྱེ་ - <emph>གསརཔ་/ལེགས་བཅོས་</emph></caseinline></switchinline>གདམ་ཁ་རྐྱབས།"
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3151332\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Image </emph>- <emph>Crop</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">དཀར་ཆག་<emph>རྩ་སྒྲིག་ - པར་ </emph>- <emph>བཏོག་བཅོས་</emph> ཨེབ་ལྡེ་ </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Image </emph>- <emph>Crop</emph> tab</caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"> </caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline> <emph>པར་</emph> ལག་ཆས་ཕྲ་རིང་གུ་ངོས་དཔར་:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -10741,7 +9761,6 @@ msgid "<image id=\"img_id3155092\" src=\"cmd/sc_grafattrcrop.png\"><alt id=\"alt
msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3153695\n"
@@ -10758,7 +9777,6 @@ msgid "Choose <emph>Format - Text</emph> or <emph>Format - Text - Change Case</e
msgstr ""
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3153579\n"
@@ -10778,7 +9796,6 @@ msgstr "རྩ་སྒྲིག་གི་དཀར་ཆག"
msgctxt ""
"00040501.xhp\n"
"hd_id3145759\n"
-"1\n"
"help.text"
msgid "Format Menu"
msgstr "རྩ་སྒྲིག་གི་དཀར་ཆག"
@@ -10787,7 +9804,6 @@ msgstr "རྩ་སྒྲིག་གི་དཀར་ཆག"
msgctxt ""
"00040501.xhp\n"
"par_id3150156\n"
-"94\n"
"help.text"
msgid "<variable id=\"aupitab\">Open <emph>Form Controls</emph> toolbar, click <emph>More Controls</emph> icon, click <emph>Table Control</emph> icon and drag mouse to generate field.</variable>"
msgstr "<variable id=\"aupitab\"> <emph>ཚད་འཛིན་རྣམ་པ་</emph> ལག་ཆས་ཕྲ་རིང་ཁ་ཕྱེ་, <emph>ཚད་འཛིན་མངམ་གི་་</emph>ངོས་དཔར་ཨེབ་གཏང་, <emph> ཐིག་ཁྲམ་ཚད་འཛིན་</emph>ངོས་དཔར་ཨེབ་གཏང་ནི་དང་ ས་སྒོ་བཟོ་བཏོན་འབད་ནིའི་དོན་ལས་ མཱའུསི་འདི་འདྲུད་ད། </variable>"
@@ -10796,7 +9812,6 @@ msgstr "<variable id=\"aupitab\"> <emph>ཚད་འཛིན་རྣམ་པ
msgctxt ""
"00040501.xhp\n"
"par_id3154408\n"
-"119\n"
"help.text"
msgid "<variable id=\"aupitab1\">Open <emph>Form Controls</emph> toolbar, click <emph>More Controls</emph> icon, click <emph>Table Control</emph> icon and drag mouse to generate field. No database connection in current form is allowed.</variable>"
msgstr "<variable id=\"aupitab1\"> <emph>ཚད་འཛིན་ལས་</emph> ལག་ཆས་ཕྲ་རིང་ཁ་ཕྱེ་ <emph>ཚད་འཛིན་མངམ་</emph>ངོས་དཔར་, <emph> ཐིག་ཁྲམ་ཚད་འཛིན་</emph> ངོས་དཔར་ཨེབ་གཏང་ནི་དང་ ས་སྒོ་བཟོ་བཏོན་འབད་ནིའི་དོན་ལས་མཱའུསི་འདི་འདྲུད་ད། ད་ལྟོའི་རྣམ་པ་གི་ནང་ལུ་ གནད་སྡུད་གཞི་རྟེན་མཐུད་ལམ་འདི་འབད་མི་བཅུག་ </variable>"
@@ -10805,7 +9820,6 @@ msgstr "<variable id=\"aupitab1\"> <emph>ཚད་འཛིན་ལས་</emph
msgctxt ""
"00040501.xhp\n"
"par_id3149748\n"
-"120\n"
"help.text"
msgid "<variable id=\"aupitab2\">Open <emph>Form Controls</emph> toolbar, click <emph>More Controls</emph> icon, click <emph>Table Control</emph> icon and drag mouse to generate field. Database connection must exist.</variable>"
msgstr "<variable id=\"aupitab2\"> <emph>ཚད་འཛིན་</emph>ལག་ཆས་ཕྲ་རིང་ལས་ཁ་ཕྱེ་ <emph>ཚད་འཛིན་མངམ་</emph> ངོས་དཔར་ཨེབ་གཏང་། ས་སྒོ་བཟོ་བཏོན་འབད་ནིའི་དོན་ལས་ <emph>ཐིག་ཁྲམ་</emph> ངོས་དཔརཨེབ་གཏང་ནི་་དང་ ས་སྒོ་བཟོ་བཏོན་འབད་ནིའི་དོན་ལས་ མཱའུསི་འདྲུད་ད། གནད་སྡུད་གཞི་རྟེན་མཐུད་ལམ་འདི་འོང་དགོས།</variable>"
@@ -10814,7 +9828,6 @@ msgstr "<variable id=\"aupitab2\"> <emph>ཚད་འཛིན་</emph>ལག
msgctxt ""
"00040501.xhp\n"
"par_id3156553\n"
-"95\n"
"help.text"
msgid "<variable id=\"aupikomli\">Open Form Controls toolbar, click <emph>Combo Box</emph> or <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form.</variable>"
msgstr "<variable id=\"aupikomli\">ཨོ་པན་རྣམ་པ་ཚད་འཛིན་ལག་ཆས་ཕྲ་རིང་ <emph>ཀོམ་བོ་སྒྲོམ་</emph>ཡང་ན་<emph>ཐོ་འགོད་སྒྲོམ་</emph> ངོས་དཔར་ཨེབ་གཏང་ནི་དང་ ས་སྒོ་བཟོ་བཏོན་འབད་ནིའི་དོན་ལས་ མཱའུསི་འདི་འདྲུད་ད། གནད་སྡུད་གཞི་རྟེན་གྱི་རྣམ་པ་འདི་གནས་འདི་འོང་དགོས།</variable>"
@@ -10823,7 +9836,6 @@ msgstr "<variable id=\"aupikomli\">ཨོ་པན་རྣམ་པ་ཚད་
msgctxt ""
"00040501.xhp\n"
"par_id3148825\n"
-"121\n"
"help.text"
msgid "<variable id=\"aupikomli1\">Open Form Controls toolbar, click <emph>Combo Box</emph> or <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 1.</variable>"
msgstr "<variable id=\"aupikomli1\">ཨོ་པན་རྣམ་པ་གིས་ལག་ཆས་ཕྲ་རིང་འདི་ཚད་འཛིན་འབདཝ་ཨིན་ <emph>ཀོམ་བོ་སྒྲོམ་</emph> ཡང་ན་ <emph>ཐོ་འགོད་སྒྲོམ་</emph>ངོས་དཔར་ཨེབ་གཏང་ནི་དང་ ས་སྒོ་བཟོ་བཏོན་འབད་ནི་ལུ་མཱའུསི་འདི་འདྲུད་ད། གནད་སྡུད་མཐུད་ལམ་འདི་རྣམ་པ་གི་ནང་ལུ་གནས་འདི་འོང་དགོས : ཝི་ཛརཌི་- ཤོག་ལེབ་ ༡ །</variable>"
@@ -10832,7 +9844,6 @@ msgstr "<variable id=\"aupikomli1\">ཨོ་པན་རྣམ་པ་གི
msgctxt ""
"00040501.xhp\n"
"par_id3155434\n"
-"122\n"
"help.text"
msgid "<variable id=\"aupikomli2\">Open Form Controls toolbar, click <emph>Combo Box</emph> or <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 2.</variable>"
msgstr "<variable id=\"aupikomli2\">ཨོ་པན་རྣམ་པ་འདི་གིས་ ལག་ཆས་ཕྲ་རིང་ཚད་འཛིན་འབདཝ་ཨིན་ <emph>ཀོམ་བོ་སྒྲོམ་</emph> ཡང་ན་ <emph>ཐོ་འགོད་སྒྲོམ་</emph>ངོས་དཔར་ཨེབ་གཏང་ནི་དང་ ས་སྒོ་འདི་བཟོ་བཏོན་འབད་ནིའི་དོན་ལས་མཱའུསི་འདྲུད་ད། གནད་སྡུད་མཐུད་ལམ་འདི་གནས་འདི་འོང་དགོས : ཝི་ཛརཌི་ - ཤོག་ལེབ་ ༢ །</variable>"
@@ -10841,7 +9852,6 @@ msgstr "<variable id=\"aupikomli2\">ཨོ་པན་རྣམ་པ་འད
msgctxt ""
"00040501.xhp\n"
"par_id3151378\n"
-"123\n"
"help.text"
msgid "<variable id=\"aupikomli3a\">Open Form Controls toolbar, click <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3.</variable>"
msgstr "<variable id=\"aupikomli3a\">ཨོ་པན་རྣམ་པ་འདི་གིས་ལག་ཆས་ཕྲ་རིང་འདི་ཚད་འཛིན་འབདཝ་ཨིན་ <emph>ཐོ་འགོད་སྒྲོམ་</emph> ངོས་དཔར་ཨེབ་གཏང་ནི་དང་ ས་སྒོ་འདི་བཟོ་བཏོན་འབད་ནིའི་དོན་ལས་ མཱའུསི་འདྲུད་ད། གནད་སྡུད་མཐུད་ལམ་འདི་རྣམ་པ་ནང་གནས་འདི་འོང་དགོས : ཝི་ཛརཌི་- ཤོག་ལེབ་ ༣། </variable>"
@@ -10850,7 +9860,6 @@ msgstr "<variable id=\"aupikomli3a\">ཨོ་པན་རྣམ་པ་འད
msgctxt ""
"00040501.xhp\n"
"par_id3151246\n"
-"124\n"
"help.text"
msgid "<variable id=\"aupikomli3b\">Open Form Controls toolbar, click <emph>Combo Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3.</variable>"
msgstr "<variable id=\"aupikomli3b\">ཨོ་པན་རྣམ་པ་གིས་ལག་ཆས་ཕྲ་རིང་འདི་ཚད་འཛིན་འབདཝ་ཨིན་ <emph>ཀོམ་བོ་སྒྲོམ་</emph> ངོས་དཔར་ཨེབ་གཏང་ནི་དང་ས་སྒོ་བཟོ་བཏོན་འབད་ནིའི་དོན་ལས་མཱའུསི་འདྲུད་ད། གནད་སྡུད་མཐུད་ལམ་འདི་རནམ་པ་གི་ནང་ལུ་གནས་དགོས : ཝི་ཛརཌི་- ཤོག་ལེབ་ ༣ ། </variable>"
@@ -10859,7 +9868,6 @@ msgstr "<variable id=\"aupikomli3b\">ཨོ་པན་རྣམ་པ་གི
msgctxt ""
"00040501.xhp\n"
"par_id3154923\n"
-"2\n"
"help.text"
msgid "Open <emph>Toolbox</emph> bar in Basic dialog editor, click"
msgstr "གཞི་རིམ་ཌའི་ལོག་ཞུན་དག་ནང་<emph>ལག་ཆས་སྒྲོམ་</emph>ཕྲ་རིང་ཁ་ཕྱེ་ ཨེབ་གཏང་།"
@@ -10876,7 +9884,6 @@ msgstr "<image id=\"img_id3150865\" src=\"cmd/sc_showpropbrowser.png\" width=\"0
msgctxt ""
"00040501.xhp\n"
"par_id3154836\n"
-"4\n"
"help.text"
msgid "Properties"
msgstr "རྒྱུ་དངོས།"
@@ -10885,7 +9892,6 @@ msgstr "རྒྱུ་དངོས།"
msgctxt ""
"00040501.xhp\n"
"par_id3149292\n"
-"74\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Form</emph>"
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ཆ་ཤས་ཀྱི་སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>རྣམ་པ་</emph>གདམ་ཁ་རྐྱབས།"
@@ -10902,7 +9908,6 @@ msgstr "<image id=\"img_id3148676\" src=\"cmd/sc_formproperties.png\" width=\"0.
msgctxt ""
"00040501.xhp\n"
"par_id3144760\n"
-"76\n"
"help.text"
msgid "Form"
msgstr "རྣམ་པ།"
@@ -10911,7 +9916,6 @@ msgstr "རྣམ་པ།"
msgctxt ""
"00040501.xhp\n"
"par_id3150447\n"
-"97\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Form - General</emph> tab"
msgstr "སེལ་འཐུ་འབད་འོནད་པའི་ཆ་ཤས་རྣམ་པ་གི་སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>རྣམ་པ་ - སྤྱིར་གཏང་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
@@ -10920,7 +9924,6 @@ msgstr "སེལ་འཐུ་འབད་འོནད་པའི་ཆ་ཤ
msgctxt ""
"00040501.xhp\n"
"par_id3144448\n"
-"98\n"
"help.text"
msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Form</emph> icon - <emph>General</emph> tab"
msgstr "རྣམ་པ་ཚད་འཛིན་ལག་ཆས་ཕྲ་རིང་ ཡང་ན་ བཀོད་བསྒྲིག་ལག་ཆས་ཕྲ་རིང་རནམ་པ་འདི་ཁ་ཕྱེ་ <emph>རྣམ་པ་</emph>ངོས་དཔར་ - <emph>སྤྱིར་གཏང་</emph>ཨེབ་ལྡེ་ཨེབ་གཏང་།"
@@ -10929,7 +9932,6 @@ msgstr "རྣམ་པ་ཚད་འཛིན་ལག་ཆས་ཕྲ་ར
msgctxt ""
"00040501.xhp\n"
"par_id3145786\n"
-"100\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Form - Data</emph> tab"
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ཆ་ཤས་རྣམ་པ་གི་སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ <emph>རྣམ་པ་ - གནད་སྡུད་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
@@ -10938,7 +9940,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ཆ་ཤས
msgctxt ""
"00040501.xhp\n"
"par_id3158156\n"
-"101\n"
"help.text"
msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Form </emph>icon - <emph>Data</emph> tab"
msgstr "ཨོ་པན་རྣམ་པ་གིས་ལག་ཆས་ཕྲ་རིང་ཚད་འཛིན་ནི་ ཡང་ན་ རྣམ་པ་བཀོད་སྒྲིག་ལག་ཆས་ཕྲ་རིང་ཁ་ཕྱེ་ <emph>རྣམ་པ་ </emph>ངོས་དཔར་ - <emph>གནད་སྡུད་</emph>ཨེབ་ལྡེ་ཨེབ་གཏང་།"
@@ -10963,7 +9964,6 @@ msgstr "ཨེགསི་ཨེམ་ཨེལ་འབྲི་ཤོག་ཡ
msgctxt ""
"00040501.xhp\n"
"par_id3145364\n"
-"103\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Form - Events</emph> tab"
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ཆ་ཤས་རྣམ་པ་གི་ སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>རྣམ་པ་ - བྱུང་ལས་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
@@ -10972,7 +9972,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ཆ་ཤས
msgctxt ""
"00040501.xhp\n"
"par_id3153575\n"
-"104\n"
"help.text"
msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Form </emph>icon - <emph>Events</emph> tab"
msgstr "ཨོ་པན་རྣམ་པ་ལག་ཆས་ཕྲ་རིང་ཚད་འཛིན་ ཡང་ན་ རྣམ་པ་བཀོད་སྒྲིག་ལག་ཆས་ཕྲ་རིང་ཁ་ཕྱེ་ <emph>རྣམ་པ་ </emph>ངོས་དཔར་ - <emph>བྱུང་ལས་</emph>ཨེབ་ལྡེ་ཨེབ་གཏང་།"
@@ -10981,7 +9980,6 @@ msgstr "ཨོ་པན་རྣམ་པ་ལག་ཆས་ཕྲ་རིང
msgctxt ""
"00040501.xhp\n"
"par_id3147234\n"
-"78\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Control</emph>"
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ཆ་ཤས་རྣམ་པ་གི་སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>ཚད་འཛིན་</emph>གདམ་ཁ་རྐྱབས།"
@@ -10998,7 +9996,6 @@ msgstr "<image id=\"img_id3149064\" src=\"cmd/sc_showbrowser.png\" width=\"0.166
msgctxt ""
"00040501.xhp\n"
"par_id3156442\n"
-"80\n"
"help.text"
msgid "Control"
msgstr "ཚད་འཛིན།"
@@ -11007,7 +10004,6 @@ msgstr "ཚད་འཛིན།"
msgctxt ""
"00040501.xhp\n"
"par_id3153943\n"
-"106\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Control - General</emph> tab"
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ཆ་ཤས་རྣམ་པ་གི་སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>ཚད་འཛིན་ - སྤྱིར་གཏང་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
@@ -11016,7 +10012,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ཆ་ཤས
msgctxt ""
"00040501.xhp\n"
"par_id3159198\n"
-"107\n"
"help.text"
msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Control</emph> icon - <emph>General</emph> tab"
msgstr "ཨོ་པན་རྣམ་པ་དེ་གིས་ལག་ཆས་ཕྲ་རིང་ ཡང་ན་ རྣམ་པ་བཀོད་སྒྲིག་ལག་ཆས་ཕྲ་རིང་ཚད་འཛིན་འབདཝ་ཨིན་ <emph>ཚད་འཛིན་</emph> ངོས་དཔར་ - <emph>སྤྱིར་གཏང་</emph>ཨེབ་ལྡེ་ཨེབ་གཏང་།"
@@ -11025,7 +10020,6 @@ msgstr "ཨོ་པན་རྣམ་པ་དེ་གིས་ལག་ཆས
msgctxt ""
"00040501.xhp\n"
"par_id3153203\n"
-"109\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Control - Data</emph> tab"
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ཆ་ཤས་རྣམ་པ་གི་སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>ཚད་འཛིན་ - གནད་སྡུད་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
@@ -11034,7 +10028,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ཆ་ཤས
msgctxt ""
"00040501.xhp\n"
"par_id3150048\n"
-"110\n"
"help.text"
msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Control</emph> icon - <emph>Data</emph> tab"
msgstr "ཨོ་པན་རྣམ་པ་དེ་གིས་ལག་ཆས་ཕྲ་རིང་ ཡང་ན་ རྣམ་པ་བཀོད་སྒྲིག་ལག་ཆས་ཕྲ་རིང་ཚད་འཛིན་འབདཝ་ཨིན་ <emph>ཚད་འཛིན་</emph>ངོས་དཔར་ - <emph>གནད་སྡུད་</emph>ཨེབ་ལྡེ་ཨེབ་གཏང་།"
@@ -11043,7 +10036,6 @@ msgstr "ཨོ་པན་རྣམ་པ་དེ་གིས་ལག་ཆས
msgctxt ""
"00040501.xhp\n"
"par_id3153334\n"
-"112\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Control - Events</emph> tab"
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ཆ་ཤས་རྣམ་པ་གི་སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>ཚད་འཛིན་ - བྱུང་ལས་</emph> ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
@@ -11052,7 +10044,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ཆ་ཤས
msgctxt ""
"00040501.xhp\n"
"par_id3153744\n"
-"113\n"
"help.text"
msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Control</emph> icon - <emph>Events</emph> tab"
msgstr "ཨོ་པན་རྣམ་པ་གིས་ལག་ཆས་ཕྲ་རིང་ ཡང་ན་ རྣམ་པ་བཀོད་སྒྲིག་ལག་ཆས་ཕྲ་རིང་ཚད་འཛིན་འབད་ <emph>ཚད་འཛིན་</emph> ངོས་དཔར་ - <emph>བྱུང་ལས་</emph>ཨེབ་ལྡེ་ཨེབ་གཏང་།"
@@ -11077,7 +10068,6 @@ msgstr "<image id=\"img_id3159345\" src=\"cmd/sc_tabdialog.png\" width=\"0.222in
msgctxt ""
"00040501.xhp\n"
"par_id3146926\n"
-"82\n"
"help.text"
msgid "Activation Order"
msgstr "ཤུགས་བཟོ་གོ་རིམ།"
@@ -11102,7 +10092,6 @@ msgstr "<image id=\"img_id3153530\" src=\"cmd/sc_addfield.png\" width=\"0.222inc
msgctxt ""
"00040501.xhp\n"
"par_id3144747\n"
-"84\n"
"help.text"
msgid "Add Field"
msgstr "ས་སྒོ་ཁ་སྐོང་རྐྱབས།"
@@ -11127,7 +10116,6 @@ msgstr "<image id=\"img_id3157869\" src=\"cmd/sc_showfmexplorer.png\" width=\"0.
msgctxt ""
"00040501.xhp\n"
"par_id3147237\n"
-"88\n"
"help.text"
msgid "Form Navigator"
msgstr "འགྲུལ་བསྐྱོད་པའི་རྣམ་པ།"
@@ -11152,7 +10140,6 @@ msgstr "<image id=\"img_id3154508\" src=\"cmd/sc_testmode.png\" width=\"0.222inc
msgctxt ""
"00040501.xhp\n"
"par_id3153767\n"
-"86\n"
"help.text"
msgid "Design Mode on/off"
msgstr "ཐབས་ལམ་ ཨོན་/ཨོཕ་འདི་བཀོད་སྒྲིག་འབད།"
@@ -11161,7 +10148,6 @@ msgstr "ཐབས་ལམ་ ཨོན་/ཨོཕ་འདི་བཀོད
msgctxt ""
"00040501.xhp\n"
"par_id3148828\n"
-"114\n"
"help.text"
msgid "Open Form Navigator - select form - open context menu - choose <emph>Open in design mode</emph>"
msgstr "འགྲུལ་བསྐྱོད་པའི་རྣམ་པ་ཁ་ཕྱེ་ - རྣམ་པ་འདི་སེལ་འཐུ་འབད་ - སྐབས་དོན་དཀར་ཆག་འདི་ ཁ་ཕྱེ་ - <emph>བཀོད་སྒྲིག་ཐབས་ལམ་ནང་ཁ་ཕྱེ་</emph>གདམ་ཁ་རྐྱབས།"
@@ -11186,7 +10172,6 @@ msgstr "<image id=\"img_id3151189\" src=\"cmd/sc_openreadonly.png\" width=\"0.22
msgctxt ""
"00040501.xhp\n"
"par_id3147321\n"
-"116\n"
"help.text"
msgid "Open in Design Mode"
msgstr "བཀོད་སྒྲིག་ཐབས་ལམ་ནང་ཁ་ཕྱེ།"
@@ -11195,7 +10180,6 @@ msgstr "བཀོད་སྒྲིག་ཐབས་ལམ་ནང་ཁ་ཕ
msgctxt ""
"00040501.xhp\n"
"par_id3147533\n"
-"117\n"
"help.text"
msgid "Open Form Control toolbar, click"
msgstr "ཀུན་གྱི་འབྲི་ཤོག་ཚད་འཛིན་ལག་ཆས་ཕྲ་རིང་ཨེབ་གཏང་འབད།"
@@ -11212,7 +10196,6 @@ msgstr "<image id=\"img_id3156375\" src=\"cmd/sc_usewizards.png\" width=\"0.222i
msgctxt ""
"00040501.xhp\n"
"par_id3155939\n"
-"118\n"
"help.text"
msgid "Wizards On/Off"
msgstr "ཝི་ཛརཌིསི་ཨོན་/ཨོཕ།"
@@ -11221,7 +10204,6 @@ msgstr "ཝི་ཛརཌིསི་ཨོན་/ཨོཕ།"
msgctxt ""
"00040501.xhp\n"
"par_id3147244\n"
-"5\n"
"help.text"
msgid "Choose <emph>Format - Arrange</emph> ($[officename] Writer, $[officename] Calc)"
msgstr "<emph>རྩ་སྒྲིག་ -བདེ་ཞིབ་</emph> ($[officename] རྩོམ་འབྲི་པ་, $[officename] Calc)གདམ་ཁ་རྐྱབས།"
@@ -11230,7 +10212,6 @@ msgstr "<emph>རྩ་སྒྲིག་ -བདེ་ཞིབ་</emph> ($[of
msgctxt ""
"00040501.xhp\n"
"par_id3159334\n"
-"125\n"
"help.text"
msgid "Open context menu - choose <emph>Arrange</emph> ($[officename] Impress, $[officename] Draw)"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>བདེ་ཞིབ་</emph> ($[officename] Impress, $[officename] Draw)གདམ་ཁ་རྐྱབས།"
@@ -11239,7 +10220,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱ
msgctxt ""
"00040501.xhp\n"
"par_id3154023\n"
-"6\n"
"help.text"
msgid "Choose <emph>Modify - Arrange</emph> ($[officename] Draw)"
msgstr "<emph>ལེགས་བཅོས་ - བདེ་ཞིབ་</emph> ($[officename] Draw)གདམ་ཁ་རྐྱབས།"
@@ -11256,7 +10236,6 @@ msgstr "<image id=\"img_id3109842\" src=\"cmd/sc_bringtofront.png\" width=\"0.22
msgctxt ""
"00040501.xhp\n"
"par_id3152496\n"
-"8\n"
"help.text"
msgid "Arrange"
msgstr "བདེ་ཞིབ།"
@@ -11265,7 +10244,6 @@ msgstr "བདེ་ཞིབ།"
msgctxt ""
"00040501.xhp\n"
"par_id3148459\n"
-"9\n"
"help.text"
msgid "Choose <emph>Format - Arrange - Bring to Front</emph> ($[officename] Writer, $[officename] Calc)"
msgstr "<emph>རྩ་སྒྲིག་ -བདེ་ཞིབ་ - ཡིག་གཟུགས་ལུ་འབག་ཤོག་</emph> ($[officename] Writer, $[officename] Calc) གདམ་ཁ་རྐྱབས།"
@@ -11274,7 +10252,6 @@ msgstr "<emph>རྩ་སྒྲིག་ -བདེ་ཞིབ་ - ཡིག
msgctxt ""
"00040501.xhp\n"
"par_id3148425\n"
-"10\n"
"help.text"
msgid "Choose <emph>Modify - Arrange - Bring to Front</emph> ($[officename] Draw)"
msgstr "<emph>ལེགས་བཅོས་ - བདེ་ཞིབ་ - ཡིག་གཟུགས་ལུ་འབད་ཤོག་</emph> ($[officename] Draw) གདམ་ཁ་རྐྱབས།"
@@ -11283,7 +10260,6 @@ msgstr "<emph>ལེགས་བཅོས་ - བདེ་ཞིབ་ - ཡི
msgctxt ""
"00040501.xhp\n"
"par_id3153268\n"
-"89\n"
"help.text"
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+plus sign ($[officename] Impress, $[officename] Draw)"
msgstr "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+བསྡོམས་རྟགས་ ($[officename] Impress, $[officename] Draw)"
@@ -11292,7 +10268,6 @@ msgstr "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ
msgctxt ""
"00040501.xhp\n"
"par_id3154206\n"
-"126\n"
"help.text"
msgid "Open context menu - choose <emph>Arrange - Bring to Front</emph> ($[officename] Impress)"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>བདེ་ཞིབ་ - ཡིག་གཟུགས་ལུ་འབག་ཤོག་</emph> ($[officename] Impress)གདམ་ཁ་རྐྱབས།"
@@ -11309,7 +10284,6 @@ msgstr "<image id=\"img_id3145220\" src=\"cmd/sc_bringtofront.png\" width=\"0.22
msgctxt ""
"00040501.xhp\n"
"par_id3149571\n"
-"12\n"
"help.text"
msgid "Bring to Front"
msgstr "ཡིག་གཟུགས་ལུ་འབག་ཤོག"
@@ -11318,7 +10292,6 @@ msgstr "ཡིག་གཟུགས་ལུ་འབག་ཤོག"
msgctxt ""
"00040501.xhp\n"
"par_id3147092\n"
-"13\n"
"help.text"
msgid "Choose <emph>Format - Arrange - Bring Forward</emph> ($[officename] Writer, $[officename] Calc)"
msgstr "<emph>རྩ་སྒྲིག་ -བདེ་ཞིབ་ - གདོང་བསྐྱོད་འབད་</emph> ($[officename] Writer, $[officename] Calc)གདམ་ཁ་རྐྱབས།"
@@ -11327,7 +10300,6 @@ msgstr "<emph>རྩ་སྒྲིག་ -བདེ་ཞིབ་ - གདོ
msgctxt ""
"00040501.xhp\n"
"par_id3148396\n"
-"14\n"
"help.text"
msgid "Choose <emph>Modify - Arrange - Bring Forward</emph> ($[officename] Draw)"
msgstr "<emph>ལེགས་བཅོས་ - བདེ་ཞིབ་ - གདོང་བསྐྱོད་འབད་</emph> ($[officename] Draw)གདམ་ཁ་རྐྱབས།"
@@ -11336,7 +10308,6 @@ msgstr "<emph>ལེགས་བཅོས་ - བདེ་ཞིབ་ - གད
msgctxt ""
"00040501.xhp\n"
"par_id3149528\n"
-"90\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+plus sign ($[officename] Impress, $[officename] Draw)"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+བསྡོམས་རྟགས་མིང་རྟགས་བཀོད། ($[officename] Impress, $[officename] Draw)"
@@ -11345,7 +10316,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"00040501.xhp\n"
"par_id3154658\n"
-"127\n"
"help.text"
msgid "Open context menu - choose <emph>Arrange - Bring Forward</emph> ($[officename] Impress)"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>བདེ་ཞིབ་ - གདོང་བསྐྱོད་འབད་</emph> ($[officename] Impress)གདམ་ཁ་རྐྱབས།"
@@ -11362,7 +10332,6 @@ msgstr "<image id=\"img_id3156142\" src=\"cmd/sc_forward.png\" width=\"0.222inch
msgctxt ""
"00040501.xhp\n"
"par_id3155848\n"
-"69\n"
"help.text"
msgid "Bring Forward"
msgstr "གདོང་བསྐྱོད་འབད།"
@@ -11371,7 +10340,6 @@ msgstr "གདོང་བསྐྱོད་འབད།"
msgctxt ""
"00040501.xhp\n"
"par_id3154815\n"
-"15\n"
"help.text"
msgid "Choose <emph>Format - Arrange - Send Backward</emph> ($[officename] Writer, $[officename] Calc)"
msgstr "<emph>རྩ་སྒྲིག་ - བདེ་ཞིབ་ - རྒྱབས་བསྐྱོད་གཏང་་</emph> ($[officename] Writer, $[officename] Calc)གདམ་ཁ་རྐྱབས།"
@@ -11380,7 +10348,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - བདེ་ཞིབ་ - རྒྱ
msgctxt ""
"00040501.xhp\n"
"par_id3150428\n"
-"16\n"
"help.text"
msgid "Choose <emph>Modify - Arrange - Send Backward</emph> ($[officename] Draw)"
msgstr "<emph>ལེགས་བཅོས་ - བདེ་ཞིབ་ - རྒྱབ་བསྐྱོད་གཏང་</emph> ($[officename] Draw)གདམ་ཁ་རྐྱབས།"
@@ -11389,7 +10356,6 @@ msgstr "<emph>ལེགས་བཅོས་ - བདེ་ཞིབ་ - རྒ
msgctxt ""
"00040501.xhp\n"
"par_id3156064\n"
-"91\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+minus sign ($[officename] Impress, $[officename] Draw)"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཕབ་རྟགས་མིང་རྟགས་ ($[officename] Impress, $[officename] Draw)"
@@ -11398,7 +10364,6 @@ msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བ
msgctxt ""
"00040501.xhp\n"
"par_id3159107\n"
-"128\n"
"help.text"
msgid "Open context menu - choose <emph>Arrange - Send Backward</emph> ($[officename] Impress)"
msgstr "སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ་ - <emph>བདེ་ཞིབ་ - རྒྱབ་བསྐྱོད་གཏང་</emph> ($[officename] Impress)གདམ་ཁ་རྐྱབས།"
@@ -11415,7 +10380,6 @@ msgstr "<image id=\"img_id3163723\" src=\"cmd/sc_backward.png\" width=\"0.222inc
msgctxt ""
"00040501.xhp\n"
"par_id3152795\n"
-"70\n"
"help.text"
msgid "Send Backward"
msgstr "རྒྱབ་བསྐྱོད་གཏང་།"
@@ -11424,7 +10388,6 @@ msgstr "རྒྱབ་བསྐྱོད་གཏང་།"
msgctxt ""
"00040501.xhp\n"
"par_id3149493\n"
-"17\n"
"help.text"
msgid "Choose <emph>Format - Arrange - Send to Back</emph> ($[officename] Writer, $[officename] Calc)"
msgstr "<emph>རྩ་སྒྲིག་ - བདེ་ཞིབ་ - རྒྱབ་ལོག་གཏང་</emph> ($[officename] Writer, $[officename] Calc) གདམ་ཁ་རྐྱབས།"
@@ -11433,7 +10396,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - བདེ་ཞིབ་ - རྒྱ
msgctxt ""
"00040501.xhp\n"
"par_id3148595\n"
-"18\n"
"help.text"
msgid "Choose <emph>Modify - Arrange - Send to Back</emph> ($[officename] Draw)"
msgstr "<emph>ལེགས་བཅོས་ - བདེ་ཞིབ་ - རྒྱབ་ལོག་གཏང་</emph> ($[officename] Draw)གདམ་ཁ་རྐྱབས།"
@@ -11442,7 +10404,6 @@ msgstr "<emph>ལེགས་བཅོས་ - བདེ་ཞིབ་ - རྒ
msgctxt ""
"00040501.xhp\n"
"par_id3150690\n"
-"92\n"
"help.text"
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+minus sign ($[officename] Impress, $[officename] Draw)"
msgstr "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>+ཕབ་རྟགས་ཀྱི་ཨང་རྟགས་ ($[officename] Impress, $[officename] Draw)"
@@ -11451,7 +10412,6 @@ msgstr "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ
msgctxt ""
"00040501.xhp\n"
"par_id3154486\n"
-"129\n"
"help.text"
msgid "Open context menu - choose <emph>Arrange - Send to Back</emph> ($[officename] Impress)"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>བདེ་ཞིབ་ - རྒྱབ་ལོག་གཏང་</emph> ($[officename] Impress)གདམ་ཁ་རྐྱབས།"
@@ -11468,7 +10428,6 @@ msgstr "<image id=\"img_id3153813\" src=\"cmd/sc_sendtoback.png\" width=\"0.222i
msgctxt ""
"00040501.xhp\n"
"par_id3155260\n"
-"20\n"
"help.text"
msgid "Send to Back"
msgstr "རྒྱབ་ལོག་གཏང་།"
@@ -11477,7 +10436,6 @@ msgstr "རྒྱབ་ལོག་གཏང་།"
msgctxt ""
"00040501.xhp\n"
"par_id3145410\n"
-"21\n"
"help.text"
msgid "Choose <emph>Format - Arrange - To Foreground</emph>"
msgstr "<emph>རྩ་སྒྲིག་ - བདེ་ཞིབ་ - གདོང་གཞི་ལུ་</emph>གདམ་ཁ་རྐྱབས།"
@@ -11494,7 +10452,6 @@ msgstr "<image id=\"img_id3155129\" src=\"cmd/sc_setobjecttoforeground.png\" wid
msgctxt ""
"00040501.xhp\n"
"par_id3153607\n"
-"24\n"
"help.text"
msgid "To Foreground"
msgstr "གདོང་གཞི་ལུ།"
@@ -11503,7 +10460,6 @@ msgstr "གདོང་གཞི་ལུ།"
msgctxt ""
"00040501.xhp\n"
"par_id3159626\n"
-"25\n"
"help.text"
msgid "Choose <emph>Format - Arrange - To Background</emph>"
msgstr "<emph>རྩ་སྒྲིག་ - བདེ་ཞིབ་ - རྒྱབ་གཞི་ལུ་</emph>གདམ་ཁ་རྐྱབས།"
@@ -11520,7 +10476,6 @@ msgstr "<image id=\"img_id3154954\" src=\"cmd/sc_setobjecttobackground.png\" wid
msgctxt ""
"00040501.xhp\n"
"par_id3152900\n"
-"28\n"
"help.text"
msgid "To Background"
msgstr "རྒྱབ་གཞི་ལུ།"
@@ -11529,7 +10484,6 @@ msgstr "རྒྱབ་གཞི་ལུ།"
msgctxt ""
"00040501.xhp\n"
"par_id3146854\n"
-"29\n"
"help.text"
msgid "Choose <emph>Format - Alignment</emph> ($[officename] Writer, $[officename] Calc)"
msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་</emph> ($[officename] Writer, $[officename] Calc)གདམ་ཁ་རྐྱབས།"
@@ -11538,7 +10492,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་</emph
msgctxt ""
"00040501.xhp\n"
"par_id3153914\n"
-"56\n"
"help.text"
msgid "Choose <emph>Modify - Alignment</emph> (objects selected) ($[officename] Draw)"
msgstr "<emph>ལེགས་བཅོས་ - ཕྲང་སྒྲིག་</emph> (objects selected) ($[officename] Draw)གདམ་ཁ་རྐྱབས།"
@@ -11547,7 +10500,6 @@ msgstr "<emph>ལེགས་བཅོས་ - ཕྲང་སྒྲིག་</e
msgctxt ""
"00040501.xhp\n"
"par_id3153185\n"
-"130\n"
"help.text"
msgid "Open context menu - choose <emph>Alignment</emph> (objects selected) ($[officename] Impress, $[officename] Draw)"
msgstr "སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ་ - <emph>ཕྲང་སྒྲིག་</emph> (སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ་) ($[officename] Impress, $[officename] Draw)གམད་ཁ་རྐྱབས།"
@@ -11556,7 +10508,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ་ - <em
msgctxt ""
"00040501.xhp\n"
"par_id3168611\n"
-"30\n"
"help.text"
msgid "Choose <emph>Format - Alignment - Left</emph> ($[officename] Writer, $[officename] Calc)"
msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་ -གཡོན་</emph> ($[officename] Writer, $[officename] Calc)གདམ་ཁ་རྐྱབས།"
@@ -11565,7 +10516,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་ -ག
msgctxt ""
"00040501.xhp\n"
"par_id3083450\n"
-"57\n"
"help.text"
msgid "Choose <emph>Modify - Alignment - Left</emph> (selected objects) ($[officename] Draw)"
msgstr "<emph>ལེགས་བཅོས་ - ཕྲང་སྒྲིག་ - གཡོན་</emph> (selected objects) ($[officename] Draw)གདམ་ཁ་རྐྱབས།"
@@ -11574,7 +10524,6 @@ msgstr "<emph>ལེགས་བཅོས་ - ཕྲང་སྒྲིག་ -
msgctxt ""
"00040501.xhp\n"
"par_id3150257\n"
-"131\n"
"help.text"
msgid "Open context menu - choose <emph>Alignment - Left</emph> (objects selected) ($[officename] Impress, $[officename] Draw)"
msgstr "སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ་ - <emph>ཕྲང་སྒྲིག་ -གཡོན་</emph> (སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ་) ($[officename] ཨིམ་པེརེསི་, $[officename] Draw)གདམ་ཁ་རྐྱབས།"
@@ -11583,7 +10532,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ་ - <em
msgctxt ""
"00040501.xhp\n"
"par_id3146786\n"
-"31\n"
"help.text"
msgid "On <emph>Align</emph> toolbar ($[officename] Impress, $[officename] Draw), click"
msgstr "<emph>Align</emph> toolbar ($[officename] Impress, $[officename] Draw) གུ་ཨེབ་གཏང་།"
@@ -11600,7 +10548,6 @@ msgstr "<image id=\"img_id3159209\" src=\"cmd/sc_objectalign.png\" width=\"0.222
msgctxt ""
"00040501.xhp\n"
"par_id3151231\n"
-"33\n"
"help.text"
msgid "Left"
msgstr "གཡོན།"
@@ -11609,7 +10556,6 @@ msgstr "གཡོན།"
msgctxt ""
"00040501.xhp\n"
"par_id3150268\n"
-"34\n"
"help.text"
msgid "Choose <emph>Format - Alignment - Centered</emph> ($[officename] Writer, $[officename] Calc)"
msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་ - དབུས་སྒྲིག་་</emph> ($[officename] Writer, $[officename] Calc)གདམ་ཁ་རྐྱབས།"
@@ -11618,7 +10564,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་ - ད
msgctxt ""
"00040501.xhp\n"
"par_id3157978\n"
-"59\n"
"help.text"
msgid "Choose <emph>Modify - Alignment - Centered</emph> (objects selected) ($[officename] Draw)"
msgstr "<emph>ལེགས་བཅོས་ - ཕྲང་སྒྲིག་ - དབུས་སྒྲིག་</emph> (སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ་) ($[officename] Draw)གདམ་ཁ་རྐྱབས།"
@@ -11627,7 +10572,6 @@ msgstr "<emph>ལེགས་བཅོས་ - ཕྲང་སྒྲིག་ -
msgctxt ""
"00040501.xhp\n"
"par_id3150139\n"
-"35\n"
"help.text"
msgid "On <emph>Align</emph> toolbar ($[officename] Impress, $[officename] Draw), click"
msgstr "<emph>Align</emph> toolbar ($[officename] Impress, $[officename] Draw) གུ་ཨེབ་གཏང་།"
@@ -11644,7 +10588,6 @@ msgstr "<image id=\"img_id3143222\" src=\"cmd/sc_alignmiddle.png\" width=\"0.222
msgctxt ""
"00040501.xhp\n"
"par_id3150704\n"
-"36\n"
"help.text"
msgid "Centered"
msgstr "དབུས་སྒྲིག"
@@ -11653,7 +10596,6 @@ msgstr "དབུས་སྒྲིག"
msgctxt ""
"00040501.xhp\n"
"par_id3156546\n"
-"37\n"
"help.text"
msgid "Choose <emph>Format - Alignment - Right</emph>"
msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་འབད་ - གཡས།</emph>གདམ་ཁ་རྐྱབས།"
@@ -11662,7 +10604,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་འབ
msgctxt ""
"00040501.xhp\n"
"par_id3145073\n"
-"61\n"
"help.text"
msgid "Choose <emph>Modify - Alignment - Right</emph> (objects selected) ($[officename] Draw)"
msgstr "<emph>ལེགས་བཅོས་ - ཕྲང་སྒྲིག་ - གཡས་</emph> (སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ་) ($[officename] Draw)གདམ་ཁ་རྐྱབས།"
@@ -11671,7 +10612,6 @@ msgstr "<emph>ལེགས་བཅོས་ - ཕྲང་སྒྲིག་ -
msgctxt ""
"00040501.xhp\n"
"par_id3146953\n"
-"38\n"
"help.text"
msgid "On <emph>Align</emph> toolbar ($[officename] Impress, $[officename] Draw), click"
msgstr "<emph>Align</emph> toolbar ($[officename] Impress, $[officename] Draw) གུ་ཨེབ་གཏང་།"
@@ -11688,7 +10628,6 @@ msgstr "<image id=\"img_id3153283\" src=\"cmd/sc_objectalignright.png\" width=\"
msgctxt ""
"00040501.xhp\n"
"par_id3150834\n"
-"39\n"
"help.text"
msgid "Right"
msgstr "གཡས།"
@@ -11697,7 +10636,6 @@ msgstr "གཡས།"
msgctxt ""
"00040501.xhp\n"
"par_id3153109\n"
-"40\n"
"help.text"
msgid "Choose <emph>Format - Alignment - Top</emph> ($[officename] Writer, $[officename] Calc)"
msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་འབད་ - མགོ་</emph> ($[officename] Writer, $[officename] Calc)གདམ་ཁ་རྐྱབས།"
@@ -11706,7 +10644,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་འབ
msgctxt ""
"00040501.xhp\n"
"par_id3150213\n"
-"63\n"
"help.text"
msgid "Choose <emph>Modify - Alignment - Top</emph> (objects selected) ($[officename] Draw)"
msgstr "<emph>ལེགས་བཅོས་ - ཕྲང་སྒྲིག་ - མགོ་</emph> (སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ་) ($[officename] Draw)གདམ་ཁ་རྐྱབས།"
@@ -11715,7 +10652,6 @@ msgstr "<emph>ལེགས་བཅོས་ - ཕྲང་སྒྲིག་ -
msgctxt ""
"00040501.xhp\n"
"par_id3155093\n"
-"134\n"
"help.text"
msgid "Open context menu - choose <emph>Alignment - Top</emph> (objects selected) ($[officename] Impress, $[officename] Draw)"
msgstr "སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ་ - <emph>ཕྲང་སྒྲིག་འབད་ - མགོ་</emph> (སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ་) ($[officename] Impress, $[officename] Draw)གདམ་ཁ་རྐྱབས།"
@@ -11724,7 +10660,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ་ - <em
msgctxt ""
"00040501.xhp\n"
"par_id3151303\n"
-"41\n"
"help.text"
msgid "On <emph>Align</emph> toolbar ($[officename] Impress, $[officename] Draw), click"
msgstr "<emph>Align</emph> toolbar ($[officename] Impress, $[officename] Draw) གུ་ཨེབ་གཏང་།"
@@ -11741,7 +10676,6 @@ msgstr "<image id=\"img_id3155542\" src=\"cmd/sc_alignup.png\" width=\"0.222inch
msgctxt ""
"00040501.xhp\n"
"par_id3157550\n"
-"42\n"
"help.text"
msgid "Top"
msgstr "མགོ"
@@ -11750,7 +10684,6 @@ msgstr "མགོ"
msgctxt ""
"00040501.xhp\n"
"par_id3153976\n"
-"43\n"
"help.text"
msgid "Choose <emph>Format - Alignment - Centered</emph> ($[officename] Writer, $[officename] Calc)"
msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་ - དབུས་སྒྲིག་་</emph> ($[officename] Writer, $[officename] Calc)གདམ་ཁ་རྐྱབས།"
@@ -11759,7 +10692,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་ - ད
msgctxt ""
"00040501.xhp\n"
"par_id3153246\n"
-"65\n"
"help.text"
msgid "Choose <emph>Modify - Alignment - Centered</emph> (objects selected) ($[officename] Draw)"
msgstr "<emph>ལེགས་བཅོས་ - ཕྲང་སྒྲིག་ - དབུས་སྒྲིག་</emph> (སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ་) ($[officename] Draw)གདམ་ཁ་རྐྱབས།"
@@ -11768,7 +10700,6 @@ msgstr "<emph>ལེགས་བཅོས་ - ཕྲང་སྒྲིག་ -
msgctxt ""
"00040501.xhp\n"
"par_id3154614\n"
-"135\n"
"help.text"
msgid "Open context menu - choose <emph>Alignment - Centered</emph> (objects selected) ($[officename] Impress, $[officename] Draw)"
msgstr "སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ་ - <emph>ཕྲང་སྒྲིག་ - དབུས་སྒྲིག་</emph> (སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ་) ($[officename] Impress, $[officename] Draw)གདམ་ཁ་རྐྱབས།"
@@ -11777,7 +10708,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ་ - <em
msgctxt ""
"00040501.xhp\n"
"par_id3149196\n"
-"44\n"
"help.text"
msgid "On <emph>Align</emph> toolbar ($[officename] Impress, $[officename] Draw), click"
msgstr "<emph>Align</emph> toolbar ($[officename] Impress, $[officename] Draw) གུ་ཨེབ་གཏང་།"
@@ -11794,7 +10724,6 @@ msgstr "<image id=\"img_id3146776\" src=\"cmd/sc_aligncenter.png\" width=\"0.222
msgctxt ""
"00040501.xhp\n"
"par_id3146943\n"
-"45\n"
"help.text"
msgid "Centered"
msgstr "དབུས་སྒྲིག"
@@ -11803,7 +10732,6 @@ msgstr "དབུས་སྒྲིག"
msgctxt ""
"00040501.xhp\n"
"par_id3149896\n"
-"46\n"
"help.text"
msgid "Choose <emph>Format - Alignment - Bottom</emph> ($[officename] Writer, $[officename] Calc)"
msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་འབད་ -མཇུག་</emph> ($[officename] Writer, $[officename] Calc)གདམ་ཁ་རྐྱབས།"
@@ -11812,7 +10740,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་འབ
msgctxt ""
"00040501.xhp\n"
"par_id3156049\n"
-"67\n"
"help.text"
msgid "Choose <emph>Modify - Alignment - Bottom</emph> (objects selected) ($[officename] Draw)"
msgstr "<emph>ལེགས་བཅོས་ - ཕྲང་སྒྲིག་འབད་ - མཇུག་</emph> (སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ) ($[officename] Draw)གདམ་ཁ་རྐྱབས།"
@@ -11821,7 +10748,6 @@ msgstr "<emph>ལེགས་བཅོས་ - ཕྲང་སྒྲིག་འ
msgctxt ""
"00040501.xhp\n"
"par_id3152545\n"
-"47\n"
"help.text"
msgid "On <emph>Align</emph> toolbar ($[officename] Impress, $[officename] Draw), click"
msgstr "<emph>Align</emph> toolbar ($[officename] Impress, $[officename] Draw) གུ་ཨེབ་གཏང་།"
@@ -11838,7 +10764,6 @@ msgstr "<image id=\"img_id3147267\" src=\"cmd/sc_aligndown.png\" width=\"0.222in
msgctxt ""
"00040501.xhp\n"
"par_id3145601\n"
-"48\n"
"help.text"
msgid "Bottom"
msgstr "མཇུག"
@@ -11847,7 +10772,6 @@ msgstr "མཇུག"
msgctxt ""
"00040501.xhp\n"
"par_id3145197\n"
-"49\n"
"help.text"
msgid "Choose <emph>Format - Anchor</emph>"
msgstr "<emph>རྩ་སྒྲིག་ - ཨེན་ཀོར་</emph>གདམ་ཁ་རྐྱབས།"
@@ -11872,7 +10796,6 @@ msgstr "<image id=\"img_id3145357\" src=\"cmd/sc_toggleanchortype.png\" width=\"
msgctxt ""
"00040501.xhp\n"
"par_id3154763\n"
-"51\n"
"help.text"
msgid "Change Anchor"
msgstr "ཨེན་ཀོར་བསྒྱུར་བཅོས་འབད།"
@@ -11881,7 +10804,6 @@ msgstr "ཨེན་ཀོར་བསྒྱུར་བཅོས་འབད།
msgctxt ""
"00040501.xhp\n"
"par_id3148899\n"
-"52\n"
"help.text"
msgid "<variable id=\"anseite\">Choose <emph>Format - Anchor - To Page</emph></variable>"
msgstr "<variable id=\"anseite\"> <emph>རྩ་སྒྲིག་ - ཨེན་ཀོར་ - ཤོག་ལེབ་ལུ་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -11890,7 +10812,6 @@ msgstr "<variable id=\"anseite\"> <emph>རྩ་སྒྲིག་ - ཨེན
msgctxt ""
"00040501.xhp\n"
"par_id3149342\n"
-"53\n"
"help.text"
msgid "<variable id=\"amabsatz\">Choose <emph>Format - Anchor - To Paragraph</emph></variable>"
msgstr "<variable id=\"amabsatz\"> <emph>རྩ་སྒྲིག་ - ཨེན་ཀོར་ - དོན་མཚམས་ལུ་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -11899,7 +10820,6 @@ msgstr "<variable id=\"amabsatz\"> <emph>རྩ་སྒྲིག་ - ཨེ
msgctxt ""
"00040501.xhp\n"
"par_id3155147\n"
-"54\n"
"help.text"
msgid "<variable id=\"amzeichen\">Choose <emph>Format - Anchor - To Character</emph></variable>"
msgstr "<variable id=\"amzeichen\"> <emph>རྩ་སྒྲིག་ - ཨེན་ཀོར་ - ཡིག་འབྲུ་ལུ་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -11908,7 +10828,6 @@ msgstr "<variable id=\"amzeichen\"> <emph>རྩ་སྒྲིག་ - ཨེ
msgctxt ""
"00040501.xhp\n"
"par_id3153042\n"
-"72\n"
"help.text"
msgid "<variable id=\"alszeichen\">Choose <emph>Format - Anchor - As Character</emph></variable>"
msgstr "<variable id=\"alszeichen\"> <emph>རྩ་སྒྲིག་ - ཨེན་ཀོར་ - ཡིག་འབྲུ་སྦེ།</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -11917,7 +10836,6 @@ msgstr "<variable id=\"alszeichen\"> <emph>རྩ་སྒྲིག་ - ཨེ
msgctxt ""
"00040501.xhp\n"
"par_id3146964\n"
-"71\n"
"help.text"
msgid "<variable id=\"amrahmen\">Choose <emph>Format - Anchor - To Frame</emph></variable>"
msgstr "<variable id=\"amrahmen\"> <emph>རྩ་སྒྲིག་ - ཨེན་ཀོར་ - གཞི་ཁྲམ་བཟོ་ནི་ལུ་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -11926,7 +10844,6 @@ msgstr "<variable id=\"amrahmen\"> <emph>རྩ་སྒྲིག་ - ཨེ
msgctxt ""
"00040501.xhp\n"
"par_id3150781\n"
-"55\n"
"help.text"
msgid "<variable id=\"anderzelle\">Choose <emph>Format - Anchor - To Cell</emph></variable>"
msgstr "<variable id=\"anderzelle\"> <emph>རྩ་སྒྲིག་- ཨེན་ཀོར་ - ནང་ཐིག་ལུ་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -11943,7 +10860,6 @@ msgstr "རྩ་སྒྲིག་གི་དཀར་ཆག"
msgctxt ""
"00040502.xhp\n"
"hd_id3149741\n"
-"1\n"
"help.text"
msgid "Format Menu"
msgstr "རྩ་སྒྲིག་གི་དཀར་ཆག"
@@ -11952,7 +10868,6 @@ msgstr "རྩ་སྒྲིག་གི་དཀར་ཆག"
msgctxt ""
"00040502.xhp\n"
"par_id3146857\n"
-"2\n"
"help.text"
msgid "Choose <emph>Format - Line</emph> (Impress and Draw)"
msgstr "རྩ་སྒྲིག་-གྱལ་ <emph>(བརྐོས་ཡིག་དང་འབྲི་)</emph> གདམ།"
@@ -11977,7 +10892,6 @@ msgstr "རྩ་སྒྲིག་-་ཚད་རིས་-་གྱལ <emph>
msgctxt ""
"00040502.xhp\n"
"par_id3148668\n"
-"3\n"
"help.text"
msgid "On <emph>Line and Filling</emph> Bar, click"
msgstr "<emph>Line and Filling</emph>ཕྲ་རིང་གུ་ཨེབ་གཏང་།"
@@ -11994,7 +10908,6 @@ msgstr "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inc
msgctxt ""
"00040502.xhp\n"
"par_id3159147\n"
-"4\n"
"help.text"
msgid "Line"
msgstr "གྲལ་ཐིག"
@@ -12003,13 +10916,11 @@ msgstr "གྲལ་ཐིག"
msgctxt ""
"00040502.xhp\n"
"par_id3154285\n"
-"5\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line</emph> tab"
msgstr "རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>གྱལ - གྱལ་</emph> མཆོང་ལྡེ་གདམ།"
#: 00040502.xhp
-#, fuzzy
msgctxt ""
"00040502.xhp\n"
"par_id3147335\n"
@@ -12021,7 +10932,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - བཟོ་རནམ་དང་ར
msgctxt ""
"00040502.xhp\n"
"par_id3156023\n"
-"8\n"
"help.text"
msgid "Choose <emph>Format - Title - Borders</emph> tab (charts)"
msgstr "<emph>རྩ་སྒྲིག་ - མགོ་མིང་ - མཐའ་མཚམས་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས། (དཔེ་རིས་)"
@@ -12030,7 +10940,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - མགོ་མིང་ - མཐའ
msgctxt ""
"00040502.xhp\n"
"par_id3153061\n"
-"9\n"
"help.text"
msgid "Choose <emph>Format - Legend - Borders</emph> tab (charts)"
msgstr "<emph>རྩ་སྒྲིག་ -གཏམ་རྒྱུད་ - མཐའ་མཚམས་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས་(དཔེ་རིས་)"
@@ -12039,7 +10948,6 @@ msgstr "<emph>རྩ་སྒྲིག་ -གཏམ་རྒྱུད་ - མ
msgctxt ""
"00040502.xhp\n"
"par_id3155922\n"
-"10\n"
"help.text"
msgid "Choose <emph>Format - Axis - Line</emph> tab (charts)"
msgstr "<emph>རྩ་སྒྲིག་ - ཚད་ཐིག་ -གྲལ་ཐིག་</emph> ཨེབ་ལྡེ་ (དཔེ་རིས་)གདམ་ཁ་རྐྱབས།"
@@ -12048,7 +10956,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ཚད་ཐིག་ -གྲལ་
msgctxt ""
"00040502.xhp\n"
"par_id3147559\n"
-"11\n"
"help.text"
msgid "Choose <emph>Format - Grid - Line</emph> tab (charts)"
msgstr "<emph>རྩ་སྒྲིག་ - གིརིཌི་ - གྲལ་ཐིག་</emph> ཨེབ་ལྡེ་ (དཔེ་རིས་)གདམ་ཁ་རྐྱབས།"
@@ -12057,7 +10964,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - གིརིཌི་ - གྲལ་
msgctxt ""
"00040502.xhp\n"
"par_id3154758\n"
-"12\n"
"help.text"
msgid "Choose <emph>Format - Chart Wall - Borders</emph> tab (charts)"
msgstr "<emph>རྩ་སྒྲིག་ - དཔེ་རིས་གྱང་རྩག་ - མཐའ་མཚམས་</emph> ཨེབ་ལྡེ་ (དཔེ་རིས་)གདམ་ཁ་རྐྱབས།"
@@ -12066,7 +10972,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - དཔེ་རིས་གྱང་
msgctxt ""
"00040502.xhp\n"
"par_id3153960\n"
-"13\n"
"help.text"
msgid "Choose <emph>Format - Chart Floor - Borders</emph> tab (charts)"
msgstr "<emph>རྩ་སྒྲིག་ - དཔེ་རིས་མཐིལ་ - མཐའ་མཚམས་</emph> ཨེབ་ལྡེ་ (དཔེ་རིས་)གདམ་ཁ་རྐྱབས།"
@@ -12075,7 +10980,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - དཔེ་རིས་མཐིལ
msgctxt ""
"00040502.xhp\n"
"par_id3154939\n"
-"14\n"
"help.text"
msgid "Choose <emph>Format - Chart Area - Borders</emph> tab (charts)"
msgstr "<emph>རྩ་སྒྲིག་ -དཔེ་རིས་མངའ་ཁོངས་ - མཐའ་མཚམས་</emph> ཨེབ་ལྡེ་ (དཔེ་རིས་)གདམ་ཁ་རྐྱབས།"
@@ -12084,7 +10988,6 @@ msgstr "<emph>རྩ་སྒྲིག་ -དཔེ་རིས་མངའ་
msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
-"15\n"
"help.text"
msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
msgstr "<variable id=\"linienstile\">རྩ་སྒྲིག- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>གྱལ་ - གྱལ་བཟོ་རྣམ་ཚུ་</emph> མཆོང་ལྡེ་གདམ། </variable>"
@@ -12093,7 +10996,6 @@ msgstr "<variable id=\"linienstile\">རྩ་སྒྲིག- <emph>དང་ <
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
-"16\n"
"help.text"
msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
msgstr "<variable id=\"linienenden\">རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>གྱལ་ - མདའ་རྟགས་བཟོ་རྣམ་ཚུ་</emph> མཆོང་ལྡེ་གདམ </variable>"
@@ -12102,7 +11004,6 @@ msgstr "<variable id=\"linienenden\">རྩ་སྒྲིག་- <emph>དང
msgctxt ""
"00040502.xhp\n"
"par_id3156082\n"
-"17\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area</emph>"
msgstr "རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>མངའ་ཁོངས་གདམ།</emph>"
@@ -12111,7 +11012,6 @@ msgstr "རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select
msgctxt ""
"00040502.xhp\n"
"par_id3148922\n"
-"18\n"
"help.text"
msgid "On <emph>Line and Filling</emph> Bar, click"
msgstr "<emph>Line and Filling</emph>ཕྲ་རིང་གུ་ཨེབ་གཏང་།"
@@ -12128,7 +11028,6 @@ msgstr "<image id=\"img_id3153748\" src=\"cmd/sc_bullet.png\" width=\"0.222inch\
msgctxt ""
"00040502.xhp\n"
"par_id3150393\n"
-"19\n"
"help.text"
msgid "Area"
msgstr "མངའ་ཁོངས།"
@@ -12137,13 +11036,11 @@ msgstr "མངའ་ཁོངས།"
msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
-"20\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
msgstr "རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>ཙངའ་ཁོངས་ - མངའ་ཁོངས་</emph> མཆོང་ལྡེ་གདམ།"
#: 00040502.xhp
-#, fuzzy
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
@@ -12155,7 +11052,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - བཟོ་རྣམ་དང་ར
msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
-"23\n"
"help.text"
msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
msgstr "<emph>རྩ་སྒྲིག་ - མགོ་ཡིག་ - མངའ་ཁོངས་</emph>ཨེབ་ལྡེ་ (དཔེ་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12164,7 +11060,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - མགོ་ཡིག་ - མངའ
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
-"24\n"
"help.text"
msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
msgstr "<emph>རྩ་སྒྲིག་ - གཏམ་རྒྱུད་ - མངའ་ཁོངས་</emph> ཨེབ་ལྡེ་ (chart documents)གདམ་ཁ་རྐྱབས།"
@@ -12173,7 +11068,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - གཏམ་རྒྱུད་ - མ
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
-"25\n"
"help.text"
msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
msgstr "<emph>རྩ་སྒྲིག་ - དཔེ་རིས་གྱང་རྩིག་ - མངའ་ཁོངས་</emph>ཨེབ་ལྡེ་ (chart documents)གདམ་ཁ་རྐྱབས།"
@@ -12182,7 +11076,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - དཔེ་རིས་གྱང་
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
-"26\n"
"help.text"
msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
msgstr "<emph>རྩ་སྒྲིག་ - དཔེ་རིས་མཐིལ་ - མངའ་ཁོངས་</emph> ཨེབ་ལྡེ་ (chart documents)གདམ་ཁ་རྐྱབས།"
@@ -12191,7 +11084,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - དཔེ་རིས་མཐིལ
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
-"27\n"
"help.text"
msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
msgstr "<emph>རྩ་ སྒྲིག་ - དཔེ་རིས་མངའ་ཁོངས་ - མངའ་ཁོངས་</emph> ཨེབ་ལྡེ་ (དཔེ་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12200,7 +11092,6 @@ msgstr "<emph>རྩ་ སྒྲིག་ - དཔེ་རིས་མངའ
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
-"120\n"
"help.text"
msgid "Choose <emph>Format - Page - Background</emph> tab (in $[officename] Impress and $[officename] Draw)"
msgstr "<emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་ - རྒྱབ་གཞི་</emph> ཨེབ་ལྡེ་ (in $[officename] Impress and $[officename] Draw)གདམ་ཁ་རྐྱབས།"
@@ -12209,7 +11100,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་ - རྒྱ
msgctxt ""
"00040502.xhp\n"
"par_id3154985\n"
-"141\n"
"help.text"
msgid "Choose <emph>Format - Area - Transparency</emph> tab (drawing documents)"
msgstr "<emph>རྩ་སྒྲིག་ - མངའ་ཁོངས་ - དྭངས་གསལ་ཅན་གྱི་</emph> ཨེབ་ལྡེ་ (drawing documents)གདམ་ཁ་རྐྱབས།"
@@ -12218,7 +11108,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - མངའ་ཁོངས་ - དྭ
msgctxt ""
"00040502.xhp\n"
"par_id3145365\n"
-"142\n"
"help.text"
msgid "Choose <emph>Format - Area - Transparency</emph> tab (presentation documents)"
msgstr "<emph>རྩ་སྒྲིག་ - མངའ་ཁོངས་ - དྭངས་གསལ་ཅན་གྱི་</emph> ཨེབ་ལྡེ་ (གསལ་སྟོན་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12227,7 +11116,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - མངའ་ཁོངས་ - དྭ
msgctxt ""
"00040502.xhp\n"
"par_id3151117\n"
-"143\n"
"help.text"
msgid "Choose <emph>Format - Chart Wall - Transparency</emph> tab (chart documents)"
msgstr "<emph>རྩ་སྒྲིག་ -དཔེ་རིས་གྱང་རྩིག་ - དྭངས་གསལ་ཅན་གྱི་</emph> ཨེབ་ལྡེ་ (དཔེ་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12236,7 +11124,6 @@ msgstr "<emph>རྩ་སྒྲིག་ -དཔེ་རིས་གྱང་
msgctxt ""
"00040502.xhp\n"
"par_id3147326\n"
-"144\n"
"help.text"
msgid "Choose <emph>Format - Chart Area - Transparency</emph> tab (chart documents)"
msgstr "<emph>རྩ་སྒྲིག་ - དཔེ་རིས་མངའ་ཁོངས་ - དྭངས་གསལ་ཅན་གྱི་</emph> ཨེབ་ལྡེ་ (དཔེ་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12245,7 +11132,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - དཔེ་རིས་མངའ་
msgctxt ""
"00040502.xhp\n"
"par_id3154920\n"
-"145\n"
"help.text"
msgid "Choose <emph>Format - Chart Floor - Transparency</emph> tab (chart documents)"
msgstr "<emph>རྩ་སྒྲིག་ -དཔེ་རིས་མཐིལ་ - དྭངས་གསལ་ཅན་གྱི་</emph>ཨེབ་ལྡེ་ (དཔེ་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12254,7 +11140,6 @@ msgstr "<emph>རྩ་སྒྲིག་ -དཔེ་རིས་མཐིལ
msgctxt ""
"00040502.xhp\n"
"par_id3145591\n"
-"146\n"
"help.text"
msgid "Choose <emph>Format - Title - All Titles - Transparency</emph> tab (chart documents)"
msgstr "<emph>རྩ་སྒྲིག་ - མགོ་མིང་ - མགོ་མིང་ཆ་མཉམ་ - དྭངས་གསལ་ཅན་གྱི་</emph> ཨེབ་ལྡེ་ (chart documents)གདམ་ཁ་རྐྱབས།"
@@ -12263,7 +11148,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - མགོ་མིང་ - མགོ
msgctxt ""
"00040502.xhp\n"
"par_id3145750\n"
-"147\n"
"help.text"
msgid "Choose <emph>Format - Title - Main Title - Transparency </emph>tab (chart documents)"
msgstr "<emph>རྩ་སྒྲིག་ - མགོ་ཡིག་ - མགོ་མིང་གཙོ་བོ་ - དྭངས་གསལ་ཅན་གྱི་ </emph>ཨེབ་ལྡེ་ (དཔེ་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12272,7 +11156,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - མགོ་ཡིག་ - མགོ
msgctxt ""
"00040502.xhp\n"
"par_id3148556\n"
-"148\n"
"help.text"
msgid "Choose <emph>Format - Title - Subtitle - Transparency</emph> tab (chart documents)"
msgstr "<emph>རྩ་སྒྲིག་ - མགོ་མིང་ - མགོ་མིང་ཡན་ལག་ - དྭངས་གསལ་ཅན་གྱི་</emph>ཨེབ་ལྡེ་ (དཔེ་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12281,7 +11164,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - མགོ་མིང་ - མགོ
msgctxt ""
"00040502.xhp\n"
"par_id3163710\n"
-"149\n"
"help.text"
msgid "Choose <emph>Format - Title - Title (X Axis) - Transparency</emph> tab (chart documents)"
msgstr "<emph>རྩ་སྒྲིག་ - མགོ་མིང་ - མགོ་མིང་ (X Axis) - དྭངས་གསལ་ཅན་གྱི་</emph>ཨེབ་ལྡེ་ (དཔེ་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12290,7 +11172,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - མགོ་མིང་ - མགོ
msgctxt ""
"00040502.xhp\n"
"par_id3150487\n"
-"150\n"
"help.text"
msgid "Choose <emph>Format - Title - Title (Y Axis) - Transparency</emph> tab (chart documents)"
msgstr "<emph>རྩ་སྒྲིག་- མགོ་མིང་ - མགོ་མིང་ (ཝའི་ཚད་ཐིག་) - དྭངས་གསལ་ཅན་གྱི་</emph> ཨེབ་ལྡེ་ (དཔེ་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12299,7 +11180,6 @@ msgstr "<emph>རྩ་སྒྲིག་- མགོ་མིང་ - མགོ
msgctxt ""
"00040502.xhp\n"
"par_id3154320\n"
-"151\n"
"help.text"
msgid "Choose <emph>Format - Title - Title (Z Axis) - Transparency</emph> tab (chart documents)"
msgstr "<emph>རྩ་སྒྲིག་ - མགོ་མིང་ -མགོ་མིང་ (Z Axis) - དྭངས་གསལ་ཅན་གྱི་</emph> ཨེབ་ལྡེ་ (དཔེ་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12308,7 +11188,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - མགོ་མིང་ -མགོ
msgctxt ""
"00040502.xhp\n"
"par_id3151113\n"
-"152\n"
"help.text"
msgid "Choose <emph>Format - Object Properties - Data Point - Transparency</emph> - tab (chart documents)"
msgstr "<emph>རྩ་སྒྲིག་ - དངོས་པོའི་རྒྱུ་དངོས་ - གནད་སྡུད་དོན་ཚན་ - དྭངས་གསལ་ཅན་གྱི་</emph> - ཨེབ་ལྡེ་ (དཔེ་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12317,7 +11196,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - དངོས་པོའི་རྒ
msgctxt ""
"00040502.xhp\n"
"par_id3149266\n"
-"153\n"
"help.text"
msgid "Choose <emph>Format - Object Properties - Data Series - Transparency</emph> tab (chart documents)"
msgstr "<emph>རྩ་སྒྲིག་ - དངོས་པོའི་རྒྱུ་དངོས་ - གནད་སྡུད་གྲལ་ཐིག་ - དྭངས་གསལ་ཅན་གྱི་</emph> ཨེབ་ལྡེ་ (དཔེ་རིས་ཡིག་ཆ་ཚུ་) གདམ་ཁ་རྐྱབས།"
@@ -12326,7 +11204,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - དངོས་པོའི་རྒ
msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
-"30\n"
"help.text"
msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
msgstr "<variable id=\"schatte\">རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>མངའ་ཁོངས་ - གྱིབ་མ་</emph> མཆོང་ལྡེ་གདམ། </variable>"
@@ -12335,7 +11212,6 @@ msgstr "<variable id=\"schatte\">རྩ་སྒྲིག་- <emph>དང་ </
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
-"31\n"
"help.text"
msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
msgstr "<variable id=\"verlauf\">རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>མངའ་ཁོངས་ - སྟེགས་རིས་ཚུ་</emph> མཆོང་ལྡེ་གདམ། </variable>"
@@ -12344,7 +11220,6 @@ msgstr "<variable id=\"verlauf\">རྩ་སྒྲིག་- <emph>དང་ </
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
-"32\n"
"help.text"
msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
msgstr "<variable id=\"schraffur\">རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>མངའ་ཁོངས་ - ཐིག་རིས་གྲིབ་མདངས་</emph> མཆོང་ལྡེ་གདམ། </variable>"
@@ -12353,7 +11228,6 @@ msgstr "<variable id=\"schraffur\">རྩ་སྒྲིག་- <emph>དང་
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
-"33\n"
"help.text"
msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
msgstr "<variable id=\"bitmap\">རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>མངའ་ཁོངས་ - བིཊི་མེཔསི་</emph> མཆོང་ལྡེ་གདམ། </variable>"
@@ -12362,7 +11236,6 @@ msgstr "<variable id=\"bitmap\">རྩ་སྒྲིག་- <emph>དང་ </e
msgctxt ""
"00040502.xhp\n"
"par_id3145251\n"
-"34\n"
"help.text"
msgid "<variable id=\"formattext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline></variable>"
msgstr ""
@@ -12371,7 +11244,6 @@ msgstr ""
msgctxt ""
"00040502.xhp\n"
"par_id3152810\n"
-"35\n"
"help.text"
msgid "<variable id=\"text\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text</emph> tab</variable>"
msgstr ""
@@ -12380,7 +11252,6 @@ msgstr ""
msgctxt ""
"00040502.xhp\n"
"par_id3151060\n"
-"36\n"
"help.text"
msgid "<variable id=\"laufext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text Animation</emph> tab</variable>"
msgstr ""
@@ -12389,7 +11260,6 @@ msgstr ""
msgctxt ""
"00040502.xhp\n"
"par_id3149911\n"
-"37\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size</emph>"
msgstr "རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་- </emph></caseinline></switchinline><emph>གནས་ས་དང་ཚད་གདམ།</emph>"
@@ -12398,7 +11268,6 @@ msgstr "རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select
msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
-"89\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">ཨེཕ་ ༤ ལྡེ་མིག་ </caseinline><caseinline select=\"IMPRESS\">ཨེཕ་ ༤ ལྡེ་མིག་ </caseinline></switchinline>"
@@ -12415,7 +11284,6 @@ msgstr "<image id=\"img_id3159345\" src=\"cmd/sc_tabdialog.png\" width=\"0.222in
msgctxt ""
"00040502.xhp\n"
"par_id3149938\n"
-"39\n"
"help.text"
msgid "Position and Size"
msgstr "གནས་ས་དང་ཚད།"
@@ -12424,7 +11292,6 @@ msgstr "གནས་ས་དང་ཚད།"
msgctxt ""
"00040502.xhp\n"
"par_id3148833\n"
-"170\n"
"help.text"
msgid "Open the context menu for the object - choose <emph>Name</emph>"
msgstr "དངོས་པོའི་དོན་ལུ་ སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ་- གདམ་ཁ་བརྐྱབ་ <emph>མིང་།</emph>"
@@ -12441,7 +11308,6 @@ msgstr "དངོས་པོའི་དོན་ལུ་ སྐབས་ད
msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
-"40\n"
"help.text"
msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
msgstr "<variable id=\"position2\">རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>གནས་ས་དང་ཚད་ - གནས་ས་དང་ཚད་</emph> མཆོང་ལྡེ་གདམ། </variable>"
@@ -12450,7 +11316,6 @@ msgstr "<variable id=\"position2\">རྩ་སྒྲིག་- <emph>དང་
msgctxt ""
"00040502.xhp\n"
"par_id3152973\n"
-"42\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Rotation</emph> tab"
msgstr "རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>གནས་ས་དང་ཚད་ - བསྒྱིར་ནི་</emph> མཆོང་ལྡེ་གདམ།"
@@ -12467,7 +11332,6 @@ msgstr "<image id=\"img_id3145357\" src=\"cmd/sc_toggleanchortype.png\" width=\"
msgctxt ""
"00040502.xhp\n"
"par_id3146790\n"
-"44\n"
"help.text"
msgid "Rotate"
msgstr "བསྒྱིར།"
@@ -12476,7 +11340,6 @@ msgstr "བསྒྱིར།"
msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
-"45\n"
"help.text"
msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
msgstr "<variable id=\"ecke\">རྩ་སྒྲིག་ <emph>དང་ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>གནས་ས་དང་ཚད་ - སྒྱིད་ཁུག་མཐའ་འཁོར་གཡོ་མི་</emph> མཆོང་ལྡེ་གདམ། </variable>"
@@ -12485,7 +11348,6 @@ msgstr "<variable id=\"ecke\">རྩ་སྒྲིག་ <emph>དང་ - </em
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
-"46\n"
"help.text"
msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
msgstr "<variable id=\"legende\">རྩ་སྒྲིག-<emph>དངོས་པོ་- </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>ཚད་རིས་- </emph></caseinline><caseinline select=\"CALC\"><emph>གནས་ས་དང་ཚད་-གཏམ་རྒྱུད</emph></caseinline></switchinline><emph> མཆོངས་ལྡེ(ཚིག་ཡིག་སྒྲོམ་འབོ་ནི་ཚུ་གི་དོན་ལུ་རྐྱངམ་ཅིག་ སྲོལ་སྒྲིག་དབྱིབས་འབོ་ནི་ཚུ་གི་གོན་ལུ་མེན་པ་)་</emph> གདམ།</variable>"
@@ -12494,7 +11356,6 @@ msgstr "<variable id=\"legende\">རྩ་སྒྲིག-<emph>དངོས་
msgctxt ""
"00040502.xhp\n"
"par_id3083283\n"
-"172\n"
"help.text"
msgid "Choose <emph>Edit - Points</emph>"
msgstr "<emph>ཞུན་དག་ - དོན་ཚན་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12503,7 +11364,6 @@ msgstr "<emph>ཞུན་དག་ - དོན་ཚན་</emph>གདམ་
msgctxt ""
"00040502.xhp\n"
"par_id3145642\n"
-"47\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Open context menu - choose <emph>Edit Points</emph></caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open context menu - choose <emph>Edit Points</emph></caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">སྐབས་དན་དཀར་ཆག་ཁ་ཕྱེ་ - <emph>Edit Points</emph></caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">གདམ་ཁ་རྐྱབས། སྐབས་དོན་དཀར་ཆག་ཁ་ཕྱེ་ - <emph> དོན་ཚན་ཞུན་དག་འབད་</emph></caseinline></switchinline>གདམ་ཁ་རྐྱབས།"
@@ -12512,7 +11372,6 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">སྐབས
msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
-"90\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">ཨེཕ་ ༨ ལྡེ་མིག་ </caseinline><caseinline select=\"IMPRESS\">ཨེཕ་ ༨་ལྡེ་མིག་ </caseinline></switchinline>"
@@ -12529,7 +11388,6 @@ msgstr "<image id=\"img_id3147100\" src=\"cmd/sc_open.png\" width=\"0.222inch\"
msgctxt ""
"00040502.xhp\n"
"par_id3153966\n"
-"49\n"
"help.text"
msgid "Edit Points"
msgstr "དོན་ཚན་ཚུ་ཞུན་དག་འབད།"
@@ -12538,7 +11396,6 @@ msgstr "དོན་ཚན་ཚུ་ཞུན་དག་འབད།"
msgctxt ""
"00040502.xhp\n"
"par_id3151248\n"
-"50\n"
"help.text"
msgid "Choose <emph>Format - Character</emph> (drawing functions)"
msgstr "<emph>རྩ་སྒྲིག་ - ཡིག་འབྲུ་</emph> (པར་རིས་ལས་འགན་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12547,7 +11404,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ཡིག་འབྲུ་</emph> (
msgctxt ""
"00040502.xhp\n"
"par_id3145229\n"
-"121\n"
"help.text"
msgid "Open context menu - choose <emph>Character</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>ཡིག་འབྲུ་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12556,7 +11412,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱ
msgctxt ""
"00040502.xhp\n"
"par_id3151342\n"
-"122\n"
"help.text"
msgid "Open context menu - choose <emph>Size</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>ཚད་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12565,7 +11420,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱ
msgctxt ""
"00040502.xhp\n"
"par_id3149255\n"
-"123\n"
"help.text"
msgid "Open context menu - choose <emph>Style</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>བཟོ་་རྣམ་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12574,7 +11428,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱ
msgctxt ""
"00040502.xhp\n"
"par_id3155177\n"
-"124\n"
"help.text"
msgid "Open context menu - choose <emph>Style - Bold</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>བཟོ་རྣམ་ - རྒྱགས་པ་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12591,7 +11444,6 @@ msgstr "<image id=\"img_id3156558\" src=\"cmd/sc_bold.png\" width=\"0.222inch\"
msgctxt ""
"00040502.xhp\n"
"par_id3147001\n"
-"55\n"
"help.text"
msgid "Bold"
msgstr "རྒྱགས་པ།"
@@ -12600,7 +11452,6 @@ msgstr "རྒྱགས་པ།"
msgctxt ""
"00040502.xhp\n"
"par_id3151276\n"
-"125\n"
"help.text"
msgid "Open context menu - choose <emph>Style - Italic</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>བཟོ་རྣམ་ - ཨའི་ཊ་ལིཀ་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12617,7 +11468,6 @@ msgstr "<image id=\"img_id3155578\" src=\"cmd/sc_italic.png\" width=\"0.222inch\
msgctxt ""
"00040502.xhp\n"
"par_id3150234\n"
-"58\n"
"help.text"
msgid "Italic"
msgstr "ཨའི་ཊ་ལིཀ"
@@ -12626,7 +11476,6 @@ msgstr "ཨའི་ཊ་ལིཀ"
msgctxt ""
"00040502.xhp\n"
"par_id3154589\n"
-"126\n"
"help.text"
msgid "Open context menu - choose <emph>Style - Underline</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>བཟོ་རྣམ་ -འོག་ཐིག་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12643,7 +11492,6 @@ msgstr "<image id=\"img_id3155578\" src=\"cmd/sc_italic.png\" width=\"0.222inch\
msgctxt ""
"00040502.xhp\n"
"par_id3154715\n"
-"88\n"
"help.text"
msgid "Underline"
msgstr "འོག་ཐིག"
@@ -12652,7 +11500,6 @@ msgstr "འོག་ཐིག"
msgctxt ""
"00040502.xhp\n"
"par_id3145131\n"
-"127\n"
"help.text"
msgid "Open context menu - choose <emph>Style - Strikethrough</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>བཟོ་རྣམ་ - སྦུག་འབྲེག་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12661,7 +11508,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱ
msgctxt ""
"00040502.xhp\n"
"par_id3158214\n"
-"128\n"
"help.text"
msgid "Open context menu - choose <emph>Style - Shadow</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདིཁ་ཕྱེ་ - <emph>བཟོ་རྣམ་ - གྱིབ་མ་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12670,7 +11516,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་འདིཁ་ཕྱེ
msgctxt ""
"00040502.xhp\n"
"par_id3150207\n"
-"129\n"
"help.text"
msgid "Open context menu - choose <emph>Style - Contour</emph>"
msgstr "ཀུན་གྱི་སྐབས་དོན་དཀར་ཆག་ <emph>བཟོ་རྣམ་ -བུར་གཞོང་གདམ། </emph>"
@@ -12679,7 +11524,6 @@ msgstr "ཀུན་གྱི་སྐབས་དོན་དཀར་ཆག་
msgctxt ""
"00040502.xhp\n"
"par_id3154383\n"
-"130\n"
"help.text"
msgid "Open context menu - choose <emph>Style - Superscript</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>བཟོ་རྣམ་ - སྟེང་ཡིག་</emph>གདམ་ཁརཀྱབས།"
@@ -12688,7 +11532,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱ
msgctxt ""
"00040502.xhp\n"
"par_id3152767\n"
-"131\n"
"help.text"
msgid "Open context menu - choose <emph>Style - Subscript</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>བཟོ་རྣམ་- སྟེང་ཡིག་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12697,7 +11540,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱ
msgctxt ""
"00040502.xhp\n"
"par_id3155377\n"
-"132\n"
"help.text"
msgid "Open context menu - choose <emph>Line Spacing</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>གྲལ་ཐིག་བར་སྟོང་བཞག་ཐང་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12706,7 +11548,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱ
msgctxt ""
"00040502.xhp\n"
"par_id3154475\n"
-"133\n"
"help.text"
msgid "Open context menu - choose <emph>Line Spacing - Single</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>གྲལ་ཐིག་བར་སྟོང་བཞག་ཐང་ - རྐྱང་པ་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12715,7 +11556,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱ
msgctxt ""
"00040502.xhp\n"
"par_id3150478\n"
-"134\n"
"help.text"
msgid "Open context menu - choose <emph>Line Spacing - 1.5 Lines</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>གྲལ་ཐིག་བར་སྟོང་བཞག་ཐང་ - ༡.༥ གི་གྲལ་ཐིག་ཚུ་ </emph>གདམ་ཁ་རྐྱབས།"
@@ -12724,7 +11564,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱ
msgctxt ""
"00040502.xhp\n"
"par_id3147167\n"
-"135\n"
"help.text"
msgid "Open context menu - choose <emph>Line Spacing - Double</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་ཚུ་ཁ་ཕྱེ་ - <emph>གྲལ་ཐིག་བར་སྟོང་བཞག་ཐང་- གཉིས་སྡན་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12733,7 +11572,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་ཚུ་ཁ་ཕྱེ
msgctxt ""
"00040502.xhp\n"
"par_id3146978\n"
-"69\n"
"help.text"
msgid "Choose <emph>Format - Alignment - Left</emph> (drawing functions)"
msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་ - གཡོན་</emph> (པར་རིས་ལས་འགན་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12742,7 +11580,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་ - ག
msgctxt ""
"00040502.xhp\n"
"par_id3153009\n"
-"136\n"
"help.text"
msgid "Open context menu - choose <emph>Alignment - Left</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>ཕྲང་སྒྲིག་ -གཡོན་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12759,7 +11596,6 @@ msgstr "<image id=\"img_id3155542\" src=\"cmd/sc_alignup.png\" width=\"0.222inch
msgctxt ""
"00040502.xhp\n"
"par_id3151336\n"
-"71\n"
"help.text"
msgid "Align Left"
msgstr "གཡོན་ཕྲང་།"
@@ -12768,7 +11604,6 @@ msgstr "གཡོན་ཕྲང་།"
msgctxt ""
"00040502.xhp\n"
"par_id3155823\n"
-"72\n"
"help.text"
msgid "Choose <emph>Format - Alignment - Right</emph> (drawing functions)"
msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་ - གཡས་</emph> (པར་རིས་ལས་འགན་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12777,7 +11612,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་ - ག
msgctxt ""
"00040502.xhp\n"
"par_id3155762\n"
-"137\n"
"help.text"
msgid "Open context menu - choose <emph>Alignment - Right</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>ཕྲང་སྒྲིག་ - གཡས་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12794,7 +11628,6 @@ msgstr "<image id=\"img_id3155542\" src=\"cmd/sc_alignup.png\" width=\"0.222inch
msgctxt ""
"00040502.xhp\n"
"par_id3153607\n"
-"74\n"
"help.text"
msgid "Align Right"
msgstr "གཡས་ཕྲང་།"
@@ -12803,7 +11636,6 @@ msgstr "གཡས་ཕྲང་།"
msgctxt ""
"00040502.xhp\n"
"par_id3149189\n"
-"75\n"
"help.text"
msgid "Choose <emph>Format - Alignment - Centered</emph> (drawing functions)"
msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་ - དབུས་སྒྲིག་</emph> (པར་རིས་ལས་འགན་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12812,7 +11644,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་ - ད
msgctxt ""
"00040502.xhp\n"
"par_id3154624\n"
-"138\n"
"help.text"
msgid "Open context menu - choose <emph>Alignment - Center</emph>"
msgstr "སྒབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>ཕྲང་སྒྲིག་ - དབུས་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12829,7 +11660,6 @@ msgstr "<image id=\"img_id3146957\" src=\"cmd/sc_justifypara.png\" width=\"0.222
msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
-"77\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">དབུས་འདི་ཐད་སྙོམས་སྦེ་ཕྲང་ </caseinline><defaultinline>དབུས་སྒྲིག་འབད་</defaultinline></switchinline>"
@@ -12838,7 +11668,6 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">དབུས
msgctxt ""
"00040502.xhp\n"
"par_id3146151\n"
-"78\n"
"help.text"
msgid "Choose <emph>Format - Alignment - Justified</emph> (drawing functions)"
msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་ - ལྟེམས་བཅོས་འབད་ཡོདཔ་</emph> (པར་རིས་ལས་འགན་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12847,7 +11676,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་ - ལ
msgctxt ""
"00040502.xhp\n"
"par_id3168612\n"
-"139\n"
"help.text"
msgid "Open context menu - choose <emph>Alignment - Justified</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>ཕྲང་སྒྲིག་ -ལྟེམས་བཅོས་འབད་ནུག་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12864,7 +11692,6 @@ msgstr "<image id=\"img_id3146957\" src=\"cmd/sc_justifypara.png\" width=\"0.222
msgctxt ""
"00040502.xhp\n"
"par_id3153131\n"
-"80\n"
"help.text"
msgid "Justified"
msgstr "ལྟེམས་བཅོས་འབད་ནུག"
@@ -12873,7 +11700,6 @@ msgstr "ལྟེམས་བཅོས་འབད་ནུག"
msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
-"81\n"
"help.text"
msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
msgstr "<variable id=\"font\">པར་རིས་ <emph>ཕྲ་རིང་</emph> ངོས་དཔར་གུ་ <emph>ཡིག་འབྲུ་ལཱ་</emph> ཨེབ་གཏང་འབད། </variable>"
@@ -12882,7 +11708,6 @@ msgstr "<variable id=\"font\">པར་རིས་ <emph>ཕྲ་རིང་<
msgctxt ""
"00040502.xhp\n"
"par_id3144503\n"
-"103\n"
"help.text"
msgid "Choose <emph>Format - Group</emph>"
msgstr "<emph>རྩ་སྒྲིག་ - སྡེ་ཚན་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12891,7 +11716,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - སྡེ་ཚན་</emph>གད
msgctxt ""
"00040502.xhp\n"
"par_id3154854\n"
-"140\n"
"help.text"
msgid "Open context menu - choose <emph>Group</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>སྡེ་ཚན་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12900,7 +11724,6 @@ msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱ
msgctxt ""
"00040502.xhp\n"
"par_id3157985\n"
-"83\n"
"help.text"
msgid "Choose <emph>Format - Group - Group</emph> (text documents, spreadsheets)"
msgstr "<emph>རྩ་སྒྲིག་ - སྡེ་ཚན་ -སྡེ་ཚན་</emph> (ཚིག་ཡིག་ཡིག་ཆ་ཚུ་, ཤོག་ཁྲམ་)གདམ་ཁ་རྐྱབས།"
@@ -12909,7 +11732,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - སྡེ་ཚན་ -སྡེ་
msgctxt ""
"00040502.xhp\n"
"par_id3157980\n"
-"104\n"
"help.text"
msgid "Choose <emph>Modify - Group</emph> (drawing documents)"
msgstr "<emph>ལེགས་བཅོས་ - སྡེ་ཚན་</emph> (པར་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12918,7 +11740,6 @@ msgstr "<emph>ལེགས་བཅོས་ - སྡེ་ཚན་</emph> (པ
msgctxt ""
"00040502.xhp\n"
"par_id3149508\n"
-"84\n"
"help.text"
msgid "Open context menu - choose <emph>Group - Group</emph> (form objects)"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>སྡེ་ཚན་ - སྡེ་ཚན་</emph> (དངོས་པོ་ལས་)གདམ་ཁ་རྐྱབས།"
@@ -12935,7 +11756,6 @@ msgstr "<image id=\"img_id3156142\" src=\"cmd/sc_forward.png\" width=\"0.222inch
msgctxt ""
"00040502.xhp\n"
"par_id3149593\n"
-"113\n"
"help.text"
msgid "Group"
msgstr "སྡེ་ཚན།"
@@ -12944,7 +11764,6 @@ msgstr "སྡེ་ཚན།"
msgctxt ""
"00040502.xhp\n"
"par_id3153023\n"
-"85\n"
"help.text"
msgid "Choose <emph>Format - Group - Ungroup</emph> (text documents, spreadsheets)"
msgstr "<emph>རྩ་སྒྲིག་ -སྡེ་ཚན་ - སྡེ་ཚན་བཤུབ་ནི་</emph> (ཚིག་ཡིག་ཡིག་ཆ་ཚུ་, ཤོག་ཁྲམ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12953,7 +11772,6 @@ msgstr "<emph>རྩ་སྒྲིག་ -སྡེ་ཚན་ - སྡེ་
msgctxt ""
"00040502.xhp\n"
"par_id3163378\n"
-"105\n"
"help.text"
msgid "Choose <emph>Modify - Ungroup</emph> (drawing documents)"
msgstr "<emph>ལེགས་བཅོས་ - སྡེ་ཚན་བཤུབ་ནི་</emph> (པར་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12962,7 +11780,6 @@ msgstr "<emph>ལེགས་བཅོས་ - སྡེ་ཚན་བཤུབ
msgctxt ""
"00040502.xhp\n"
"par_id3156038\n"
-"86\n"
"help.text"
msgid "Open context menu - choose <emph>Ungroup</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>སྡེ་ཚན་བཤུབ་</emph>གདམ་ཁ་རྐྱབས།"
@@ -12979,7 +11796,6 @@ msgstr "<image id=\"img_id3156142\" src=\"cmd/sc_forward.png\" width=\"0.222inch
msgctxt ""
"00040502.xhp\n"
"par_id3146894\n"
-"115\n"
"help.text"
msgid "Ungroup"
msgstr "སྡེ་ཚན་བཤུབ།"
@@ -12988,7 +11804,6 @@ msgstr "སྡེ་ཚན་བཤུབ།"
msgctxt ""
"00040502.xhp\n"
"par_id3153109\n"
-"106\n"
"help.text"
msgid "Choose <emph>Format - Group - Exit Group</emph> (text documents, spreadsheets)"
msgstr "<emph>རྩ་སྒྲིག་ - སྡེ་ཚན་ - སྡེ་ཚན་ཕྱིར་ཐོན་</emph> (ཚིག་ཡིག་ཡིག་ཆ་ཚུ་, ཤོག་ཁྲམ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -12997,7 +11812,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - སྡེ་ཚན་ - སྡེ་
msgctxt ""
"00040502.xhp\n"
"par_id3145678\n"
-"107\n"
"help.text"
msgid "Choose <emph>Modify - Exit Group</emph> (drawing documents)"
msgstr "<emph>ལེགས་ནཅོས་ - སྡེ་ཚན་ཕྱིར་ཐོན་</emph> (པར་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -13006,7 +11820,6 @@ msgstr "<emph>ལེགས་ནཅོས་ - སྡེ་ཚན་ཕྱིར
msgctxt ""
"00040502.xhp\n"
"par_id3152367\n"
-"108\n"
"help.text"
msgid "Open context menu - choose <emph>Exit Group</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>སྡེ་ཚན་ཕྱིར་ཐོན་</emph>གདམ་ཁ་རྐྱབས།"
@@ -13023,7 +11836,6 @@ msgstr "<image id=\"img_id3145419\" src=\"cmd/sc_recsearch.png\" width=\"0.222in
msgctxt ""
"00040502.xhp\n"
"par_id3155347\n"
-"117\n"
"help.text"
msgid "Exit Group"
msgstr "སྡེ་ཚན་ཕྱིར་ཐོན།"
@@ -13032,7 +11844,6 @@ msgstr "སྡེ་ཚན་ཕྱིར་ཐོན།"
msgctxt ""
"00040502.xhp\n"
"par_id3149129\n"
-"109\n"
"help.text"
msgid "Choose <emph>Format - Group - Enter Group</emph> (text documents, spreadsheets)"
msgstr "<emph>རྩ་སྒྲིག་ - སྡེ་ཚན་ - སྡེ་ཚན་ནང་བཙུགས་</emph> (ཚིག་ཡིག་ཡིག་ཆ་ཚུ་, ཤོག་ཁརམ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -13041,7 +11852,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - སྡེ་ཚན་ - སྡེ་
msgctxt ""
"00040502.xhp\n"
"par_id3145354\n"
-"110\n"
"help.text"
msgid "Choose <emph>Modify - Enter Group</emph> (drawing documents)"
msgstr "<emph>ལེགས་བཅོས་ - སྡེ་ཚན་ནང་བཙུགས་</emph> (ཚིག་ཡག་ཡིག་ཆ་ཚུ་)གདམཁ་རྐྱབས།"
@@ -13050,7 +11860,6 @@ msgstr "<emph>ལེགས་བཅོས་ - སྡེ་ཚན་ནང་བ
msgctxt ""
"00040502.xhp\n"
"par_id3149946\n"
-"111\n"
"help.text"
msgid "Open context menu - choose <emph>Enter Group</emph>"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>སྡེ་ཚན་ནང་བཙུགས་</emph>གདམ་ཁ་རྐྱབས།"
@@ -13067,7 +11876,6 @@ msgstr "<image id=\"img_id3147100\" src=\"cmd/sc_open.png\" width=\"0.222inch\"
msgctxt ""
"00040502.xhp\n"
"par_id3152547\n"
-"119\n"
"help.text"
msgid "Enter Group"
msgstr "སྡེ་ཚན་ནང་བཙུགས།"
@@ -13084,7 +11892,6 @@ msgstr "རྩ་སྒྲིག་གི་དཀར་ཆག"
msgctxt ""
"00040503.xhp\n"
"hd_id3155757\n"
-"1\n"
"help.text"
msgid "Format Menu"
msgstr "རྩ་སྒྲིག་གི་དཀར་ཆག"
@@ -13093,7 +11900,6 @@ msgstr "རྩ་སྒྲིག་གི་དཀར་ཆག"
msgctxt ""
"00040503.xhp\n"
"par_id3147294\n"
-"2\n"
"help.text"
msgid "Choose <emph>Format - Row - Height</emph>"
msgstr "<emph>རྩ་སྒྲིག་ - གྲལ་ཐིག་ - རིང་ཚད་</emph>གདམ་ཁ་རྐྱབས།"
@@ -13102,7 +11908,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - གྲལ་ཐིག་ - རིང
msgctxt ""
"00040503.xhp\n"
"par_id3149551\n"
-"3\n"
"help.text"
msgid "Open context menu of a row header in an open database table - choose <emph>Row Height</emph>"
msgstr "གནད་སྡུད་གཞི་རྟེན་ཐིག་ཁྲམ་ཁ་ཕྱེ་ ནང་ གྲལ་ཐིག་མགོ་ཡིག་གི་སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>གརལ་ཐིག་རིང་ཚད་</emph>གདམ་ཁ་རྐྱབས།"
@@ -13111,7 +11916,6 @@ msgstr "གནད་སྡུད་གཞི་རྟེན་ཐིག་ཁྲ
msgctxt ""
"00040503.xhp\n"
"par_id3153136\n"
-"4\n"
"help.text"
msgid "Choose <emph>Format - Column - Width</emph>"
msgstr "<emph>རྩ་སྒྲིག་ - ཀེར་ཐིག་ -རྒྱ་ཚད་</emph>གདམ་ཁ་རྐྱབས།"
@@ -13120,7 +11924,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ཀེར་ཐིག་ -རྒྱ
msgctxt ""
"00040503.xhp\n"
"par_id3150756\n"
-"5\n"
"help.text"
msgid "Open context menu of a column header in a database table - choose <emph>Column Width</emph>"
msgstr "གནད་སྡུད་གཞི་རྟེན་ཐིག་ཁྲམ་ནང་ ཀེར་ཐིག་མགོ་ཡིག་གི་སྐྦས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>ཀེར་ཐིག་གི་རྒྱ་ཚད་</emph>གདམ་ཁ་རྐྱབས།"
@@ -13129,13 +11932,11 @@ msgstr "གནད་སྡུད་གཞི་རྟེན་ཐིག་ཁྲ
msgctxt ""
"00040503.xhp\n"
"par_id3148668\n"
-"11\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Numbers</emph> tab </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"> <emph>རྩ་སྒྲིག་ - ནང་ཐིག་ - ཨང་གྲངས་ཚུ་</emph> ཨེབ་ལྡེ་</caseinline></switchinline>གདམ་ཁ་རྐྱབས།"
#: 00040503.xhp
-#, fuzzy
msgctxt ""
"00040503.xhp\n"
"par_id3152349\n"
@@ -13147,7 +11948,6 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><emph>རྩ
msgctxt ""
"00040503.xhp\n"
"par_id3161459\n"
-"14\n"
"help.text"
msgid "Open context menu for a column header in an open database table - choose <emph>Column Format - Format</emph> tab"
msgstr "གནད་སྡུད་གཞི་རྟེན་ཐིག་ཁྲམ་ཁ་ཕྱེ་ནང་ ཀེར་ཐིག་མགོ་ཡིག་གི་དོན་ལས་ སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>ཀེར་ཐིག་རྩ་སྒྲིག་ - རྩ་སྒྲིག་</emph> ཨེབ་ལྡེ་འདི་ཁ་ཕྱེ།"
@@ -13156,13 +11956,11 @@ msgstr "གནད་སྡུད་གཞི་རྟེན་ཐིག་ཁྲ
msgctxt ""
"00040503.xhp\n"
"par_id3147531\n"
-"15\n"
"help.text"
msgid "Choose <emph>Format - Axis - Y Axis - Numbers</emph> tab (Chart Documents)"
msgstr "<emph>རྩསྒྲིག་ - ཚད་ཐིག་ - ཝའི་ཚད་ཐིག་ - ཨང་གྲངས་</emph> ཨེབ་ལྡེ་ (དཔེ་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
#: 00040503.xhp
-#, fuzzy
msgctxt ""
"00040503.xhp\n"
"par_id3150823\n"
@@ -13174,7 +11972,6 @@ msgstr "ཚིག་ཡིག་ཡིག་ཆའི་ནང་གི་ས་
msgctxt ""
"00040503.xhp\n"
"par_id3154923\n"
-"6\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\">Choose <emph>Format - Title - Main Title - Alignment</emph> tab </caseinline><defaultinline>Choose <emph>Format - Cells - Alignment</emph> tab</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"> <emph>རྩ་སྒྲིག་ - མགོ་མིང་ - མགོ་མིང་ -ཕྲང་སྒྲིག་</emph> ཨེབ་ལྡེ་</caseinline><defaultinline>གདམ་ཁ་རྐྱབས། <emph>རྩ་སྒྲིག་- ནང་ཐིག་ - ཕྲང་སྒྲིག་</emph> ཨེབ་ལྡེ་</defaultinline></switchinline>གདམ་ཁ་རྐྱབས།"
@@ -13183,7 +11980,6 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"> <emph>རྩ
msgctxt ""
"00040503.xhp\n"
"par_id3149457\n"
-"7\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Open context menu of a column header in a database table - choose <emph>Column Format - Alignment</emph> tab</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>གནད་སྡུད་གཞི་རྟེན་ཐིག་ཁྲམ་ནང་ཀེར་ཐིག་མགོ་ཡིག་གི་སྐབས་དོན་དཀར་ཅག་འདི་ཁ་ཕྱེ་ - <emph>ཀེར་ཐིག་རྩ་སྒྲིག་ - ཕྲང་སྒྲིག་</emph>ཨེབ་ལྡེ་</defaultinline></switchinline>གདམ་ཁ་རྐྱབས།"
@@ -13192,7 +11988,6 @@ msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline>
msgctxt ""
"00040503.xhp\n"
"par_id3150400\n"
-"8\n"
"help.text"
msgid "<variable id=\"tabform\">Open context menu of a row header in a database table - choose <emph>Table Format</emph></variable>"
msgstr "<variable id=\"tabform\">གནད་སྡུད་གཞི་རྟེན་ཐིག་ཁྲམ་ནང་ གྲལ་ཐིག་མགོ་ཡིག་གི་སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>ཐིག་ཁྲམ་རྩ་སྒྲིག་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -13201,7 +11996,6 @@ msgstr "<variable id=\"tabform\">གནད་སྡུད་གཞི་རྟ
msgctxt ""
"00040503.xhp\n"
"par_id3149650\n"
-"33\n"
"help.text"
msgid "<variable id=\"spaltform\">Open context menu of a column header in a database table - choose <emph>Column Format</emph></variable>"
msgstr "<variable id=\"spaltform\">གནད་སྡུད་གཞི་རྟེན་ཐིག་ཁྲམ་ནང་ཀེར་ཐིག་མགོ་ཡིག་གི་ སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ <emph>ཀེར་ཐིག་རྩ་སྒྲིག་</emph></variable>གདམ་ཁ་རྐྱབས།"
@@ -13210,7 +12004,6 @@ msgstr "<variable id=\"spaltform\">གནད་སྡུད་གཞི་རྟ
msgctxt ""
"00040503.xhp\n"
"par_id3153799\n"
-"34\n"
"help.text"
msgid "<variable id=\"zeilenloeschen\">Context menu for a row header in an open database table - <emph>Delete Rows</emph></variable>"
msgstr "<variable id=\"zeilenloeschen\"> གནད་སྡུད་གཞི་རྟེན་ཐིག་ཁྲམ་ཁ་ཕྱེ་ནང་གྲལ་ཐིག་མགོ་ཡིག་གི་དོན་ལུ་ སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ -<emph>གྲལ་ཐིག་ཚུ་བཏོན་གཏང་</emph></variable>"
@@ -13219,26 +12012,22 @@ msgstr "<variable id=\"zeilenloeschen\"> གནད་སྡུད་གཞི་
msgctxt ""
"00040503.xhp\n"
"par_id3150495\n"
-"16\n"
"help.text"
msgid "Choose <emph>Modify - Flip</emph> ($[officename] Draw)"
msgstr "<emph>ལེགས་བཅོས་འབད་ - མྱུར་ལྷོག་འབད་</emph> ($[officename] Draw)གདམ་ཁ་རྐྱབས།"
#: 00040503.xhp
-#, fuzzy
msgctxt ""
"00040503.xhp\n"
"par_id3155742\n"
-"17\n"
"help.text"
msgid "Choose <emph>Format - Image - Image</emph> tab"
-msgstr "<emph>རྩ་སྒྲིག་ -ཤོག་ལེབ་ - ཤོག་ལེབ་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
+msgstr ""
#: 00040503.xhp
msgctxt ""
"00040503.xhp\n"
"par_id3158407\n"
-"35\n"
"help.text"
msgid "Open context menu - choose <emph>Flip</emph> (presentation documents)"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>མྱུར་ལྷོག་འབད་</emph> (གསལ་སྟོན་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -13247,26 +12036,22 @@ msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱ
msgctxt ""
"00040503.xhp\n"
"par_id3150290\n"
-"20\n"
"help.text"
msgid "Choose <emph>Modify - Flip - Vertically</emph> ($[officename] Draw)"
msgstr "<emph>ལེགས་བཅོས་ - མྱུར་ལྷོག་འབད་ - ཀེར་ཕྲང་འབད་</emph> ($[officename] Draw)གདམ་ཁ་རྐྱབས།"
#: 00040503.xhp
-#, fuzzy
msgctxt ""
"00040503.xhp\n"
"par_id3153179\n"
-"21\n"
"help.text"
msgid "Choose <emph>Format - Image - Image</emph> tab"
-msgstr "<emph>རྩ་སྒྲིག་ -ཤོག་ལེབ་ - ཤོག་ལེབ་</emph>ཨེབ་ལྡེ་གདམ་ཁ་རྐྱབས།"
+msgstr ""
#: 00040503.xhp
msgctxt ""
"00040503.xhp\n"
"par_id3157960\n"
-"36\n"
"help.text"
msgid "Open context menu - choose <emph>Flip - Vertically</emph> (presentation documents)"
msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱེ་ - <emph>མྱུར་ལྷོག་འབད་ - ཀེར་ཕྲང་</emph> (གསལ་སྟོན་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
@@ -13275,26 +12060,22 @@ msgstr "སྐབས་དོན་དཀར་ཆག་འདི་ཁ་ཕྱ
msgctxt ""
"00040503.xhp\n"
"par_id3153369\n"
-"26\n"
"help.text"
msgid "Choose <emph>Modify - Flip - Horizontally</emph> ($[officename] Draw)"
msgstr "<emph>ལེགས་བཅོས་ - མྱུར་ལྷོག་འབད་ - ཐད་སྙོམས་འབད་</emph> ($[officename] Draw)གདམ་ཁ་རྐྱབས།"
#: 00040503.xhp
-#, fuzzy
msgctxt ""
"00040503.xhp\n"
"par_id3147348\n"
-"27\n"
"help.text"
msgid "Choose <emph>Format - Image</emph>, and then click the <emph>Image</emph> tab"
-msgstr "<emph>རྩ་སྒྲིག་- ཚད་རིས་གདམ་ཁ་རྐྱབས་ནི་དང་ དེ་ལས་ ཚད་རིས་</emph>ཨེབ་ལྡེ་ཨེབ་གཏང་།"
+msgstr ""
#: 00040503.xhp
msgctxt ""
"00040503.xhp\n"
"par_id3156106\n"
-"42\n"
"help.text"
msgid "Choose <emph>Format - Flip - Horizontally</emph>"
msgstr "<emph>རྩ་སྒྲིག་ - མྱུར་ལྷོག་ - ཐད་སྙོམས་འབད་</emph>གདམ་ཁ་རྐྱབས།"
@@ -13303,7 +12084,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - མྱུར་ལྷོག་ - ཐ
msgctxt ""
"00040503.xhp\n"
"par_id3152578\n"
-"37\n"
"help.text"
msgid "Right-click a selected object, and then choose <emph>Flip - Horizontally</emph> ($[officename] Impress)"
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པ་འདི་གུ་གཡས་ཀྱིས་ཨེབ་གཏང་ དེ་ལས་ <emph>མྱུར་ལྷོག་ -ཐད་སྙོམས་འབད་</emph> ($[officename] Impress)གདམ་ཁ་རྐྱབས།"
@@ -13312,7 +12092,6 @@ msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་དངོས
msgctxt ""
"00040503.xhp\n"
"par_id3147318\n"
-"38\n"
"help.text"
msgid "Choose <emph>Modify - Distribution</emph> ($[officename] Draw)"
msgstr "<emph>ལེགས་བཅོས་ - བགོ་བཀྲམ་འབད་ནི་</emph> ($[officename] Draw)"
@@ -13321,7 +12100,6 @@ msgstr "<emph>ལེགས་བཅོས་ - བགོ་བཀྲམ་འབ
msgctxt ""
"00040503.xhp\n"
"par_id3149064\n"
-"39\n"
"help.text"
msgid "Open context menu - choose <emph>Distribution</emph> ($[officename] Impress)"
msgstr "སྐབས་དོན་ཀར་ཆག་འདི་ཁ་ཕྱེ་ -<emph>བགོ་བཀྲམ་འབད་ནི་</emph> ($[officename] Impress)གདམ་ཁ་རྐྱབས།"
@@ -13338,7 +12116,6 @@ msgstr "ཌོཀ་ཝིན་ཌཱོསི་འདི་ སྟོན་
msgctxt ""
"01000000.xhp\n"
"hd_id3085157\n"
-"1\n"
"help.text"
msgid "Showing and Hiding Docked Windows"
msgstr "ཌོཀ་ཝིན་ཌཱོསི་འདི་ སྟོན་མི་དང་སྦ་ནི།"
@@ -13347,7 +12124,6 @@ msgstr "ཌོཀ་ཝིན་ཌཱོསི་འདི་ སྟོན་
msgctxt ""
"01000000.xhp\n"
"par_id3149948\n"
-"2\n"
"help.text"
msgid "Every <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"docked\">docked</link> window has an icon to control the display properties of the window."
msgstr "<link href=\"text/shared/00/00000005.xhp#andocken\" name=\"docked\">docked</link> སྒོ་སྒྲིག་གེ་ར་ལུ་ སྒོ་སྒྲིག་གི་རྒྱུ་དངོས་བཀྲམ་སྟོན་ཚད་འཛིན་འབད་ནི་གི་ ངོས་དཔར་འདི་ཡོདཔ་ཨིན།"
@@ -13356,7 +12132,6 @@ msgstr "<link href=\"text/shared/00/00000005.xhp#andocken\" name=\"docked\">dock
msgctxt ""
"01000000.xhp\n"
"par_id3150502\n"
-"3\n"
"help.text"
msgid "To show or hide a docked window, click the icon."
msgstr "ཌོཀ་སྒོ་སྒྲིག་འདི་སྟོན་ནི་དང་སྦ་ནིའི་དོན་ལས་ ངོས་དཔར་འདི་ཨེབ་གཏང་།"
@@ -13365,7 +12140,6 @@ msgstr "ཌོཀ་སྒོ་སྒྲིག་འདི་སྟོན་ན
msgctxt ""
"01000000.xhp\n"
"hd_id3150465\n"
-"13\n"
"help.text"
msgid "AutoShow and AutoHide Docked Windows"
msgstr "རང་བཞིན་སྟོན་ནི་དང་རང་བཞིན་ཨེབ་ནིའི་ཌོཀཊི་ཝིན་ཌཱོསི།"
@@ -13374,7 +12148,6 @@ msgstr "རང་བཞིན་སྟོན་ནི་དང་རང་བཞ
msgctxt ""
"01000000.xhp\n"
"par_id3155504\n"
-"14\n"
"help.text"
msgid "You can click the edge of a hidden docked window to open the window."
msgstr "སྒོ་སྒྲིག་འདི་ཁ་ཕྱེ་ནིའ་དོན་ལས་ ཁྱོད་ཀྱིས་ སྦ་བཞག་ཡོད་པའི་ཌོཀཊི་སྒོ་སྒྲིག་གི་ མཐའམ་འདི་གུ་ཨེབ་གཏང་།"
@@ -13383,7 +12156,6 @@ msgstr "སྒོ་སྒྲིག་འདི་ཁ་ཕྱེ་ནིའ་
msgctxt ""
"01000000.xhp\n"
"par_id3153257\n"
-"15\n"
"help.text"
msgid "The docked window closes automatically when you move the mouse pointer outside of the window."
msgstr "ཁྱོད་ཀྱིས་མཱའུསི་དཔག་བྱེད་འདི་ སྒོ་སྒྲིག་གི་ཕྱི་ཁར་སྤོ་བཤུད་འབདཝ་ད་ ཌོཀཊི་སྒོ་སྒྲིག་འདི་རང་བཞིན་གྱིས་ཁ་བསྡམས་འགྱོཝ་ཨིན།"
@@ -13392,7 +12164,6 @@ msgstr "ཁྱོད་ཀྱིས་མཱའུསི་དཔག་བྱེ
msgctxt ""
"01000000.xhp\n"
"par_id3154046\n"
-"16\n"
"help.text"
msgid "Multiple docked windows act as a single window in AutoShow/AutoHide mode."
msgstr "རང་བཞིན་སྟོན་ནི་དང་རང་བཞིན་སབ་ནི་ནང་ལུ་ སྣ་མང་ཝིན་ཌཱོསི་ དེ་གིས་ སྒོ་སྒྲིག་རྐྱང་པ་འབདཝ་ཨིན།"
@@ -13401,7 +12172,6 @@ msgstr "རང་བཞིན་སྟོན་ནི་དང་རང་བཞ
msgctxt ""
"01000000.xhp\n"
"hd_id3145416\n"
-"18\n"
"help.text"
msgid "Drag and Drop"
msgstr "འདྲུད་ནི་དང་བཞག་ནི།"
@@ -13410,7 +12180,6 @@ msgstr "འདྲུད་ནི་དང་བཞག་ནི།"
msgctxt ""
"01000000.xhp\n"
"par_id3149578\n"
-"19\n"
"help.text"
msgid "If you drag an object over the edge of a hidden docked window, the window opens in AutoShow mode."
msgstr "སབ་བཞག་ཡོད་པའི་ཌོཀཊི་སྒོ་སྒྲིག་གི་མཐའམ་གུ་ལས་ ཁྱོད་ཀྱིས་དངོས་པོ་འདི་འདྲུད་པ་ཅིན་ རང་བཞིན་སྟོན་གྱི་ཐབས་ལམ་ནང་ལུ་སྒོ་སྒྲིག་འདི་ཁ་ཕྱེཝ་ཨིན།"
@@ -13427,7 +12196,6 @@ msgstr "སྟོན་ཁང་སྐབས་དོན་དཀར་ཆག"
msgctxt ""
"01010000.xhp\n"
"hd_id3150672\n"
-"1\n"
"help.text"
msgid "Gallery context menu"
msgstr "སྟོན་ཁང་སྐབས་དོན་དཀར་ཆག"
@@ -13436,7 +12204,6 @@ msgstr "སྟོན་ཁང་སྐབས་དོན་དཀར་ཆག"
msgctxt ""
"01010000.xhp\n"
"par_id3083278\n"
-"3\n"
"help.text"
msgid "<ahelp hid=\"HID_GALLERY_MN_ADDMENU\">Defines how a selected graphic object is inserted into a document.</ahelp>"
msgstr "<ahelp hid=\"HID_GALLERY_MN_ADDMENU\" visibility=\"visible\">སེལ་འཐུ་འབད་ཡོད་པའི་ཚད་རི་དངོས་པོ་་འདི་ག་དེ་སྦེ་ ཡིག་ཆ་ནང་ལུ་བཙུགས་ཡོད་ག་ ངེས་འཛིན་འབདཝ་ཨིན།</ahelp>"
@@ -13445,7 +12212,6 @@ msgstr "<ahelp hid=\"HID_GALLERY_MN_ADDMENU\" visibility=\"visible\">སེལ
msgctxt ""
"01010000.xhp\n"
"par_id3156053\n"
-"5\n"
"help.text"
msgid "<ahelp hid=\"HID_GALLERY_MN_ADD\">Inserts a copy of the selected graphic object directly into the document.</ahelp>"
msgstr ""
@@ -13454,7 +12220,6 @@ msgstr ""
msgctxt ""
"01010000.xhp\n"
"par_id3149038\n"
-"7\n"
"help.text"
msgid "<ahelp hid=\"HID_GALLERY_MN_ADD_LINK\">Inserts the selected graphic as a link.</ahelp>"
msgstr ""
@@ -13463,7 +12228,6 @@ msgstr ""
msgctxt ""
"01010000.xhp\n"
"par_id3158428\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\"HID_GALLERY_MN_PREVIEW\">The<emph> Preview </emph>command displays the selected graphic.</ahelp>"
msgstr ""
@@ -13472,7 +12236,6 @@ msgstr ""
msgctxt ""
"01010000.xhp\n"
"par_id3154522\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/gallerytitledialog/GalleryTitleDialog\">Assigns a title to a selected Gallery object.</ahelp>"
msgstr ""
@@ -13481,7 +12244,6 @@ msgstr ""
msgctxt ""
"01010000.xhp\n"
"par_id3149750\n"
-"17\n"
"help.text"
msgid "<ahelp hid=\"HID_GALLERY_MN_DELETE\">Deletes the selected graphic after confirmation.</ahelp>"
msgstr "<ahelp hid=\"HID_GALLERY_MN_DELETE\" visibility=\"visible\">ངེས་དཔྱད་ཀྱི་ཤུལ་མ་ སེལ་འཐུ་འབད་ཡོད་མི་ཚད་རིས་འདི་ བཏོད་གཏངམ་ཨིན།</ahelp>"
@@ -13498,7 +12260,6 @@ msgstr "ཐབས་ལམ་རྐྱངམ་ཅིག་ལྷག་ཟེར
msgctxt ""
"01020000.xhp\n"
"hd_id3158397\n"
-"1\n"
"help.text"
msgid "Context Menu of Web Pages in Read-Only Mode"
msgstr "ཐབས་ལམ་རྐྱངམ་ཅིག་ལྷག་ཟེར་མི་གི་ནང་ལུ་ ཝེབ་ཤོག་ལེབ་ཀྱི་སྐབས་དོན་དཀར་ཆག"
@@ -13507,7 +12268,6 @@ msgstr "ཐབས་ལམ་རྐྱངམ་ཅིག་ལྷག་ཟེར
msgctxt ""
"01020000.xhp\n"
"par_id3145348\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"HID_MN_READONLY_SAVEGRAPHIC\">Opens a dialog where you can save the selected graphics.</ahelp>"
msgstr "<ahelp hid=\"HID_MN_READONLY_SAVEGRAPHIC\">ཁྱོད་ཀྱིས་ སེལ་འཐུ་འབད་ཡོད་པའི་ཚད་རིས་ སྲུངས་བཏུབ་མི་ལུ་ཌའི་ལོག་འདི་ཁ་ཕྱེ་བཏུབ། </ahelp>"
@@ -13516,7 +12276,6 @@ msgstr "<ahelp hid=\"HID_MN_READONLY_SAVEGRAPHIC\">ཁྱོད་ཀྱིས
msgctxt ""
"01020000.xhp\n"
"par_id3151262\n"
-"31\n"
"help.text"
msgid "<ahelp hid=\"HID_MN_READONLY_COPYLINK\">Copies the link at the mouse pointer to the clipboard.</ahelp>"
msgstr "<ahelp hid=\"HID_MN_READONLY_COPYLINK\">མཱའུསི་དཔག་བྱེད་ལུ་འབྲེལ་མཐུད་འདི་ འཛིན་སྤང་ལུ་འདྲ་བཤུས་འབདཝ་ཨིན།</ahelp>"
@@ -13525,7 +12284,6 @@ msgstr "<ahelp hid=\"HID_MN_READONLY_COPYLINK\">མཱའུསི་དཔག
msgctxt ""
"01020000.xhp\n"
"par_id3155934\n"
-"37\n"
"help.text"
msgid "<ahelp hid=\"HID_MN_READONLY_COPYGRAPHIC\">Copies a selected graphic to the clipboard.</ahelp>"
msgstr "<ahelp hid=\"HID_MN_READONLY_COPYGRAPHIC\">སེལ་འཐུ་འབད་ཡོད་མི་ཚད་རི་འདི་ འཛིན་སྤང་ལུ་འདྲ་བཤུས་འབདཝ་ཨིན།</ahelp>"
@@ -13534,7 +12292,6 @@ msgstr "<ahelp hid=\"HID_MN_READONLY_COPYGRAPHIC\">སེལ་འཐུ་འ
msgctxt ""
"01020000.xhp\n"
"par_id3145629\n"
-"22\n"
"help.text"
msgid "<ahelp hid=\"HID_MN_READONLY_LOADGRAPHIC\">If you have deactivated the graphics display, choose the<emph> Load Graphics </emph>command to make them visible.</ahelp>"
msgstr "<ahelp hid=\"HID_MN_READONLY_LOADGRAPHIC\">ཁྱོད་ཀྱིས་ ཚད་རིས་བཀྲམ་སྟོན་འདི་ ཤུགས་མེད་བཟོ་ཡོད་པ་ཅིན་ <emph> དེ་ཚུ་མཐོང་ཚུགས་བཟོ་ནིའི་དོན་ལས་ </emph>ཚད་རིས་མངོན་གསལ་འབད་ </ahelp>གདམ་ཁ་རྐྱབས།"
@@ -13543,7 +12300,6 @@ msgstr "<ahelp hid=\"HID_MN_READONLY_LOADGRAPHIC\">ཁྱོད་ཀྱིས
msgctxt ""
"01020000.xhp\n"
"par_id3150902\n"
-"24\n"
"help.text"
msgid "<ahelp hid=\"HID_MN_READONLY_GRAPHICOFF\">Sets all graphics in the document to be invisible.</ahelp>"
msgstr ""
@@ -13552,7 +12308,6 @@ msgstr ""
msgctxt ""
"01020000.xhp\n"
"par_id3148548\n"
-"38\n"
"help.text"
msgid "<ahelp hid=\"HID_MN_READONLY_SAVEBACKGROUND\">Allows you to save the background of a Web page.</ahelp>"
msgstr "<ahelp hid=\"HID_MN_READONLY_SAVEBACKGROUND\"> ཁྱོད་ལུ་ ཝེབ་ཤོག་ལེབ་ཀྱི་ རྒྱབ་གཞི་སྲངས་བཅུགཔ་ཨིན།</ahelp>"
@@ -13569,7 +12324,6 @@ msgstr "སྤྱིར་གཏང་།"
msgctxt ""
"01050000.xhp\n"
"hd_id3158397\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/00/01050000.xhp\" name=\"General\">General</link>"
msgstr "<link href=\"text/shared/00/01050000.xhp\" name=\"General\">སྤྱིར་གཏང་།</link>"
@@ -13578,7 +12332,6 @@ msgstr "<link href=\"text/shared/00/01050000.xhp\" name=\"General\">སྤྱི
msgctxt ""
"01050000.xhp\n"
"par_id3159242\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">The<emph> General </emph>tab page lists the general properties of the current theme.</ahelp>"
msgstr ""
@@ -13587,7 +12340,6 @@ msgstr ""
msgctxt ""
"01050000.xhp\n"
"hd_id3150264\n"
-"3\n"
"help.text"
msgid "Name"
msgstr "མིང་།"
@@ -13596,7 +12348,6 @@ msgstr "མིང་།"
msgctxt ""
"01050000.xhp\n"
"par_id3154094\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/gallerygeneralpage/name\">Displays the name of the theme.</ahelp> If no name has been assigned, you can type a new name in the text box."
msgstr "<ahelp hid=\"cui/ui/gallerygeneralpage/name\"> བརྗོད་དོན་གྱི་ མིང་འདི་བཀྲམ་སྟོན་འབདཝ་ཨིན། </ahelp> མིང་ཅིག་ཡང་འགན་སྤྲོད་མ་འབད་བར་ཡད་པ་ཅིན་ ཁྱོད་ཀྱིས་ཚིག་ཡིག་སྒྲོམ་ནང་ལུ་ མིང་གསརཔ་ཡིག་དཔར་རྐྱབས་བཏུབ།"
@@ -13605,7 +12356,6 @@ msgstr "<ahelp hid=\"cui/ui/gallerygeneralpage/name\"> བརྗོད་དོ
msgctxt ""
"01050000.xhp\n"
"hd_id3147089\n"
-"5\n"
"help.text"
msgid "Type"
msgstr "དབྱེ་བ།"
@@ -13614,7 +12364,6 @@ msgstr "དབྱེ་བ།"
msgctxt ""
"01050000.xhp\n"
"par_id3145071\n"
-"6\n"
"help.text"
msgid "Specifies the object type."
msgstr "དངོས་པོའི་དབྱེ་བ་འདི་གསལ་བཀོད་འབདཝ་ཨིན།"
@@ -13623,7 +12372,6 @@ msgstr "དངོས་པོའི་དབྱེ་བ་འདི་གསལ
msgctxt ""
"01050000.xhp\n"
"hd_id3147576\n"
-"7\n"
"help.text"
msgid "Location"
msgstr "གནས་ཁོངས།"
@@ -13632,7 +12380,6 @@ msgstr "གནས་ཁོངས།"
msgctxt ""
"01050000.xhp\n"
"par_id3146797\n"
-"8\n"
"help.text"
msgid "Specifies the complete object path."
msgstr "མཇུག་བསྡུ་དངོས་པོའི་འགྲུལ་ལམ་འདི་གསལ་བཀོད་འབདཝ་ཨིན།"
diff --git a/source/dz/helpcontent2/source/text/shared/01.po b/source/dz/helpcontent2/source/text/shared/01.po
index 46b6188f83f..ddb91277ccc 100644
--- a/source/dz/helpcontent2/source/text/shared/01.po
+++ b/source/dz/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-05-12 14:35+0200\n"
"PO-Revision-Date: 2016-12-24 11:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28,7 +28,6 @@ msgstr "གསརཔ།"
msgctxt ""
"01010000.xhp\n"
"hd_id3154788\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/01/01010000.xhp\" name=\"New\">New</link>"
msgstr "<link href=\"text/shared/01/01010000.xhp\" name=\"New\">གསརཔ།</link>"
@@ -37,7 +36,6 @@ msgstr "<link href=\"text/shared/01/01010000.xhp\" name=\"New\">གསརཔ།<
msgctxt ""
"01010000.xhp\n"
"par_id3145669\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AddDirect\">Creates a new $[officename] document.</ahelp>"
msgstr "<ahelp hid=\".uno:AddDirect\"> $[officename] ཡིག་ཆ་གསརཔ་ཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན།</ahelp>"
@@ -46,7 +44,6 @@ msgstr "<ahelp hid=\".uno:AddDirect\"> $[officename] ཡིག་ཆ་གསར
msgctxt ""
"01010000.xhp\n"
"par_id3149182\n"
-"115\n"
"help.text"
msgid "<ahelp hid=\"HID_TBXCONTROL_FILENEW\" visibility=\"hidden\">Creates a new $[officename] document. Click the arrow to select the document type.</ahelp>"
msgstr "<ahelp hid=\"HID_TBXCONTROL_FILENEW\" visibility=\"hidden\">$[officename] ཡིག་ཆ་གསརཔ་ཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན། ཡིག་ཆའི་དབྱེ་བ་སེལ་འཐུ་འབད་ནི་དོན་ལུ་ མདའ་རྟགས་འདི་གུ་ཨེབ་གཏང་།</ahelp>"
@@ -55,7 +52,6 @@ msgstr "<ahelp hid=\"HID_TBXCONTROL_FILENEW\" visibility=\"hidden\">$[officename
msgctxt ""
"01010000.xhp\n"
"par_id3153528\n"
-"81\n"
"help.text"
msgid "<ahelp hid=\".\">If you want to create a document from a template, choose <emph>New - Templates.</emph></ahelp>"
msgstr ""
@@ -64,7 +60,6 @@ msgstr ""
msgctxt ""
"01010000.xhp\n"
"par_id3147009\n"
-"82\n"
"help.text"
msgid "A template is a file that contains the design elements for a document, including formatting styles, backgrounds, frames, graphics, fields, page layout, and text."
msgstr "ཊེམ་པེལེཊི་ཟེར་མི་འདི་ རྩ་སྒྲིག་གི་བཟོ་རྣམ་དང་རྒྱབ་གཞི་ཚུ་ དེ་ལས་ གཞི་ཁྲམ་དང་ཚད་རིས་ཚུ་ ས་སྒོ་ཚུ་དང་ཤོག་ལེབ་སྒྲིག་བཀོད་དེ་ལས་ཚིག་ཡིག་ བརྩི་སྟེ་ཡོད་པའི་ ཡིག་ཆའི་དོན་ལུ་ བཀོད་སྒྲིག་ཆ་ཤས་ཚུ་ཡོད་པའི་ ཡིག་སྣོད་ཅིག་ཨིན།"
@@ -73,7 +68,6 @@ msgstr "ཊེམ་པེལེཊི་ཟེར་མི་འདི་ ར
msgctxt ""
"01010000.xhp\n"
"par_id3147242\n"
-"112\n"
"help.text"
msgid "<emph>Icon</emph>"
msgstr "<emph>ངོས་དཔར།</emph>"
@@ -82,7 +76,6 @@ msgstr "<emph>ངོས་དཔར།</emph>"
msgctxt ""
"01010000.xhp\n"
"par_id3149580\n"
-"113\n"
"help.text"
msgid "<emph>Name</emph>"
msgstr "<emph>མིང་།</emph>"
@@ -91,7 +84,6 @@ msgstr "<emph>མིང་།</emph>"
msgctxt ""
"01010000.xhp\n"
"par_id3153258\n"
-"114\n"
"help.text"
msgid "<emph>Function</emph>"
msgstr "<emph>ལས་འགན།</emph>"
@@ -108,7 +100,6 @@ msgstr "<image id=\"img_id3153821\" src=\"res/sx03251.png\" width=\"0.222inch\"
msgctxt ""
"01010000.xhp\n"
"par_id3153349\n"
-"61\n"
"help.text"
msgid "Text Document"
msgstr "ཚིག་ཡིག་ཡིག་ཆ།"
@@ -117,7 +108,6 @@ msgstr "ཚིག་ཡིག་ཡིག་ཆ།"
msgctxt ""
"01010000.xhp\n"
"par_id3156153\n"
-"62\n"
"help.text"
msgid "Creates a new text document ($[officename] Writer)."
msgstr "ཚིག་ཡིག་ཡིག་ཆ་གསརཔ་ཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན་ ($[officename] རྩོམ་འབྲི་པ།)"
@@ -134,7 +124,6 @@ msgstr "<image id=\"img_id3150503\" src=\"res/sx03250.png\" width=\"0.222inch\"
msgctxt ""
"01010000.xhp\n"
"par_id3148552\n"
-"63\n"
"help.text"
msgid "Spreadsheet"
msgstr "ཤོག་ཁྲམ།"
@@ -143,7 +132,6 @@ msgstr "ཤོག་ཁྲམ།"
msgctxt ""
"01010000.xhp\n"
"par_id3154280\n"
-"64\n"
"help.text"
msgid "Creates a new spreadsheet document ($[officename] Calc)."
msgstr "ཤོག་ཁྲམ་ཡིག་ཆ་གསརཔ་ཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན་ ($[officename] སི་ཨེ་ཨེལ་སི།)"
@@ -160,7 +148,6 @@ msgstr "<image id=\"img_id3148663\" src=\"res/sx03249.png\" width=\"0.222inch\"
msgctxt ""
"01010000.xhp\n"
"par_id3153798\n"
-"65\n"
"help.text"
msgid "Presentation"
msgstr "གསལ་སྟོན།"
@@ -169,7 +156,6 @@ msgstr "གསལ་སྟོན།"
msgctxt ""
"01010000.xhp\n"
"par_id3154946\n"
-"66\n"
"help.text"
msgid "Creates a new presentation document ($[officename] Impress)."
msgstr ""
@@ -186,7 +172,6 @@ msgstr "<image id=\"img_id3154329\" src=\"res/sx03246.png\" width=\"0.222inch\"
msgctxt ""
"01010000.xhp\n"
"par_id3154217\n"
-"99\n"
"help.text"
msgid "Drawing"
msgstr "པར་རིས།"
@@ -195,7 +180,6 @@ msgstr "པར་རིས།"
msgctxt ""
"01010000.xhp\n"
"par_id3149167\n"
-"100\n"
"help.text"
msgid "Creates a new drawing document ($[officename] Draw)."
msgstr "པར་རིས་ཡིག་ཆ་གསརཔ་ཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན་ ($[officename] འབྲི་ནི།)"
@@ -236,7 +220,6 @@ msgstr "<image id=\"img_id3150868\" src=\"res/sx03139.png\" width=\"0.222inch\"
msgctxt ""
"01010000.xhp\n"
"par_id3154298\n"
-"79\n"
"help.text"
msgid "HTML Document"
msgstr "ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་ཆ།"
@@ -245,7 +228,6 @@ msgstr "ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་ཆ།"
msgctxt ""
"01010000.xhp\n"
"par_id3152460\n"
-"80\n"
"help.text"
msgid "Creates a new HTML document."
msgstr "ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་ཆ་གསརཔ་ཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན།"
@@ -286,7 +268,6 @@ msgstr "<image id=\"img_id3163710\" src=\"res/sx03248.png\" width=\"0.222inch\"
msgctxt ""
"01010000.xhp\n"
"par_id3152938\n"
-"89\n"
"help.text"
msgid "Master Document"
msgstr "ཡིག་ཆའི་ཨམ།"
@@ -295,7 +276,6 @@ msgstr "ཡིག་ཆའི་ཨམ།"
msgctxt ""
"01010000.xhp\n"
"par_id3150961\n"
-"90\n"
"help.text"
msgid "Creates a new <link href=\"text/shared/01/01010001.xhp\" name=\"master document\">master document</link>."
msgstr "<link href=\"text/shared/01/01010001.xhp\" name=\"master document\">ཡིག་ཆའི་ཨམ་</link>གསརཔ་ཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན།"
@@ -312,7 +292,6 @@ msgstr "<image id=\"img_id3147317\" src=\"res/sx03247.png\" width=\"0.222inch\"
msgctxt ""
"01010000.xhp\n"
"par_id3155511\n"
-"77\n"
"help.text"
msgid "Formula"
msgstr "མན་ངག"
@@ -321,7 +300,6 @@ msgstr "མན་ངག"
msgctxt ""
"01010000.xhp\n"
"par_id3150872\n"
-"78\n"
"help.text"
msgid "Creates a new formula document ($[officename] Math)."
msgstr "མན་ངག་ཡིག་ཆ་གསརཔ་ཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན་ ($[officename] རྩིས།)"
@@ -338,7 +316,6 @@ msgstr "<image id=\"img_id3083443\" src=\"res/sx03255.png\" width=\"0.222inch\"
msgctxt ""
"01010000.xhp\n"
"par_id3149417\n"
-"105\n"
"help.text"
msgid "Labels"
msgstr "ཁ་ཡིག་ཚུ།"
@@ -347,7 +324,6 @@ msgstr "ཁ་ཡིག་ཚུ།"
msgctxt ""
"01010000.xhp\n"
"par_id3148388\n"
-"106\n"
"help.text"
msgid "Opens the <link href=\"text/shared/01/01010200.xhp\" name=\"Labels\">Labels</link> dialog where you can set the options for your labels, and then creates a new text document for the labels ($[officename] Writer)."
msgstr "ཁྱོད་ཀྱིས་ ཁྱོད་རའི་ཁ་ཡིག་ཚུ་གི་དོན་ལུ་གདམ་ཁ་ཚུ་གཞི་སྒྲིག་འབད་བཞིནམ་ལས་ དེ་ལས་ ཁ་ཡིག་ ($[officename] Writer)ཚུ་གི་དོན་ལུ་ ཚིག་ཡིག་ཡིག་ཆ་གསརཔ་ཅིག་གསར་བསྐྲུན་འབད་བཏུབ་ནི་དོན་ལུ་ <link href=\"text/shared/01/01010200.xhp\" name=\"Labels\">ཁ་ཡིག་ཚུ་</link>ཁ་ཕྱེཝ་ཨིན།"
@@ -364,7 +340,6 @@ msgstr "<image id=\"img_id3156283\" src=\"res/sx03255.png\" width=\"0.222inch\"
msgctxt ""
"01010000.xhp\n"
"par_id3150592\n"
-"107\n"
"help.text"
msgid "Business Cards"
msgstr "ཚོང་འབྲེལ་ཤོག་བྱང་ཚུ།"
@@ -373,7 +348,6 @@ msgstr "ཚོང་འབྲེལ་ཤོག་བྱང་ཚུ།"
msgctxt ""
"01010000.xhp\n"
"par_id3150968\n"
-"108\n"
"help.text"
msgid "Opens the <link href=\"text/shared/01/01010300.xhp\" name=\"Business Cards\">Business Cards</link> dialog where you can set the options for your business cards, and then creates a new text document ($[officename] Writer)."
msgstr "ཁྱོད་ཀྱིས་ ཁྱོད་རའི་ ཚོང་འབྲེལ་ཤོག་བྱང་ཚུ་གི་དོན་ལུ་ གདམ་ཁ་ཚུ་གཞི་སྒྲིག་འབད་བཞིནམ་ལས་ དེ་ལས་ ཚིག་ཡིག་ཡིག་ཆ་གསརཔ་ ($[officename] Writer) གསར་བསྐྲུན་འབད་ནི་དོན་ལུ་ <link href=\"text/shared/01/01010300.xhp\" name=\"Business Cards\">ཚོང་འབྲེལ་གྱི་ཤོག་བྱང་ཚུ་</link>ཌའི་ལོག་ཁ་ཕྱེཝ་ཨིན།"
@@ -390,7 +364,6 @@ msgstr "<image id=\"img_id3150422\" src=\"res/sx03242.png\" width=\"0.222inch\"
msgctxt ""
"01010000.xhp\n"
"par_id3154510\n"
-"69\n"
"help.text"
msgid "Templates"
msgstr "ཊེམ་པེལེཊིསི།"
@@ -399,7 +372,6 @@ msgstr "ཊེམ་པེལེཊིསི།"
msgctxt ""
"01010000.xhp\n"
"par_id3155603\n"
-"70\n"
"help.text"
msgid "Creates a new document using an existing template."
msgstr ""
@@ -520,7 +492,6 @@ msgstr "ཡིག་ཆའི་ཨམ།"
msgctxt ""
"01010001.xhp\n"
"hd_id3153514\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/01/01010001.xhp\" name=\"Master Document\">Master Document</link>"
msgstr "<link href=\"text/shared/01/01010001.xhp\" name=\"Master Document\">ཡིག་ཆའི་ཨམ།</link>"
@@ -529,7 +500,6 @@ msgstr "<link href=\"text/shared/01/01010001.xhp\" name=\"Master Document\">ཡ
msgctxt ""
"01010001.xhp\n"
"par_id3154682\n"
-"2\n"
"help.text"
msgid "Use a <emph>Master Document</emph> to organize complex projects, such as a book. <ahelp hid=\".\">A <emph>Master Document</emph> can contain the individual files for each chapter of a book, as well as a table of contents, and an index.</ahelp>"
msgstr "ཀི་དེབ་བཟུམ་པའི་ <emph> གོ་དཀའ་བའི་ལས་འགུལ་འདི་ཚུ་ འགོ་འདྲེན་འཐབ་ནི་ལུ་</emph> ཡིག་ཆ་ཨམ་དེ་ལག་ལེན་འཐབ། <ahelp hid=\".\">ཡིག་ཆ་ཨམ་འདི་གི་ནང་ན་<emph>ཀི་དེབ་ལིའུ་</emph>རེ་རེ་བཞིན་གྱི་དོན་ལུ་ ངོ་རྐྱང་ཡིག་ཆ་དང་ ཐིག་ཁྲམ་གྱི་ནང་དོན་ དེ་ལས་ ཟུར་ཐོ་ཚུ་ཡོདཔ་ཨིན།</ahelp>"
@@ -554,7 +524,6 @@ msgstr ""
msgctxt ""
"01010100.xhp\n"
"par_id3148520\n"
-"117\n"
"help.text"
msgid "The <emph>Templates Manager</emph> dialog allows you to manage your templates."
msgstr ""
@@ -563,7 +532,6 @@ msgstr ""
msgctxt ""
"01010100.xhp\n"
"par_id3157898\n"
-"118\n"
"help.text"
msgid "To open the <emph>Templates Manager</emph> dialog, do one of the following:"
msgstr ""
@@ -572,7 +540,6 @@ msgstr ""
msgctxt ""
"01010100.xhp\n"
"par_id3156414\n"
-"125\n"
"help.text"
msgid "Choose <emph>File - New - Templates</emph>"
msgstr ""
@@ -581,7 +548,6 @@ msgstr ""
msgctxt ""
"01010100.xhp\n"
"par_id3153114\n"
-"126\n"
"help.text"
msgid "Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N."
msgstr ""
@@ -590,7 +556,6 @@ msgstr ""
msgctxt ""
"01010100.xhp\n"
"hd_id3159234\n"
-"5\n"
"help.text"
msgid "Categories"
msgstr "དབྱེ་རིམ་ཚུ།"
@@ -599,7 +564,6 @@ msgstr "དབྱེ་རིམ་ཚུ།"
msgctxt ""
"01010100.xhp\n"
"par_id3157958\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\".\">Categories are shown in the box on the left side of the<emph> Templates and Documents</emph> dialog. Click a category to display the files associated with that category in the <emph>Title </emph>box.</ahelp>"
msgstr "<ahelp hid=\".\">ཊེམ་པེལེཊི་དང་ <emph>ཡིག་ཆ་ཌའི་ལོག་ཚུ་གི་ </emph>གཡོན་ཁ་ཐུག་ལུ་ སྒྲོམ་ནང་ དབྱེ་རིམ་འདི་ཚུ་སྟོན་ཡོདཔ་ཨིན། མགོ་མིང་ སྒྲོམ་ནང་ལུ་ དབྱེ་རིམ་དེ་དང་ གཅིག་ཁར་ འབྲེལ་བ་འཐབ་ཡོད་པའི་ ཡིག་སྣོད་ཚུ་བཀྲམ་སྟོན་འབད་ནི་ལུ་ <emph>དབྱི་རིམ་འདི་ལུ་</emph> ཨེབ་གཏང་འབད།</ahelp>"
@@ -608,7 +572,6 @@ msgstr "<ahelp hid=\".\">ཊེམ་པེལེཊི་དང་ <emph>ཡི
msgctxt ""
"01010100.xhp\n"
"hd_id3149388\n"
-"100\n"
"help.text"
msgid "Title Box"
msgstr "མགོ་ཡིག་སྒྲོམ།"
@@ -617,7 +580,6 @@ msgstr "མགོ་ཡིག་སྒྲོམ།"
msgctxt ""
"01010100.xhp\n"
"par_id3150355\n"
-"101\n"
"help.text"
msgid "<ahelp hid=\"HID_TEMPLATEDLG_FILEVIEW\">Lists the available templates or documents for the selected category. Select a template or document and, then click <emph>Open</emph>. To preview the document, click the <emph>Preview</emph> button above the box on the right.</ahelp>"
msgstr "<ahelp hid=\"HID_TEMPLATEDLG_FILEVIEW\">གིས་ སེལ་འཐུ་འབད་ཡོད་པའི་དབྱེ་རིགས་དོན་ལུ་ འཐོབ་ཚུགས་པའི་ཡིག་ཆ་ཡང་ན་ ཊེམ་པེལེཊིསི་འདི་ཐོ་ཡིག་བརྐྱབ་ཨིན། ཊེམ་པེལེཊི་ཡང་ན་ཡིག་ཆ་སེལ་འཐུ་འབད་ནི་དང་ དེ་ལས་ <emph>ཁ་ཕྱེ་</emph>གུ་ཨེབ་གཏང་། ཡིག་ཆ་འདི་སྔོན་བལཏ་འབད་ནིའི་དོན་ལུ་ གཡས་སྒྲོམ་གྱི་ལྟག་གི་ <emph>སྔོན་ལྟ་</emph>གུ་ཨེབ་གཏང་།</ahelp>"
@@ -626,7 +588,6 @@ msgstr "<ahelp hid=\"HID_TEMPLATEDLG_FILEVIEW\">གིས་ སེལ་འཐ
msgctxt ""
"01010100.xhp\n"
"hd_id3152996\n"
-"102\n"
"help.text"
msgid "Back"
msgstr "རྒྱབ་ལོག"
@@ -643,7 +604,6 @@ msgstr "<image id=\"img_id3149784\" src=\"res/sc06301.png\" width=\"0.222inch\"
msgctxt ""
"01010100.xhp\n"
"par_id3153822\n"
-"103\n"
"help.text"
msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_BACK\">Moves back to the previous window in the dialog.</ahelp>"
msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_BACK\">ཌའི་ལོག་ནང་ལུ་ ཧེ་མའི་སྒོ་སྒྲིག་ལུ་ལོག་སྤོ་བཤུད་འབདཝ་ཨིན།</ahelp>"
@@ -652,7 +612,6 @@ msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_BACK\">ཌའི་ལོག་ནང་
msgctxt ""
"01010100.xhp\n"
"hd_id3148685\n"
-"104\n"
"help.text"
msgid "Up One Level"
msgstr "ཡར་ལྟ་གནས་རིམ་གཅིག"
@@ -669,7 +628,6 @@ msgstr "<image id=\"img_id3149762\" src=\"svtools/res/up_small.png\" width=\"0.2
msgctxt ""
"01010100.xhp\n"
"par_id3156024\n"
-"105\n"
"help.text"
msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PREV\">Moves up one folder level, if available.</ahelp>"
msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_PREV\">འཐོབ་ཚུགས་ཡོད་པ་ཅིན་ སྣོད་འཛིན་གནས་རིམ་གཅིག་ ཡར་སྤོ་བཤུད་འབདཝ་ཨིན།</ahelp>"
@@ -678,7 +636,6 @@ msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_PREV\">འཐོབ་ཚུགས་ཡ
msgctxt ""
"01010100.xhp\n"
"hd_id3147264\n"
-"106\n"
"help.text"
msgid "Print"
msgstr "དཔར་བསྐྲུན་འབད།"
@@ -695,7 +652,6 @@ msgstr "<image id=\"img_id3148663\" src=\"cmd/sc_print.png\" width=\"0.222inch\"
msgctxt ""
"01010100.xhp\n"
"par_id3150359\n"
-"107\n"
"help.text"
msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">Prints the selected template or document.</ahelp>"
msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">སེལ་འཐུ་འབད་ཡོད་པའི་ ཊེམ་པེལེཊི་ཡང་ན་ཡིག་ཆ་འདི་ དཔར་བསྐྲུན་འབདཝ་ཨིན། </ahelp>"
@@ -704,7 +660,6 @@ msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">སེལ་འཐུ་འབ
msgctxt ""
"01010100.xhp\n"
"hd_id3149651\n"
-"9\n"
"help.text"
msgid "Preview"
msgstr "སྔོན་ལྟ།"
@@ -713,7 +668,6 @@ msgstr "སྔོན་ལྟ།"
msgctxt ""
"01010100.xhp\n"
"par_id3148799\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">Allows you to preview the template or document, as well as view the document properties.</ahelp> To preview the template or document, click the <emph>Preview</emph> icon at the top of the Preview box on the right side of the dialog. To view the properties of the document, click the <emph>Document Properties</emph> icon at the top of the Preview box."
msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\"> གིས་ ཁྱོད་ལུ་ ཊེམ་པེལེཊི་ཡང་ན་ཡིག་ཆ་ དེ་ལས་ ཡིག་ཆ་གི་རྒྱུ་དངོས་ཚུ་སྔོན་ལྟ་འབད་བཅུགསཔ་ཨིན། </ahelp> ཊེམ་པེལེཊི་ཡང་ན་་ཡིག་ཆ་འདི་སྔོན་ལྟ་འབད་ནིའི་དོན་ལུ་ ཌའི་ལོག་གི་ཟུར་གཡས་ཀྱི་སྔོན་ལྟའི་སྒྲོམ་གུ་ཡོད་མི་ <emph>སྔོན་ལྟ་</emph>ངོས་དཔར་འདི་ཨེབ་གཏང་། ཡིག་ཆའི་རྒྱུ་དངོས་འདི་སྟོན་ནི་དོན་ལུ་ སྔོན་ལྟའི་སྒྲོམ་གྱི་མགོ་ལུ་ཡོད་པའི་ <emph>ཡིག་ཆའི་རྒྱུ་དངོས་</emph>ངོས་དཔར་འདི་ཨེབ་གཏང་།"
@@ -722,7 +676,6 @@ msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\"> གིས་ ཁྱོད་
msgctxt ""
"01010100.xhp\n"
"hd_id3149807\n"
-"108\n"
"help.text"
msgid "Preview"
msgstr "སྔོན་ལྟ།"
@@ -739,7 +692,6 @@ msgstr "<image id=\"img_id3148451\" src=\"svtools/res/preview_small.png\" width=
msgctxt ""
"01010100.xhp\n"
"par_id3151043\n"
-"109\n"
"help.text"
msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PREVIEW\">Allows you to preview the selected template or document.</ahelp>"
msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_PREVIEW\">སེལ་འཐུ་འབད་ཡོད་པའི་ ཊེམ་པེལེཊི་ཡང་ན་ཡིག་ཆ་འདི་ ཁྱོད་ལུ་སྔོན་ལྟ་འབད་བཅུགསཔ་ཨིན། </ahelp>"
@@ -748,7 +700,6 @@ msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_PREVIEW\">སེལ་འཐུ་འབ
msgctxt ""
"01010100.xhp\n"
"hd_id3145606\n"
-"110\n"
"help.text"
msgid "Document Properties"
msgstr "ཡིག་ཆའི་རྒྱུ་དངོས།"
@@ -765,7 +716,6 @@ msgstr "<image id=\"img_id3153367\" src=\"svtools/res/info_small.png\" width=\"0
msgctxt ""
"01010100.xhp\n"
"par_id3153210\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_DOCINFO\">Displays the properties for the selected template or document.</ahelp>"
msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_DOCINFO\">སེལ་འཐུ་འབད་ཡོད་པའི་ ཊེམ་པེལེཏི་ཡང་ན་ཡིང་ཆའི་དོན་ལུ་ རྒྱུ་དངོས་འདི་བཀྲམ་སྟོན་འབདཝ་ཨིན། </ahelp>"
@@ -774,7 +724,6 @@ msgstr "<ahelp hid=\"HID_TEMPLATEDLG_TB_DOCINFO\">སེལ་འཐུ་འབ
msgctxt ""
"01010100.xhp\n"
"hd_id3153142\n"
-"111\n"
"help.text"
msgid "Organize"
msgstr "འགོ་འདྲེན་འཐབ།"
@@ -783,7 +732,6 @@ msgstr "འགོ་འདྲེན་འཐབ།"
msgctxt ""
"01010100.xhp\n"
"par_id3156441\n"
-"112\n"
"help.text"
msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_MANAGE\">Adds, removes, or rearranges templates or sample documents.</ahelp>"
msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_MANAGE\">གིས་ ཊེམ་པེལེཊིསི་ཡང་ན་དཔེ་ཚད་ཡིག་ཆ་ཚུ་ ཁ་སྐོང་རྐྱབས་ནི་དང་ རྩ་བསྐྲད་གཏང་ནི་ དེ་ལས་ སླར་བདེ་ཞིབ་བཟོཝ་ཨིན། </ahelp>"
@@ -792,7 +740,6 @@ msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_MANAGE\"
msgctxt ""
"01010100.xhp\n"
"hd_id3149483\n"
-"113\n"
"help.text"
msgid "Edit"
msgstr "ཞུན་དག་འབད།"
@@ -801,7 +748,6 @@ msgstr "ཞུན་དག་འབད།"
msgctxt ""
"01010100.xhp\n"
"par_id3154470\n"
-"114\n"
"help.text"
msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT\">Opens the selected template for editing.</ahelp>"
msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT\">ཞུན་དག་འབད་ནི་དོན་ལུ་ སེལ་འཐུ་འབད་ཡོད་པའི་ ཏེམ་པེལེཊི་འདི་ཁ་ཕྱེཝ་ཨིན། </ahelp>"
@@ -810,7 +756,6 @@ msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT\">
msgctxt ""
"01010100.xhp\n"
"hd_id3147428\n"
-"115\n"
"help.text"
msgid "Open"
msgstr "ཁ་ཕྱེ།"
@@ -819,7 +764,6 @@ msgstr "ཁ་ཕྱེ།"
msgctxt ""
"01010100.xhp\n"
"par_id3148617\n"
-"116\n"
"help.text"
msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT\">Opens the selected document or creates a document based on the selected template.</ahelp>"
msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT\"> སེལ་འཐུ་འབད་ཡོད་པའི་ཡིག་ཆ་འདི་ ཁ་ཕྱེ་ནི་དང་ ཡང་ན་ སེལ་འཐུ་འབད་ཡོད་པའི་ ཊེམ་པེལེཊི་གུ་གཞི་བཞག་སྟེ་ ཡིག་ཆ་ཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན། </ahelp>"
@@ -828,7 +772,6 @@ msgstr "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT\">
msgctxt ""
"01010100.xhp\n"
"par_id3155306\n"
-"98\n"
"help.text"
msgid "To add another folder to the template path, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010300.xhp\" name=\"$[officename] - Paths\"><emph>$[officename] - Paths</emph></link>, and then enter the path."
msgstr ""
@@ -853,7 +796,6 @@ msgstr "ཁ་ཡིག་ཚུ།"
msgctxt ""
"01010200.xhp\n"
"hd_id3154788\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/01/01010200.xhp\" name=\"Labels\">Labels</link>"
msgstr "<link href=\"text/shared/01/01010200.xhp\" name=\"Labels\">ཁ་ཡིག་ཚུ།</link>"
@@ -862,7 +804,6 @@ msgstr "<link href=\"text/shared/01/01010200.xhp\" name=\"Labels\">ཁ་ཡི
msgctxt ""
"01010200.xhp\n"
"par_id3145071\n"
-"2\n"
"help.text"
msgid "<variable id=\"etikett\"><ahelp hid=\".uno:InsertLabels\">Allows you to create labels. Labels are created in a text document.</ahelp> You can print labels using a pre-defined or a custom paper format. </variable>"
msgstr "<variable id=\"etikett\"><ahelp hid=\".uno:InsertLabels\">དེ་གིས་ཁྱོད་ལུ་ཁ་ཡིག་ཚུ་གསར་བསྐྲུན་འབད་བཅུགཔ་ཨིན། ཁ་ཡིག་ཚུ་ཚིག་ཡིག་ཡིག་ཆ་ཅིག་ནང་གསར་བསྐྲུན་འབད་དེ་ཡོདཔ་ཨིན། </ahelp> སྔ་གོང་ངེས་འཛིན་འབད་ཡོདཔ་ཡང་ན་སྲོལ་སྒྲིག་ཤོག་ལེབ་རྩ་སྒྲིག་ཅིག་ལག་ལེན་འཐབ་སྟེ་ ཁྱོད་ཀྱིས་ཁ་ཡིག་ཚུ་དཔར་བསྐྲུན་འབད་ཚུགས། </variable>"
@@ -871,7 +812,6 @@ msgstr "<variable id=\"etikett\"><ahelp hid=\".uno:InsertLabels\">དེ་ག
msgctxt ""
"01010200.xhp\n"
"par_id3145314\n"
-"3\n"
"help.text"
msgid "You can also print a single label or an entire sheet of labels."
msgstr "ཁྱོད་ཀྱིས་ ཁ་ཡིག་རྐྱང་པ་དང་ཡང་ན་ ཁ་ཡིག་གི་ལེབ་གྲངས་ཧྲིལ་བུ་ དཔར་བསྐྲུན་འབད་བཏུབ།"
@@ -880,7 +820,6 @@ msgstr "ཁྱོད་ཀྱིས་ ཁ་ཡིག་རྐྱང་པ་
msgctxt ""
"01010200.xhp\n"
"hd_id3145383\n"
-"7\n"
"help.text"
msgid "New Document"
msgstr "ཡིག་ཆ་གསརཔ།"
@@ -889,7 +828,6 @@ msgstr "ཡིག་ཆ་གསརཔ།"
msgctxt ""
"01010200.xhp\n"
"par_id3154810\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labeldialog/ok\">Creates a new document for editing.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labeldialog/ok\">ཞུན་དག་གི་དོན་ལུ་ \"Label1\" ཡིག་ཆའི་མིང་གསརཔ་བྱིན་མི་འདི་ གསར་བསྐྲུན་འབདཝ་ཨིན།</ahelp>"
@@ -914,7 +852,6 @@ msgstr "ཁ་ཡིག་ཚུ།"
msgctxt ""
"01010201.xhp\n"
"hd_id3149987\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/01/01010201.xhp\" name=\"Labels\">Labels</link>"
msgstr "<link href=\"text/shared/01/01010201.xhp\" name=\"Labels\">ཁ་ཡིག་ཚུ།</link>"
@@ -923,7 +860,6 @@ msgstr "<link href=\"text/shared/01/01010201.xhp\" name=\"Labels\">ཁ་ཡི
msgctxt ""
"01010201.xhp\n"
"par_id3152952\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/CardMediumPage\">Specify the label text and choose the paper size for the label.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/CardMediumPage\">ཁ་ཡིག་གི་ཚིག་ཡིག་འདི་གསལ་བཀོད་འབད་ནི་དང་ ཁ་ཡིག་དོན་ལུ་ ཤོག་ལེབ་ཀྱི་ཚད་འདི་གདམ་ཁ་རྐྱབས།</ahelp>"
@@ -932,7 +868,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/CardMediumPage\">ཁ་
msgctxt ""
"01010201.xhp\n"
"hd_id3158397\n"
-"3\n"
"help.text"
msgid "Inscription"
msgstr "འབྲི་ཡོད།"
@@ -941,7 +876,6 @@ msgstr "འབྲི་ཡོད།"
msgctxt ""
"01010201.xhp\n"
"par_id3154350\n"
-"4\n"
"help.text"
msgid "Enter or insert the text that you want to appear on the label(s)."
msgstr "ཁྱོད་ལུ་ ཁ་ཡིག་གུ་བྱུང་དགོ་པའི་ ཚིག་ཡིག་འདི་བཙུགས་ནི་དང་ཡང་ན་ཐོ་བཀོད་འབད།(s)"
@@ -950,7 +884,6 @@ msgstr "ཁྱོད་ལུ་ ཁ་ཡིག་གུ་བྱུང་ད
msgctxt ""
"01010201.xhp\n"
"hd_id3147294\n"
-"5\n"
"help.text"
msgid "Label text"
msgstr "ཁ་ཡིག་གི་ཚིག་ཡིག"
@@ -959,7 +892,6 @@ msgstr "ཁ་ཡིག་གི་ཚིག་ཡིག"
msgctxt ""
"01010201.xhp\n"
"par_id3150838\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/textview\">Enter the text that you want to appear on the label. You can also insert a database field.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/textview\">ཁྱོད་ཀྱིས་ ཁ་ཡིག་གུ་བྱུང་དགོ་པའི་ ཚིག་ཡིག་འདི་ཐོ་བཀོད་འབད། ཁྱོད་ཀྱིས་གནས་སྡུད་གཞི་རྟེན་གྱི་ ཡིག་སྣོད་འདི་ཡང་བཙུགས་བཏུབ།</ahelp>"
@@ -968,7 +900,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/textview\">ཁྱོད
msgctxt ""
"01010201.xhp\n"
"hd_id3150603\n"
-"7\n"
"help.text"
msgid "Address"
msgstr "ཁ་བྱང་།"
@@ -977,7 +908,6 @@ msgstr "ཁ་བྱང་།"
msgctxt ""
"01010201.xhp\n"
"par_id3153089\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/address\">Creates a label with your return address. Text that is currently in the <emph>Label text</emph> box is overwritten.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/address\">ཁྱོད་རའི་ ཁ་བྱང་ལོག་མི་དང་ཅིག་ཁར་ ཁ་ཡིག་ཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན། ད་ལྟོའི་ <emph>ཁ་ཡིག་ཚིག་ཡིག་</emph> སྒྲོམ་ནང་ཡོད་པའི་ ཚིག་ཡིག་འདི་ ཚབ་སྲུངས་འབད་ཡོདཔ་ཨིན། </ahelp>"
@@ -986,7 +916,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/address\">ཁྱོད་
msgctxt ""
"01010201.xhp\n"
"par_id3155555\n"
-"9\n"
"help.text"
msgid "To change your return address, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010100.xhp\" name=\"%PRODUCTNAME\"><emph>%PRODUCTNAME</emph></link>, and then click on the <emph>User Data</emph> tab."
msgstr ""
@@ -995,7 +924,6 @@ msgstr ""
msgctxt ""
"01010201.xhp\n"
"hd_id3147557\n"
-"10\n"
"help.text"
msgid "Database"
msgstr "གནས་སྡུད་གཞི་རྟེན།"
@@ -1004,7 +932,6 @@ msgstr "གནས་སྡུད་གཞི་རྟེན།"
msgctxt ""
"01010201.xhp\n"
"par_id3148620\n"
-"11\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/database\">Select the database that you want to use as the data source for your label. </ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/database\">ཁྱོད་རའི་ཁ་ཡིག་དོན་ལུ་ གནད་སྡུད་འབྱུང་ཁུངས་སྦེ་ལག་ལེན་འཐབ་ནི་ལུ་ ཁྱོད་ཀྱིས་དགོ་པའི་ གནས་སྡུད་གཞི་རྟེན་འདི་སེལ་འཐུ་འབད། </ahelp>"
@@ -1013,7 +940,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/database\">ཁྱོད
msgctxt ""
"01010201.xhp\n"
"hd_id3149388\n"
-"12\n"
"help.text"
msgid "Table"
msgstr "ཐིག་ཁྲམ།"
@@ -1022,7 +948,6 @@ msgstr "ཐིག་ཁྲམ།"
msgctxt ""
"01010201.xhp\n"
"par_id3149827\n"
-"13\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/table\">Select the database table containing the field(s) that you want to use in your label.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/table\">ཁྱོད་རའི་ཁ་ཡིག་ནང་ལག་ལེན་འཐབ་ནིའི་ལུ་ ས་སྒོ་ནང་ན་ཡོད་མི་ཚུ་གི་ གནད་གཞི་རྟེན་གྱི་ ཐིག་ཁྲམ་ཚུ་སེལ་འཐུ་འབད། </ahelp>"
@@ -1031,7 +956,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/table\">ཁྱོད་
msgctxt ""
"01010201.xhp\n"
"hd_id3155391\n"
-"14\n"
"help.text"
msgid "Database field"
msgstr "གནས་སྡུད་གཞི་རྟེན་དེ་འཐུས་ཤོར་བྱུང་ཡོད།"
@@ -1040,7 +964,6 @@ msgstr "གནས་སྡུད་གཞི་རྟེན་དེ་འཐུ
msgctxt ""
"01010201.xhp\n"
"par_id3149750\n"
-"15\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/insert\">Select the database field that you want, and then click the arrow to the left of this box to insert the field into the <emph>Label text</emph> box.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/insert\">ཁྱོད་རང་དགོ་པའི་ གནས་སྡུད་གཞི་རྟེན་གྱི་ ས་སྒོ་འདི་སེ་འཐུ་འབད་བཞིནམ་ལས་ ས་སྒོ་འདི་<emph>ཁ་ཡིག་ཚིག་་ཡིག་གི་ </emph> སྒྲོམ་ནང་བཙུགས་ནིའི་དོན་ལུ་ འ་ནི་སྒྲོམ་འདི་གི་གཡོན་ཁ་ཐུག་ལུ་ཡོད་པའི་མདའ་རྟགས་འདི་ལུ་ ཨེབ་གཏང་འབད།་</ahelp>."
@@ -1049,7 +972,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/insert\">ཁྱོད་
msgctxt ""
"01010201.xhp\n"
"par_id3152780\n"
-"16\n"
"help.text"
msgid "The name of the database field is bounded by brackets in the <emph>Label text</emph> box. If you want, you can separate database fields with spaces. Press Enter to insert a database field on a new line."
msgstr "གནས་སྡུད་གཞི་རྟེན་ས་སྒོ་གི་མིང་འདི་ <emph>Label text</emph>སྒྲོམ་ནང་ཡོད་པའི་ གུག་བཤད་ཀྱིས་བཅད་མཚམས་འབད་དེ་ཡོདཔ་ཨིན། ཁྱོད་རང་དགོ་པ་ཅིན་ གནས་སྡུད་གཞི་རྟེན་ས་སྒོ་འདི་ བར་སྟོང་དང་བཅས་ཁྱོད་ཀྱིས་ དབྱེ་བྱེད་འབད་བཏུབ། གནས་སྡུད་གཞི་རྟེན་གྱི་ས་སྒོ་འདི་ གྲལ་ཐིག་གསརཔ་གུ་བཙུགས་ནིའི་དོན་ལུ་ ཐོ་བཀོད་འདི་ཨེབ་གཏང་།"
@@ -1058,7 +980,6 @@ msgstr "གནས་སྡུད་གཞི་རྟེན་ས་སྒོ་
msgctxt ""
"01010201.xhp\n"
"hd_id3147653\n"
-"17\n"
"help.text"
msgid "Format"
msgstr "རྩ་སྒྲིག"
@@ -1067,7 +988,6 @@ msgstr "རྩ་སྒྲིག"
msgctxt ""
"01010201.xhp\n"
"par_id3149762\n"
-"18\n"
"help.text"
msgid "You can select a pre-defined size format for your label or a size format that you specify on the <emph>Format </emph>tab.."
msgstr "<emph>རྩ་སྒྲིག་ </emph>ཨེབ་ལྡེ་གུ་ ཁྱོད་ཀྱིས་གསལ་བཀོད་འབད་མི་ རྩ་སྒྲིག་གི་ཚད་ཅིག་ཡང་ན་ ཁྱོད་རའི་ཁ་ཡིག་དོན་ལུ་ ཁྱོད་ཀྱིས་ སྔོན་ངོས་འཛིན་རྩ་སྒྲིག་གི་ཚད་ཅིག་སེལ་འཐུ་འབད།"
@@ -1076,7 +996,6 @@ msgstr "<emph>རྩ་སྒྲིག་ </emph>ཨེབ་ལྡེ་གུ
msgctxt ""
"01010201.xhp\n"
"hd_id3154143\n"
-"19\n"
"help.text"
msgid "Continuous"
msgstr "འཕྲོ་མཐུད་ཅན།"
@@ -1085,7 +1004,6 @@ msgstr "འཕྲོ་མཐུད་ཅན།"
msgctxt ""
"01010201.xhp\n"
"par_id3151339\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/continuous\">Prints labels on continuous paper.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/continuous\">འཕྲོ་མཐུད་ཤོག་ལེབ་གུ་ ཁ་ཡིག་དཔར་བསྐྲུན་འབདཝ་ཨིན། </ahelp>"
@@ -1094,7 +1012,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/continuous\">འཕྲོ
msgctxt ""
"01010201.xhp\n"
"hd_id3150131\n"
-"21\n"
"help.text"
msgid "Sheet"
msgstr "ལེབ་གྲངས།"
@@ -1103,7 +1020,6 @@ msgstr "ལེབ་གྲངས།"
msgctxt ""
"01010201.xhp\n"
"par_id3159167\n"
-"22\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/sheet\">Prints labels on individual sheets.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/sheet\">ངོ་རྐྱང་གི་ལེབ་གྲངས་གུ་ཁ་ཡིག་འདི་དཔར་བསྐྲུན་འབདཝ་ཨིན།</ahelp>"
@@ -1112,7 +1028,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/sheet\">ངོ་རྐ
msgctxt ""
"01010201.xhp\n"
"hd_id3156327\n"
-"23\n"
"help.text"
msgid "Brand"
msgstr "ཚོང་མིང་།"
@@ -1121,7 +1036,6 @@ msgstr "ཚོང་མིང་།"
msgctxt ""
"01010201.xhp\n"
"par_id3150466\n"
-"24\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/brand\">Select the brand of paper that you want to use.</ahelp> Each brand has its own size formats."
msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/brand\">ཁྱོད་ཀྱིས་ལག་ལེན་འཐབ་དགོ་པའི་ ཤོག་ལེབ་ཀྱི་ཚོང་མིང་འདི་སེལ་འཐུ་འབད། </ahelp>ཚོང་མིང་རེ་ལུ་ རང་རང་སའི་རྩ་སྒྲིག་གི་ཚད་ཡོད་པ་ཨིན།"
@@ -1130,7 +1044,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/brand\">ཁྱོད་
msgctxt ""
"01010201.xhp\n"
"hd_id3153821\n"
-"25\n"
"help.text"
msgid "Type"
msgstr "དབྱེ་བ།"
@@ -1139,7 +1052,6 @@ msgstr "དབྱེ་བ།"
msgctxt ""
"01010201.xhp\n"
"par_id3149235\n"
-"26\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/type\">Select the size format that you want to use. The available formats depend on the brand on what you selected in the <emph>Brand</emph> list. If you want to use a custom label format, select <emph>[User]</emph>, and then click the <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> tab to define the format.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/type\"> ཁྱོད་ཀྱིས་ལག་ལེན་འཐབ་དགོ་པའི་ རྩ་སྒྲིག་ཚད་འདི་སེལ་འཐུ་འབད། འཐོབ་ཚུགས་པའི་རྩ་སྒྲིག་ཚུ་ ཁྱོད་ཀྱིས་ <emph>ཚོང་མིང་</emph>ཐོ་ཡིག་ནང་སེལ་འཐུ་འབད་མི་གུ་ ཚོང་མིང་འདི་ལུ་རག་ལསཔ་ཨིན། ཁྱོད་ཀྱིས་སྲོལ་སྒྲིག་ཁ་ཡིག་རྩ་སྒྲིག་ཅིག་ ལག་ལེན་འཐབ་ནི་ཨིན་པ་ཅིན་ <emph>[User]</emph>སེལ་འཐུ་འབད་ནི་དང་ དེ་ལས་ རྩ་སྒྲིག་འདི་ངེས་འཛིན་འབད་ནི་དོན་ལས་ <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>རྩ་སྒྲིག་</emph></link>ཨེབ་གཏང་ད།</ahelp>"
@@ -1148,7 +1060,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/type\"> ཁྱོད་
msgctxt ""
"01010201.xhp\n"
"hd_id3153828\n"
-"27\n"
"help.text"
msgid "Info"
msgstr "བརྡ་དོན།"
@@ -1157,7 +1068,6 @@ msgstr "བརྡ་དོན།"
msgctxt ""
"01010201.xhp\n"
"par_id3152349\n"
-"28\n"
"help.text"
msgid "The paper type and the dimensions of the label are displayed at the bottom of the <emph>Format</emph> area."
msgstr "ཤོག་ལེབ་ཀྱི་དབྱེ་བ་དང་ ཁ་ཡིག་གི་རྒྱ་ཁྱོན་ཚུ་ <emph>རྩ་སྒྲིག་</emph>མངའ་ཁོངས་གི་མཇུག་ལུ་བཀྲམ་སྟོན་འབད་ཡོད།"
@@ -1174,7 +1084,6 @@ msgstr "རྩ་སྒྲིག"
msgctxt ""
"01010202.xhp\n"
"hd_id3151260\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/01/01010202.xhp\" name=\"Format\">Format</link>"
msgstr "<link href=\"text/shared/01/01010202.xhp\" name=\"Format\">རྩ་སྒྲིག་</link>"
@@ -1183,7 +1092,6 @@ msgstr "<link href=\"text/shared/01/01010202.xhp\" name=\"Format\">རྩ་ས
msgctxt ""
"01010202.xhp\n"
"par_id3153255\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/LabelFormatPage\">Set paper formatting options.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/LabelFormatPage\">ཤོག་ལེབ་རྩ་སྒྲིག་གི་དམ་ཁ་ཚུ་གཞི་སྒྲིག་འབད། </ahelp>"
@@ -1192,7 +1100,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/LabelFormatPage\">ཤོ
msgctxt ""
"01010202.xhp\n"
"hd_id3159194\n"
-"3\n"
"help.text"
msgid "Horizontal pitch"
msgstr "ཐད་སྙོམས་སྟུག་ཚད།"
@@ -1201,7 +1108,6 @@ msgstr "ཐད་སྙོམས་སྟུག་ཚད།"
msgctxt ""
"01010202.xhp\n"
"par_id3154186\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/hori\">Displays the distance between the left edges of adjacent labels or business cards. If you are defining a custom format, enter a value here.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/hori\"> སྦོ་ལོག་ཁར་གྱི་ཁ་ཡིག་དང་ ཚོང་འབྲེལ་ཤོག་བྱང་ཚུ་གི་བར་ནིའི་ བྱང་ཚད་འདི་བཀྲམ་སྟོན་འབདཝ་ཨིན། ཁྱོད་ཀྱིས་སྲོལ་སྒྲིག་རྩ་སྒྲིག་འདི་ངེས་འཛིན་འབད་དོ་ཡོད་པ་ཅིན་ གནས་གོང་འདི་ནཱ་ལུ་ཐོ་བཀོད་འབད།</ahelp>"
@@ -1210,7 +1116,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/hori\"> སྦོ་ལ
msgctxt ""
"01010202.xhp\n"
"hd_id3155555\n"
-"5\n"
"help.text"
msgid "Vertical pitch"
msgstr "ཀེར་ཕྲང་སྟུག་ཚད།"
@@ -1219,7 +1124,6 @@ msgstr "ཀེར་ཕྲང་སྟུག་ཚད།"
msgctxt ""
"01010202.xhp\n"
"par_id3152425\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/vert\">Displays the distance between the upper edge of a label or a business card and the upper edge of the label or the business card directly below. If you are defining a custom format, enter a value here.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/vert\"> གིས་ ཁ་ཡིག་གི་ཡར་གྱི་མཐའམ་ཡང་ན་ ཚོང་འབྲེལ་གྱི་ཤོག་བྱང་དང་ ཁ་ཡིག་གི་ཡར་གྱི་མཐའམ་ཡང་ན་ འོག་ལུ་ཐད་ཀར་དུ་ཡོད་མིའི་ཚོང་འབྲེལ་ཤོག་བྱང་ཚུ་གི་བར་ནིའི་ བྱང་ཚད་ཚུ་བཀྲམ་སྟོན་འབདཝ་ཨིན། ཁྱོད་ཀྱིས་སྲོལ་སྒྲིག་རྩ་སྒྲིག་འདི་ངེས་འཛིན་འབད་དོ་ཡོད་པ་ཅིན་ གནས་གོང་འདི་ནཱ་ལུ་ཐོ་བཀོད་འབད། </ahelp>"
@@ -1228,7 +1132,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/vert\"> གིས་
msgctxt ""
"01010202.xhp\n"
"hd_id3147399\n"
-"7\n"
"help.text"
msgid "Width"
msgstr "རྒྱ་ཚད།"
@@ -1237,7 +1140,6 @@ msgstr "རྒྱ་ཚད།"
msgctxt ""
"01010202.xhp\n"
"par_id3147576\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/width\">Displays the width for the label or the business card. If you are defining a custom format, enter a value here.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/width\"> ཁ་ཡིག་གི་དོན་ལུ་ ཡང་ན་ ཚོང་འབྲེལ་ཤོག་ལེབ་ཀྱི་དོན་ལུ་ རྒྱ་ཚད་འདི་བཀྲམ་སྟོན་འབདཝ་ཨིན། ཁྱོད་ཀྱིས་ སྲོལ་སྒྲིག་རྩ་སྒྲིག་འདི་ངེས་འཛིན་འབད་དོ་ཡོད་པ་ཅིན་ གནས་གོང་འདི་ཐོ་བཀོད་འབད། </ahelp>"
@@ -1246,7 +1148,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/width\"> ཁ་ཡིག
msgctxt ""
"01010202.xhp\n"
"hd_id3150774\n"
-"9\n"
"help.text"
msgid "Height"
msgstr "མཐོ་ཚད།"
@@ -1255,7 +1156,6 @@ msgstr "མཐོ་ཚད།"
msgctxt ""
"01010202.xhp\n"
"par_id3149827\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/height\">Displays the height for the label or business card. If you are defining a custom format, enter a value here.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/height\"> ཁ་ཡིག་གི་ཡང་ན་ཚོང་འབྲེལ་ཤོག་བྱང་དོན་ལུ་ ཐོ་ཚད་འདི་བཀྲམ་སྟོན་འབདཝ་ཨིན། ཁྱོད་ཀྱིས་སྲོལ་སྒྲིག་རྩ་སྒྲིག་འདི་ ངེས་འཛིན་འབད་དོ་ཡོད་པ་ཅིན་ གནས་གོང་ཅིག་ནཱ་ལུ་ཐོ་བཀོད་འབད། </ahelp>"
@@ -1264,7 +1164,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/height\"> ཁ་ཡི
msgctxt ""
"01010202.xhp\n"
"hd_id3149182\n"
-"11\n"
"help.text"
msgid "Left margin"
msgstr "གཡོན་གྱི་ས་སྟོང་།"
@@ -1273,7 +1172,6 @@ msgstr "གཡོན་གྱི་ས་སྟོང་།"
msgctxt ""
"01010202.xhp\n"
"par_id3154823\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/left\">Displays the distance from the left edge of the page to the left edge of the first label or business card. If you are defining a custom format, enter a value here.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/left\">གིས་ ཤོག་ལེབ་ཀྱི་གཡོན་མཐའམ་ལས་ ཁ་ཡིག་དང་པའི་གཡོན་གྱི་མཐའམ་ ཡང་ན་ ཚོང་འབྲེལ་ཤོག་བྱང་ཚུན་གྱི་ གྱང་ཚད་འདི་བཀྲམ་སྟོན་འབདཝ་ཨིན། ཁྱོད་ཀྱིས་ སྲོལ་སྒྲིག་རྩ་སྒྲིག་འདི་ངེས་འཛིན་འབད་དོ་ཡོད་པ་ཅིན་ གནས་གོང་ཅིག་ནཱ་ལུ་ཐོ་བཀོད་འབད། </ahelp>"
@@ -1282,7 +1180,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/left\">གིས་ ཤ
msgctxt ""
"01010202.xhp\n"
"hd_id3156346\n"
-"13\n"
"help.text"
msgid "Upper margin"
msgstr "ཡར་གྱི་ས་སྟོང་།"
@@ -1291,7 +1188,6 @@ msgstr "ཡར་གྱི་ས་སྟོང་།"
msgctxt ""
"01010202.xhp\n"
"par_id3150355\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/top\">Displays distance from the top edge of the page to the top of the first label or business card. If you are defining a custom format, enter a value here.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/top\"> ཤོག་ལེབ་ཀྱི་མགོའི་མཐའམ་ལས་ ཁ་ཡིག་དང་པའི་མགོ་་ཡང་ན་ཚོང་འབྲེལ་གྱི་ཤོག་བྱང་ཚུན་ གྱང་ཚད་འདི་བཀྲམ་སྟོན་འབདཝ་ཨིན། ཁྱོད་ཀྱིས་ སྲོལ་སྒྲིག་རྩ་སྒྲིག་འདི་ངེས་འཛིན་འབད་དོ་ཡོད་པ་ཅིན་ གནས་གོང་ཅིག་ནཱ་ལུ་ཐོ་བཀོད་འབད། </ahelp>"
@@ -1300,7 +1196,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/top\"> ཤོག་ལ
msgctxt ""
"01010202.xhp\n"
"hd_id3147573\n"
-"15\n"
"help.text"
msgid "Columns"
msgstr "ཀེར་ཐིག་ཚུ།"
@@ -1309,7 +1204,6 @@ msgstr "ཀེར་ཐིག་ཚུ།"
msgctxt ""
"01010202.xhp\n"
"par_id3153252\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/cols\">Enter the number of labels or business cards that you want to span the width of the page.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/cols\"> ཁྱོད་ཀྱིས་ ཤོག་ལེབ་ཀྱི་རྒྱ་ཚད་འཕར་ཚད་འབད་ནི་དོན་ལུ་ ཁ་ཡིག་ཚུ་གི་ཨང་གྲངས་ཡང་ན་ ཚོང་འབྲེལ་ཤོག་བྱང་ཚུ་ཐོ་བཀོད་འབད།</ahelp>"
@@ -1318,7 +1212,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/cols\"> ཁྱོད་
msgctxt ""
"01010202.xhp\n"
"hd_id3154143\n"
-"17\n"
"help.text"
msgid "Rows"
msgstr "གྲལ་ཐིག་ཚུ།"
@@ -1327,7 +1220,6 @@ msgstr "གྲལ་ཐིག་ཚུ།"
msgctxt ""
"01010202.xhp\n"
"par_id3145119\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/rows\">Enter the number of labels or business cards that you want to span the height of the page.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/rows\"> ཁྱོད་ཀྱིས་ ཤོག་ལེབ་ཀྱི་ཐོ་ཚད་འཕར་ཚད་འབད་ནི་དོན་ལུ་ ཁ་ཡིག་ཚུ་གི་ཨང་གྲངས་ཡང་ན་ ཚོང་འབྲེལ་གྱི་ཤོག་བྱང་ཚུ་ཐོ་བཀོད་འབད།</ahelp>"
@@ -1336,7 +1228,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/rows\"> ཁྱོད་
msgctxt ""
"01010202.xhp\n"
"hd_id3147336\n"
-"19\n"
"help.text"
msgid "Save"
msgstr "སྲུངས།"
@@ -1345,7 +1236,6 @@ msgstr "སྲུངས།"
msgctxt ""
"01010202.xhp\n"
"par_id3156152\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/save\">Saves the current label or business card format.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/save\">ད་ལྟོའི་ཁ་ཡིག་ཡང་ན་ ཚོང་འབྲེལ་ཤོག་བྱང་རྩ་སྒྲིག་འདི་སྲུངས། </ahelp>"
@@ -1354,7 +1244,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/save\">ད་ལྟོ
msgctxt ""
"01010202.xhp\n"
"hd_id3146773\n"
-"21\n"
"help.text"
msgid "Save Label Format"
msgstr "ཁ་ཡིག་རྩ་སྒྲིག་འདི་སྲུངས།"
@@ -1363,7 +1252,6 @@ msgstr "ཁ་ཡིག་རྩ་སྒྲིག་འདི་སྲུངས
msgctxt ""
"01010202.xhp\n"
"hd_id3154897\n"
-"23\n"
"help.text"
msgid "Brand"
msgstr "ཚོང་མིང་།"
@@ -1372,7 +1260,6 @@ msgstr "ཚོང་མིང་།"
msgctxt ""
"01010202.xhp\n"
"par_id3155421\n"
-"24\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/savelabeldialog/brand\">Enter or select the desired brand.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/savelabeldialog/brand\">རེ་འདུན་ཡོད་པའི་ཚོང་མིང་འདི་ སེལ་འཐུ་འབད་ནི་དང་ཡང་ན་ ཐོ་བཀོད་འབད།</ahelp>"
@@ -1381,7 +1268,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/savelabeldialog/brand\">རེ་འད
msgctxt ""
"01010202.xhp\n"
"hd_id3155180\n"
-"25\n"
"help.text"
msgid "Type"
msgstr "དབྱེ་བ།"
@@ -1390,7 +1276,6 @@ msgstr "དབྱེ་བ།"
msgctxt ""
"01010202.xhp\n"
"par_id3159158\n"
-"26\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/savelabeldialog/type\">Enter or select a label type.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/savelabeldialog/type\">ཁ་ཡིག་དབྱེ་ཅིག་སེལ་འཐུ་འདབ་ནི་ཡང་ན་ ཐོ་བཀོད་འབད།</ahelp>"
@@ -1407,7 +1292,6 @@ msgstr "གདམ་ཁ་ཚུ།"
msgctxt ""
"01010203.xhp\n"
"hd_id3155599\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/01/01010203.xhp\" name=\"Options\">Options</link>"
msgstr "<link href=\"text/shared/01/01010203.xhp\" name=\"Options\">གདམ་ཁ་ཚུ།</link>"
@@ -1416,7 +1300,6 @@ msgstr "<link href=\"text/shared/01/01010203.xhp\" name=\"Options\">གདམ་
msgctxt ""
"01010203.xhp\n"
"par_id3154497\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/LabelOptionsPage\" visibility=\"visible\">Sets additional options for your labels or business cards, including text synchronization and printer settings.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/LabelOptionsPage\" visibility=\"visible\"> ཚིག་ཡིག་མཉམ་འབྱུང་དང་དཔར་འཕྲུལ་སྒྲིག་སྟངས་ཚུ་གྲངས་སུ་བརྩི་སྟེ་ ཁྱོད་རའི་ཁ་ཡིག་ཡང་ན་ ཚོང་འབྲེལ་ཤོག་བྱང་ཚུ་གི་དོན་ལུ་ ཁ་སྐོང་གདམ་ཁ་ཚུ་གཞི་སྒྲིག་འབདཝ་ཨིན། </ahelp>"
@@ -1425,7 +1308,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/LabelOptionsPage\" visi
msgctxt ""
"01010203.xhp\n"
"hd_id3150713\n"
-"3\n"
"help.text"
msgid "Entire Page"
msgstr "ཤོག་ལེབ་ཧྲིལ་བུ།"
@@ -1434,7 +1316,6 @@ msgstr "ཤོག་ལེབ་ཧྲིལ་བུ།"
msgctxt ""
"01010203.xhp\n"
"par_id3155355\n"
-"4\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">Creates a full page of labels or business cards.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\"> ཁ་ཡིག་ཡང་ན་ ཚོང་འབྲེལ་ཤོག་ལེབ་ཚུ་གི་ ཤོག་བྱང་ཆ་ཚང་ཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན། </ahelp>"
@@ -1443,7 +1324,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility
msgctxt ""
"01010203.xhp\n"
"hd_id3146958\n"
-"5\n"
"help.text"
msgid "Single Label"
msgstr "ཁ་ཡིག་རྐྱང་པ།"
@@ -1452,7 +1332,6 @@ msgstr "ཁ་ཡིག་རྐྱང་པ།"
msgctxt ""
"01010203.xhp\n"
"par_id3155535\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/singlelabel\" visibility=\"visible\">Prints a single label or business card on a page.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/singlelabel\" visibility=\"visible\"> ཤོག་ལེབ་གུ་ ཁ་ཡིག་རྐྱང་པ་ཡང་ན་ ཚོང་འབྲེལ་ཤོག་བྱང་ཅིག་དཔར་བསྐྲུན་འབདཝ་ཨིན།</ahelp>"
@@ -1461,7 +1340,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/singlelabel\" visibilit
msgctxt ""
"01010203.xhp\n"
"hd_id3148621\n"
-"7\n"
"help.text"
msgid "Column"
msgstr "ཀེར་ཐིག"
@@ -1470,7 +1348,6 @@ msgstr "ཀེར་ཐིག"
msgctxt ""
"01010203.xhp\n"
"par_id3145345\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/cols\" visibility=\"visible\">Enter the number of labels or business cards that you want to have in a row on your page.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/cols\" visibility=\"visible\">ཁྱོད་རའི་ཤོག་ལེབ་ཀྱི་གྲལ་ཐིག་གུ་འོང་ནིའི་དོན་ལུ་ ཁ་ཡིག་གི་ཨང་གྲངས་ ཡང་ན་ ཚོང་འབྲེལ་ཤོག་བྱང་ཚུ་ཐོ་བཀོད་འབད།</ahelp>"
@@ -1479,7 +1356,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/cols\" visibility=\"vis
msgctxt ""
"01010203.xhp\n"
"hd_id3149398\n"
-"9\n"
"help.text"
msgid "Row"
msgstr "གྲལ་ཐིག"
@@ -1488,7 +1364,6 @@ msgstr "གྲལ་ཐིག"
msgctxt ""
"01010203.xhp\n"
"par_id3166410\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/rows\" visibility=\"visible\">Enter the number of rows of labels or business cards that you want to have on your page.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/rows\" visibility=\"visible\">ཁྱོད་རའི་ཤོག་ལེབ་གུ་འོང་དགོ་ནི་ཨིན་པའི་ ཁ་ཡིག་གི་གྲལ་ཐིག་ཚུ་དང་ ཚོང་འབྲེལ་ཤོག་བྱང་གི་ཨང་གྲངས་འདི་ཐོ་བཀོད་འབད། </ahelp>"
@@ -1497,7 +1372,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/rows\" visibility=\"vis
msgctxt ""
"01010203.xhp\n"
"hd_id3149237\n"
-"15\n"
"help.text"
msgid "Synchronize contents"
msgstr "མཉམ་འབྱུང་འབད་ནིའི་ནང་དོན་ཚུ།"
@@ -1506,7 +1380,6 @@ msgstr "མཉམ་འབྱུང་འབད་ནིའི་ནང་དོ
msgctxt ""
"01010203.xhp\n"
"par_id3155342\n"
-"16\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/labeloptionspage/synchronize\">Allows you to edit a single label or business card and updates the contents of the remaining labels or business cards on the page when you click the <emph>Synchronize Labels </emph>button.</ahelp>"
msgstr ""
@@ -1515,7 +1388,6 @@ msgstr ""
msgctxt ""
"01010203.xhp\n"
"hd_id3149164\n"
-"18\n"
"help.text"
msgid "Synchronize Labels"
msgstr "མཉམ་འབྱུང་འབད་ནིའི་ཁ་ཡིག་ཚུ།"
@@ -1524,7 +1396,6 @@ msgstr "མཉམ་འབྱུང་འབད་ནིའི་ཁ་ཡིག
msgctxt ""
"01010203.xhp\n"
"par_id3148474\n"
-"17\n"
"help.text"
msgid "The <emph>Synchronize labels </emph>button only appears in your document if you selected the <emph>Synchronize contents </emph>on the<emph> Options tab </emph>when you created the labels or business cards."
msgstr "ཁྱོད་ཀྱིས་ཁ་ཡིག་ཡང་ན་ ཚོང་འབྲེལ་ཤོག་བྱང་ཚུ་གསར་བསྐྲུན་འབདཝ་ད་ ཁྱོད་ཀྱིས་ <emph> གདམ་ཁ་ཚུ་གི་ཨེབ་ལྡེ་ </emph>གུ་ <emph>མཉམ་འབྱུང་འབད་ནིའི་ནང་དོན་ཚུ་ </emph>སེལ་འཐུ་འབད་དེ་ཡོད་པ་ཅིན་ རྐྱངམ་ཅིག་ <emph>མཉམ་འབྱུང་འབད་ནིའི་ཁ་ཡིག་ཚུ་ </emph>ཨེབ་རྟ་འདི་ ཁྱོད་རའི་ཡིག་ཆ་ནང་ལུ་འབྱུངམ་ཨིན།"
@@ -1533,7 +1404,6 @@ msgstr "ཁྱོད་ཀྱིས་ཁ་ཡིག་ཡང་ན་ ཚོ
msgctxt ""
"01010203.xhp\n"
"par_id3149762\n"
-"19\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/floatingsync/sync\" visibility=\"visible\">Copies the contents of the top left label or business card to the remaining labels or business cards on the page.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/floatingsync/sync\" visibility=\"visible\"> ཤོག་ལེབ་གུ་ ཁ་ཡིག་གཡོན་མགོ་གི་ནང་དོན་ཚུ་དང་ ཡང་ན་ ཚོང་འབྲེལ་ཤོག་བྱང་ལས་ ལྷག་ལུས་ཡོད་པའི་ཁ་ཡིག་ཚུ་དང་ ཡང་ན་ ཚོང་འབྲེལ་ཤོག་བྱང་ཚུ་ འདྲ་བཤུས་བརྐྱབ་ཨིན།</ahelp>"
@@ -1542,7 +1412,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/floatingsync/sync\" visibility=\"visible
msgctxt ""
"01010203.xhp\n"
"hd_id3150504\n"
-"11\n"
"help.text"
msgid "Printer"
msgstr "དཔར་འཕྲུལ།"
@@ -1551,7 +1420,6 @@ msgstr "དཔར་འཕྲུལ།"
msgctxt ""
"01010203.xhp\n"
"par_id3148990\n"
-"12\n"
"help.text"
msgid "Displays the name of the currently selected printer."
msgstr "ད་ལྟོ་སེལ་འཐུ་འབད་ཡོད་པའི་ དཔར་འཕྲུལ་གྱི་མིང་འདི་བཀྲམ་སྟོན་འབདཝ་ཨིན།"
@@ -1560,7 +1428,6 @@ msgstr "ད་ལྟོ་སེལ་འཐུ་འབད་ཡོད་པའ
msgctxt ""
"01010203.xhp\n"
"hd_id3153127\n"
-"13\n"
"help.text"
msgid "Setup"
msgstr "གཞི་སྒྲིག་འབད།"
@@ -1569,7 +1436,6 @@ msgstr "གཞི་སྒྲིག་འབད།"
msgctxt ""
"01010203.xhp\n"
"par_id3144438\n"
-"14\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/labeloptionspage/setup\">Opens the <link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link> dialog.</ahelp>"
msgstr ""
@@ -1586,7 +1452,6 @@ msgstr "ཚོང་འབྲེལ་ཤོག་ལེབ་ཚུ།"
msgctxt ""
"01010300.xhp\n"
"hd_id3149038\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/01/01010300.xhp\" name=\"Business cards\">Business cards</link>"
msgstr "<link href=\"text/shared/01/01010300.xhp\" name=\"Business cards\">ཚོང་འབྲེལ་ཤོག་བྱང་ཚུ།</link>"
@@ -1595,7 +1460,6 @@ msgstr "<link href=\"text/shared/01/01010300.xhp\" name=\"Business cards\">ཚ
msgctxt ""
"01010300.xhp\n"
"par_id3149987\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertBusinessCard\">Design and create your own business cards.</ahelp> You can choose from a number of pre-defined size formats or create your own."
msgstr "<ahelp hid=\".uno:InsertBusinessCard\">བཀོད་སྒྲིག་དང་ ཁྱོད་རའི་བདག་དབང་གི་ཚོང་འབྲེལ་ཤོག་བྱང་ཚུ་ གསར་བསྐྲུན་འབད། </ahelp> ཁྱོད་ཀྱིས་ ཧེ་མ་ངེས་འཛིན་འབད་ཡོད་པའི་ རྩ་སྒྲིག་ཚད་ཚུ་ལས་གདམ་ཁ་བརྐྱབ་ནི་དང་ ཡང་ན་ ཁྱོད་ཀྱིས་རང་གིས་སྦེ་གསར་བསྐྲུན་འབད།"
@@ -1612,7 +1476,6 @@ msgstr "འབྲིང་མ།"
msgctxt ""
"01010301.xhp\n"
"hd_id3148765\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/01/01010301.xhp\" name=\"Medium\">Medium</link>"
msgstr "<link href=\"text/shared/01/01010301.xhp\" name=\"Medium\">འབྲིང་མ།</link>"
@@ -1621,7 +1484,6 @@ msgstr "<link href=\"text/shared/01/01010301.xhp\" name=\"Medium\">འབྲི
msgctxt ""
"01010301.xhp\n"
"par_id3150278\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Select the size of your business card from a number of pre-defined size formats, or a size format that you specify on the <emph>Format </emph>tab.</ahelp>"
msgstr "<ahelp hid=\".\">ཁྱོད་རའི་ཚོང་འབྲེལ་ཁ་བྱང་གི་ཚད་དེ་ སྔོན་མ་ངེས་འཛིན་འབད་ཡོད་པའི་ ཚད་ཀྱི་རྩ་སྒྲིག་དང་ ཡང་ན་ <emph>ཁྱོད་ཀྱི་རྩ་སྒྲིག་མཆོང་ལྡེ་གུ་ </emph> གསལ་བཀོད་འབད་ཡོད་པའི་ རྩ་སྒྲིག་གི་ཚད་གཅིག་ནང་ལས་ སེལ་འཐུ་འབད།</ahelp>"
@@ -1630,7 +1492,6 @@ msgstr "<ahelp hid=\".\">ཁྱོད་རའི་ཚོང་འབྲེལ
msgctxt ""
"01010301.xhp\n"
"hd_id3149991\n"
-"3\n"
"help.text"
msgid "Format"
msgstr "རྩ་སྒྲིག"
@@ -1639,7 +1500,6 @@ msgstr "རྩ་སྒྲིག"
msgctxt ""
"01010301.xhp\n"
"par_id3147543\n"
-"4\n"
"help.text"
msgid "Select a size format for your business card."
msgstr "ཁྱོད་རའི་ཚོང་འབྲེལ་ཤོག་བྱང་ཀྱི་དོན་ལུ་ ཚད་ཀྱི་རྩ་སྒྲིག་ཅིག་སེལ་འཐུ་འབད།"
@@ -1648,7 +1508,6 @@ msgstr "ཁྱོད་རའི་ཚོང་འབྲེལ་ཤོག་བ
msgctxt ""
"01010301.xhp\n"
"hd_id3160463\n"
-"5\n"
"help.text"
msgid "Continuous"
msgstr "འཕྲོ་མཐུད་ཅན།"
@@ -1657,7 +1516,6 @@ msgstr "འཕྲོ་མཐུད་ཅན།"
msgctxt ""
"01010301.xhp\n"
"par_id3150279\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_CONT\">Prints business cards on continuous paper.</ahelp>"
msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_CONT\">འཕྲོ་མཐུད་ཅན་གྱི་ཤོག་ལེབ་གུ་ ཚོང་འབྲེལ་འདི་ཚུ་ དཔར་བསྐྲུན་འབདཝ་ཨིན།</ahelp>"
@@ -1666,7 +1524,6 @@ msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_CONT\">འཕྲོ་མཐུད་
msgctxt ""
"01010301.xhp\n"
"hd_id3154840\n"
-"7\n"
"help.text"
msgid "Sheet"
msgstr "ལེབ་གྲངས།"
@@ -1675,7 +1532,6 @@ msgstr "ལེབ་གྲངས།"
msgctxt ""
"01010301.xhp\n"
"par_id3148731\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_SHEET\">Prints business cards on individual sheets.</ahelp>"
msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_SHEET\">ངོ་རྐྱང་ལེབ་གྲངས་གུ་ ཚོང་འབྲེལ་གྱི་ཤོག་བྱང་འདི་ཚུ་ དཔར་བསྐྲུན་འབདཝ་ཨིན།</ahelp>"
@@ -1684,7 +1540,6 @@ msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_SHEET\">ངོ་རྐྱང་ལ
msgctxt ""
"01010301.xhp\n"
"hd_id3154894\n"
-"9\n"
"help.text"
msgid "Brand"
msgstr "ཚོང་མིང་།"
@@ -1693,7 +1548,6 @@ msgstr "ཚོང་མིང་།"
msgctxt ""
"01010301.xhp\n"
"par_id3155351\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_BRAND\">Select the brand of paper that you want to use.</ahelp> Each brand has its own size formats."
msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_BRAND\">ཁྱོད་རང་ དགོ་པའི་ཤོག་ལེབ་ཀྱི་ ཚོང་མིང་འདི་ཚུ་ སེལ་འཐུ་འབད། </ahelp>ཚོང་མིང་རེ་རེ་བཞིན་ལུ་ ཁོང་རའི་རྩ་སྒྲིག་གི་ཚད་ཚུ་ཡོདཔ་ཨིན།"
@@ -1702,7 +1556,6 @@ msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_BRAND\">ཁྱོད་རང་ ད
msgctxt ""
"01010301.xhp\n"
"hd_id3153935\n"
-"11\n"
"help.text"
msgid "Type"
msgstr "དབྱེ་བ།"
@@ -1711,7 +1564,6 @@ msgstr "དབྱེ་བ།"
msgctxt ""
"01010301.xhp\n"
"par_id3159201\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_TYPE\">Select the size format that you want to use. The available formats depend on what you selected in the <emph>Brand</emph> list. If you want to use a custom size format, select <emph>[User]</emph>, and then click the <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> tab to define the format.</ahelp>"
msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_TYPE\">ཁྱོད་རང་ལག་ལེན་འཐབ་ནིའི་ རྩ་སྒྲིག་གི་ཚད་དེ་ སེལ་འཐུ་འབད། འཐོབ་ཚུགས་པའི་རྩ་སྒྲིག་འདི་ཚུ་ <emph>ཁྱོད་ཀྱི་ཚོང་མིང་ཐོ་ཡིག་ནང་ </emph> ག་ཅི་སེལ་འཐུ་འབད་ཡོདཔ་ཨིན་ན་ལུ་ རག་ལསཔ་ཨིན། ཁྱོད་ར་ སྲོལ་སྒྲིག་ཚད་ཀྱི་རྩ་སྒྲིག་ཅིག་ལག་ལེན་འབབ་དགོ་པ་ཅིན་ རྩ་སྒྲིག་དེ་ ངེས་འཛིན་འབད་ནི་ལུ་ <emph> [User]</emph>སེལ་འཐུ་འབད་ཞིནམ་ལས་ <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>རྩ་སྒྲིག་</emph></link> མཆོང་ལྡེ་ལུ་ ཨེབ་གཏང་འབད།</ahelp>"
@@ -1720,7 +1572,6 @@ msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_TYPE\">ཁྱོད་རང་ལག
msgctxt ""
"01010301.xhp\n"
"hd_id3147226\n"
-"13\n"
"help.text"
msgid "Info"
msgstr "བརྡ་དོན།"
@@ -1729,7 +1580,6 @@ msgstr "བརྡ་དོན།"
msgctxt ""
"01010301.xhp\n"
"par_id3153394\n"
-"14\n"
"help.text"
msgid "The paper type and the dimensions of the business card are displayed at the bottom of the <emph>Format</emph> area."
msgstr "ཤོག་ལེབ་ཀྱི་དབྱེ་བ་དང་ ཚོང་འབྲེལ་ཤོག་བྱང་གི་རྒྱ་ཁྱོན་ཚུ་ <emph>Format</emph>མངའ་ཁོངས་ཀྱི་མཇུག་ལུ་བཀྲམ་སྟོན་འབད་དེ་ཡོད།"
@@ -1746,17 +1596,14 @@ msgstr "ཚོང་འབྲེལ་ཤོག་བྱང་ཚུ།"
msgctxt ""
"01010302.xhp\n"
"hd_id3152414\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/01/01010302.xhp\" name=\"Business Cards\">Business Cards</link>"
msgstr "<link href=\"text/shared/01/01010302.xhp\" name=\"Business Cards\">ཚོང་འབྲེལ་ལོག་བྱང་ཚུ།</link>"
#: 01010302.xhp
-#, fuzzy
msgctxt ""
"01010302.xhp\n"
"par_id3153882\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Define the appearance of your business cards.</ahelp>"
msgstr "<ahelp hid=\"\" visibility=\"visible\">ཁྱོད་རའི་ཚོང་འབྲེལ་ཤོག་བྱང་གི་ འབྱུང་སྣང་འདི་ངེས་འཛིན་འབད།</ahelp>"
@@ -1765,7 +1612,6 @@ msgstr "<ahelp hid=\"\" visibility=\"visible\">ཁྱོད་རའི་ཚོ
msgctxt ""
"01010302.xhp\n"
"hd_id3146873\n"
-"3\n"
"help.text"
msgid "Content"
msgstr "ནང་དོན།"
@@ -1774,7 +1620,6 @@ msgstr "ནང་དོན།"
msgctxt ""
"01010302.xhp\n"
"par_id3147527\n"
-"4\n"
"help.text"
msgid "Select a design layout for your business card."
msgstr "ཁྱོད་རའི་ཚོང་འབྲེལ་ཤོག་བྱང་དོན་ལུ་ བཀོད་སྒྲིག་སྒྲིག་བཀོད་ཅིག་སེལ་འཐུ་འབད།"
@@ -1783,7 +1628,6 @@ msgstr "ཁྱོད་རའི་ཚོང་འབྲེལ་ཤོག་བ
msgctxt ""
"01010302.xhp\n"
"par_id3158442\n"
-"5\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/cardformatpage/treeview\">Select a business card category in <emph>AutoText - Section</emph> box, and then click a layout in the <emph>Content </emph>list.</ahelp>"
msgstr ""
@@ -1792,7 +1636,6 @@ msgstr ""
msgctxt ""
"01010302.xhp\n"
"hd_id3148668\n"
-"6\n"
"help.text"
msgid "AutoText - Section"
msgstr "རང་བཞིན་ཚིག་ཡིག་-དབྱེ་ཚན།"
@@ -1801,7 +1644,6 @@ msgstr "རང་བཞིན་ཚིག་ཡིག་-དབྱེ་ཚན
msgctxt ""
"01010302.xhp\n"
"par_id3154894\n"
-"7\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/cardformatpage/autotext\">Select a business card category, and then click a layout in the <emph>Content </emph>list.</ahelp>"
msgstr ""
@@ -1818,7 +1660,6 @@ msgstr "སྒེར་དོན།"
msgctxt ""
"01010303.xhp\n"
"hd_id3149031\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/01/01010303.xhp\" name=\"Private\">Private</link>"
msgstr "<link href=\"text/shared/01/01010303.xhp\" name=\"Private\">སྒེར་དོན།</link>"
@@ -1827,7 +1668,6 @@ msgstr "<link href=\"text/shared/01/01010303.xhp\" name=\"Private\">སྒེར
msgctxt ""
"01010303.xhp\n"
"par_id3148731\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Contains personal contact information for business cards. Business card layouts are selected on the <emph>Business Cards</emph> tab.</ahelp>"
msgstr ""
@@ -1836,7 +1676,6 @@ msgstr ""
msgctxt ""
"01010303.xhp\n"
"hd_id3159201\n"
-"3\n"
"help.text"
msgid "Private data"
msgstr "སྒེར་དོན་གནད་སྡུད།"
@@ -1845,7 +1684,6 @@ msgstr "སྒེར་དོན་གནད་སྡུད།"
msgctxt ""
"01010303.xhp\n"
"par_id3147399\n"
-"4\n"
"help.text"
msgid "Enter the contact information that you want to include on your business card. You can also modify or update these entries by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - User Data</emph>."
msgstr ""
@@ -1854,7 +1692,6 @@ msgstr ""
msgctxt ""
"01010303.xhp\n"
"hd_id3156427\n"
-"15\n"
"help.text"
msgid "First name 2"
msgstr "མགོའི་མིང་ ༢།"
@@ -1863,7 +1700,6 @@ msgstr "མགོའི་མིང་ ༢།"
msgctxt ""
"01010303.xhp\n"
"par_id3149750\n"
-"16\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/privateuserpage/firstname2\">Enter the first name of the person, whom you want to use as a second contact.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/firstname2\">ཁྱོད་ར་ འབྲེལ་ས་གཉིས་པམ་སྦེ་ལག་ལེན་འཐབ་ནི་ལུ་ གང་ཟག་གཅིག་གི་ མིང་དང་པམ་དེ་ ཐོ་བཀོད་འབད།</ahelp>"
@@ -1872,7 +1708,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/firstname2\">ཁྱོ
msgctxt ""
"01010303.xhp\n"
"hd_id3145345\n"
-"17\n"
"help.text"
msgid "Last name 2"
msgstr "མཇུག་གི་མིང་ ༢།"
@@ -1881,7 +1716,6 @@ msgstr "མཇུག་གི་མིང་ ༢།"
msgctxt ""
"01010303.xhp\n"
"par_id3154288\n"
-"18\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/privateuserpage/lastname2\">Enter the last name of the person, whom you want to use as a second contact.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/lastname2\">ཁྱོད་རའི་ འབྲེལ་ས་གཉིས་པ་སྦེ་ལག་ལེན་འཐབ་ནི་ལུ་ གང་ཟག་གི་ མཇུག་གི་མིང་དེ་ ཐོ་བཀོད་འབད།</ahelp>"
@@ -1890,7 +1724,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/lastname2\">ཁྱོད
msgctxt ""
"01010303.xhp\n"
"hd_id3150774\n"
-"19\n"
"help.text"
msgid "Initials 2"
msgstr "འགོ་ཐོག་ ༢་པ།"
@@ -1899,7 +1732,6 @@ msgstr "འགོ་ཐོག་ ༢་པ།"
msgctxt ""
"01010303.xhp\n"
"par_id3151110\n"
-"20\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/privateuserpage/shortname2\">Enter the initials of the person, whom you want to use as a second contact.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/shortname2\">ཁྱོད་རའི་ འབྲེལ་ས་གཉིས་པ་སྦེ་ལག་ལེན་འཐབ་ནི་ལུ་ གང་ཟག་གི་ མིང་རྟགས་བསྡུས་པ་དེ་ལག་ལེན་འཐབ།</ahelp>"
@@ -1908,7 +1740,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/shortname2\">ཁྱོ
msgctxt ""
"01010303.xhp\n"
"hd_id3153543\n"
-"5\n"
"help.text"
msgid "Country"
msgstr "རྒྱལ་ཁབ།"
@@ -1917,7 +1748,6 @@ msgstr "རྒྱལ་ཁབ།"
msgctxt ""
"01010303.xhp\n"
"par_id3150085\n"
-"6\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/privateuserpage/country\">Enter the name of the country in which you live.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/country\">ཁྱོད་ར་སྡོད་མི་ རྒྱལ་ཁབ་འདི་གི་མིང་ ཐོ་བཀོད་འབད།</ahelp>"
@@ -1926,7 +1756,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/country\">ཁྱོད
msgctxt ""
"01010303.xhp\n"
"hd_id3155449\n"
-"7\n"
"help.text"
msgid "Profession"
msgstr "ཁྱད་ལས།"
@@ -1935,7 +1764,6 @@ msgstr "ཁྱད་ལས།"
msgctxt ""
"01010303.xhp\n"
"par_id3156192\n"
-"8\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/privateuserpage/job\">Enter the title of your profession.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/job\">ཁྱོད་རའི་ ཁྱད་ལས་ཀྱི་ མགོ་མིང་ཐོ་བཀོད་འབད། </ahelp>"
@@ -1944,7 +1772,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/job\">ཁྱོད་ར
msgctxt ""
"01010303.xhp\n"
"hd_id3147336\n"
-"9\n"
"help.text"
msgid "Phone"
msgstr "བརྒྱུད་འཕྲིན།"
@@ -1953,7 +1780,6 @@ msgstr "བརྒྱུད་འཕྲིན།"
msgctxt ""
"01010303.xhp\n"
"par_id3145315\n"
-"10\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/privateuserpage/phone\">Enter your home telephone number.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/phone\">ཁྱོད་རའི་ ཁྱིམ་ནང་གི་ བརྒྱུད་འཕྲིན་གྱི་ཨང་ ཐོ་བཀོད་འབད།</ahelp>"
@@ -1962,7 +1788,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/phone\">ཁྱོད་
msgctxt ""
"01010303.xhp\n"
"hd_id3149763\n"
-"11\n"
"help.text"
msgid "Mobile"
msgstr "འགྲུལ་འཕྲིན།"
@@ -1971,7 +1796,6 @@ msgstr "འགྲུལ་འཕྲིན།"
msgctxt ""
"01010303.xhp\n"
"par_id3156155\n"
-"12\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/privateuserpage/mobile\">Enter your mobile telephone number.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/mobile\">ཁྱོད་རའི་ འགྲུལ་འཕྲིན་གི་ཨང་ ཐོ་བཀོད་འབད།</ahelp>"
@@ -1980,7 +1804,6 @@ msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/mobile\">ཁྱོད་
msgctxt ""
"01010303.xhp\n"
"hd_id3154306\n"
-"13\n"
"help.text"
msgid "Homepage"
msgstr "ཁྱིམ་གྱི་ཤོག་ལེབ།"
@@ -1989,7 +1812,6 @@ msgstr "ཁྱིམ་གྱི་ཤོག་ལེབ།"
msgctxt ""
"01010303.xhp\n"
"par_id3153666\n"
-"14\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/privateuserpage/url\">Enter the address of your internet homepage.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/url\">ཁྱོད་རའི་ ཨིན་ཊར་ནེཊི་ ཁྱིམ་ཤོག་ལེབ་ཀྱི་ ཁ་བྱང་ཚུ་ ཐོ་བཀོད་འབད།</ahelp>"
@@ -2006,17 +1828,14 @@ msgstr "ཚོང་འབྲེལ།"
msgctxt ""
"01010304.xhp\n"
"hd_id3152942\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/01/01010304.xhp\" name=\"Business\">Business</link>"
msgstr "<link href=\"text/shared/01/01010304.xhp\" name=\"Business\">ཚོང་འབྲེལ།</link>"
#: 01010304.xhp
-#, fuzzy
msgctxt ""
"01010304.xhp\n"
"par_id3151097\n"
-"2\n"
"help.text"
msgid "<ahelp hid=\".\">Contains contact information for business cards that use a layout from a 'Business Card, Work' category. Business card layouts are selected on the <emph>Business Cards</emph> tab.</ahelp>"
msgstr "<ahelp hid=\"\">ཚོང་ལས་ཤོག་བྱང་དང་ ལཱ་གི་དབྱེ་རིམ་ཅིག་ནང་ལས་ སྒྲིག་བཀོད་ཅིག་ ལག་ལེན་འཐབ་མི་ ཚོང་འབྲེལ་ཤོག་བྱང་ཚུ་གི་དོན་ལུ་ འབྲེལ་ས་གི་ བརྡ་དོན་འདི་ཚུ་ཡོདཔ་ཨིན། ཚོང་འབྲེལ་ཤོག་བྱང་གི་སྒྲིག་བཀོད་འདི་ཚུ་ <emph>ཚོང་འབྲེལ་ཤོག་བྱང་གི་</emph> མཆོང་ལྡེ་གུ་ སེལ་འཐུ་འབད་ཡོདཔ་ཨིན།</ahelp>"
@@ -2025,7 +1844,6 @@ msgstr "<ahelp hid=\"\">ཚོང་ལས་ཤོག་བྱང་དང་
msgctxt ""
"01010304.xhp\n"
"hd_id3149549\n"
-"3\n"
"help.text"
msgid "Business data"
msgstr "ཚོང་འབྲེལ་གནས་སྡུད།"
@@ -2034,7 +1852,6 @@ msgstr "ཚོང་འབྲེལ་གནས་སྡུད།"
msgctxt ""
"01010304.xhp\n"
"par_id3156027\n"
-"4\n"
"help.text"
msgid "Enter the contact information that you want to include on your business card."
msgstr "ཁྱོད་རའི་ཚོང་འབྲེལ་ཤོག་བྱང་གུ་ ཁྱོད་ཀྱིས་གྲངས་སུ་བརྩི་ནི་དོན་ལུ་ འབྲེལ་སའི་བརྡ་དོན་འདི་ཐོ་བཀོད་འབད།"
@@ -2043,7 +1860,6 @@ msgstr "ཁྱོད་རའི་ཚོང་འབྲེལ་ཤོག་བ
msgctxt ""
"01010304.xhp\n"
"par_id3155892\n"
-"17\n"
"help.text"
msgid "If you want to include your name on a business card, enter your name on the <emph>Private </emph>tab. Then choose a layout on the <emph>Business Cards </emph>tab that includes a name placeholder."
msgstr "ཁྱོད་རའི་མིང་འདི་ ཚོང་འབྲེལ་ཤོག་བྱང་གུ་ཚུདཔ་སྦེ་བཟོ་དགོ་པ་ཅིན་ ཁྱོད་ཀྱི་མིང་འདི་ <emph>སྒེར་ལྡེ་ </emph>ཨེབ་ལྡེ་གུ་ཐོ་བཀོད་འབད། དེ་ལས་ མིང་གནས་ས་འཛིན་མི་ཅིག་ཚུད་མི་ <emph>